:root {
  --primary-orange: #cc6918;
  --dark-orange: #a85414;
  --light-orange: #e67e22;
  --secondary-orange: #e08a35;
  --middle-orange: #f38c38;
  --text-light: #f8f9fa;
  --text-muted: white;
  --bg-light: #fff8f2;
  --bg-section: #fffaf4;
  --bg-how-help: #f9fafb;
  --text-primary: #333;
  --danger-red: #dc2626;
  --text-dark: #1e293b;
  --success-green: #059669;
    --accent-gold: #ffd700;
            --dark-bg: #1a1a1a;
            --accent-gold: #ffd700;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-light);
}

nav .container {
  color: white;
}

.navbar {
  background-color: var(--primary-orange) !important;
}

.navbar-toggler {
  padding: 0.2rem 0.4rem;
  font-size: 0.9rem;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: white !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: #ffe5cc !important;
}


.navbar-brand {
  font-weight: bold;
}

/* accordion */
.accordion-button:not(.collapsed) {
  background-color: #cc6918;
  color: white;
}

.accordion-button.collapsed {
  background-color: #fff0e5;
  color: #cc6918;
}

.accordion-body {
  background-color: #fff8f2;
}


footer {
  background: black;
  color: white;
  padding: 40px 0;
}

footer a {
  color: #ffe5cc;
  text-decoration: none;
}

footer a:hover {
  color: white;
  text-decoration: underline;
}

.coverage-section {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  margin: 0 -15px;
  padding: 3rem 2rem;
  border-top: 3px solid rgba(255, 255, 255, 0.3);
}

.coverage-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.coverage-description {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #666;
}

.top-rated-badge {
  background: white;
  color: var(--primary-orange);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(208, 123, 57, 0.2);
  font-weight: 600;
}

.footer-link {
  color: var(--text-muted);
  transition: all 0.3s ease;
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--text-light) !important;
  transform: translateX(5px);
  text-decoration: underline !important;
}

.coverage-link {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(204, 105, 24, 0.1);
  transition: all 0.3s ease;
  display: block;
  font-weight: 500;
}

.coverage-link:hover {
  color: var(--primary-orange);
  padding-left: 0.75rem;
  border-bottom-color: var(--text-primary);
  background: rgba(195, 191, 188, 0.05);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.sticky-wrapper {
  position: sticky;
  top: 0;
  z-index: 1030;
}

@media (max-width: 768px) {
  .nav-link {
    text-decoration: underline;
  }

  .coverage-section {
    text-align: center;
    margin: 0 -15px;
    padding: 2rem 1rem;
  }

  /* .coverage-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
      } */
}

.call-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: var(--primary-orange);
  border-radius: 50%;
  padding: 16px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.call-button:hover {
  background-color: var(--dark-orange);
}

.call-button svg {
  width: 24px;
  height: 24px;
}

.small {
  width: 100%;
}

@media (min-width: 992px) {

  /* lg and above */
  .small {
    max-width: 400px;
  }
}


.mobile-call-bar {
  color: var(--dark-orange) !important;
  transform: scale(1);
  border-top: 1px solid #dee2e6;
  z-index: 1030;
}

.mobile-call-bar:hover {
  color: var(--middle-orange);
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

}

.form-success {
  display: none;
  background-color: #d4edda;
  color: #155724;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.form-error {
  display: none;
  background-color: #f8d7da;
  color: #721c24;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.formSection h2 {
  color: #a85613;
}

.formSection .btn {
  background-color: #cc6918;
  color: white;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--bg-light), var(--primary-color));
}

.form-section {
  margin-bottom: 2rem;
}

.form-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-orange);
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--secondary-orange);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.95rem;
}

.form-control {
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.form-control:focus {
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 0.2rem rgba(204, 105, 24, 0.15);
  background: white;
  outline: none;
}

.textarea {
  /* min-height: 120px; */
  resize: vertical;
  height: 150px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.form-check {
  background: var(--bg-light);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.875rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}

.form-check:hover {
  border-color: var(--accent-color);
  background: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-light);
}

.form-check-input {
  margin-right: 0.75rem;
  transform: scale(1.1);
}

.form-check-input:checked {
  background-color: black;
  border-color: black;
}

.form-check-input:checked~.form-check-label {
  color: var(--primary-orange);
  font-weight: 600;
}

.form-check-label {
  font-size: 0.95rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: color 0.3s ease;
}

.submit-section {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 2px solid var(--secondary-orange);
  text-align: center;
}

.submit-btn {
  background: linear-gradient(135deg, var(--secondary-orange), var(--primary-orange));
  color: white;
  border: none;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: var(--light-orange);
  position: relative;
  overflow: hidden;
  min-width: 200px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(49, 130, 206, 0.4);
}

.submit-btn:hover::before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px);
}

