/* ============================================
   SHERISE ACADEMY — Main Stylesheet
   Life Coach for Women in India & Hyderabad
   ============================================ */

:root {
  --rose:       #C4748A;
  --rose-dark:  #A85C71;
  --gold:       #C9A96E;
  --gold-light: #E8C97A;
  --cream:      #FBF6F0;
  --cream-dark: #F3EBE0;
  --brown:      #2C1810;
  --brown-mid:  #5C3D2E;
  --brown-lite: #8B6B5B;
  --white:      #FFFFFF;
  --text:       #3A2820;
  --text-light: #7A5C50;
  --border:     #E8D8C8;
  --shadow:     rgba(44,24,16,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', sans-serif;
  --radius:     12px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--rose-dark); }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--brown);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,169,110,0.35);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,169,110,0.5);
  color: var(--brown);
}

.btn-outline {
  background: transparent;
  color: var(--rose);
  border-color: var(--rose);
}
.btn-outline:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

.mt-2 { margin-top: 16px; }

/* ── Top Bar ── */
.topbar {
  background: var(--brown);
  color: var(--gold-light);
  font-size: 0.82rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 8px; }
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar i { font-size: 0.75rem; }
.topbar-social { display: flex; gap: 12px; }
.topbar-social a { font-size: 0.85rem; }

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 30px var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  justify-content: space-between;
}

.logo-link img { height: 50px; width: auto; }

.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
}
.main-nav > ul > li { position: relative; }
.main-nav a {
  display: block;
  padding: 8px 14px;
  color: var(--brown);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--rose); background: rgba(196,116,138,0.07); }
.main-nav a.active { font-weight: 600; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 12px 40px var(--shadow);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  padding: 10px 18px;
  border-radius: 0;
  font-size: 0.85rem;
  color: var(--text);
}
.dropdown li a:hover { background: var(--cream); color: var(--rose); }

.nav-cta { font-size: 0.82rem; padding: 11px 22px; white-space: nowrap; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}

/* ── Section Styles ── */
section { padding: 90px 0; }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin: 0 auto; }

/* ── Hero ── */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 80px 0;
  background: linear-gradient(135deg, var(--cream) 60%, #F0E4D8 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,116,138,0.08) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  bottom: -80px; left: 10%;
}

.hero-content { animation: fadeSlideUp 0.9s ease both; }
.hero-content .section-tag { animation: fadeSlideUp 0.7s 0.1s ease both; }
.hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: var(--brown);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 em { color: var(--rose); font-style: italic; }
.hero-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 480px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-image-wrap {
  position: relative;
  animation: fadeSlideUp 0.9s 0.2s ease both;
}
.hero-img-frame {
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 30px 80px var(--shadow), 0 0 0 12px rgba(201,169,110,0.15);
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--cream-dark), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown-lite);
  text-align: center;
  padding: 40px;
}
.hero-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 30px var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeSlideUp 1s 0.5s ease both;
}
.hero-badge-icon { font-size: 2rem; }
.hero-badge-text strong { display: block; font-weight: 600; color: var(--brown); font-size: 1.1rem; }
.hero-badge-text span { font-size: 0.8rem; color: var(--text-light); }

/* ── Trust Bar ── */
.trust-bar {
  background: var(--brown);
  padding: 28px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold-light);
  line-height: 1;
}
.trust-item span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── About Snippet ── */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-frame {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--cream-dark) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-lite);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  text-align: center;
  padding: 30px;
  box-shadow: 0 20px 60px var(--shadow);
}
.about-accent {
  position: absolute;
  top: -20px; right: -20px;
  width: 120px; height: 120px;
  border: 3px solid var(--gold);
  border-radius: 20px;
  opacity: 0.4;
}
.about-accent-2 {
  position: absolute;
  bottom: -20px; left: -20px;
  width: 80px; height: 80px;
  background: var(--cream-dark);
  border-radius: 12px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 28px 0;
}
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}
.about-feat i { color: var(--rose); font-size: 0.9rem; }

/* ── Services ── */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, rgba(196,116,138,0.12), rgba(201,169,110,0.12));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--rose);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--brown);
  margin-bottom: 12px;
}
.service-card p { font-size: 0.93rem; color: var(--text-light); margin-bottom: 20px; }
.service-card a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 6px;
}
.service-card a:hover { gap: 10px; }

/* ── Process ── */
.process-section { background: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--rose));
}
.process-step { text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 24px rgba(196,116,138,0.4);
}
.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--brown);
  margin-bottom: 10px;
}
.process-step p { font-size: 0.88rem; color: var(--text-light); }

/* ── Testimonials ── */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px var(--shadow); }
.stars { color: var(--gold); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-info strong { display: block; font-weight: 600; color: var(--brown); font-size: 0.9rem; }
.author-info span { font-size: 0.8rem; color: var(--text-light); }

/* ── CTA Banner ── */
.cta-section {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
}
.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Blog ── */
.blog-section { background: var(--white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.blog-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px var(--shadow); }
.blog-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--cream-dark), var(--border));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown-lite);
  font-family: var(--font-serif);
  font-size: 0.9rem;
  text-align: center;
}
.blog-body { padding: 24px; }
.blog-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--brown);
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 16px; }
.blog-meta { font-size: 0.8rem; color: var(--text-light); display: flex; gap: 16px; }

/* ── Footer ── */
.site-footer { background: #1a0a05; color: rgba(255,255,255,0.75); }
.footer-wave { line-height: 0; background: var(--cream); }
.footer-wave svg { width: 100%; height: 60px; }
.footer-main { padding: 70px 0 50px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}
.footer-brand img { margin-bottom: 20px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.6); }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); color: var(--white); }
.footer-col h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-col h3::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 30px; height: 1px;
  background: var(--gold);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.contact-list i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; }
.contact-list a { color: rgba(255,255,255,0.65); }
.contact-list a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  z-index: 999;
  transition: all var(--transition);
}
.whatsapp-float i { font-size: 1.4rem; }
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(37,211,102,0.5); color: var(--white); }

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px; height: 46px;
  background: var(--rose);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(196,116,138,0.4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--rose-dark); transform: translateY(-2px); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-mid) 100%);
  padding: 90px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") center;
}
.page-hero .section-tag { color: var(--gold-light); }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: var(--gold-light); }

/* ── Forms ── */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 40px var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,116,138,0.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── Animations ── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate { animation: fadeSlideUp 0.7s ease both; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-content p { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-image-wrap { max-width: 380px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 0; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px var(--shadow);
    flex-direction: column;
    padding: 80px 24px 40px;
    transition: right var(--transition);
    overflow-y: auto;
    z-index: 999;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .nav-cta { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .topbar-inner { justify-content: center; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; align-items: center; }
}
