/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #0A2344;
  background: #F7FBF9;
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #2A9D8F;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: #2A9D8F;
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #0A2344;
  margin-bottom: 16px;
}
.section-title em { font-style: italic; color: #2A9D8F; }
.section-sub {
  font-size: 1.05rem;
  color: #4A6B7C;
  max-width: 560px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn--primary {
  background: #2A9D8F;
  color: #fff;
  border-color: #2A9D8F;
}
.btn--primary:hover { background: #238B7E; border-color: #238B7E; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(42,157,143,0.3); }
.btn--ghost {
  background: transparent;
  color: #0A2344;
  border-color: #0A2344;
}
.btn--ghost:hover { background: #0A2344; color: #fff; transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 0.88rem; }
.btn--light { background: #fff; color: #0A2344; border-color: #fff; }
.btn--light:hover { background: #F0FAF6; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn--ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn--full { width: 100%; justify-content: center; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247,251,249,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10,35,68,0.06);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(10,35,68,0.08); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #0A2344;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A6B7C;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:not(.btn):hover { color: #2A9D8F; }
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #2A9D8F;
  border-radius: 2px;
  transition: width 0.3s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #0A2344;
  border-radius: 2px;
  transition: all 0.3s;
}
.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 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F7FBF9 0%, #E8F5F0 40%, #D5EDE4 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(42,157,143,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(10,35,68,0.05) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(42,157,143,0.12);
  color: #2A9D8F;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: #0A2344;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #4A6B7C;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10,35,68,0.12);
  position: relative;
}
.hero-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.hero-card-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0A2344;
}

/* Stat cards */
.stat-cards {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 12px;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}
.stat-card {
  background: #fff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(10,35,68,0.1);
  min-width: 170px;
  animation: float 4s ease-in-out infinite;
}
.stat-card:nth-child(2) { animation-delay: -1.3s; margin-right: 20px; }
.stat-card:nth-child(3) { animation-delay: -2.6s; }
.stat-card--accent { background: linear-gradient(135deg, #2A9D8F, #238B7E); color: #fff; }
.stat-card--accent .stat-label { color: rgba(255,255,255,0.85); }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0A2344;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-card--accent .stat-num { color: #fff; }
.stat-label {
  font-size: 0.78rem;
  color: #4A6B7C;
  line-height: 1.3;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ── Trust bar ── */
.trust-bar {
  background: #fff;
  border-top: 1px solid rgba(10,35,68,0.05);
  border-bottom: 1px solid rgba(10,35,68,0.05);
  padding: 24px 0;
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4A6B7C;
}
.trust-item svg { color: #2A9D8F; }

/* ── About ── */
.about {
  padding: 100px 0;
  background: #F7FBF9;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 600px;
}
.about-img {
  border-radius: 20px;
  overflow: hidden;
  position: absolute;
  box-shadow: 0 16px 48px rgba(10,35,68,0.1);
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-img--1 {
  width: 300px;
  height: 400px;
  top: 0;
  left: 0;
  z-index: 1;
}
.about-img--2 {
  width: 260px;
  height: 280px;
  bottom: 20px;
  right: 0;
  z-index: 2;
  border: 4px solid #F7FBF9;
}
.about-img-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #0A2344;
}
.about-content { padding: 20px 0; }
.about-text {
  font-size: 1.02rem;
  color: #4A6B7C;
  margin-bottom: 16px;
  line-height: 1.75;
}
.about-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(42,157,143,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A9D8F;
}
.value-item strong {
  display: block;
  font-size: 0.95rem;
  color: #0A2344;
  margin-bottom: 2px;
}
.value-item span {
  font-size: 0.88rem;
  color: #4A6B7C;
  line-height: 1.5;
}

/* ── Services ── */
.services {
  padding: 100px 0;
  background: #fff;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #F7FBF9;
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(10,35,68,0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2A9D8F, #7DDCBF);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(10,35,68,0.08); }
.service-card:hover::before { opacity: 1; }
.service-card--accent {
  background: linear-gradient(135deg, #0A2344, #143A5C);
  color: #fff;
}
.service-card--accent::before { background: linear-gradient(90deg, #2A9D8F, #7DDCBF); opacity: 1; }
.service-card--accent h3,
.service-card--accent .service-list li { color: #fff; }
.service-card--accent .service-list li { opacity: 0.8; }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(42,157,143,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A9D8F;
  margin-bottom: 20px;
}
.service-card--accent .service-icon { background: rgba(42,157,143,0.25); }
.service-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #0A2344;
  margin-bottom: 10px;
}
.service-card > p {
  font-size: 0.92rem;
  color: #4A6B7C;
  margin-bottom: 20px;
  line-height: 1.65;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 0.85rem;
  color: #4A6B7C;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #2A9D8F;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Areas ── */
.areas {
  padding: 100px 0;
  background: #F7FBF9;
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.area-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/5;
  cursor: pointer;
}
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.area-card:hover img { transform: scale(1.08); }
.area-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,35,68,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: background 0.3s;
}
.area-card:hover .area-card-overlay { background: linear-gradient(to top, rgba(10,35,68,0.9) 0%, rgba(10,35,68,0.2) 70%); }
.area-card-overlay h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.area-card-overlay p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.areas-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(42,157,143,0.08);
  border: 1px solid rgba(42,157,143,0.15);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: #0A2344;
}
.areas-note svg { color: #2A9D8F; flex-shrink: 0; }

/* ── Testimonials ── */
.testimonials {
  padding: 100px 0;
  background: #fff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: #F7FBF9;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(10,35,68,0.05);
  transition: all 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,35,68,0.07); }
.testimonial-stars {
  display: flex;
  gap: 4px;
  color: #F5A623;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 0.95rem;
  color: #4A6B7C;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #2A9D8F, #7DDCBF);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: #0A2344;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: #4A6B7C;
}

/* ── CTA ── */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #0A2344 0%, #143A5C 100%);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 50%, rgba(42,157,143,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cta-label { color: #7DDCBF; }
.cta-label::before { background: #7DDCBF; }
.cta-title { color: #fff; margin-bottom: 16px; }
.cta-title em { color: #7DDCBF; }
.cta-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Contact ── */
.contact {
  padding: 100px 0;
  background: #F7FBF9;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-text {
  font-size: 1.02rem;
  color: #4A6B7C;
  margin-bottom: 32px;
  line-height: 1.75;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(42,157,143,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2A9D8F;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-size: 0.95rem;
  color: #0A2344;
}
.contact-detail span,
.contact-detail a {
  font-size: 0.9rem;
  color: #4A6B7C;
  line-height: 1.5;
}
.contact-detail a:hover { color: #2A9D8F; }
.contact-detail span { white-space: pre-line; }

/* Form */
.contact-form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(10,35,68,0.06);
  border: 1px solid rgba(10,35,68,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0A2344;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10,35,68,0.12);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  color: #0A2344;
  background: #F7FBF9;
  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: #2A9D8F;
  box-shadow: 0 0 0 3px rgba(42,157,143,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #A0B4BE; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note {
  font-size: 0.78rem;
  color: #A0B4BE;
  text-align: center;
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  color: #2A9D8F;
}
.form-success h3 {
  font-size: 1.4rem;
  color: #0A2344;
  margin-bottom: 8px;
}
.form-success p {
  font-size: 0.95rem;
  color: #4A6B7C;
}

/* ── Footer ── */
.footer {
  background: #0A2344;
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.65; max-width: 260px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links strong {
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a,
.footer-links span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  line-height: 1.5;
}
.footer-links a:hover { color: #7DDCBF; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
  .stat-cards { position: static; transform: none; flex-direction: row; justify-content: center; margin-top: 20px; }
  .stat-card { animation: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 400px; max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(247,251,249,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid rgba(10,35,68,0.06);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 12px 32px rgba(10,35,68,0.08);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-title { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .area-card { aspect-ratio: 16/9; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .trust-items { gap: 24px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .stat-cards { flex-direction: column; align-items: center; }
  .stat-card { min-width: auto; width: 100%; }
  .about-images { height: 320px; }
  .about-img--1 { width: 200px; height: 280px; }
  .about-img--2 { width: 180px; height: 200px; }
  .cta-actions { flex-direction: column; }
}

/* ── Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
