/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #0A2342;
  background: #F0FAF7;
  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', serif; font-weight: 700; line-height: 1.2; }
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0A2342;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: #0A2342;
}
.section-sub {
  font-size: 1.1rem;
  color: #2C5F7C;
  max-width: 560px;
  line-height: 1.7;
}
.accent-gradient {
  background: linear-gradient(135deg, #0A2342 0%, #1B4965 50%, #5EEAD4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== 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: #0A2342;
  color: #F0FAF7;
  border-color: #0A2342;
}
.btn-primary:hover {
  background: #1B4965;
  border-color: #1B4965;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10, 35, 66, 0.25);
}
.btn-ghost {
  background: transparent;
  color: #F0FAF7;
  border-color: rgba(240, 250, 247, 0.5);
}
.btn-ghost:hover {
  background: rgba(240, 250, 247, 0.15);
  border-color: #F0FAF7;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(240, 250, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(10, 35, 66, 0.08);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(10, 35, 66, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A2342;
}
.logo-accent {
  color: #5EEAD4;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  gap: 28px;
}
.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: #0A2342;
  position: relative;
  transition: color 0.3s ease;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #5EEAD4;
  transition: width 0.3s ease;
}
.main-nav a:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 50px;
  background: #0A2342;
  color: #5EEAD4;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
}
.nav-cta:hover {
  background: #1B4965;
  transform: translateY(-1px);
}

/* NAV TOGGLE */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 36px;
  height: 36px;
  position: relative;
}
.hamburger {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 2px;
  background: #0A2342;
  box-shadow: 0 -7px 0 #0A2342, 0 7px 0 #0A2342;
  transition: all 0.3s ease;
}
.nav-toggle[aria-expanded="true"] .hamburger {
  box-shadow: 0 0 0 transparent;
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background: #0A2342;
  transform: rotate(90deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0A2342 0%, #1B4965 40%, #2D6A8F 70%, #5EEAD4 100%);
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.orb-1 {
  width: 600px;
  height: 600px;
  background: #5EEAD4;
  top: -200px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}
.orb-2 {
  width: 400px;
  height: 400px;
  background: #90CDF4;
  bottom: -100px;
  left: 10%;
  animation: float 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 300px;
  height: 300px;
  background: #B2F5EA;
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}
.hero-content { color: #F0FAF7; }
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5EEAD4;
  margin-bottom: 20px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #F0FAF7;
}
.hero-headline .accent-gradient {
  background: linear-gradient(135deg, #5EEAD4 0%, #B2F5EA 50%, #90CDF4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(240, 250, 247, 0.8);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(240, 250, 247, 0.9);
}
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 32px 64px rgba(10, 35, 66, 0.3);
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  background: #F0FAF7;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(10, 35, 66, 0.15);
  font-weight: 600;
  font-size: 0.95rem;
  color: #0A2342;
}
.hero-badge svg { color: #5EEAD4; }

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: #F0FAF7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid rgba(10, 35, 66, 0.06);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A2342, #5EEAD4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(10, 35, 66, 0.1);
}
.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #E8FAF5, #D1FAE8);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.service-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #0A2342;
}
.service-desc {
  font-size: 0.95rem;
  color: #2C5F7C;
  line-height: 1.7;
}

/* ===== WHY US ===== */
.why-us {
  padding: 120px 0;
  background: #ffffff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(10, 35, 66, 0.1);
}
.why-content .section-sub { margin-bottom: 32px; }
.why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: #2C5F7C;
  line-height: 1.6;
}
.why-list strong { color: #0A2342; }

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: linear-gradient(180deg, #F0FAF7 0%, #E8FAF5 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-group {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 48px rgba(10, 35, 66, 0.12);
}
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 280px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 40px rgba(10, 35, 66, 0.15);
  border: 4px solid #F0FAF7;
}
.about-text .section-sub { margin-bottom: 20px; }
.about-text p {
  font-size: 1rem;
  color: #2C5F7C;
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(10, 35, 66, 0.1);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #0A2342;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.85rem;
  color: #2C5F7C;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: #0A2342;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(94, 234, 212, 0.06);
  border-radius: 50%;
  top: -200px;
  right: -100px;
}
.testimonials .section-eyebrow { color: #5EEAD4; }
.testimonials .section-title { color: #F0FAF7; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(94, 234, 212, 0.15);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-text {
  font-size: 1rem;
  color: rgba(240, 250, 247, 0.85);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: #5EEAD4;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
  background: #F0FAF7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 36px 0;
}
.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #E8FAF5, #D1FAE8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-details strong {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0A2342;
  margin-bottom: 4px;
}
.contact-details span,
.contact-details a {
  font-size: 1rem;
  color: #2C5F7C;
}
.contact-details a:hover { color: #0A2342; }
.map-wrap {
  margin-top: 32px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 35, 66, 0.08);
}

/* FORM */
.contact-form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 16px 48px rgba(10, 35, 66, 0.08);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #0A2342;
}
.form-sub {
  font-size: 0.95rem;
  color: #2C5F7C;
  margin-bottom: 32px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #0A2342;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(10, 35, 66, 0.1);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: #0A2342;
  background: #F0FAF7;
  transition: all 0.3s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #5EEAD4;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(94, 234, 212, 0.15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #8BA4B8;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(94, 234, 212, 0.15);
  color: #0A2342;
  font-weight: 600;
  margin-top: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: #0A2342;
  color: #F0FAF7;
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p {
  color: rgba(240, 250, 247, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}
.footer-links strong,
.footer-contact strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #5EEAD4;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-contact a {
  font-size: 0.95rem;
  color: rgba(240, 250, 247, 0.6);
  transition: color 0.3s ease;
}
.footer-links a:hover,
.footer-contact a:hover { color: #5EEAD4; }
.footer-bottom {
  border-top: 1px solid rgba(240, 250, 247, 0.1);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(240, 250, 247, 0.4);
}

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-image-wrap { max-width: 500px; margin: 0 auto; }
  .hero-image-wrap img { height: 480px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-img-secondary { right: 0; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-toggle { display: block; z-index: 1001; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #F0FAF7;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 32px rgba(10, 35, 66, 0.15);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 20px; }
  .main-nav a { font-size: 1.1rem; }
  .nav-cta { justify-content: center; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-headline { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-image-wrap img { height: 360px; }
  .hero-badge { position: relative; bottom: auto; left: auto; display: inline-flex; margin-top: 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .about-img-secondary { position: relative; bottom: auto; right: auto; width: 100%; margin-top: 16px; }
  .about-image-group { display: flex; flex-direction: column; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-trust { flex-direction: column; align-items: center; gap: 12px; }
  .about-stats { flex-direction: column; gap: 24px; }
}
