:root {
  --navy: #0B1F3A;
  --navy-deep: #061429;
  --navy-soft: #1A3258;
  --white: #FFFFFF;
  --grey-50: #F7F9FC;
  --grey-100: #EEF2F7;
  --grey-200: #E1E8F0;
  --grey-300: #C9D3E0;
  --grey-500: #7A8699;
  --grey-700: #4A5567;
  --sky: #7CB8E8;
  --sky-soft: #DCEBF7;
  --sky-deep: #4A8DC2;
  --accent: #5BA3D8;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.04);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.08);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.12);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--grey-200);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky-deep) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.2);
}
.logo-mark::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--sky-soft);
  border-radius: 50%;
  top: 8px;
  right: 8px;
  box-shadow: inset 0 0 0 3px var(--white);
}
.logo-mark svg { color: white; z-index: 2; }

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sky-deep);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-links a:hover { color: var(--sky-deep); }
.nav-links a:hover::after { transform: scaleX(1); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  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.6s ease;
}
.btn:hover::before { left: 100%; }
.btn > * { position: relative; z-index: 1; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(11, 31, 58, 0.2);
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.32);
}
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid var(--grey-200);
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: var(--grey-50);
  transform: translateY(-2px);
}
.btn-sky {
  background: var(--sky-deep);
  color: white;
}
.btn-sky:hover {
  background: #3a7bb0;
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1100;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

/* ===== HERO ===== */
.hero {
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 80% 20%, rgba(124, 184, 232, 0.15), transparent),
    linear-gradient(180deg, var(--grey-50) 0%, var(--white) 100%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 184, 232, 0.12), transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--sky-soft);
  color: var(--navy);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--sky-deep);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero h1 em {
  font-style: italic;
  color: var(--sky-deep);
  font-weight: 400;
}

.hero p.lead {
  font-size: 18px;
  color: var(--grey-700);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.hero-stat span {
  font-size: 13px;
  color: var(--grey-500);
  margin-top: 6px;
  display: block;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 540px;
}
.hero-image-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image-frame svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-badge {
  position: absolute;
  background: white;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
}
.hero-badge-1 {
  bottom: 30px;
  left: -30px;
  animation: float 6s ease-in-out infinite;
}
.hero-badge-2 {
  top: 40px;
  right: -20px;
  animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-badge-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--sky-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-deep);
}
.hero-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.hero-badge-text span {
  font-size: 12px;
  color: var(--grey-500);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  color: white;
  padding: 32px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(124, 184, 232, 0.15);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.trust-text span {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ===== SECTIONS ===== */
section { padding: 100px 0; }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-head .eyebrow {
  display: inline-block;
  color: var(--sky-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}
.section-head h2 em {
  font-style: italic;
  color: var(--sky-deep);
  font-weight: 400;
}
.section-head p {
  font-size: 17px;
  color: var(--grey-700);
  line-height: 1.6;
}

/* ===== SERVICES ===== */
#services { background: var(--grey-50); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, border-color 0.4s ease;
  border: 1px solid var(--grey-100);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--sky-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124, 184, 232, 0.15), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover::after { opacity: 1; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--sky-soft);
  color: var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: white;
  transform: rotate(-6deg) scale(1.08);
}
.service-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  font-size: 14px;
  color: var(--grey-700);
  margin-bottom: 20px;
  line-height: 1.6;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; color: var(--sky-deep); }

/* ===== WHY CHOOSE US ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.why-card {
  padding: 36px 32px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--grey-100);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--sky-soft);
  background: var(--grey-50);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--sky-deep) 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.why-card p {
  color: var(--grey-700);
  font-size: 15px;
}

/* ===== PRICING ===== */
#pricing { background: var(--grey-50); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--grey-100);
  transition: var(--transition);
  position: relative;
}
.price-card.featured {
  background: var(--navy);
  color: white;
  transform: scale(1.04);
  border-color: var(--navy);
}
.price-card.featured h3 { color: white; }
.price-card.featured .price-amount { color: var(--sky); }
.price-card.featured .price-meta { color: rgba(255,255,255,0.6); }
.price-card:not(.featured):hover {
  border-color: var(--sky-soft);
  box-shadow: var(--shadow-sm);
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sky);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}
.price-meta {
  font-size: 13px;
  color: var(--grey-500);
  margin-bottom: 20px;
}
.price-amount {
  font-family: 'Fraunces', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
  line-height: 1;
}
.price-amount sup {
  font-size: 16px;
  font-weight: 500;
  vertical-align: top;
  margin-right: 2px;
}
.price-from {
  font-size: 12px;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.price-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 24px;
  font-size: 14px;
}
.price-features li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--sky-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%234A8DC2' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.price-card.featured .price-features li::before {
  background-color: rgba(124, 184, 232, 0.2);
}
.price-btn {
  width: 100%;
  padding: 12px;
  border-radius: 100px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.price-btn:hover {
  background: var(--navy);
  color: white;
}
.price-card.featured .price-btn {
  background: var(--sky);
  border-color: var(--sky);
  color: var(--navy);
}
.price-card.featured .price-btn:hover {
  background: white;
  border-color: white;
}
.pricing-note {
  text-align: center;
  margin-top: 32px;
  color: var(--grey-500);
  font-size: 14px;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.gallery-item .ba-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ba-container svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ba-label {
  position: absolute;
  top: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 2;
}
.ba-before {
  left: 12px;
  background: rgba(11, 31, 58, 0.85);
  color: white;
  backdrop-filter: blur(8px);
}
.ba-after {
  right: 12px;
  background: var(--sky);
  color: var(--navy);
}
.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: white;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
  z-index: 2;
}
.ba-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.ba-divider::after {
  content: '⇆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--navy);
  font-size: 14px;
  z-index: 3;
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(11, 31, 58, 0.85));
  color: white;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}
