/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Outfit', sans-serif;
  color: #1a2a3a;
  background: #faf8f6;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,246,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,37,64,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(10,37,64,0.08); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { width: 36px; height: 36px; color: #0a2540; }
.nav__name { font-weight: 700; font-size: 1.1rem; color: #0a2540; letter-spacing: -0.02em; }
.nav__list { display: flex; align-items: center; gap: 8px; list-style: none; }
.nav__link {
  padding: 8px 16px; border-radius: 8px; font-size: 0.9rem; font-weight: 500;
  color: #3a4f65; transition: color 0.2s, background 0.2s;
}
.nav__link:hover { color: #0a2540; background: rgba(10,37,64,0.05); }
.nav__link--cta {
  background: #0a2540; color: #fff !important; margin-left: 4px;
  transition: background 0.2s, transform 0.2s;
}
.nav__link--cta:hover { background: #113a5c; transform: translateY(-1px); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav__bar { width: 22px; height: 2px; background: #0a2540; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 12px; font-weight: 600; font-size: 0.95rem;
  transition: all 0.25s ease; white-space: nowrap;
}
.btn--primary { background: #0a2540; color: #fff; }
.btn--primary:hover { background: #113a5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,37,64,0.2); }
.btn--ghost { background: rgba(255,255,255,0.15); color: #0a2540; border: 1.5px solid rgba(10,37,64,0.2); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: rgba(255,255,255,0.3); border-color: rgba(10,37,64,0.35); }
.btn--light { background: #fff; color: #0a2540; }
.btn--light:hover { background: #f0faf6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ── Section Shared ── */
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; color: #5fb8a4; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; color: #0a2540; line-height: 1.2; margin-bottom: 16px;
}
.section-accent { font-style: italic; color: #5fb8a4; }
.section-desc { font-size: 1.05rem; color: #5a7a94; max-width: 600px; line-height: 1.7; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin: 0 auto; }

/* ── Hero ── */
.hero {
  padding-top: 72px; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #faf8f6 0%, #e8f5f0 50%, #d4f5ec 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(125,211,192,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  padding: 60px 0; position: relative; z-index: 1;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(10,37,64,0.07); color: #0a2540;
  padding: 8px 16px; border-radius: 100px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px;
}
.hero__badge svg { width: 14px; height: 14px; }
.hero__title {
  font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.15; color: #0a2540; margin-bottom: 20px;
}
.hero__accent { font-style: italic; color: #5fb8a4; }
.hero__desc { font-size: 1.1rem; color: #5a7a94; line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 40px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; font-weight: 500; color: #3a4f65; }
.hero__trust-item svg { width: 18px; height: 18px; color: #5fb8a4; flex-shrink: 0; }
.hero__image-wrap { position: relative; }
.hero__image-accent {
  position: absolute; top: -20px; right: -20px; width: 100%; height: 100%;
  border-radius: 24px; background: linear-gradient(135deg, rgba(125,211,192,0.3), rgba(10,37,64,0.08));
  z-index: -1;
}
.hero__image {
  width: 100%; height: 480px; object-fit: cover; border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10,37,64,0.15);
}
.hero__image-badge {
  position: absolute; bottom: -16px; left: 24px;
  background: #fff; border-radius: 16px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(10,37,64,0.12);
  display: flex; align-items: center; gap: 12px;
}
.hero__badge-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: #0a2540; }
.hero__badge-label { font-size: 0.82rem; color: #5a7a94; line-height: 1.3; }

/* ── Services ── */
.services { padding: 100px 0; background: #fff; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.card {
  position: relative; background: #faf8f6; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(10,37,64,0.05); transition: all 0.3s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,37,64,0.08); border-color: rgba(125,211,192,0.3); }
.card__icon {
  width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, #e8f5f0, #d4f5ec);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; color: #5fb8a4; }
.card__title { font-size: 1.15rem; font-weight: 700; color: #0a2540; margin-bottom: 10px; }
.card__desc { font-size: 0.92rem; color: #5a7a94; line-height: 1.7; }
.card__tag {
  position: absolute; top: 20px; right: 20px;
  background: linear-gradient(135deg, #7dd3c0, #5fb8a4); color: #fff;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 100px;
}

/* ── About ── */
.about { padding: 100px 0; background: linear-gradient(180deg, #faf8f6 0%, #e8f5f0 100%); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image-col { position: relative; }
.about__img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(10,37,64,0.1); }
.about__img-main img { width: 100%; height: 480px; object-fit: cover; }
.about__img-side {
  position: absolute; bottom: -32px; right: -32px; width: 220px; border-radius: 20px;
  overflow: hidden; box-shadow: 0 16px 40px rgba(10,37,64,0.15);
  border: 4px solid #fff;
}
.about__img-side img { width: 100%; height: 165px; object-fit: cover; }
.about__stat {
  position: absolute; top: -20px; left: -20px;
  background: #0a2540; color: #fff; border-radius: 16px; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 2px;
}
.about__stat-num { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 600; color: #7dd3c0; }
.about__stat-label { font-size: 0.78rem; opacity: 0.8; }
.about__content { padding: 20px 0; }
.about__text { font-size: 1rem; color: #5a7a94; line-height: 1.8; margin-bottom: 16px; }
.about__highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 32px; }
.highlight { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 500; color: #1a2a3a; }
.highlight svg { width: 18px; height: 18px; color: #5fb8a4; flex-shrink: 0; }

/* ── Why Us ── */
.why-us { padding: 100px 0; background: #fff; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.why-card {
  background: #faf8f6; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(10,37,64,0.05); transition: all 0.3s ease; position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,37,64,0.08); }
.why-card__num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 600;
  color: rgba(125,211,192,0.3); line-height: 1; margin-bottom: 16px;
}
.why-card__title { font-size: 1.1rem; font-weight: 700; color: #0a2540; margin-bottom: 10px; }
.why-card__text { font-size: 0.9rem; color: #5a7a94; line-height: 1.7; }

/* ── Reviews ── */
.reviews { padding: 100px 0; background: linear-gradient(180deg, #faf8f6 0%, #e8f5f0 100%); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.review-card {
  background: #fff; border-radius: 20px; padding: 36px 28px;
  border: 1px solid rgba(10,37,64,0.05); transition: all 0.3s ease; position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,37,64,0.08); }
.review-card__quote { width: 32px; height: 32px; color: rgba(125,211,192,0.4); margin-bottom: 16px; }
.review-card__text { font-size: 0.95rem; color: #3a4f65; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.review-card__author { display: flex; flex-direction: column; gap: 2px; }
.review-card__name { font-weight: 700; font-size: 0.9rem; color: #0a2540; }
.review-card__location { font-size: 0.8rem; color: #5a7a94; }

/* ── CTA Banner ── */
.cta-banner { padding: 80px 0; background: linear-gradient(135deg, #0a2540 0%, #113a5c 60%, #1a4f73 100%); }
.cta-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-banner__title { font-family: 'Playfair Display', serif; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 600; color: #fff; margin-bottom: 8px; }
.cta-banner__text { font-size: 1.05rem; color: rgba(255,255,255,0.7); }
.cta-banner__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact ── */
.contact { padding: 100px 0; background: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__text { font-size: 1rem; color: #5a7a94; line-height: 1.75; margin-bottom: 32px; }
.contact__details { display: flex; flex-direction: column; gap: 24px; margin-bottom: 32px; }
.contact__detail { display: flex; gap: 16px; }
.contact__detail-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: linear-gradient(135deg, #e8f5f0, #d4f5ec);
  display: flex; align-items: center; justify-content: center;
}
.contact__detail-icon svg { width: 22px; height: 22px; color: #5fb8a4; }
.contact__detail dt { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: #5a7a94; margin-bottom: 4px; font-weight: 600; }
.contact__detail dd { font-size: 0.95rem; color: #0a2540; font-weight: 500; line-height: 1.6; }
.contact__detail a { color: #5fb8a4; transition: color 0.2s; }
.contact__detail a:hover { color: #0a2540; }
.contact__map { border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(10,37,64,0.08); }

/* ── Form ── */
.contact__form-wrap { }
.contact__form-card {
  background: #faf8f6; border-radius: 24px; padding: 40px; border: 1px solid rgba(10,37,64,0.05);
}
.contact__form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 600; color: #0a2540; margin-bottom: 8px; }
.contact__form-desc { font-size: 0.9rem; color: #5a7a94; margin-bottom: 28px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form__group label { font-size: 0.85rem; font-weight: 600; color: #1a2a3a; }
.form__group input, .form__group select, .form__group textarea {
  padding: 12px 16px; border-radius: 10px; border: 1.5px solid rgba(10,37,64,0.1);
  background: #fff; font-size: 0.92rem; color: #1a2a3a; font-family: 'Outfit', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form__group input:focus, .form__group select:focus, .form__group textarea:focus {
  border-color: #7dd3c0; box-shadow: 0 0 0 3px rgba(125,211,192,0.2);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__success {
  display: flex; align-items: center; gap: 10px; margin-top: 16px;
  padding: 14px 18px; border-radius: 12px; background: linear-gradient(135deg, #e8f5f0, #d4f5ec);
  color: #1a4f73; font-size: 0.9rem; font-weight: 500;
}
.form__success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── Footer ── */
.footer { background: #0a2540; color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-bottom: 40px; }
.footer__logo { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.1rem; color: #fff; margin-bottom: 12px; }
.footer__logo svg { width: 32px; height: 32px; color: #7dd3c0; }
.footer__tagline { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer__nav { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a { font-size: 0.9rem; transition: color 0.2s; }
.footer__nav a:hover { color: #7dd3c0; }
.footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__contact p { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; }
.footer__contact svg { width: 16px; height: 16px; color: #7dd3c0; flex-shrink: 0; }
.footer__contact a { transition: color 0.2s; }
.footer__contact a:hover { color: #7dd3c0; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; font-size: 0.82rem; }

/* ── Mobile Nav ── */
@media (max-width: 900px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(250,248,246,0.97); backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
  }
  .nav__menu.open { opacity: 1; visibility: visible; }
  .nav__list { flex-direction: column; gap: 8px; }
  .nav__link { font-size: 1.1rem; padding: 14px 24px; }
  .nav__link--cta { margin-left: 0; margin-top: 8px; }
  .nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero__desc { margin: 0 auto 32px; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__image { height: 360px; }
  .hero__image-badge { left: 50%; transform: translateX(-50%); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__img-side { right: 0; }
  .about__stat { left: 0; }
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .services__grid, .why__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .about__highlights { grid-template-columns: 1fr; }
  .hero__image { height: 280px; }
  .about__img-side { display: none; }
  .contact__form-card { padding: 24px; }
  .container { padding: 0 16px; }
}
