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

:root {
  --navy: #0B1D3A;
  --navy-light: #132D5A;
  --blue: #1A6BB5;
  --blue-light: #2A8FD4;
  --orange: #E8682B;
  --orange-light: #F4863E;
  --orange-dark: #D05A20;
  --teal: #0FA3B1;
  --white: #FFFFFF;
  --off-white: #F7F9FC;
  --gray-100: #EEF1F6;
  --gray-200: #D8DEE8;
  --gray-300: #B0BAC9;
  --gray-600: #5A6A7E;
  --gray-800: #2D3748;
  --shadow-sm: 0 1px 3px rgba(11,29,58,0.08);
  --shadow-md: 0 4px 14px rgba(11,29,58,0.1);
  --shadow-lg: 0 10px 30px rgba(11,29,58,0.12);
  --shadow-xl: 0 20px 50px rgba(11,29,58,0.15);
  --radius: 8px;
  --radius-lg: 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: 'Open Sans', sans-serif;
  color: var(--gray-800);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', sans-serif;
  color: var(--navy);
  line-height: 1.25;
}
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 20px; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }
.header-top {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.85rem;
}
.header-top .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.header-top a { color: var(--white); }
.header-top a:hover { color: var(--orange-light); }
.header-main .container {
  display: flex; justify-content: space-between; align-items: center; padding-top: 12px; padding-bottom: 12px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 50px; width: auto; }
.logo-text { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--navy); }
.logo-text span { color: var(--orange); }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a {
  padding: 8px 14px; font-family: 'Montserrat', sans-serif; font-weight: 600;
  font-size: 0.9rem; color: var(--navy); border-radius: var(--radius);
  transition: all var(--transition);
}
.nav a:hover, .nav a.active { color: var(--orange); background: rgba(232,104,43,0.06); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px !important;
  font-weight: 700 !important; font-size: 0.9rem !important;
  box-shadow: 0 4px 15px rgba(232,104,43,0.35);
  transition: all var(--transition) !important;
}
.header-cta:hover { background: var(--orange-dark) !important; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,104,43,0.4); color: var(--white) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Hero */
.hero {
  position: relative; min-height: 85vh; display: flex; align-items: center;
  background: linear-gradient(135deg, rgba(11,29,58,0.88), rgba(26,107,181,0.75)), url('../images/hero.jpg') center/cover no-repeat;
  color: var(--white); overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; width: 100%;
  height: 80px; background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero .container { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(8px);
  padding: 8px 20px; border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  margin-bottom: 24px; border: 1px solid rgba(255,255,255,0.15);
}
.hero h1 { font-size: 3.2rem; font-weight: 800; margin-bottom: 20px; max-width: 700px; }
.hero h1 span { color: var(--orange-light); }
.hero p { font-size: 1.2rem; max-width: 560px; margin-bottom: 36px; opacity: 0.92; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem; cursor: pointer; border: none;
  transition: all var(--transition); text-align: center;
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 15px rgba(232,104,43,0.3); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 22px rgba(232,104,43,0.4); }
.btn-outline {
  background: transparent; color: var(--white); border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-secondary { background: var(--navy); color: var(--white); }
.btn-secondary:hover { background: var(--navy-light); transform: translateY(-2px); }

/* Sections */
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .overline {
  display: inline-block; font-family: 'Montserrat', sans-serif; font-weight: 700;
  font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--orange); margin-bottom: 12px;
}
.section-header h2 { font-size: 2.4rem; margin-bottom: 16px; }
.section-header p { color: var(--gray-600); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

/* Cards */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: all var(--transition); border: 1px solid var(--gray-100);
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.card-img { height: 220px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card-body p { color: var(--gray-600); font-size: 0.95rem; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { font-size: 2.2rem; margin-bottom: 20px; }
.about-content p { color: var(--gray-600); margin-bottom: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.stat { text-align: center; }
.stat-num { font-family: 'Montserrat', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--orange); }
.stat-label { font-size: 0.85rem; color: var(--gray-600); font-weight: 600; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 16px; left: 28px;
  font-size: 5rem; color: var(--orange); opacity: 0.15; font-family: Georgia, serif; line-height: 1;
}
.testimonial-card p { font-style: italic; color: var(--gray-600); margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--gray-200); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--navy); font-size: 1.1rem; }
.testimonial-name { font-weight: 700; color: var(--navy); }
.testimonial-loc { font-size: 0.85rem; color: var(--gray-300); }
.stars { color: #F5A623; margin-bottom: 14px; font-size: 1.1rem; }

/* Areas */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.area-item {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-100); transition: all var(--transition);
  font-weight: 600; color: var(--navy);
}
.area-item:hover { border-color: var(--orange); color: var(--orange); transform: translateX(4px); }
.area-item svg { flex-shrink: 0; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; font-family: 'Montserrat', sans-serif;
  font-weight: 600; font-size: 1.05rem; color: var(--navy); gap: 16px;
}
.faq-q:hover { color: var(--orange); }
.faq-q .icon { font-size: 1.5rem; transition: transform var(--transition); flex-shrink: 0; color: var(--orange); }
.faq-item.active .faq-q .icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a p { padding: 0 0 22px; color: var(--gray-600); }
.faq-item.active .faq-a { max-height: 300px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 24px; background: var(--off-white); border-radius: var(--radius-lg);
}
.contact-icon {
  width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--white); font-size: 1.2rem;
}
.contact-card h4 { font-size: 1rem; margin-bottom: 4px; }
.contact-card p, .contact-card a { color: var(--gray-600); font-size: 0.95rem; }
.contact-card a:hover { color: var(--orange); }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.contact-form h3 { margin-bottom: 24px; font-size: 1.5rem; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 0.9rem; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border: 1px solid var(--gray-200);
  border-radius: var(--radius); font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem; transition: border var(--transition); background: var(--off-white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,107,181,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.map-container { margin-top: 40px; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.map-container iframe { width: 100%; height: 350px; border: 0; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white); text-align: center; padding: 70px 20px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,104,43,0.15), transparent 70%); border-radius: 50%;
}
.cta-banner h2 { font-size: 2.2rem; margin-bottom: 16px; position: relative; }
.cta-banner p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; position: relative; }
.cta-banner .btn { position: relative; }

/* Footer */
.footer { background: var(--navy); color: rgba(255,255,255,0.75); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1.1rem; margin-bottom: 18px; }
.footer-about p { font-size: 0.9rem; line-height: 1.8; }
.footer-links a { display: block; padding: 5px 0; font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; text-align: center; font-size: 0.85rem;
}
.footer-bottom a { color: var(--orange-light); }
.footer-bottom a:hover { text-decoration: underline; }

/* Legal pages */
.legal-page { padding: 60px 0; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 8px; }
.legal-page .updated { color: var(--gray-300); margin-bottom: 30px; font-size: 0.9rem; }
.legal-page h2 { font-size: 1.4rem; margin-top: 36px; margin-bottom: 12px; }
.legal-page p, .legal-page li { color: var(--gray-600); margin-bottom: 12px; }
.legal-page ul { padding-left: 24px; list-style: disc; }

/* Responsive */
@media (max-width: 992px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 2.4rem; }
  .section-header h2 { font-size: 2rem; }
}
@media (max-width: 768px) {
  .nav { 
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: var(--white); padding: 20px;
    box-shadow: var(--shadow-lg); gap: 4px;
  }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
  .header-top .container { justify-content: center; text-align: center; }
  .hero { min-height: 70vh; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-btns { flex-direction: column; }
  .about-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
