/* =============================================
   BC Designs — style.css
   Light palette: Cream #FAF8F5, Teal #2A7C76, Warm Amber #F5A623
   Font: Playfair Display (headings) + DM Sans (body)
============================================= */

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #FAF8F5;
  --white: #FFFFFF;
  --teal: #2A7C76;
  --teal-light: #E8F4F3;
  --teal-dark: #1d5c57;
  --amber: #F5A623;
  --amber-dark: #d4891a;
  --dark-grey: #2D2D2D;
  --mid-grey: #6B6B6B;
  --light-grey: #F0EDE8;
  --border: #E0DBD4;
  --green: #25D366;
  --green-border: #128C7E;
  --sidebar-w: 260px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(42, 124, 118, 0.10);
  --shadow-md: 0 8px 40px rgba(42, 124, 118, 0.14);
  --font-cursive: 'Great Vibes', cursive;
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--dark-grey);
  line-height: 1.65;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; border-radius: var(--radius); }
ul { list-style: none; }

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 28px 20px 24px;
  z-index: 1000;
  box-shadow: 4px 0 20px rgba(42,124,118,0.07);
  overflow-y: auto;
}

.sidebar-logo { margin-bottom: 36px; text-align: center; }
.sidebar-logo img { border-radius: var(--radius-sm); max-width: 150px; margin: 0 auto; }

/* Brand Name Text (replaces logo) */
.brand-name {
  display: inline-block;
  text-decoration: none;
  line-height: 1.1;
  cursor: pointer;
  padding: 10px 18px;
  border: 1px solid #D8D4CF;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: border-color var(--transition);
}
.brand-name:hover { border-color: var(--teal); }
.brand-bc {
  font-family: var(--font-cursive);
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--dark-grey);
  letter-spacing: 1px;
}
.brand-designs {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  color: var(--amber-dark);
  margin-left: 4px;
}

/* Footer brand name */
.footer-brand { display: block; margin-bottom: 14px; border: none; padding: 0; background: transparent; }
.footer-brand .brand-bc { color: #fff; }
.footer-brand .brand-designs { color: var(--amber); }

.sidebar-nav { flex: 1; }
.sidebar-nav ul { display: flex; flex-direction: column; gap: 4px; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--mid-grey);
  transition: var(--transition);
  position: relative;
}
.nav-link i { font-size: 1rem; width: 20px; text-align: center; color: var(--teal); }
.nav-link:hover, .nav-link.active {
  background: var(--teal-light);
  color: var(--teal);
}
.nav-link.active::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 3px;
  background: var(--teal);
  border-radius: 0 4px 4px 0;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== BUTTONS (Global) ===== */
.btn-whatsapp, .btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-whatsapp {
  background: var(--amber);
  border: 2px solid var(--green-border);
  color: var(--dark-grey);
}
.btn-whatsapp:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp i { color: #1a1a1a; font-size: 1.1rem; }

.btn-call {
  background: var(--white);
  border: 2px solid var(--teal);
  color: var(--dark-grey);
}
.btn-call:hover {
  background: var(--teal-light);
  transform: translateY(-2px);
}
.btn-call i { color: var(--teal); font-size: 1rem; }

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-slider { position: absolute; inset: 0; }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.slide.active { opacity: 1; }

.slide-bg {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 0;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(250, 248, 245, 0.55);
  border-radius: 0;
}
.dark-overlay {
  background: rgba(30, 30, 30, 0.55) !important;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 44px 52px 44px 60px;
  max-width: 680px;
  animation: fadeUp 0.8s ease both;
}

/* Gradient wash behind text - fades naturally on all sides */
.hero-content::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at 40% 50%, rgba(250,248,245,0.85) 30%, rgba(250,248,245,0) 75%);
  z-index: -1;
}

