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

/* ── Typography ─────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #0a2540;
}

/* ── Section Shared ─────────────────────────────── */
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #5bc09a;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  max-width: 560px;
}

/* ── Navigation ─────────────────────────────────── */
.nav-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}
.nav-fixed.scrolled {
  background: rgba(10, 37, 64, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.15);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.2;
}
.nav-brand-icon {
  color: #a8e6cf;
  flex-shrink: 0;
}
.nav-brand-text { display: flex; flex-direction: column; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #a8e6cf;
  transition: width 0.3s;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #5bc09a;
  color: #0a2540;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: #7dd4b0; transform: translateY(-1px); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle .bar {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.active .bar:nth-child(2) { opacity: 0; }
.mobile-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(10, 37, 64, 0.97);
  backdrop-filter: blur(12px);
  flex-direction: column;
  padding: 24px;
  gap: 0;
  border-bottom: 1px solid rgba(168, 230, 207, 0.15);
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.3s, padding-left 0.3s;
}
.mobile-link:hover { color: #a8e6cf; padding-left: 8px; }
.mobile-phone { color: #a8e6cf; border-bottom: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
}

/* ── Hero ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background:
    linear-gradient(135deg, #0a2540 0%, #0d3b66 30%, #1a5276 55%, #1e6f5e 80%, #2d8f75 100%);
  overflow: hidden;
  padding: 120px 24px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(91, 192, 154, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(26, 82, 118, 0.4) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #a8e6cf;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #fff;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5bc09a;
  color: #0a2540;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.btn-primary:hover {
  background: #7dd4b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(91, 192, 154, 0.3);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: #a8e6cf;
  background: rgba(168, 230, 207, 0.08);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}
.trust-item svg { color: #a8e6cf; flex-shrink: 0; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  animation: bounce 2s infinite;
  z-index: 2;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Services ───────────────────────────────────── */
.services {
  padding: 100px 0;
  background: #faf9f7;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 36px 28px;
  border: 1px solid rgba(10, 37, 64, 0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.1);
  border-color: rgba(91, 192, 154, 0.3);
}
.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  border-radius: 12px;
  margin-bottom: 20px;
  color: #a8e6cf;
}
.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: #0a2540;
}
.service-card p {
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.7;
}

/* ── About ──────────────────────────────────────── */
.about {
  padding: 100px 0;
  background: #f3f0eb;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.15);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10, 37, 64, 0.2);
  border: 4px solid #f3f0eb;
}
.about-img-secondary img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.about-accent {
  position: absolute;
  top: -24px;
  left: -24px;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  border-radius: 12px;
  padding: 24px;
  color: #fff;
  z-index: 2;
}
.about-accent-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.accent-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #a8e6cf;
  line-height: 1;
}
.accent-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.4;
}
.about-content .section-title { margin-bottom: 24px; }
.about-text {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 16px;
  line-height: 1.8;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: #2d3748;
  font-weight: 500;
}
.value-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #5bc09a;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-img-secondary { right: 0; }
  .about-values { grid-template-columns: 1fr; }
}

/* ── Why Us ─────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a2540 0%, #0d3b66 60%, #1a5276 100%);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 80% 80%, rgba(91, 192, 154, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.why-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1;
}
.why-header .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 40px 32px;
  backdrop-filter: blur(8px);
  transition: background 0.3s, transform 0.3s;
}
.why-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.why-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(168, 230, 207, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.why-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* ── Testimonial ────────────────────────────────── */
.testimonial-section {
  padding: 80px 0;
  background: #faf9f7;
}
.testimonial-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 40px 20px;
}
.testimonial-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  line-height: 0.8;
  color: #a8e6cf;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
}
.testimonial-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: #1a1a2e;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8e6cf;
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 600;
  font-size: 1rem;
  color: #0a2540;
}
.testimonial-location {
  font-size: 0.85rem;
  color: #718096;
}

/* ── Contact ────────────────────────────────────── */
.contact {
  padding: 100px 0;
  background: #f3f0eb;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-intro {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-detail {
  display: flex;
  gap: 16px;
}
.contact-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  border-radius: 10px;
  color: #a8e6cf;
}
.contact-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #718096;
  margin-bottom: 4px;
}
.contact-value {
  font-size: 1rem;
  color: #0a2540;
  line-height: 1.6;
}
.contact-phone:hover { color: #5bc09a; }
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(10, 37, 64, 0.08);
  border: 1px solid rgba(10, 37, 64, 0.05);
}
.form-title {
  font-size: 1.5rem;
  margin-bottom: 28px;
  color: #0a2540;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: #1a202c;
  background: #f7fafc;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-input:focus {
  border-color: #5bc09a;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(91, 192, 154, 0.15);
}
.form-input::placeholder { color: #a0aec0; }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23718096' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-textarea { resize: vertical; min-height: 100px; }
.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #0a2540, #1a5276);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.2s;
}
.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px;
  text-align: center;
  color: #5bc09a;
}
.form-success.show { display: flex; }
.form-success svg { color: #5bc09a; }
.form-success p { font-size: 1rem; color: #2d3748; font-weight: 500; }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form-wrap { padding: 28px; }
}

/* ── Map ────────────────────────────────────────── */
.map-section { height: 380px; }
.map-section iframe { width: 100%; height: 100%; display: block; }

/* ── Footer ─────────────────────────────────────── */
.footer {
  background: #061a2e;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 16px;
}
.footer-logo svg { color: #a8e6cf; flex-shrink: 0; }
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a8e6cf;
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-address {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #a8e6cf;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s;
}
.footer-phone:hover { color: #7dd4b0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25) !important;
  font-style: italic;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

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