.gallery-caption span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 2px;
}

/* ===== PROCESS ===== */
#process { background: var(--navy); color: white; position: relative; overflow: hidden; }
#process::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 184, 232, 0.15), transparent 70%);
  border-radius: 50%;
}
#process .section-head h2 { color: white; }
#process .section-head h2 em { color: var(--sky); }
#process .section-head p { color: rgba(255,255,255,0.7); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}
.process-step {
  position: relative;
  text-align: center;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(50% + 50px);
  right: calc(-50% + 50px);
  height: 2px;
  background: linear-gradient(90deg, var(--sky-deep), transparent);
  z-index: 0;
}
.process-step:last-child::after { display: none; }
.process-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(124, 184, 232, 0.1);
  border: 2px solid var(--sky-deep);
  color: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  background-color: var(--navy);
}
.process-step h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 10px;
}
.process-step p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--grey-100);
  position: relative;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}
.review-stars {
  color: #FFB800;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--grey-700);
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--sky-deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 18px;
}
.author-info strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}
.author-info span {
  color: var(--grey-500);
  font-size: 13px;
}

/* ===== FAQ ===== */
#faq { background: var(--grey-50); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  border: 1px solid var(--grey-100);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open {
  border-color: var(--sky-soft);
  box-shadow: var(--shadow-sm);
}
.faq-question {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  user-select: none;
  transition: background 0.2s;
}
.faq-question:hover { background: var(--grey-50); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--sky-soft);
  color: var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 18px;
  font-weight: 300;
}
.faq-item.open .faq-icon {
  background: var(--navy);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 28px 24px;
  color: var(--grey-700);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 20px;
}
.contact-info h2 em {
  font-style: italic;
  color: var(--sky-deep);
  font-weight: 400;
}
.contact-info > p {
  color: var(--grey-700);
  font-size: 17px;
  margin-bottom: 36px;
  line-height: 1.6;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--grey-100);
}
.contact-item:last-child { border-bottom: none; }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--sky-soft);
  color: var(--sky-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 14px;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-detail span, .contact-detail a {
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
.contact-detail a:hover { color: var(--sky-deep); }

.contact-form {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-100);
}
.contact-form h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.contact-form > p {
  color: var(--grey-500);
  font-size: 14px;
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--grey-50);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--sky-deep);
  background: white;
  box-shadow: 0 0 0 4px rgba(124, 184, 232, 0.15);
}
.form-control::placeholder { color: var(--grey-500); }
textarea.form-control {
  resize: vertical;
  min-height: 110px;
  font-family: inherit;
}
.contact-form .btn {
  width: 100%;
  margin-top: 8px;
}
.map-container {
  margin-top: 28px;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 200px;
  background: var(--grey-100);
  position: relative;
}
.map-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  background: linear-gradient(135deg, #DCEBF7 0%, #F7F9FC 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--navy);
}
.map-placeholder svg { color: var(--sky-deep); }