/* Dark version for dark slide */
.hero-section.dark-slide .hero-content::before {
  background: radial-gradient(ellipse at 40% 50%, rgba(15,15,15,0.78) 30%, rgba(15,15,15,0) 75%);
}
.hero-section.dark-slide .hero-title,
.hero-section.dark-slide .hero-sub,
.hero-section.dark-slide .hero-label {
  color: #ffffff;
}
.hero-section.dark-slide .hero-title .highlight { color: var(--amber); }
.hero-section.dark-slide .hero-sub .inline-link { color: var(--amber); }
.hero-section.dark-slide .hero-label {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  color: var(--dark-grey);
  margin-bottom: 18px;
}
.hero-title .highlight { color: var(--teal); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-sub .inline-link { color: var(--teal); font-weight: 500; }
.hero-sub .inline-link:hover { text-decoration: underline; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.slider-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(42,124,118,0.35);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.dot.active { background: var(--teal); transform: scale(1.3); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: var(--teal);
  padding: 36px 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.4rem;
  color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* ===== SECTION COMMON ===== */
.section-pad { padding: 80px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--dark-grey);
  margin-bottom: 14px;
  line-height: 1.25;
}
.section-title .highlight { color: var(--teal); }

/* Inline logo-style brand in headings */
.brand-bc-inline {
  font-family: var(--font-cursive);
  font-size: 1.15em;
  color: var(--dark-grey);
  font-weight: 400;
}
.brand-designs-inline {
  font-family: var(--font-cursive);
  font-size: 1.15em;
  color: var(--amber-dark);
}
.section-sub {
  color: var(--mid-grey);
  max-width: 620px;
  margin-bottom: 48px;
  font-size: 1rem;
}
.inline-link { color: var(--teal); font-weight: 500; }
.inline-link:hover { text-decoration: underline; }

/* ===== SERVICES ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.featured-card {
  border: 2px solid var(--teal);
  background: var(--teal-light);
  position: relative;
}
.featured-card::before {
  content: '⭐ Most Popular';
  position: absolute;
  top: 14px; right: 14px;
  background: var(--teal);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  z-index: 5;
}
.service-img-wrap { aspect-ratio: 16 / 9; overflow: hidden; border-radius: 0; }
.service-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  transition: transform 0.4s ease;
  background: var(--cream);
}
.service-card:hover .service-img-wrap img { transform: scale(1.05); }
.service-body { padding: 24px; }
.service-body h3 {
  font-family: var(--font-head);
  font-size: 1.25rem;
  color: var(--dark-grey);
  margin-bottom: 10px;
}
.service-body p { font-size: 0.92rem; color: var(--mid-grey); margin-bottom: 18px; line-height: 1.6; }
.service-body a.inline-link { color: var(--teal); }
.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal);
  border: 1.5px solid var(--teal);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.btn-read-more:hover {
  background: var(--teal);
  color: white;
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--cream); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.why-icon {
  width: 52px; height: 52px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.why-icon i { color: var(--teal); font-size: 1.3rem; }
.why-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--dark-grey);
}
.why-card p { font-size: 0.9rem; color: var(--mid-grey); line-height: 1.6; }
.why-card a { color: var(--teal); }

/* ===== GMB SPOTLIGHT ===== */
.gmb-section { background: var(--teal-light); }
.gmb-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.gmb-text .section-sub { margin-bottom: 24px; }
.gmb-list { margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.gmb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dark-grey);
  font-weight: 500;
}
.gmb-list li i { color: var(--teal); font-size: 1rem; }
.gmb-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  width: 100%;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testi-stars { color: var(--amber); font-size: 0.9rem; margin-bottom: 14px; }
.testi-card p { font-size: 0.92rem; color: var(--mid-grey); font-style: italic; margin-bottom: 18px; line-height: 1.65; }
.testi-name { font-family: var(--font-head); font-size: 1rem; color: var(--dark-grey); }
.testi-biz { font-size: 0.8rem; color: var(--teal); margin-top: 4px; font-weight: 500; }

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item i {
  color: var(--teal);
  font-size: 1.2rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.contact-item h3 { font-size: 1rem; font-family: var(--font-head); margin-bottom: 4px; }
.contact-item p { font-size: 0.92rem; color: var(--mid-grey); }
.contact-item a { color: var(--teal); }
.contact-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--dark-grey);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,124,118,0.1);
}
.btn-submit {
  background: var(--teal);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.btn-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-grey);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { border-radius: var(--radius-sm); margin-bottom: 14px; }
