/* ============================================================
   AstroRitikaa — Style System
   Palette: Indigo Night & Rose Quartz
   Fonts: Outfit (display), Inter (body)
   ============================================================ */

/* --- Custom Properties --- */
:root {
  /* Redesigned Global Theme Variables */
  --navy: #0B132B;              /* Primary Dark Background Color */
  --navy-mid: #1C2541;          /* Slightly Lighter Navy/Slate for Contrast */
  --navy-light: #3A506B;        /* Medium-Light Navy/Slate */
  --cyan-mint: #48CAE4;         /* Sharp High-Contrast Cyan-Mint Accent */
  
  /* Fallback color mappings for backward compatibility */
  --gold: #48CAE4;              
  --gold-light: #70E0F6;        
  --gold-pale: rgba(72, 202, 228, 0.1);
  --link-on-light: #0B132B;     
  --link-on-light-hover: #1C2541;
  
  --white: #FFFFFF;             /* Stark White text */
  --white-warm: #FBFBFA;        /* Pale Off-White background */
  --off-white: #FBFBFA;         /* Premium Pale Off-White */
  
  --text-primary: #0B132B;      /* Solid dark Navy Blue for headings on pale off-white */
  --text-secondary: #3A4750;    /* Dark slate for body text on pale off-white */
  --text-on-dark: #FFFFFF;      /* Crisp Stark White on dark navy backgrounds */
  --text-muted-dark: #A5B1C2;   /* Secondary light text on dark background */
  
  --divider: rgba(72, 202, 228, 0.2);
  --divider-light: rgba(11, 19, 43, 0.1);
  --error: #D90429;
  --focus-ring: #48CAE4;
  
  --space-section: clamp(80px, 10vw, 140px);
  --space-section-tight: clamp(60px, 8vw, 100px);
  --tap-target: 44px;

  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  --header-h: 70px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --max-w: 1200px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-primary);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
  border-radius: var(--radius-sm);
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

button {
  cursor: pointer;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap-target);
  padding: 13px 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0;
  border-radius: var(--radius-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary {
  background: var(--cyan-mint);
  color: var(--navy);
  font-weight: 700;
  border: none;
  box-shadow: 0 4px 14px rgba(72, 202, 228, 0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(72, 202, 228, 0.45);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(72, 202, 228, 0.3);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

/* ============================================================
   NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 1px solid rgba(72, 202, 228, 0.15);
  height: var(--header-h);
}

.site-header.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-height: var(--tap-target);
  display: inline-flex;
  align-items: center;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  min-height: var(--tap-target);
  display: inline-flex;
  align-items: center;
  padding: 8px 2px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-mint);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  flex-shrink: 0;
}

/* Mobile nav toggle */
#nav-check {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: var(--tap-target);
  height: var(--tap-target);
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle .bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all var(--transition);
}

#nav-check:checked ~ .nav-toggle .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#nav-check:checked ~ .nav-toggle .bar:nth-child(2) {
  opacity: 0;
}

#nav-check:checked ~ .nav-toggle .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--space-section) 0 var(--space-section-tight);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
  will-change: transform;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 25s ease-in-out infinite reverse;
  will-change: transform;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(30px); }
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  animation: slideInFromLeft 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
  padding-right: 40px;
}

@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-metrics {
  display: flex;
  flex-direction: column;
  gap: 32px;
  animation: slideInFromRight 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--cyan-mint);
  line-height: 1.1;
}

.metric-label {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.9;
}

/* hero-image-wrap and hero-image removed — no portrait image in use */

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: var(--space-section) 0;
  background: var(--off-white);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 202, 228, 0.2), transparent);
}
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.about-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  text-align: left;
  letter-spacing: 0.05em;
}

.about-accent-line {
  display: block;
  width: 60px;
  height: 4px;
  background: var(--cyan-mint);
  border-radius: 2px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: flex-start;
}

