@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --navy: #0b1d3a;
  --navy-light: #132d54;
  --teal: #0fa4a0;
  --teal-dark: #0c8280;
  --teal-light: #14c9c4;
  --amber: #f0a500;
  --amber-light: #ffc940;
  --white: #ffffff;
  --off-white: #f5f7fa;
  --gray-100: #e8ecf1;
  --gray-200: #cdd4dc;
  --gray-500: #6b7a8d;
  --gray-700: #3a4a5c;
  --shadow: 0 4px 24px rgba(11,29,58,.12);
  --shadow-lg: 0 12px 40px rgba(11,29,58,.18);
  --radius: 12px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--gray-700);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', sans-serif; color: var(--navy); line-height: 1.2; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(11,29,58,.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 24px; background: var(--teal); color: var(--white); font-size: .85rem;
}
.header-top a { color: var(--white); font-weight: 500; }
.header-main {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 24px; max-width: 1200px; margin: 0 auto;
}
.logo { display: flex; align-items: center; gap: 10px; padding: 10px 0; }
.logo img { height: 48px; width: auto; }
.logo span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.25rem; color: var(--white); }
.nav-links { display: flex; gap: 4px; list-style: none; }
.nav-links a {
  display: block; padding: 20px 14px; color: rgba(255,255,255,.8);
  font-weight: 500; font-size: .95rem; border-bottom: 3px solid transparent;
  transition: all var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); border-bottom-color: var(--teal); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--navy); padding: 10px 22px;
  border-radius: 50px; font-weight: 700; font-size: .95rem;
  transition: all var(--transition); border: none; cursor: pointer;
}
.header-cta:hover { background: var(--amber-light); transform: translateY(-1px); box-shadow: var(--shadow); color: var(--navy); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span { display: block; width: 26px; height: 3px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: var(--transition); }

/* HERO */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: center;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,.92) 0%, rgba(11,29,58,.7) 60%, rgba(15,164,160,.3) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 80px 0; }
.hero-badge {
  display: inline-block; background: rgba(15,164,160,.2); color: var(--teal-light);
  padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  margin-bottom: 20px; border: 1px solid rgba(15,164,160,.3);
}
.hero h1 { color: var(--white); font-size: 3.2rem; font-weight: 800; margin-bottom: 18px; }
.hero h1 span { color: var(--teal-light); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; margin-bottom: 32px; }
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: 50px; font-weight: 700;
  font-size: 1rem; transition: all var(--transition); cursor: pointer; border: none;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); color: var(--white); }
.btn-secondary { background: var(--amber); color: var(--navy); }
.btn-secondary:hover { background: var(--amber-light); transform: translateY(-2px); color: var(--navy); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.3); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }

/* SECTIONS */
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.section-header .overline {
  display: inline-block; color: var(--teal); font-weight: 700; font-size: .85rem;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 10px;
}
.section-header h2 { font-size: 2.4rem; font-weight: 800; margin-bottom: 14px; }
.section-header p { color: var(--gray-500); font-size: 1.1rem; }

/* SERVICE CARDS */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.service-card p { color: var(--gray-500); margin-bottom: 16px; }
.service-card a { color: var(--teal); font-weight: 600; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about-text h2 { font-size: 2.2rem; margin-bottom: 18px; }
.about-text p { margin-bottom: 14px; }
.stat-row { display: flex; gap: 30px; margin-top: 28px; }
.stat { text-align: center; }
.stat .num { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--teal); }
.stat .label { font-size: .85rem; color: var(--gray-500); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow); border-left: 4px solid var(--teal);
}
.testimonial-card .stars { color: var(--amber); font-size: 1.2rem; margin-bottom: 12px; }
.testimonial-card p { font-style: italic; margin-bottom: 16px; color: var(--gray-700); }
.testimonial-card .author { font-weight: 700; color: var(--navy); }
.testimonial-card .location { font-size: .85rem; color: var(--gray-500); }

/* AREAS */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.area-item {
  background: var(--white); padding: 16px 20px; border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06); font-weight: 500; color: var(--navy);
  display: flex; align-items: center; gap: 8px; transition: all var(--transition);
}
.area-item:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.area-item::before { content: '📍'; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-100); }
.faq-question {
  width: 100%; background: none; border: none; padding: 22px 0; text-align: left;
  font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 600;
  color: var(--navy); cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--teal); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-question::after { content: '−'; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-answer-inner { padding: 0 0 22px; color: var(--gray-500); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 300px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-card {
  background: var(--navy); color: var(--white); padding: 40px; border-radius: var(--radius);
}
.contact-info-card h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 20px; align-items: flex-start; }
.contact-detail .icon {
  width: 44px; height: 44px; background: rgba(15,164,160,.2); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-detail h4 { color: var(--teal-light); font-size: .9rem; margin-bottom: 2px; }
.contact-detail p, .contact-detail a { color: rgba(255,255,255,.8); }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 1.5rem; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .9rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-100); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; transition: border-color var(--transition);
  background: var(--white); color: var(--gray-700);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--teal);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-container { margin-top: 40px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 60px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); font-size: 2.2rem; margin-bottom: 14px; }
.cta-banner p { font-size: 1.1rem; opacity: .9; margin-bottom: 28px; }

/* FOOTER */
.site-footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { margin-top: 14px; font-size: .95rem; line-height: 1.7; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; font-family: 'Outfit', sans-serif; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .95rem; }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; font-size: .85rem;
  flex-wrap: wrap; gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--teal-light); }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy); padding: 60px 0; text-align: center;
}
.page-hero h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; }

/* LEGAL */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin: 32px 0 12px; }
.legal-content p, .legal-content ul { margin-bottom: 16px; }
.legal-content ul { padding-left: 24px; }
.legal-content li { margin-bottom: 6px; }

/* RESPONSIVE */
@media (max-width: 968px) {
  .header-main { flex-wrap: wrap; }
  .nav-links { display: none; flex-direction: column; width: 100%; background: var(--navy-light); padding: 10px 0; }
  .nav-links.active { display: flex; }
  .nav-links a { padding: 14px 20px; border-bottom: none; }
  .mobile-toggle { display: block; }
  .hero h1 { font-size: 2.4rem; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stat-row { flex-wrap: wrap; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 1.8rem; }
  .section { padding: 50px 0; }
  .section-header h2 { font-size: 1.8rem; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; }
  .header-top { flex-direction: column; gap: 4px; text-align: center; }
}
