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

:root {
  --navy: #0B1D3A;
  --navy-light: #132D54;
  --teal: #0FA3B1;
  --teal-dark: #0C8A96;
  --teal-light: #B8E8EC;
  --amber: #E8A838;
  --amber-light: #F5D28F;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100: #EDF1F5;
  --gray-200: #D5DCE4;
  --gray-500: #6B7A8D;
  --gray-700: #3A4A5C;
  --shadow-sm: 0 2px 8px rgba(11,29,58,0.08);
  --shadow-md: 0 8px 30px rgba(11,29,58,0.12);
  --shadow-lg: 0 20px 60px rgba(11,29,58,0.15);
  --radius: 12px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

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

html { scroll-behavior: smooth; }

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: 'Raleway', sans-serif;
  color: var(--navy);
  line-height: 1.2;
  font-weight: 700;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

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

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; border: none; cursor: pointer;
  transition: all var(--transition); text-transform: uppercase;
  letter-spacing: 0.5px; font-family: 'DM Sans', sans-serif;
}
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--teal-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-amber { background: var(--amber); color: var(--navy); }
.btn-amber:hover { background: #d4952e; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: var(--teal-light); }
.top-bar a:hover { color: var(--amber); }

/* ── HEADER ── */
header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 1000;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); }
.logo-text span { color: var(--teal); }

nav ul { display: flex; gap: 28px; align-items: center; }
nav a { font-weight: 500; font-size: 15px; color: var(--gray-700); position: relative; }
nav a:hover, nav a.active { color: var(--teal); }
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--teal); transition: width var(--transition);
}
nav a:hover::after, nav a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone { display: flex; align-items: center; gap: 6px; font-weight: 700; color: var(--navy); font-size: 16px; }
.header-phone svg { color: var(--teal); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 26px; height: 3px; background: var(--navy); border-radius: 2px; transition: var(--transition); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,29,58,0.88) 0%, rgba(11,29,58,0.6) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 80px 0;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(15,163,177,0.2); color: var(--teal-light);
  padding: 8px 20px; border-radius: 50px; font-size: 13px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px; border: 1px solid rgba(15,163,177,0.3);
}
.hero h1 { font-size: 52px; color: var(--white); margin-bottom: 20px; font-weight: 800; }
.hero h1 span { color: var(--amber); }
.hero p { font-size: 18px; color: var(--gray-200); margin-bottom: 32px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 90px 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-dark p { color: var(--gray-200); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-size: 38px; margin-bottom: 16px; }
.section-header p { font-size: 17px; color: var(--gray-500); max-width: 600px; margin: 0 auto; }
.section-label {
  display: inline-block; color: var(--teal); font-weight: 700;
  font-size: 13px; text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 12px;
}

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 240px; object-fit: cover; }
.service-card-body { padding: 28px; }
.service-card h3 { font-size: 22px; margin-bottom: 12px; }
.service-card p { font-size: 15px; margin-bottom: 20px; }

/* ── ABOUT ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.about-content h2 { font-size: 36px; margin-bottom: 20px; }
.about-content p { margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.stat { text-align: center; }
.stat-number { font-size: 42px; font-weight: 800; color: var(--teal); font-family: 'Raleway', sans-serif; }
.stat-label { font-size: 13px; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.testimonial-card {
  background: var(--white); padding: 36px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; right: 28px;
  font-size: 80px; color: var(--teal-light); font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { font-size: 15px; font-style: italic; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: var(--teal-light);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--teal-dark); font-size: 18px;
}
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-location { font-size: 13px; color: var(--gray-500); }
.stars { color: var(--amber); margin-bottom: 16px; font-size: 18px; }

/* ── AREAS ── */
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px;
}
.area-item {
  padding: 14px 20px; background: var(--white); border-radius: 8px;
  border: 1px solid var(--gray-200); font-weight: 500; font-size: 15px;
  transition: all var(--transition); display: flex; align-items: center; gap: 8px;
}
.area-item:hover { border-color: var(--teal); color: var(--teal); transform: translateX(4px); }
.area-item svg { color: var(--teal); flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-weight: 600; font-size: 17px; color: var(--navy);
  background: none; border: none; width: 100%; text-align: left;
  font-family: 'Raleway', sans-serif; padding: 0;
}
.faq-question svg { transition: transform var(--transition); flex-shrink: 0; color: var(--teal); }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
  font-size: 15px; color: var(--gray-500);
}
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding-top: 14px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info-card {
  display: flex; gap: 16px; padding: 20px; background: var(--off-white);
  border-radius: var(--radius); margin-bottom: 20px;
}
.contact-icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-icon svg { color: var(--white); }
.contact-info-card h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-card p { font-size: 14px; color: var(--gray-500); }
.contact-info-card a { color: var(--teal); font-weight: 600; }

.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; padding: 14px 18px; border: 1px solid var(--gray-200);
  border-radius: 8px; font-size: 15px; font-family: 'DM Sans', sans-serif;
  transition: border-color var(--transition); background: var(--white);
  color: var(--gray-700);
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none; border-color: var(--teal);
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; font-size: 14px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.map-container { border-radius: var(--radius); overflow: hidden; margin-top: 40px; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 60px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: 36px; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 30px; }
.cta-banner .btn { font-size: 16px; padding: 16px 40px; }

/* ── FOOTER ── */
footer { background: var(--navy); color: var(--gray-200); 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: 16px; font-size: 14px; line-height: 1.8; }
.footer-col h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; font-family: 'Raleway', sans-serif; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--gray-200); }
.footer-col a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 13px;
}
.footer-bottom a { color: var(--teal-light); }

/* ── LEGAL PAGES ── */
.legal-content { max-width: 800px; margin: 0 auto; }
.legal-content h2 { font-size: 28px; margin: 40px 0 16px; }
.legal-content h3 { font-size: 22px; margin: 30px 0 12px; }
.legal-content p { margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; padding-left: 24px; }
.legal-content ul li { list-style: disc; margin-bottom: 8px; }

/* ── PAGE HEADER ── */
.page-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0; text-align: center;
}
.page-header h1 { color: var(--white); font-size: 42px; margin-bottom: 12px; }
.page-header p { color: var(--gray-200); font-size: 17px; }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 38px; }
  .section-header h2 { font-size: 30px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--white); box-shadow: var(--shadow-lg); z-index: 9999;
    padding: 80px 30px 30px; transition: right var(--transition);
  }
  nav.active { right: 0; }
  nav ul { flex-direction: column; gap: 16px; }
  nav a { font-size: 17px; }
  .nav-close { position: absolute; top: 20px; right: 20px; background: none;
    border: none; font-size: 28px; cursor: pointer; color: var(--navy); }
  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 9998; }
  .nav-overlay.active { display: block; }
  .header-cta .btn { display: none; }
  .hero-content { padding: 60px 0; }
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .about-stats { gap: 20px; }
  .stat-number { font-size: 32px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .top-bar .container { justify-content: center; text-align: center; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: column; }
}