.about-text {
  max-width: 100%;
  padding-top: 0;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 22px;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-visual {
  width: 100%;
}

.about-portrait {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 36px rgba(11, 19, 43, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-portrait:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(11, 19, 43, 0.12);
}

/* ============================================================
   SERVICES (DARK)
   ============================================================ */
.services {
  padding: var(--space-section) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.section-header {
  margin-bottom: clamp(34px, 5vw, 54px);
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
}

.services .section-header h2 {
  color: var(--white);
}

.services .section-header p {
  color: var(--text-muted-dark);
}

.services-track {
  display: flex;
  gap: clamp(20px, 3vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(72, 202, 228, 0.3) transparent;
  position: relative;
  z-index: 1;
}

.services-track::-webkit-scrollbar {
  height: 6px;
}

.services-track::-webkit-scrollbar-track {
  background: transparent;
}

.services-track::-webkit-scrollbar-thumb {
  background: rgba(72, 202, 228, 0.3);
  border-radius: 3px;
}

.services-track::-webkit-scrollbar-thumb:hover {
  background: rgba(72, 202, 228, 0.6);
}

.service-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: clamp(30px, 4vw, 40px) clamp(24px, 3vw, 30px);
  border: 1px solid var(--divider-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-item::before {
  display: none;
}

.service-item::after {
  display: none;
}

.service-item:hover {
  border-color: var(--cyan-mint);
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.service-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.service-stars .star {
  width: 14px;
  height: 14px;
  color: var(--cyan-mint);
}

.service-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.service-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.service-item:hover p {
  color: var(--text-secondary);
}

/* ============================================================
   WHY CHOOSE (LIGHT)
   ============================================================ */
.why-choose {
  padding: var(--space-section) 0;
  background: var(--off-white);
  position: relative;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 202, 228, 0.2), transparent);
}

.why-inner {
  display: flex;
  gap: clamp(42px, 6vw, 70px);
  align-items: flex-start;
}

.why-col {
  flex: 1;
}

.why-col h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  position: relative;
}

.why-col h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--cyan-mint);
  border-radius: 2px;
}

.why-col p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 22px;
  transition: color 0.3s ease;
}

.why-col:hover p {
  color: var(--text-secondary);
}

.pull-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  line-height: 1.6;
  color: var(--navy);
  border-left: 5px solid var(--cyan-mint);
  padding-left: 24px;
  margin: 40px 0;
  position: relative;
  transition: all 0.3s ease;
}

.pull-quote::before {
  content: '"';
  position: absolute;
  left: -10px;
  top: -20px;
  font-size: 4rem;
  color: var(--cyan-mint);
  opacity: 0.15;
}

/* ============================================================
   REVIEWS (DARK)
   ============================================================ */
.reviews {
  padding: var(--space-section) 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.reviews::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews::after {
  content: '';
  position: absolute;
  bottom: -15%;
  right: -15%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.reviews .section-header h2 {
  color: var(--white);
}

.reviews .section-header p {
  color: var(--text-muted-dark);
}

.reviews-track {
  display: flex;
  gap: clamp(20px, 3vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 24px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(72, 202, 228, 0.3) transparent;
  position: relative;
  z-index: 1;
}

.reviews-track::-webkit-scrollbar {
  height: 6px;
}

.reviews-track::-webkit-scrollbar-track {
  background: transparent;
}

.reviews-track::-webkit-scrollbar-thumb {
  background: rgba(72, 202, 228, 0.3);
  border-radius: 3px;
}

.review-card {
  flex: 0 0 360px;
  scroll-snap-align: start;
  background: var(--navy-mid);
  border: 1px solid rgba(72, 202, 228, 0.15);
  border-radius: var(--radius-md);
  padding: clamp(26px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(72, 202, 228, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-md);
}

.review-card:hover {
  border-color: var(--cyan-mint);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(72, 202, 228, 0.15);
}

.review-card:hover::before {
  opacity: 1;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.review-initials {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cyan-mint);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(72, 202, 228, 0.2);
  transition: transform 0.3s ease;
}

.review-card:hover .review-initials {
  transform: scale(1.1);
}

.review-meta {
  display: flex;
  flex-direction: column;
}

.review-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.3px;
}

.review-city {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}

.review-stars {
  display: flex;
  gap: 4px;
  position: relative;
  z-index: 1;
}

.review-stars .star {
  width: 18px;
  height: 18px;
  color: var(--cyan-mint);
  filter: drop-shadow(0 2px 4px rgba(72, 202, 228, 0.2));
  transition: transform 0.2s ease;
}

.review-stars .star.empty {
  color: var(--navy-light);
  filter: none;
}

.review-card:hover .review-stars .star:not(.empty) {
  transform: scale(1.15);
}

.review-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.85;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  font-style: italic;
}

.review-card:hover .review-text {
  color: var(--white);
}

/* ============================================================
   FAQ (LIGHT)
   ============================================================ */
.faq {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 202, 228, 0.2), transparent);
}

.faq .section-header h2 {
  color: var(--navy);
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  background-clip: initial;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--divider-light);
  transition: all 0.3s ease;
  position: relative;
}

.faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(180deg, var(--cyan-mint) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}

