/* ===========================
   RESET & BASE
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  line-height: 1.6;
  color: #222;
  background: #f9f9f9;
}

/* Links & Buttons */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

a:hover {
  color: #0077ff;
}

button,
.quote-button,
.cta-bar a {
  display: inline-block;
  background: #0077ff; /* clean blue */
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
}

button:hover,
.quote-button:hover,
.cta-bar a:hover {
  background: #005cb8;
  transform: translateY(-1px);
}

/* ===========================
   CTA BAR (Sticky + Fade)
=========================== */
.cta-bar {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  background: #005cb8; /* darker blue */
  color: #fff;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  transition: opacity 0.3s ease, padding 0.3s ease, backdrop-filter 0.3s ease;
  backdrop-filter: blur(4px);
}

.cta-bar.scrolled {
  opacity: 0.85;
  padding: 6px 10px;
}

/* ===========================
   NAVIGATION / HAMBURGER
=========================== */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  position: relative;
  background-color: #0077ff; /* nice blue background */
  padding: 0.5rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-links li a {
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s, transform 0.2s;
}

.nav-links li a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  margin-left: auto;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Hamburger open animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================
   MOBILE RESPONSIVE NAV
=========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px; /* below header/nav */
    right: 1rem;
    background-color: #005cb8; /* darker blue dropdown */
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    width: 200px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    color: #fff;
  }

  .nav-links li a:hover {
    background: rgba(255,255,255,0.3);
  }

  .hamburger {
    display: flex;
  }
}
/* Hero Section */
header {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #0077ff, #005cb8); /* blue gradient */
  color: #fff;
  border-radius: 0 0 20px 20px;
}

header .logo {
  max-width: 120px;
  margin-bottom: 15px;
}

header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  color: #e0e0e0;
}

/* Sections */
section {
  padding: 40px 20px;
  max-width: 1000px;
  margin: auto;
}

section h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
  color: #0077ff;
}

section p {
  margin-bottom: 15px;
  text-align: center;
  color: #444;
}

/* Features List */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.features li {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  font-weight: 500;
  color: #222;
}

.features img {
  max-width: 40px;
  margin-bottom: 10px;
}

/* Ad Container / CTA Blocks */
.ad-container {
  text-align: center;
  background: #f0f4ff; /* soft blue background */
  border-radius: 12px;
  padding: 40px 20px;
  margin: 30px auto;
}

.ad-container h2 {
  margin-bottom: 15px;
  color: #0077ff;
}

/* FAQ Section */
.faq .faq-item {
  background: #fff;
  margin-bottom: 12px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.faq-question {
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.faq-answer {
  display: none;
  padding-top: 8px;
  font-size: 0.95rem;
  color: #555;
}

.faq-item.open .faq-answer {
  display: block;
}

/* Map Section */
.map-container {
  margin: 3rem auto;
  text-align: center;
}

.map-container iframe {
  width: 100%;
  max-width: 100%;
  height: 450px;
  border: 0;
  border-radius: 10px;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  color: #f0f0f0;
  padding: 2rem 1rem;
  text-align: center;
  border-top: 4px solid #0077ff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-links a {
  color: #f0f0f0;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s;
}

.footer-links a:hover {
  color: #0077ff;
  transform: translateY(-2px);
}

/* Responsive Navigation */

  header h1 {
    font-size: 1.5rem;
  }
}
