/* ============================================
   ZAINAB EYE CLINIC — STYLESHEET
   Palette: Terracotta + Sand + Cream
   ============================================ */

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

:root {
  --terracotta: #C4653A;
  --terracotta-dark: #A8522E;
  --terracotta-light: #D4845A;
  --sand: #E8D5C0;
  --sand-light: #F5EDE3;
  --cream: #FDF8F3;
  --cream-dark: #F0E4D8;
  --charcoal: #2C2420;
  --charcoal-light: #4A3F38;
  --warm-gray: #7A6B63;
  --white: #FFFFFF;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --shadow-sm: 0 1px 3px rgba(44, 36, 32, 0.08);
  --shadow-md: 0 4px 16px rgba(44, 36, 32, 0.1);
  --shadow-lg: 0 8px 32px rgba(44, 36, 32, 0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background-color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

/* ============================================
   DECORATIVE BLOBS
   ============================================ */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.blob--1 {
  width: 500px;
  height: 500px;
  background: var(--terracotta);
  top: -100px;
  right: -100px;
}

.blob--2 {
  width: 400px;
  height: 400px;
  background: var(--sand);
  bottom: 20%;
  left: -80px;
}

.blob--3 {
  width: 300px;
  height: 300px;
  background: var(--terracotta-light);
  bottom: -50px;
  right: 10%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(253, 248, 243, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  transition: var(--transition);
}

.navbar.scrolled .navbar__logo {
  color: var(--charcoal);
}

.navbar__logo-icon {
  color: var(--terracotta);
}

.navbar__nav {
  display: flex;
  align-items: center;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__link {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .navbar__link {
  color: var(--charcoal-light);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--terracotta);
  background: rgba(196, 101, 58, 0.08);
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--terracotta);
  color: var(--white) !important;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar__cta:hover {
  background: var(--terracotta-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(196, 101, 58, 0.35);
}

/* Mobile toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.navbar__toggle-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar.scrolled .navbar__toggle-line {
  background: var(--charcoal);
}

.navbar__toggle.active .navbar__toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active .navbar__toggle-line:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active .navbar__toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.pexels.com/photos/6607265/pexels-photo-6607265.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 36, 32, 0.82) 0%,
    rgba(168, 82, 46, 0.65) 50%,
    rgba(44, 36, 32, 0.78) 100%
  );
  z-index: 2;
}

.hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.hero__shape {
  position: absolute;
}

.hero__shape--circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.1;
  top: 10%;
  right: -60px;
}

.hero__shape--triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 55px 95px 55px;
  border-color: transparent transparent var(--sand) transparent;
  opacity: 0.15;
  bottom: 18%;
  right: 8%;
  transform: rotate(15deg);
}

.hero__shape--dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--terracotta-light);
  opacity: 0.4;
  top: 25%;
  right: 22%;
}

.hero__shape--ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid var(--sand);
  opacity: 0.15;
  bottom: 25%;
  left: 5%;
}

.hero__content {
  position: relative;
  z-index: 4;
  padding: 120px 0 80px;
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(232, 213, 192, 0.15);
  border: 1px solid rgba(232, 213, 192, 0.25);
  border-radius: var(--radius-xl);
  color: var(--sand);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
  margin-bottom: 24px;
}

.hero__accent {
  color: var(--sand);
  font-style: italic;
  font-weight: 600;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero__trust-item svg {
  color: var(--terracotta-light);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.5);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(8px); }
  60% { transform: translateX(-50%) translateY(4px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 101, 58, 0.4);
}

.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--terracotta {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn--terracotta:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 101, 58, 0.4);
}

.btn--full {
  width: 100%;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(196, 101, 58, 0.1);
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  margin-bottom: 16px;
}

.section-tag--light {
  background: rgba(232, 213, 192, 0.2);
  color: var(--sand);
}

.section-tag--dark {
  background: rgba(196, 101, 58, 0.1);
  color: var(--terracotta);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.section-title--light {
  color: var(--white);
}

.section-title--dark {
  color: var(--charcoal);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  line-height: 1.7;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid rgba(232, 213, 192, 0.5);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--terracotta));
  border-radius: 4px 4px 0 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-card:hover::before {
  height: 5px;
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(196, 101, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon {
  background: var(--terracotta);
  color: var(--white);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.service-card__desc {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.about__bg-shape {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--sand-light);
  top: -150px;
  right: -150px;
  z-index: -1;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about__image-wrap {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 6/7;
}

.about__image-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--terracotta);
  opacity: 0.15;
  border-radius: var(--radius-lg);
  bottom: -30px;
  right: -30px;
  z-index: -1;
}

.about__stat-card {
  position: absolute;
  bottom: 24px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__stat-number {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--terracotta);
}

.about__stat-label {
  font-size: 0.82rem;
  color: var(--warm-gray);
  font-weight: 500;
}

.about__content {
  position: relative;
}

.about__text {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal);
}

.about__highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(196, 101, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.about__content .btn {
  margin-top: 8px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.why-us__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(232, 213, 192, 0.04) 1px, transparent 0);
  background-size: 32px 32px;
  pointer-events: none;
}

.why-us__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(196, 101, 58, 0.4);
  transform: translateY(-4px);
}

.why-card__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--terracotta);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================
   INSURANCE
   ============================================ */
.insurance {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.insurance__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.insurance__left {
  position: sticky;
  top: 120px;
}

.insurance__text {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

.insurance__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.insurance__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
}

.insurance__list li svg {
  color: var(--terracotta);
  flex-shrink: 0;
}

.insurance__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.insurance__card {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.insurance__card:hover {
  transform: translateX(6px);
}

.insurance__card--accent {
  background: var(--terracotta);
  color: var(--white);
}

.insurance__card--sand {
  background: var(--sand-light);
  color: var(--charcoal);
}

.insurance__card--terracotta {
  background: var(--sand);
  color: var(--charcoal);
}

.insurance__card svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.insurance__card--accent svg {
  color: var(--white);
}

.insurance__card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact__bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--sand-light);
  bottom: -200px;
  left: -200px;
  z-index: -1;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__text {
  font-size: 1.02rem;
  color: var(--charcoal-light);
  line-height: 1.75;
  margin-bottom: 36px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact__info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(196, 101, 58, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

.contact__info-item strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--warm-gray);
  margin-bottom: 4px;
  font-weight: 600;
}

.contact__info-item p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact__info-item a {
  color: var(--terracotta);
  font-weight: 500;
  transition: var(--transition);
}

.contact__info-item a:hover {
  color: var(--terracotta-dark);
  text-decoration: underline;
}

.contact__right {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(232, 213, 192, 0.4);
}

.contact__form-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 101, 58, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--warm-gray);
  opacity: 0.6;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(196, 101, 58, 0.08);
  border-radius: var(--radius-sm);
  color: var(--terracotta-dark);
  font-size: 0.92rem;
  font-weight: 500;
}

.form-success svg {
  flex-shrink: 0;
  color: var(--terracotta);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__logo svg {
  color: var(--terracotta-light);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 280px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links strong {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer__links a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--terracotta-light);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact strong {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.footer__contact a {
  transition: var(--transition);
}

.footer__contact a:hover {
  color: var(--terracotta-light);
}

.footer__contact p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__bottom {
  padding: 24px 0;
}

.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer__bottom p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SCROLL REVEAL (progressive enhancement)
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }
  .reveal-delay-5 { transition-delay: 0.5s; }
  .reveal-delay-6 { transition-delay: 0.6s; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-us__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner,
  .insurance__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .insurance__left {
    position: static;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .navbar__cta {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 80px 24px 32px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__link {
    color: var(--charcoal);
    padding: 12px 16px;
    font-size: 1rem;
  }

  .navbar__link:hover {
    background: rgba(196, 101, 58, 0.08);
    color: var(--terracotta);
  }

  .hero__content {
    padding: 100px 0 100px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero__trust {
    gap: 16px;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .about__image-accent {
    display: none;
  }

  .about__stat-card {
    left: 0;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
  }

  .insurance__card:hover {
    transform: none;
  }

  .contact__right {
    padding: 28px;
  }

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

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero__badge {
    font-size: 0.72rem;
  }

  .service-card {
    padding: 28px 22px;
  }

  .contact__right {
    padding: 20px;
  }
}

/* Mobile menu overlay */
.navbar__overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 36, 32, 0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar__overlay.active {
  opacity: 1;
  pointer-events: all;
}