.faq-item[open] {
  border-left: 4px solid var(--cyan-mint);
  padding-left: 16px;
  background: linear-gradient(135deg, rgba(72, 202, 228, 0.03) 0%, transparent 100%);
  border-radius: 4px;
  border-bottom: 1px solid rgba(72, 202, 228, 0.2);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.08rem;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: '';
}

.faq-item summary:hover {
  color: var(--navy);
}

.faq-item[open] summary {
  color: var(--navy);
}

.faq-chevron {
  width: 24px;
  height: 24px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  color: var(--cyan-mint);
  stroke-width: 3;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--cyan-mint);
}

.faq-answer {
  padding: 0 0 22px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* JS animation classes */
.faq-answer[data-animating] {
  transition: max-height 0.3s ease;
  overflow: hidden;
}

/* ============================================================
   CONTACT (LIGHT)
   ============================================================ */
.contact {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 202, 228, 0.2), transparent);
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-inner {
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-inner h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.contact-intro {
  color: var(--text-secondary);
  margin-bottom: 40px;
  font-size: 1rem;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
  flex: 1;
  position: relative;
}

.form-group label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid rgba(11, 19, 43, 0.25);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-mint);
  box-shadow: 0 0 0 4px rgba(72, 202, 228, 0.15), 0 4px 12px rgba(72, 202, 228, 0.1);
  transform: translateY(-2px);
}

.form-group input:hover:not(:focus),
.form-group select:hover:not(:focus),
.form-group textarea:hover:not(:focus) {
  border-color: rgba(72, 202, 228, 0.5);
  background: rgba(72, 202, 228, 0.02);
}

.form-group input.input-error,
.form-group select.input-error,
.form-group textarea.input-error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-body);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2348CAE4' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.field-error {
  font-size: 0.82rem;
  color: var(--error);
  margin-top: 5px;
  display: none;
  line-height: 1.4;
  font-weight: 500;
}

.field-error.visible {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 14px rgba(11, 19, 43, 0.15);
  font-weight: 700;
}

.form-submit .btn:hover:not(:disabled) {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(11, 19, 43, 0.3);
}

.form-submit .btn:active:not(:disabled) {
  transform: translateY(-1px);
}

.form-submit .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.form-note {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.form-success {
  padding: 12px 16px;
  border-left: 4px solid #2d6a4f;
  background: linear-gradient(135deg, #d8f3dc 0%, #c1e9c0 100%);
  color: #1b4332;
  font-size: 14px;
  border-radius: 4px;
  margin-top: 12px;
  font-weight: 500;
  animation: slideDown 0.4s ease;
}

.form-error {
  padding: 12px 16px;
  border-left: 4px solid #c1121f;
  background: linear-gradient(135deg, #fdf0f0 0%, #fce0e0 100%);
  color: #7b0d0d;
  font-size: 14px;
  border-radius: 4px;
  margin-top: 12px;
  font-weight: 500;
  animation: slideDown 0.4s ease;
}

.form-legal-note {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 12px;
  text-align: center;
}

.form-legal-note a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1.5px solid var(--navy);
}

.form-legal-note a:hover {
  color: var(--navy-mid);
  border-bottom-color: var(--navy-mid);
}

.thank-you-section h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.thank-you-section p {
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.thank-you-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid var(--gold);
  transition: color 0.3s ease, border-color 0.3s ease;
}

.thank-you-link:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.legal-page {
  padding: 120px 0 90px;
  background: var(--off-white);
}

.legal-content {
  max-width: 860px;
  margin: 0 auto;
  color: var(--text-secondary);
}

.legal-content h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.legal-updated {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 36px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: var(--text-primary);
  margin: 34px 0 12px;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-primary);
  margin: 22px 0 8px;
}

.legal-content p,
.legal-content li {
  font-size: 0.98rem;
  line-height: 1.8;
}

.legal-content p {
  margin-bottom: 14px;
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin: 10px 0 18px;
}

.legal-content a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  padding: 16px 18px;
  border-left: 4px solid var(--gold);
  background: rgba(193, 126, 170, 0.08);
  border-radius: var(--radius-sm);
  margin: 24px 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 60px 0 40px;
  border-top: 1px solid rgba(72, 202, 228, 0.15);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.site-footer::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(72, 202, 228, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.85);
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo span {
  color: rgba(255, 255, 255, 0.85);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 4px;
}

.footer-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-mint);
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-links a:hover {
  color: var(--cyan-mint);
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin-top: 12px;
  letter-spacing: 0.5px;
}

.socials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 4px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.socials a svg {
  fill: rgba(255, 255, 255, 0.6) !important;
  transition: fill var(--transition);
}

