/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
  }
  
  body {
    background: #0b1220;
    color: #e5e7eb;
    line-height: 1.6;
  }
  
  /* ================= GLOBAL ================= */
  .container {
    width: min(1200px, 90%);
    margin: auto;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  /* ================= BUTTONS ================= */
  .btn-primary {
    background: #f97316;
    border: none;
    color: #fff;
    padding: 14px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background .3s;
  }
  
  .btn-primary:hover {
    background: #ea580c;
  }
  
  /* ================= HERO ================= */
  .hero {
    position: relative;
    padding: 90px 0;
    background:
      linear-gradient(rgba(11,18,32,.75), rgba(11,18,32,.85)),
      url("/static/pics/roadrecovery.jpg") center / cover no-repeat;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 40px;
    align-items: center;
  }
  
  .hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    opacity: .9;
  }
  
  .hero-points {
    margin-top: 20px;
    list-style: none;
  }
  
  .hero-points li {
    margin-bottom: 10px;
    font-size: 1.05rem;
  }
  
  /* ================= HERO CARD ================= */
  .hero-card {
    background: rgba(8,14,28,.85);
    backdrop-filter: blur(8px);
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
  }
  
  .hero-card h2 {
    margin-bottom: 20px;
    font-size: 1.6rem;
  }
  
  /* ================= FORMS ================= */
  form {
    display: grid;
    gap: 14px;
  }
  
  input,
  button,
  select {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #1f2937;
    background-color: #020617; /* Note: background-color is used here instead of just background */
    color: #e5e7eb;
    font-size: 1rem;
  
    /* 🔴 IMPORTANT FIX (appearance property ensures consistent sizing) */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
  }
  
  input::placeholder {
    color: #9ca3af;
  }
  
  input:focus,
  select:focus {
    outline: none;
    border-color: #f97316;
  }
  
  /* ================= SERVICES ================= */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #020617;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.4);
    transition: transform .3s, box-shadow .3s;
    text-align: center;
  }

  .card-towing {
    background-image: url("/static/pics/fueldelivery.jpg");
  }
  
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,.6);
  }
  
  .card h3 {
    margin-bottom: 10px;
    color: #f97316;
  }
  
  /* ================= COVERAGE ================= */
  .section.coverage {
    background:
      linear-gradient(rgba(11,18,32,.75), rgba(11,18,32,.9)),
      url("/static/pics/roadrecovery2.jpg") center / cover no-repeat;
  }
  
  .coverage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
  
  .trust-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .trust-grid span {
    background: rgba(0,0,0,.5);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 500;
  }
  
  /* ================= REVIEWS ================= */
  .reviews .card {
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .section.reviews {
    background:
      linear-gradient(rgba(11,18,32,.75), rgba(11,18,32,.9)),
      url("/static/pics/customerreviews.jpg") center / cover no-repeat;
  }
  
  /* ================= FOOTER ================= */
  .footer {
    background: #020617;
    padding: 25px 0;
    margin-top: 40px;
  }
  
  .footer-inner {
    text-align: center;
    font-size: .9rem;
    opacity: .9;
  }
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 900px) {
    .hero-grid,
    .coverage-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-text h1 {
      font-size: 2.2rem;
    }
  
    .hero {
      padding: 70px 0;
    }
  }

  .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center; /* Ensures content stays centered */
    gap: 16px;
    background-color: #25D366;
    color: #000;
    font-family: 'Montserrat', sans-serif; /* Applied custom font with fallback */
    
    /* Boldness & Size Updates */
    font-weight: 900;           /* Maximum thickness */
    font-size: 1.5rem;          /* Increased from 1.1rem */
    padding: 20px 40px;         /* Significant increase in hit area */
    text-transform: uppercase;  /* Makes the text look much more "urgent" */
    letter-spacing: 1px;        /* Better readability for bold text */
    
    border-radius: 16px;
    text-decoration: none;
    margin: 30px 0;
    
    /* Stronger Shadow for depth */
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4); 
    
    transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background-image: url("/static/pics/whatsapp.jpg");
    background-size: cover; /* Ensures the background image fills the larger area */

  }
  
  /* .whatsapp-btn img {
    width: 28px;
    height: 28px;
  } */
  
  .whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  }

  
/* ================= Flash Message ================= */

  .flash-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
  }
  
  .flash {
    padding: 14px 22px;
    border-radius: 8px;
    font-weight: 600;
    background: #16a34a;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }
  
  .flash-success {
    background: #16a34a;
  }
  
  