.service-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.area-pill {
  padding: 6px 14px;
  background: var(--sky-soft);
  color: var(--navy);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer .logo { color: white; }
.footer p {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
}
.footer h4 {
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--sky); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1); }
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Staggered child reveal */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.stagger-children.visible > *:nth-child(1) { transition-delay: 0.05s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(2) { transition-delay: 0.15s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(3) { transition-delay: 0.25s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(4) { transition-delay: 0.35s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(5) { transition-delay: 0.45s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(6) { transition-delay: 0.55s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(7) { transition-delay: 0.65s; opacity: 1; transform: translateY(0); }
.stagger-children.visible > *:nth-child(8) { transition-delay: 0.75s; opacity: 1; transform: translateY(0); }

/* Hero entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.hero-eyebrow { animation: fadeUp 0.7s ease-out 0.1s both; }
.hero h1 { animation: fadeUp 0.8s ease-out 0.2s both; }
.hero p.lead { animation: fadeUp 0.8s ease-out 0.35s both; }
.hero-buttons { animation: fadeUp 0.8s ease-out 0.5s both; }
.hero-stats { animation: fadeUp 0.8s ease-out 0.65s both; }
.hero-visual { animation: scaleIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both; }
.hero-badge-1 { animation: fadeRight 0.8s ease-out 0.9s both, float 6s ease-in-out 1.7s infinite; }
.hero-badge-2 { animation: fadeLeft 0.8s ease-out 1.1s both, float 6s ease-in-out 3.1s infinite; }

/* Number counter pulse */
@keyframes countPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Roller paint sweep animation on hero illustration */
@keyframes paintSweep {
  0% { stroke-dashoffset: 200; opacity: 0; }
  30% { opacity: 0.7; }
  100% { stroke-dashoffset: 0; opacity: 0.7; }
}

/* Hover ripple for cards */
@keyframes ripple {
  to { transform: scale(2); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid .price-card:nth-child(4),
  .pricing-grid .price-card:nth-child(5) { grid-column: span 1; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 460px; max-width: 580px; margin: 0 auto; width: 100%; }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }

  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 90px 28px 32px;
    gap: 4px;
    box-shadow: -20px 0 60px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-links.active { right: 0; }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--grey-100);
    font-size: 16px;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s;
  }
  .nav-links.active a {
    opacity: 1;
    transform: translateX(0);
  }
  .nav-links.active li:nth-child(1) a { transition-delay: 0.1s; }
  .nav-links.active li:nth-child(2) a { transition-delay: 0.15s; }
  .nav-links.active li:nth-child(3) a { transition-delay: 0.2s; }
  .nav-links.active li:nth-child(4) a { transition-delay: 0.25s; }
  .nav-links.active li:nth-child(5) a { transition-delay: 0.3s; }
  .nav-links.active li:nth-child(6) a { transition-delay: 0.35s; }
  .nav-links.active li:nth-child(7) a { transition-delay: 0.4s; }
  .nav-links.active li:nth-child(8) a { transition-delay: 0.45s; }

  .nav-links a::after { display: none; }
  .nav > .btn { display: none; }
  .nav-mobile-cta { margin-top: 20px; width: 100%; border-bottom: none !important; padding: 0 !important; }
  .nav-mobile-cta .btn { width: 100%; }

  /* Backdrop overlay */
  .menu-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 58, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
  }
  .menu-backdrop.active {
    opacity: 1;
    pointer-events: auto;
  }

  .hero { padding: 100px 0 50px; }
  .hero h1 { font-size: 38px; line-height: 1.1; }
  .hero p.lead { font-size: 16px; }
  .hero-visual { height: 340px; }
  .hero-badge-1 { left: 0; bottom: 20px; padding: 12px 14px; }
  .hero-badge-2 { right: 0; top: 20px; padding: 12px 14px; }
  .hero-badge-icon { width: 36px; height: 36px; }
  .hero-badge-text strong { font-size: 13px; }
  .hero-badge-text span { font-size: 11px; }
  .hero-stats { gap: 24px; }
  .hero-stat strong { font-size: 26px; }
  .hero-stat span { font-size: 12px; }

  .section-head { margin-bottom: 44px; }
  .section-head h2 { font-size: 30px; }
  .section-head p { font-size: 15px; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .trust-icon { width: 38px; height: 38px; }
  .trust-text strong { font-size: 14px; }
  .trust-text span { font-size: 12px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .service-card { padding: 24px 20px; }
  .service-card h3 { font-size: 17px; }
  .service-card p { font-size: 13px; margin-bottom: 16px; }

  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 28px 24px; }

  .pricing-grid { grid-template-columns: 1fr; gap: 16px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-4px); }

  .gallery-grid { grid-template-columns: 1fr; gap: 16px; }
  .gallery-item { aspect-ratio: 16/10; }

  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .process-step::after { display: none; }
  .process-number { width: 64px; height: 64px; font-size: 26px; margin-bottom: 18px; }
  .process-step h3 { font-size: 17px; }

  .reviews-grid { grid-template-columns: 1fr; }
  .review-card { padding: 26px; }
  .review-text { font-size: 14px; }

  .faq-question { padding: 18px 22px; font-size: 15px; gap: 14px; }
  .faq-answer-inner { padding: 0 22px 20px; font-size: 14px; }

  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-form { padding: 28px 24px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-info h2 { font-size: 30px; }
  .contact-info > p { font-size: 15px; }
  .contact-item { padding: 16px 0; gap: 14px; }
  .contact-icon { width: 40px; height: 40px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer { padding: 50px 0 24px; }
  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }

  .hero-buttons { gap: 10px; }
  .hero-buttons .btn { flex: 1; padding: 13px 18px; font-size: 14px; }
}

@media (max-width: 480px) {
  section { padding: 56px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero { padding: 90px 0 40px; }
  .hero h1 { font-size: 32px; }
  .hero-visual { height: 280px; }
  .hero-badge-1 { left: -10px; }
  .hero-badge-2 { right: -10px; }
  .section-head h2 { font-size: 26px; }
  .price-amount { font-size: 32px; }
  .whatsapp-float { width: 56px; height: 56px; bottom: 16px; right: 16px; }
  .whatsapp-float svg { width: 28px; height: 28px; }

  /* Make header more compact on small screens */
  .header-inner { padding: 14px 0; }
  .logo { font-size: 18px; gap: 8px; }
  .logo-mark { width: 34px; height: 34px; border-radius: 10px; }
  .logo-mark svg { width: 16px; height: 16px; }

  .container { padding: 0 16px; }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
