:root {
  --primary-navy: #0C2340;
  --secondary-navy: #153A6A;
  --accent-blue: #4DA8DA;
  --light-gray: #F8F9FA;
  --dark-gray: #333333;
  --medium-gray: #777777;
  --white: #FFFFFF;
  --success-green: #2ecc71;
  --transition-speed: 0.3s;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  line-height: 1.6;
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-navy);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--accent-blue);
  transition: color var(--transition-speed) ease;
}

a:hover {
  color: var(--primary-navy);
}

ul {
  list-style-type: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
.text-center { text-align: center; }
.text-navy { color: var(--primary-navy); }
.text-blue { color: var(--accent-blue); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  font-family: var(--font-heading);
  font-size: 1rem;
  transition: all var(--transition-speed) ease;
  text-align: center;
}

.btn-primary {
  background-color: var(--accent-blue);
  color: var(--white);
  box-shadow: 0 4px 6px rgba(77, 168, 218, 0.3);
}

.btn-primary:hover {
  background-color: #3d8db8;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(77, 168, 218, 0.4);
}

.btn-secondary {
  background-color: var(--primary-navy);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: var(--secondary-navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-navy);
  color: var(--primary-navy);
}

.btn-outline:hover {
  background-color: var(--primary-navy);
  color: var(--white);
}

.btn-block {
  width: 100%;
  padding: 16px;
  font-size: 1.1rem;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
}

.top-bar {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: var(--white);
  font-weight: 600;
}

.top-bar a:hover {
  color: var(--accent-blue);
}

.main-nav {
  padding: 15px 0;
}

.main-nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-navy);
}

.logo span {
  color: var(--accent-blue);
}

.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a.nav-item {
  color: var(--dark-gray);
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  position: relative;
}

.nav-links a.nav-item::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-blue);
  transition: width var(--transition-speed) ease;
}

.nav-links a.nav-item:hover::after,
.nav-links a.nav-item.active::after {
  width: 100%;
}

.nav-links a.nav-item:hover,
.nav-links a.nav-item.active {
  color: var(--primary-navy);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-navy);
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 80px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.urgency-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.urgency-badge i {
  color: var(--accent-blue);
  margin-right: 5px;
}

/* Lead Form */
.lead-form-container {
  background-color: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  color: var(--dark-gray);
  position: relative;
}

.lead-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: center;
}

.lead-form-container p.form-subtitle {
  text-align: center;
  margin-bottom: 25px;
  color: var(--medium-gray);
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 15px;
}

.form-control {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(77, 168, 218, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' 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 14px center;
  background-size: 16px;
}

.privacy-note {
  font-size: 0.8rem;
  color: var(--medium-gray);
  text-align: center;
  margin-top: 15px;
}

/* Trust Badges Bar */
.trust-bar {
  background-color: var(--light-gray);
  padding: 30px 0;
  border-bottom: 1px solid #ebebeb;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 15px;
}

.badge-icon {
  width: 50px;
  height: 50px;
  background-color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  font-size: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.badge-text h4 {
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.badge-text p {
  font-size: 0.9rem;
  color: var(--medium-gray);
  margin: 0;
}

/* Services Overview */
.section {
  padding: 80px 0;
}

.section-bg-light {
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--medium-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #f0f0f0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-img {
  height: 220px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
  transform: scale(1.05);
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.service-content p {
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.service-link {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.service-link i {
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.ba-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ba-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.ba-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 8px 16px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--primary-navy);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.ba-label.after {
  background-color: var(--accent-blue);
  color: var(--white);
}

/* Process Section */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 50px;
  right: 50px;
  height: 2px;
  background-color: #ddd;
  z-index: 1;
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    gap: 40px;
  }
  .process-steps::before {
    display: none;
  }
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.step-num {
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 2px solid var(--accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-navy);
  margin: 0 auto 20px;
  box-shadow: 0 0 0 10px var(--white);
}

.step h3 {
  margin-bottom: 10px;
}

/* FAQs */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--white);
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary-navy);
}

.faq-question i {
  color: var(--accent-blue);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--medium-gray);
}

.faq-item.active .faq-answer {
  padding: 0 20px 20px;
  max-height: 300px;
}

/* Service Area */
.service-area-box {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 50px;
  border-radius: 12px;
  text-align: center;
  background-image: linear-gradient(rgba(12, 35, 64, 0.9), rgba(12, 35, 64, 0.9)), url('map-bg.jpg'); /* placeholder */
  background-size: cover;
  background-position: center;
}

.service-area-box h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.city-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.city-pill {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

/* Footer */
footer {
  background-color: var(--primary-navy);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-blue);
}

.footer-col p {
  margin-bottom: 15px;
}

.footer-col.brand .logo {
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent-blue);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.contact-info i {
  color: var(--accent-blue);
  font-size: 1.2rem;
  margin-top: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

/* Content Pages */
.page-header {
  background-color: var(--primary-navy);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

.page-header h1 {
  color: var(--white);
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
  color: var(--white);
}

.content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.main-content h2 {
  font-size: 2.2rem;
  margin-top: 0;
  margin-bottom: 25px;
}

.main-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.main-content ul {
  margin-bottom: 30px;
}

.main-content li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1rem;
}

.main-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success-green);
  font-weight: bold;
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 30px;
}

.sidebar-widget h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}

.sidebar-menu li {
  border-bottom: 1px solid #ddd;
}

.sidebar-menu li:last-child {
  border-bottom: none;
}

.sidebar-menu a {
  display: block;
  padding: 12px 0;
  color: var(--dark-gray);
  font-weight: 500;
}

.sidebar-menu a:hover,
.sidebar-menu a.active {
  color: var(--accent-blue);
  padding-left: 10px;
}

.contact-widget {
  background-color: var(--primary-navy);
  color: var(--white);
}

.contact-widget h3 {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Mobile Sticky Call Button */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--accent-blue);
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
}

.sticky-call-btn i {
  margin-right: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .ba-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }
  
  .sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 10px rgba(0,0,0,0.1);
    gap: 15px;
  }
  
  .nav-links.show {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .sticky-call-btn {
    display: block;
  }
  
  body {
    padding-bottom: 60px; /* Make room for sticky button */
  }
  
  .ba-card img {
    height: 300px;
  }
}

/* Dropdown Menu Added for Simplified Navigation */
.dropdown {
  position: relative;
  display: inline-block;
}
.dropdown-content {
  display: none;
  position: absolute;
  background-color: var(--white);
  min-width: 220px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 101;
  border-radius: 4px;
  top: 100%;
  left: 0;
  border: 1px solid #eee;
}
.dropdown-content a.drop-item {
  color: var(--dark-gray);
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  border-bottom: 1px solid #f5f5f5;
  width: 100%;
}
.dropdown-content a.drop-item:last-child {
  border-bottom: none;
}
.dropdown-content a.drop-item:hover {
  background-color: var(--light-gray);
  color: var(--accent-blue);
}
@media (min-width: 769px) {
  .dropdown:hover .dropdown-content {
    display: block;
  }
}
@media (max-width: 768px) {
  .dropdown-content {
    display: block;
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 20px;
  }
  .dropdown-content a.drop-item {
    padding: 10px;
  }
}
