/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: #FDF8F6;
  color: #3d141c;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #7B2D3B;
  border-radius: 2px;
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: #3d141c;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #7B2D3B;
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: #7B2D3B;
  color: #fff;
  border-color: #7B2D3B;
}

.btn-primary:hover {
  background: #5c1f2b;
  border-color: #5c1f2b;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.btn-ghost {
  background: transparent;
  color: #7B2D3B;
  border-color: #7B2D3B;
}

.btn-ghost:hover {
  background: #7B2D3B;
  color: #fff;
  transform: translateY(-2px);
}

.btn-white {
  background: #fff;
  color: #7B2D3B;
  border-color: #fff;
}

.btn-white:hover {
  background: #fdf0f2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* ===== NAVIGATION ===== */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(253, 248, 246, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(123, 45, 59, 0.08);
  transition: all 0.3s ease;
}

.nav-fixed.scrolled {
  background: rgba(253, 248, 246, 0.95);
  box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #3d141c;
}

.nav-logo-text {
  display: none;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d141c;
  transition: color 0.2s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7B2D3B;
  transition: width 0.3s ease;
  border-radius: 2px;
}

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

.nav-links a:hover {
  color: #7B2D3B;
}

.nav-cta {
  background: #7B2D3B;
  color: #fff !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  transition: all 0.3s ease !important;
}

.nav-cta::after {
  display: none;
}

.nav-cta:hover {
  background: #5c1f2b !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(123, 45, 59, 0.3);
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #3d141c;
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(253, 248, 246, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-menu-link {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  color: #3d141c;
  transition: color 0.2s ease;
}

.mobile-menu-link:hover {
  color: #7B2D3B;
}

.mobile-menu-cta {
  margin-top: 16px;
  background: #7B2D3B;
  color: #fff;
  padding: 14px 40px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Inter', system-ui, sans-serif;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: linear-gradient(160deg, #FDF8F6 0%, #FDF0F2 50%, #FCE4E8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(244, 167, 184, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(123, 45, 59, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 24px;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  background: #7B2D3B;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
  line-height: 1.1;
  color: #1f0a0e;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.75;
  color: #3d141c;
  opacity: 0.75;
  margin-bottom: 40px;
  max-width: 480px;
}

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

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #7B2D3B;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: #3d141c;
  opacity: 0.6;
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(123, 45, 59, 0.2);
}

.hero-image {
  position: relative;
}

.hero-image-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(123, 45, 59, 0.15);
}

.hero-image-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  bottom: -40px;
  left: -60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(123, 45, 59, 0.2);
  border: 4px solid #FDF8F6;
}

.hero-image-accent img {
  width: 200px;
  height: 200px;
  object-fit: cover;
}

.hero-image-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: #7B2D3B;
  color: #fff;
  padding: 12px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.3);
}

.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* ===== SERVICES ===== */
.services {
  background: #FDF8F6;
}

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

.services .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(123, 45, 59, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7B2D3B, #f4a7b8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(123, 45, 59, 0.1);
  border-color: rgba(123, 45, 59, 0.15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #fdf0f2, #fce4e8);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D3B;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: #7B2D3B;
  color: #fff;
  transform: scale(1.05);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1f0a0e;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #3d141c;
  opacity: 0.7;
  line-height: 1.7;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, #FDF8F6 0%, #FDF0F2 100%);
}

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

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(123, 45, 59, 0.12);
}

.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -32px;
  right: -16px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(123, 45, 59, 0.18);
  border: 4px solid #FDF0F2;
}

.about-img-secondary img {
  width: 240px;
  height: 300px;
  object-fit: cover;
}

.about-img-pattern {
  position: absolute;
  top: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  background: repeating-linear-gradient(
    45deg,
    rgba(123, 45, 59, 0.06) 0px,
    rgba(123, 45, 59, 0.06) 4px,
    transparent 4px,
    transparent 8px
  );
  border-radius: 16px;
  z-index: -1;
}

