    :root {
      --primary: #5C7F67;
      --primary-light: #7fa38a;
      --secondary: #E5A76C;
      --secondary-light: #ffc791;
      --accent: #E5A76C;
      --accent-light:	#F3CBA6;
      --bg-dark: #121212;
      --bg-darker: #0a0a0a;
      --card-bg: rgba(30, 30, 30, 0.7);
      --card-border: rgba(255, 255, 255, 0.08);
      --text-light: #f4f4f4;
      --text-lighter: #ffffff;
      --transition-base: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .form-control::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
  opacity: 1; /* Ensures full visibility in all browsers */
}

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-light);
      background-image: 
        radial-gradient(circle at 25% 25%, rgba(92, 127, 103, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(229, 167, 108, 0.1) 0%, transparent 50%);
    }
    
    /* Header Section */
   .header-section {
  background: linear-gradient(135deg, #3c5b4c, #e5a76c);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

    
    .header-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('dealer-pattern.png') center/cover;
      opacity: 0.1;
    }
    
   .header-section h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), #f4f4f4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: textShine 8s ease-in-out infinite;
  background-size: 200% auto;
}

    
    .header-section .lead {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
    }
    
    /* Form Section */
    .form-section {
      background: var(--card-bg);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 3rem;
      border: 1px solid var(--card-border);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      transition: var(--transition-base);
    }
    
    .form-section:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }
    
    .form-label {
      font-weight: 500;
      color: var(--secondary);
      margin-bottom: 0.5rem;
    }
    
    .form-control {
      background-color: rgba(18, 18, 18, 0.7) !important;
      border: 1px solid var(--card-border) !important;
      color: var(--text-light) ;
      padding: 0.8rem 1rem;
      border-radius: 8px;
      transition: var(--transition-base) !important;
    }
    
    .form-control:focus {
      background-color: rgba(18, 18, 18, 0.9);
      border-color: var(--secondary);
      box-shadow: 0 0 0 0.25rem rgba(229, 167, 108, 0.25);
      color: var(--text-lighter);
    }
    
    .form-control::placeholder {
      color: rgba(255, 255, 255, 0.4);
    }
    
    .input-group-text {
      background-color: var(--accent) !important;
      color: var(--bg-darker) !important;
      border: 1px solid var(--accent) !important;
      font-weight: 600;
    }
    
    /* Submit Button */
    .submit-btn {
      background: linear-gradient(to right, var(--secondary), var(--secondary-light));
      color: var(--bg-darker);
      border: none;
      font-weight: 600;
      padding: 1rem;
      border-radius: 50px;
      transition: var(--transition-base);
      position: relative;
      overflow: hidden;
      margin-top: 1rem;
    }
    
    .submit-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, var(--secondary-light), var(--secondary));
      opacity: 0;
      transition: var(--transition-base);
    }
    
    .submit-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(229, 167, 108, 0.3);
    }
    
    .submit-btn:hover::before {
      opacity: 1;
    }
    
    .submit-btn span {
      position: relative;
      z-index: 1;
    }
    
    /* Benefits Section */
    .benefits-section {
      margin-top: 5rem;
    }
    
    .benefits-title {
        font-size: 2.8rem;
        font-weight: 700;
        color: var(--accent);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
        background: linear-gradient(90deg, var(--accent), #f4f4f4);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: textShine 8s ease-in-out infinite;
        background-size: 200% auto;
        left: 50%;
        transform: translateX(-50%);
    }
    .benefits-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(to right, var(--secondary), transparent);
    }
    .benefit-card {
  background: rgba(30, 30, 30, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  height: 100%;
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.4);
}
.benefit-card h4 {
  color: #E5A76C;

}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 65%, rgba(229, 167, 108, 0.1) 100%);
  z-index: 1;
  transition: all 0.8s ease;
  opacity: 0;
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card .benefit-icon,
.benefit-card h4,
.benefit-card p {
  position: relative;
  z-index: 2;
}
.benefit-icon {
  font-size: 2.5rem;
  color: var(--accent);
  filter: drop-shadow(0 0 8px rgba(229, 167, 108, 0.4));
  margin-bottom: 1.5rem;
}

    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .header-section {
        padding: 80px 20px;
      }
      
      .header-section h1 {
        font-size: 2.4rem;
      }
    }
    
    @media (max-width: 768px) {
      .header-section {
        padding: 60px 20px;
      }
      
      .header-section h1 {
        font-size: 2rem;
      }
      
      .form-section {
        padding: 2rem;
      }
    }
    
    @media (max-width: 576px) {
      .header-section {
        padding: 50px 15px;
      }
      
      .header-section h1 {
        font-size: 1.8rem;
      }
      
      .header-section .lead {
        font-size: 1rem;
      }
    }
/* ===== Present Dealers Section ===== */
.present-dealers-section {
  background: linear-gradient(145deg, #0e0e0e, #1a1a1a);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.present-dealers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top, rgba(255, 215, 128, 0.05), transparent 60%);
  z-index: 0;
}

.dealers-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 2.5rem;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: linear-gradient(90deg, var(--accent), #f5b75d);
  -webkit-background-clip: text;
  color: transparent;
  animation: textShine 8s linear infinite;
  background-size: 200% auto;
}

@keyframes textShine {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ===== Dealer Card ===== */
.dealer-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.dealer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(255, 193, 7, 0.15);
}

/* Image container */
.dealer-img {
  width: 100%;
  height: 230px;
  overflow: hidden;
  position: relative;
}

.dealer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease, filter 0.8s ease;
  filter: brightness(0.9) contrast(1.05);
}

.dealer-card:hover .dealer-img img {
  transform: scale(1.08);
  filter: brightness(1);
}

/* Dealer info */
.dealer-info {
  padding: 1.8rem 1.4rem 2rem;
  color: var(--text-light);
}

.dealer-icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  text-shadow: 0 0 10px rgba(245, 158, 11, 0.4);
}

.dealer-name {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.dealer-address {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}