.socials a path {
  fill: rgba(255, 255, 255, 0.6) !important;
  transition: fill var(--transition);
}

.socials a:hover {
  background: rgba(72, 202, 228, 0.1);
  transform: translateY(-2px);
}

.socials a:hover svg {
  fill: var(--cyan-mint) !important;
}

.socials a:hover path {
  fill: var(--cyan-mint) !important;
}

.socials a:focus-visible {
  outline: 2px solid var(--cyan-mint);
  outline-offset: 3px;
}

/* ============================================================
   SECTION REVEAL ANIMATION
   ============================================================ */
.reveal-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered child animations */
.reveal-section .service-item,
.reveal-section .review-card,
.reveal-section .faq-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reveal-section.is-visible .service-item,
.reveal-section.is-visible .review-card,
.reveal-section.is-visible .faq-item {
  opacity: 1;
  transform: translateY(0);
}

.reveal-section.is-visible .service-item:nth-child(1),
.reveal-section.is-visible .review-card:nth-child(1),
.reveal-section.is-visible .faq-item:nth-child(1) { transition-delay: 0.08s; }
.reveal-section.is-visible .service-item:nth-child(2),
.reveal-section.is-visible .review-card:nth-child(2),
.reveal-section.is-visible .faq-item:nth-child(2) { transition-delay: 0.16s; }
.reveal-section.is-visible .service-item:nth-child(3),
.reveal-section.is-visible .review-card:nth-child(3),
.reveal-section.is-visible .faq-item:nth-child(3) { transition-delay: 0.24s; }
.reveal-section.is-visible .service-item:nth-child(4),
.reveal-section.is-visible .review-card:nth-child(4),
.reveal-section.is-visible .faq-item:nth-child(4) { transition-delay: 0.32s; }
.reveal-section.is-visible .service-item:nth-child(5),
.reveal-section.is-visible .review-card:nth-child(5),
.reveal-section.is-visible .faq-item:nth-child(5) { transition-delay: 0.4s; }
.reveal-section.is-visible .service-item:nth-child(6),
.reveal-section.is-visible .review-card:nth-child(6),
.reveal-section.is-visible .faq-item:nth-child(6) { transition-delay: 0.48s; }
.reveal-section.is-visible .service-item:nth-child(7) { transition-delay: 0.56s; }
.reveal-section.is-visible .service-item:nth-child(8) { transition-delay: 0.64s; }
.reveal-section.is-visible .service-item:nth-child(9) { transition-delay: 0.72s; }

/* ============================================================
   WHATSAPP INTEGRATION
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  z-index: 1100;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

.whatsapp-float:active {
  transform: translateY(-2px) scale(0.98);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.contact-or-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.contact-or-divider::before,
.contact-or-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--divider-light);
  margin: 0 12px;
}

.whatsapp-direct {
  margin-top: 8px;
}

.btn-whatsapp {
  width: 100%;
  padding: 14px 28px;
  background-color: #25D366;
  color: var(--white) !important;
  border: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-whatsapp svg {
  fill: currentColor;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp:active {
  transform: translateY(-1px);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-whatsapp-hero {
  background: transparent;
  color: var(--cyan-mint) !important;
  border: 2px solid var(--cyan-mint);
  box-shadow: none;
}

.btn-whatsapp-hero svg {
  fill: currentColor;
}

.btn-whatsapp-hero:hover {
  background: rgba(72, 202, 228, 0.1);
  color: var(--cyan-mint) !important;
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(72, 202, 228, 0.2);
}

.btn-whatsapp-hero:active {
  transform: translateY(-1px);
}

/* ============================================================
   MOBILE (up to 767px)
   ============================================================ */