.footer-col p { font-size: 0.88rem; line-height: 1.65; }
.footer-col a { color: rgba(255,255,255,0.75); }
.footer-col a:hover { color: var(--amber); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: white;
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.88rem; }
.footer-col .contact-item { gap: 10px; }
.footer-col .contact-item i { font-size: 1rem; color: var(--amber); }
.footer-col .contact-item p { font-size: 0.85rem; margin: 0; }
.footer-btns { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.footer-btns .btn-whatsapp,
.footer-btns .btn-call { font-size: 0.85rem; padding: 9px 16px; }
.footer-btns .btn-call { color: var(--dark-grey); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 48px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--amber); }

/* ===== FLOATING WHATSAPP BUTTON ===== */
.float-wa {
  position: fixed;
  left: 24px;
  bottom: 32px;
  z-index: 9998;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 18px 12px 14px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: waPulse 2.5s infinite;
}
.float-wa i { font-size: 1.5rem; }
.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.75); }
}

@media (max-width: 768px) {
  .float-wa { left: 16px; bottom: 80px; padding: 11px 16px 11px 12px; font-size: 0.82rem; }
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 9999;
  padding: 8px 0 env(safe-area-inset-bottom, 8px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bottom-nav {
  display: none;
  justify-content: space-around;
  align-items: center;
}
.mob-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  color: var(--mid-grey);
  font-weight: 500;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  flex: 1;
  text-align: center;
}
.mob-nav-item i { font-size: 1.2rem; }
.mob-nav-item.active, .mob-nav-item:hover { color: var(--teal); }
.mob-nav-item.mob-wa i { color: var(--green); }
.mob-nav-item.mob-wa { color: var(--green); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .gmb-inner { grid-template-columns: 1fr; }
  .gmb-image { order: -1; }
}

@media (max-width: 768px) {
  .sidebar { display: none; }
  .main-content { margin-left: 0; }
  .mobile-bottom-nav { display: flex; }

  body { padding-bottom: 70px; }

  .hero-content { padding: 0 24px; }
  .hero-title { font-size: 1.75rem; }
  .stats-strip { padding: 28px 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 1.8rem; }

  .container { padding: 0 20px; }
  .section-pad { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }

  .services-grid,
  .why-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; }

  .gmb-inner { gap: 32px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-whatsapp,
  .hero-btns .btn-call { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-section { min-height: 520px; }
  .hero-content { padding: 0 16px; }
  .contact-btns { flex-direction: column; }
}

/* =============================================
   BC Designs — SERVICES PAGE ADDITIONS
   + Float WhatsApp moved to right side
============================================= */

/* ===== FLOAT WHATSAPP — RIGHT SIDE ===== */
.float-wa-right {
  left: auto !important;
  right: 24px;
}
@media (max-width: 768px) {
  .float-wa-right { left: auto !important; right: 16px; }
}

/* ===== PAGE HERO (Static — no slider) ===== */
.page-hero { height: 62vh; min-height: 420px; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero-bg .slide-bg { width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.page-hero-content { padding: 44px 52px 44px 60px; }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.8rem;
  color: var(--mid-grey);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.breadcrumb a { color: var(--teal); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.6rem; color: var(--mid-grey); }

/* ===== INTRO SECTION ===== */
.intro-section { background: var(--white); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.intro-text p { font-size: 0.97rem; color: var(--mid-grey); line-height: 1.8; }
.intro-highlights { display: flex; flex-direction: column; gap: 14px; }
.intro-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-grey);
  padding: 10px 14px;
  background: var(--teal-light);
  border-radius: var(--radius-sm);
}
.intro-highlight-item i { color: var(--teal); font-size: 1rem; flex-shrink: 0; }

/* ===== PROCESS SECTION ===== */
.process-section { background: var(--teal-light); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border);
  text-align: center;
  transition: var(--transition);
}
.process-step:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.process-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  letter-spacing: 0.5px;
}
.process-icon {
  width: 54px; height: 54px;
  background: var(--teal);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.process-icon i { color: white; font-size: 1.3rem; }
.process-step h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--dark-grey);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.87rem; color: var(--mid-grey); line-height: 1.65; }

