/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Nunito', sans-serif;
  color: #3D4F60;
  background: #FAFAFA;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Colors ─── */
:root {
  --coral: #E86A5B;
  --coral-dark: #D4574A;
  --coral-light: #FDEDED;
  --charcoal: #3D4F60;
  --charcoal-light: #5A6F82;
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --off-white: #F4F1EE;
  --shadow-sm: 0 2px 8px rgba(61,79,96,0.06);
  --shadow-md: 0 8px 30px rgba(61,79,96,0.10);
  --shadow-lg: 0 16px 50px rgba(61,79,96,0.14);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; color: var(--charcoal); }
.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 560px;
}
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 14px 28px;
  text-align: center;
}
.btn-primary {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
}
.btn-primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,106,91,0.35);
}
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-light:hover {
  background: white;
  color: var(--charcoal);
  border-color: white;
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,79,96,0.06);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--charcoal);
}
.logo-icon { flex-shrink: 0; }
.nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav a:not(.btn) {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--charcoal-light);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.25s ease;
}
.nav a:not(.btn):hover {
  color: var(--coral);
  background: var(--coral-light);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(61,79,96,0.88) 0%,
    rgba(61,79,96,0.72) 50%,
    rgba(232,106,91,0.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 120px 24px 80px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: white;
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero-title .text-coral {
  color: var(--coral);
  display: block;
}
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.25);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  color: white;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: var(--white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(61,79,96,0.07);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: all 0.35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--coral-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.35s ease;
}
.service-card:hover .service-icon {
  background: var(--coral);
}
.service-card:hover .service-icon svg {
  stroke: white;
}
.service-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--charcoal);
}
.service-card p {
  font-size: 0.95rem;
  color: var(--charcoal-light);
  line-height: 1.7;
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--off-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-img-float {
  position: absolute;
  bottom: -40px;
  right: -30px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-img-float img {
  width: 260px;
  height: 190px;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--coral);
  color: white;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 24px rgba(232,106,91,0.4);
}
.about-content .section-title { margin-top: 8px; }
.about-text {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
}

/* ─── Insurance ─── */
.insurance {
  padding: 100px 0;
  background: var(--white);
}
.insurance-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.insurance-content .section-title { margin-top: 8px; }
.insurance-content p {
  font-size: 1rem;
  color: var(--charcoal-light);
  margin-bottom: 28px;
  line-height: 1.8;
}
.insurance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.insurance-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.insurance-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.insurance-visual img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ─── Testimonials ─── */
.testimonials {
  padding: 100px 0;
  background: var(--charcoal);
}
.testimonials .section-tag { color: var(--coral); }
.testimonials .section-title { color: white; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.35s ease;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: white;
  font-size: 0.95rem;
}
.testimonial-author span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}

/* ─── CTA ─── */
.cta {
  padding: 100px 0;
  background: var(--off-white);
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-content {
  padding: 56px 48px;
}
.cta-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.cta-text {
  font-size: 1.05rem;
  color: var(--charcoal-light);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cta-visual {
  border-radius: 0;
  overflow: hidden;
  min-height: 360px;
}
.cta-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  padding: 24px;
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--coral-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.6;
}
.contact-card a {
  color: var(--charcoal);
  font-weight: 700;
  transition: color 0.2s;
}
.contact-card a:hover { color: var(--coral); }
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ─── Contact Form ─── */
.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid rgba(61,79,96,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(232,106,91,0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success svg {
  margin: 0 auto 16px;
}
.form-success h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: var(--charcoal);
}
.form-success p {
  color: var(--charcoal-light);
  font-size: 0.95rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand .logo {
  color: white;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-links h4,
.footer-contact h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 18px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--coral); }
.footer-contact p {
  font-size: 0.92rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--coral); }

/* ─── Reveal Animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .about-grid,
  .insurance-inner,
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img-float { right: 10px; bottom: -20px; }
  .cta-visual { min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav ul {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.35s ease;
    z-index: 999;
  }
  .nav ul.open { transform: translateY(0); }
  .nav a:not(.btn) {
    display: block;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
  }
  .nav .btn { margin-top: 8px; text-align: center; justify-content: center; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { gap: 20px; }
  .stat-number { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: auto; max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .insurance-list { grid-template-columns: 1fr; }
  .cta-content { padding: 36px 24px; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .hero-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero-stat-divider { display: none; }
  .contact-form-wrapper { padding: 24px; }
}
