/* CSS Variables */
:root {
  --primary-blue: #0a4b78;
  --dark-blue: #003366;
  --gold: #ffd700;
  --yellow: #ffb600;
  --light-bg: #f5f7fa;
  --text-dark: #333;
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

a {
  color: inherit;
  text-decoration: none;
}

/* Utility Classes */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =====================
   Hero Section
   ===================== */

/* Mobile content block — hidden on desktop */
.hero-mobile-content {
  display: none;
}

@media (max-width: 768px) {
  /* Hide ALL overlay text on the hero image on mobile */
  .hero-content {
    display: none !important;
  }

  /* Make the hero image-only on mobile — no padding needed for text */
  .hero-section {
    min-height: 220px !important;
    background-size: cover !important;
    background-position: center !important;
  }

  /* Show the content block below the hero image */
  .hero-mobile-content {
    display: block;
    background-color: #003366;
    color: #ffffff;
    padding: 24px 16px;
    text-align: center;
  }

  .hero-mobile-content h1 {
    color: #ffffff;
    font-size: 1.6rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .hero-mobile-content p {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.6;
  }

  .hero-mobile-content strong {
    color: #ffb600;
  }

  .hero-mobile-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
  }

  .hero-mobile-badges span {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.85rem;
    color: #fff;
  }

  .hero-mobile-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .hero-mobile-buttons a {
    background-color: #001f4d;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    display: inline-block;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .reviews-container,
  .services-section {
    grid-template-columns: 1fr;
  }

  section[style*="flex"] {
    flex-direction: column !important;
  }
}

/* Sticky Phone Button */
.sticky-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0d5c2e;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-phone:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  background-color: #0a4623;
}

.sticky-phone-icon {
  font-size: 24px;
  filter: brightness(0) invert(1);
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #0d5c2e;
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  background-color: #0a4623;
}

/* Sticky Contact Button */
.sticky-contact {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.sticky-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  background-color: #001f4d;
}
.sticky-contact-icon {
  font-size: 24px;
}