.required {
  color: var(--danger-red);
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-section {
    padding: 3rem 0;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  .checkbox-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Animation */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-success,
.form-error {
  display: none;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
}

.form-success {
  background-color: #d4edda;
  color: #155724;
}

.form-error {
  background-color: #f8d7da;
  color: #721c24;
}

/* Section Titles */
.section-title {
  color: var(--primary-orange);
  position: relative;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 3px;
  background-color: var(--secondary-orange);
}

.icoLogo {
  display: inline-flex;
  /* keeps box tight around logo */
  justify-content: center;
  align-items: center;
  background: #ffffff;
  /* white background */
  /* rounded corners */
  /* space inside the box */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  /* soft shadow */
  width: 200px;
}

.icoLogo img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 150px;
  height: 100px;
}


/* Mobile layout */
@media (max-width: 768px) {
  .coverage-grid {
    display: block;
    /* stack everything into one block */
  }
  .icoLogo {
    margin-top: 20px;
  }

  .coverage-column {
    margin: 0;
    /* remove margins */
    padding: 0;
    /* remove paddings */
  }

  .coverage-column ul {
    margin: 0;
    padding: 0;
  }

  .coverage-column li {
    margin: 4px 0;
    /* consistent spacing between items */
  }
}
.benefit-banner {
            background: linear-gradient(135deg, var(--dark-bg) 0%, #2c2c2c 100%);
            /* border-bottom: 3px solid var(--primary-orange); */
            padding: 12px 0;
            position: relative;
            overflow: hidden;
        }

        /* Mobile slider version */
        .benefit-banner-mobile {
            background: black;
            padding: 15px 0;
            position: relative;
            overflow: hidden;
            height: 50px;
        }

        .mobile-slider-container {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .mobile-slides {
            display: flex;
            width: 400%; /* 4 slides */
            height: 100%;
            transition: transform 0.5s ease-in-out;
        }

        .mobile-slide {
            width: 25%; /* Each slide takes 1/4 of the container */
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .benefit-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .benefit-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .benefit-intro {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .benefit-star {
            color: var(--accent-gold);
            font-size: 1.2rem;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .benefit-items {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: white;
            font-size: 0.75rem;
            font-weight: 500;
            padding: 0.25rem 0;
            transition: all 0.3s ease;
        }

        /* Mobile slide benefit item styling */
        .mobile-slide .benefit-item {
            font-size: 0.9rem;
            font-weight: 600;
            justify-content: center;
        }

        .benefit-item:hover {
            transform: translateY(-2px);
            filter: brightness(1.2);
        }

        .benefit-check {
            background: #22c55e;
            color: white;
            width: 20px;
            height: 20px;
            border-radius: 4px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.5rem;
            font-weight: bold;
            box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
            animation: checkPop 0.5s ease-out;
        }

        /* Larger check for mobile slides */
        .mobile-slide .benefit-check {
            width: 24px;
            height: 24px;
            font-size: 0.7rem;
        }

        @keyframes checkPop {
            0% { transform: scale(0.8); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .benefit-separator {
            width: 2px;
            height: 20px;
            background: linear-gradient(to bottom, transparent, var(--primary-orange), transparent);
            opacity: 0.7;
        }

        /* Slide indicators (invisible but functional) */
        .slide-indicators {
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 3;
            opacity: 0; /* Make invisible */
            pointer-events: none; /* Disable interaction */
        }

        .indicator {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transition: background 0.3s ease;
        }

        .indicator.active {
            background: var(--primary-orange);
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .benefit-banner {
                padding: 10px 0;
            }
            
            .benefit-container {
                gap: 1rem;
                flex-direction: column;
            }
            
            .benefit-items {
                gap: 1.5rem;
                justify-content: center;
            }
            
            .benefit-intro {
                font-size: 1rem;
            }
            
            .benefit-item {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .benefit-items {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
                text-align: center;
            }
            
            .benefit-separator {
                display: none;
            }
        }

        /* Fade in animation for active slide */
        .mobile-slide {
            opacity: 0.7;
            transition: opacity 0.5s ease;
        }

        .mobile-slide.active {
            opacity: 1;
        }

        /* Alternative Design Option */
        .benefit-banner-alt {
            background: linear-gradient(90deg, 
                var(--primary-orange) 0%, 
                #ff8c42 25%, 
                var(--primary-orange) 50%, 
                #ff8c42 75%, 
                var(--primary-orange) 100%);
            background-size: 400% 100%;
            animation: gradientSlide 8s ease-in-out infinite;
            color: white;
            padding: 15px 0;
            text-align: center;
        }

        @keyframes gradientSlide {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .alt-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .alt-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 25px;
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .alt-badge:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
        }

        .alt-icon {
            font-size: 1rem;
        }
