@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
  --primary: #0e7c86;
  --primary-dark: #095b63;
  --primary-light: #e6f4f5;
  --accent: #ff7a59;
  --accent-dark: #e8613f;
  --text: #1b2a2c;
  --text-light: #5a6b6d;
  --bg: #ffffff;
  --bg-alt: #f6fafa;
  --border: #dfeaeb;
  --radius: 14px;
  --shadow: 0 2px 16px rgba(14, 124, 134, 0.08);
  --shadow-lg: 0 12px 40px rgba(14, 124, 134, 0.14);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: 'Poppins', sans-serif; line-height: 1.25; color: var(--text); }
img { max-width: 100%; display: block; }
a { color: var(--primary); }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.nav-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 19px;
  color: var(--primary); text-decoration: none; letter-spacing: -0.3px;
}
.logo-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #14a0ac);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
}
.nav-links { display: flex; list-style: none; gap: 30px; }
.nav-links a {
  text-decoration: none; color: var(--text-light); font-weight: 500;
  font-size: 14.5px; letter-spacing: 0.02em; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta {
  background: var(--accent); color: #fff !important; text-decoration: none;
  padding: 11px 22px; border-radius: 999px; font-weight: 600; font-size: 14.5px;
  white-space: nowrap; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: 15.5px; text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(255,122,89,.32); }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.18); }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 580px; 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-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(9,91,99,.94) 0%, rgba(14,124,134,.86) 48%, rgba(14,124,134,.5) 100%);
}
.hero-inner { position: relative; z-index: 1; padding: 90px 0; max-width: 660px; color: #fff; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.17); border: 1px solid rgba(255,255,255,.3);
  color: #fff; padding: 8px 18px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em; margin-bottom: 26px;
}
.hero h1 { font-size: 52px; color: #fff; margin-bottom: 22px; letter-spacing: -1px; }
.hero h1 .hl { color: #ffd166; }
.hero p { font-size: 18px; color: rgba(255,255,255,.93); margin-bottom: 34px; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- TRUST BAR ---------- */
.trust-bar { background: var(--primary-light); border-bottom: 1px solid var(--border); padding: 26px 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item .ic {
  width: 42px; height: 42px; border-radius: 11px; background: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 19px;
  flex-shrink: 0; box-shadow: var(--shadow);
}
.trust-item .tx strong { display: block; font-size: 14.5px; font-weight: 600; color: var(--text); }
.trust-item .tx span { font-size: 12.5px; color: var(--text-light); }

/* ---------- SECTIONS ---------- */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label {
  display: inline-block; color: var(--accent); font-weight: 700;
  font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 14px;
}
.section-header h2 { font-size: 38px; margin-bottom: 16px; letter-spacing: -.6px; }
.section-header p { color: var(--text-light); font-size: 16.5px; max-width: 660px; margin: 0 auto; }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s, box-shadow .25s, border-color .25s;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card .icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 25px; margin-bottom: 20px;
}
.service-card h3 { font-size: 19px; margin-bottom: 11px; }
.service-card p { color: var(--text-light); font-size: 14.8px; }
.service-card p + p { margin-top: 9px; }

/* ---------- ABOUT ---------- */
.about-preview { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; }
.about-text h2 { font-size: 36px; margin-bottom: 20px; letter-spacing: -.6px; }
.about-text p { color: var(--text-light); margin-bottom: 15px; font-size: 15.8px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 34px; }
.stat { text-align: center; padding: 20px 12px; background: var(--primary-light); border-radius: 12px; }
.stat strong { display: block; font-family: 'Poppins', sans-serif; font-size: 27px; color: var(--primary); }
.stat span { font-size: 12.5px; color: var(--text-light); }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.gallery-card { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
.gallery-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 24px 20px;
  background: linear-gradient(transparent, rgba(9,91,99,.9));
  color: #fff;
}
.gallery-card .cap strong { display: block; font-family: 'Poppins', sans-serif; font-size: 17px; }
.gallery-card .cap span { font-size: 13.5px; opacity: .9; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 28px;
}
.testimonial .stars { color: #ffb020; font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial p { color: var(--text-light); font-size: 15px; font-style: italic; margin-bottom: 18px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; }
.testimonial .av {
  width: 42px; height: 42px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; font-family: 'Poppins', sans-serif;
}
.testimonial .who strong { display: block; font-size: 14.5px; }
.testimonial .who span { font-size: 12.5px; color: var(--text-light); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 74px 0; text-align: center; color: #fff;
}
.cta-band h2 { color: #fff; font-size: 34px; margin-bottom: 14px; letter-spacing: -.5px; }
.cta-band p { color: rgba(255,255,255,.9); font-size: 17px; margin-bottom: 30px; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.contact-info h2 { font-size: 34px; margin-bottom: 14px; letter-spacing: -.5px; }
.info-list { display: grid; gap: 22px; margin-top: 30px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic {
  min-width: 46px; height: 46px; border-radius: 12px; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 19px;
}
.info-item h4 { font-size: 15.5px; margin-bottom: 3px; color: var(--primary); }
.info-item p, .info-item a { margin: 0; color: var(--text-light); font-size: 15px; text-decoration: none; }
.info-item a:hover { color: var(--primary); }
.contact-map iframe { width: 100%; min-height: 430px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- PAGE HEADER ---------- */
.page-header {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  padding: 64px 0; text-align: center; color: #fff;
}
.page-header h1 { color: #fff; font-size: 42px; margin-bottom: 10px; letter-spacing: -.8px; }
.breadcrumb { font-size: 14px; color: rgba(255,255,255,.82); }
.breadcrumb a { color: rgba(255,255,255,.95); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- LEGAL CONTENT ---------- */
.page-content { max-width: 840px; margin: 0 auto; }
.page-content h2 { font-size: 24px; margin: 38px 0 14px; color: var(--primary); }
.page-content h2:first-child { margin-top: 0; }
.page-content p { color: var(--text-light); margin-bottom: 15px; font-size: 15.5px; }
.page-content ul { color: var(--text-light); margin: 0 0 18px 22px; font-size: 15.5px; }
.page-content li { margin-bottom: 8px; }
.page-content strong { color: var(--text); }
.data-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.data-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); }
.data-table td:first-child { font-weight: 600; color: var(--primary); width: 40%; }
.data-table td:last-child { color: var(--text-light); }

/* ---------- FOOTER ---------- */
.site-footer { background: #0b2a2d; color: rgba(255,255,255,.72); padding: 62px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.footer-brand h3 { color: #fff; font-size: 19px; margin-bottom: 15px; }
.footer-brand p { font-size: 14px; margin-bottom: 7px; line-height: 1.6; }
.footer-brand strong { color: rgba(255,255,255,.92); }
.footer-col h4 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: .05em; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.72); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 22px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: 13px;
}
.footer-bottom a { color: rgba(255,255,255,.72); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

/* ---------- WHATSAPP FAB ---------- */
.whatsapp-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 200;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,.42); transition: transform .2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav-links {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; flex-direction: column; gap: 0; padding: 12px 24px 20px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 11px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero h1 { font-size: 38px; }
  .hero-inner { padding: 66px 0; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .services-grid, .testimonials { grid-template-columns: 1fr; }
  .about-preview, .contact-grid, .gallery-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section-header h2 { font-size: 30px; }
  .section { padding: 62px 0; }
  .page-header h1 { font-size: 32px; }
}

@media (max-width: 520px) {
  .container { padding: 0 18px; }
  .hero h1 { font-size: 31px; }
  .hero p { font-size: 16px; }
  .trust-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .section-header h2 { font-size: 26px; }
  .cta-band h2 { font-size: 26px; }
  .btn { width: 100%; text-align: center; }
  .data-table td { display: block; width: 100%; }
  .data-table td:first-child { border-bottom: 0; padding-bottom: 2px; }
}