@media (max-width: 767px) {
  :root {
    --header-h: 60px;
    --max-w: 100%;
  }

  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .wrap {
    padding: 0 16px;
    width: 100vw;
    box-sizing: border-box;
  }

  /* NAV — hamburger */
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 0;
    border-bottom: 1px solid var(--divider);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 998;
  }

  #nav-check:checked ~ .nav-links {
    max-height: 500px;
  }

  .nav-links a {
    display: block;
    padding: 16px 20px;
    font-size: 1rem;
    color: var(--text-muted-dark);
    border-bottom: 1px solid var(--divider);
    transition: background 0.2s ease;
  }

  .nav-links a:active {
    background: rgba(193, 126, 170, 0.1);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 80px 0 50px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
    padding-right: 0;
  }

  .hero-headline {
    font-size: 1.75rem;
    line-height: 1.25;
  }

  .hero-bio {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-bottom: 30px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }

  .hero-image-wrap {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-image-wrap::before {
    display: none;
  }

  /* ABOUT */
  .about {
    padding: 60px 0;
  }

  .about-inner {
    gap: 24px;
  }

  .about-header {
    align-items: flex-start;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-portrait {
    max-width: 100%;
    height: auto;
  }

  /* SERVICES */
  .services {
    padding: 60px 0;
  }

  .services::before,
  .services::after {
    display: none;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .services-track {
    gap: 16px;
  }

  .service-item {
    flex: 0 0 calc(100vw - 32px);
    max-width: 280px;
    padding: 24px 20px;
  }

  /* WHY CHOOSE */
  .why-choose {
    padding: 60px 0;
  }

  .why-choose::before {
    display: none;
  }

  .why-inner {
    flex-direction: column;
    gap: 30px;
  }

  .why-col h2 {
    font-size: 1.5rem;
  }

  .why-col h2::after {
    display: none;
  }

  .pull-quote {
    margin: 24px 0;
    font-size: 1.1rem;
    padding-left: 20px;
    border-left-width: 3px;
  }

  .pull-quote::before {
    display: none;
  }

  /* REVIEWS */
  .reviews {
    padding: 60px 0;
  }

  .reviews::before,
  .reviews::after {
    display: none;
  }

  .reviews-track {
    gap: 16px;
  }

  .review-card {
    flex: 0 0 calc(100vw - 32px);
    max-width: 320px;
    padding: 20px;
  }

  .review-initials {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  /* FAQ */
  .faq {
    padding: 60px 0;
  }

  .faq::before {
    display: none;
  }

  .faq-list {
    max-width: 100%;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 16px 0;
  }

  .faq-chevron {
    width: 18px;
    height: 18px;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding: 0 0 16px;
  }

  /* CONTACT */
  .contact {
    padding: 60px 0;
  }

  .contact::before,
  .contact::after {
    display: none;
  }

  .contact-inner h2 {
    font-size: 1.5rem;
  }

  .form-row {
    flex-direction: column;
  }

  .form-group {
    margin-bottom: 18px;
  }

  .form-group label {
    font-size: 0.85rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 11px 14px;
    font-size: 16px;
  }

  .form-group select {
    background-size: 14px;
    background-position: right 10px center;
    padding-right: 36px;
  }

  .form-submit .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  /* FOOTER */
  .site-footer {
    padding: 40px 0 30px;
  }

  .site-footer::before,
  .site-footer::after {
    display: none;
  }

  .footer-logo {
    font-size: 1.1rem;
  }

  .footer-tagline {
    font-size: 0.85rem;
  }

  .footer-links {
    gap: 16px;
  }

  .footer-links a {
    font-size: 0.8rem;
  }

  .footer-copy {
    font-size: 0.75rem;
  }

  /* ANIMATIONS - reduce on mobile */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }

  /* Hide floating animations on mobile */
  .reveal-section {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .reveal-section.is-visible .service-item,
  .reveal-section.is-visible .review-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

  /* SERVICES */
  .services {
    padding: 80px 0;
  }

  .service-item {
    flex: 0 0 260px;
    padding: 28px 22px;
  }

  /* WHY CHOOSE */
  .why-choose {
    padding: 80px 0;
  }

  .why-inner {
    flex-direction: column;
    gap: 0;
  }

  .pull-quote {
    margin: 32px 0;
    font-size: 1.2rem;
  }

  /* REVIEWS */
  .reviews {
    padding: 80px 0;
  }

  .review-card {
    flex: 0 0 300px;
    padding: 24px;
  }

  /* FAQ */
  .faq {
    padding: 80px 0;
  }

  /* CONTACT */
  .contact {
    padding: 80px 0;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }


/* ============================================================
   TABLET (768px – 1279px)
   ============================================================ */
@media (min-width: 768px) and (max-width: 1279px) {
  .hero-inner {
    gap: 40px;
  }

  .about-inner {
    gap: 32px;
  }

  .why-inner {
    gap: 40px;
  }
}

/* ============================================================
   DESKTOP (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  .wrap {
    padding: 0 40px;
  }

  .hero-headline {
    font-size: 3.2rem;
  }

  .service-item {
    flex: 0 0 320px;
  }

  .review-card {
    flex: 0 0 400px;
  }
}

/* ============================================================
   NOSCRIPT FALLBACKS
   ============================================================ */
noscript .faq-answer {
  display: block;
}

/* Print — minimal */
@media print {
  .site-header,
  .nav-toggle,
  .hero-image-wrap,
  .services-track,
  .reviews-track {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }
}