/* ===== PRICING SECTION ===== */
.pricing-section { background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.pricing-card-featured {
  border: 2px solid var(--teal);
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.pricing-card-featured:hover { transform: translateY(-14px); }
.plan-badge {
  background: var(--teal);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 7px 0;
  text-align: center;
  letter-spacing: 0.5px;
}
.plan-header {
  padding: 26px 24px 20px;
  border-bottom: 1px solid var(--border);
}
.plan-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--dark-grey);
  margin-bottom: 4px;
}
.plan-ideal { font-size: 0.82rem; color: var(--mid-grey); margin-bottom: 16px; }
.plan-price { display: flex; flex-direction: column; gap: 2px; }
.price-from { font-size: 0.75rem; color: var(--mid-grey); text-transform: uppercase; letter-spacing: 1.2px; }
.price-amount {
  font-family: var(--font-head);
  font-size: 2.1rem;
  color: var(--teal);
  font-weight: 700;
  line-height: 1.1;
}
.plan-features { padding: 20px 24px; display: flex; flex-direction: column; gap: 10px; }
.plan-feature {
  font-size: 0.87rem;
  color: var(--dark-grey);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}
.plan-feature .fa-circle-check { color: var(--teal); font-size: 0.9rem; flex-shrink: 0; }
.plan-feature-no { color: var(--mid-grey); }
.plan-feature-no .fa-circle-xmark { color: #d0ccc8; font-size: 0.9rem; flex-shrink: 0; }
.plan-support {
  font-weight: 600;
  color: var(--teal);
  background: var(--teal-light);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-top: 4px;
}
.btn-plan {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 24px 24px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  background: var(--teal-light);
  color: var(--teal);
  border: 1.5px solid var(--teal);
  transition: var(--transition);
  text-decoration: none;
}
.btn-plan:hover { background: var(--teal); color: white; transform: translateY(-2px); }
.btn-plan-featured {
  background: var(--amber);
  color: var(--dark-grey);
  border-color: var(--amber-dark);
}
.btn-plan-featured:hover { background: var(--amber-dark); color: white; }

/* ===== COMPARISON TABLE ===== */
.compare-section { background: var(--white); }
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare-table thead tr { background: var(--teal); color: white; }
.compare-table th {
  padding: 16px 20px;
  text-align: center;
  font-family: var(--font-head);
  font-size: 1rem;
  white-space: nowrap;
}
.compare-table th.feature-col { text-align: left; min-width: 200px; }
.compare-table th.th-featured { background: var(--teal-dark); }
.th-price {
  display: block;
  font-family: var(--font-body);
  font-size: 0.76rem;
  font-weight: 400;
  opacity: 0.85;
  margin-top: 3px;
}
.compare-table tbody tr { border-bottom: 1px solid var(--border); transition: background var(--transition); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:hover { background: var(--cream); }
.compare-table td {
  padding: 12px 20px;
  text-align: center;
  color: var(--mid-grey);
  font-size: 0.88rem;
}
.compare-table td:first-child { text-align: left; color: var(--dark-grey); font-weight: 500; }
.td-featured { background: rgba(42,124,118,0.04); }
.tick { color: var(--teal) !important; font-size: 1.05rem; }
.cross { color: #d5d0cb !important; font-size: 1.05rem; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--cream); }
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 820px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--teal); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 17px 20px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--dark-grey);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--teal); }
.faq-item.open .faq-q { color: var(--teal); }
.faq-q i { color: var(--teal); font-size: 0.82rem; flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s ease;
  padding: 0 20px;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 20px 18px; }
.faq-a p { font-size: 0.91rem; color: var(--mid-grey); line-height: 1.75; }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--teal); text-align: center; }
.cta-inner { max-width: 680px; margin: 0 auto; }

/* ===== RESPONSIVE — NEW ELEMENTS ===== */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pricing-card-featured { transform: none; }
  .pricing-card-featured:hover { transform: translateY(-4px); }
  .intro-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .page-hero { height: 72vh; }
  .page-hero-content { padding: 0 24px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .compare-table th, .compare-table td { padding: 10px 12px; font-size: 0.82rem; }
  .faq-list { max-width: 100%; }
  .pricing-grid { max-width: 100%; }
}

@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .page-hero-content { padding: 0 16px; }
}