.about-content .section-title {
  margin-bottom: 24px;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3d141c;
  opacity: 0.8;
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3d141c;
}

.about-feature svg {
  flex-shrink: 0;
}

/* ===== VISIT / STEPS ===== */
.visit {
  background: #FDF8F6;
}

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

.visit-steps {
  max-width: 720px;
  margin: 0 auto;
}

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

.visit-step-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #7B2D3B;
  opacity: 0.2;
  line-height: 1;
  padding-top: 4px;
}

.visit-step-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f0a0e;
  margin-bottom: 8px;
}

.visit-step-content p {
  font-size: 0.95rem;
  color: #3d141c;
  opacity: 0.7;
  line-height: 1.7;
}

.visit-step-connector {
  width: 2px;
  height: 32px;
  background: linear-gradient(180deg, rgba(123, 45, 59, 0.2), rgba(123, 45, 59, 0.05));
  margin-left: 32px;
  margin-bottom: 20px;
}

/* ===== INSURANCE ===== */
.insurance {
  background: linear-gradient(135deg, #7B2D3B 0%, #5c1f2b 100%);
  color: #fff;
}

.insurance .section-eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.insurance .section-eyebrow::before {
  background: rgba(255, 255, 255, 0.5);
}

.insurance .section-title {
  color: #fff;
}

.insurance-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.insurance-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 32px;
}

.insurance-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

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

.insurance-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.insurance-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
}

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

.insurance-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.insurance-card-alt {
  background: rgba(255, 255, 255, 0.08);
}

.insurance-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.insurance-card h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.insurance-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== CONTACT ===== */
.contact {
  background: linear-gradient(180deg, #FDF8F6 0%, #FDF0F2 100%);
}

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

.contact-info .section-title {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: start;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(123, 45, 59, 0.08);
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7B2D3B;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 0.95rem;
  color: #3d141c;
  line-height: 1.6;
}

.contact-detail a {
  color: #3d141c;
  transition: color 0.2s ease;
}

.contact-detail a:hover {
  color: #7B2D3B;
}

.contact-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(123, 45, 59, 0.1);
}

.contact-form-wrapper {
  width: 100%;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 16px 48px rgba(123, 45, 59, 0.08);
  border: 1px solid rgba(123, 45, 59, 0.06);
}

.contact-form-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1f0a0e;
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-size: 0.9rem;
  color: #3d141c;
  opacity: 0.6;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: #3d141c;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid rgba(123, 45, 59, 0.15);
  border-radius: 12px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  color: #3d141c;
  background: #FDF8F6;
  transition: all 0.2s ease;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D3B;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #3d141c;
  opacity: 0.4;
}

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

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.form-success.show {
  display: flex;
}

.form-success svg {
  opacity: 0.8;
}

.form-success h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #1f0a0e;
}

.form-success p {
  font-size: 0.95rem;
  color: #3d141c;
  opacity: 0.7;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #fce4e8 0%, #f9cdd6 50%, #f4a7b8 100%);
  padding: 80px 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.cta-text h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: #1f0a0e;
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-text p {
  font-size: 1.05rem;
  color: #3d141c;
  opacity: 0.75;
  max-width: 480px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #1f0a0e;
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 56px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.6;
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.9rem;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.footer-col ul a:hover {
  opacity: 1;
  color: #f4a7b8;
}

.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.6;
  margin-bottom: 12px;
}

.footer-col p {
  font-size: 0.9rem;
  opacity: 0.6;
  margin-bottom: 8px;
}

.footer-col a {
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #f4a7b8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.4;
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

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

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

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 120px 0;
  }

  .about-img-main img {
    height: 560px;
  }

  .about-img-secondary img {
    width: 280px;
    height: 340px;
  }
}

@media (min-width: 1024px) {
  .nav-logo-text {
    display: block;
  }

  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

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

  .hero-image-main img {
    height: 600px;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .about-img-main img {
    height: 640px;
  }

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

  .insurance-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .cta-inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4.2rem;
  }

  .hero-image-accent {
    left: -80px;
  }
}
