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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.highlight {
    color: #8CC63F;
    font-weight: 600;
}

/* Header Styles */

@media (max-width: 400px) {
    .contact-info{
        display: none;
    }
}


.logo img {
    width: 235px;
    margin-left: 89px;
    margin-top: -5px;
}


/* //navbar// */

    .header {
    background: #fff;
    width: 100%;
    position: relative; /* <--- add this */
    z-index: 1000;
    }

    /* Header */
    .header-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      max-width: 1250px;
      margin: auto;
      padding: 15px 20px;
    }

    .logo img {
      width: 180px;
      height: auto;
        margin-left: -7px;
        margin-top: 20px;
    }

    /* Contact Info */
    .Contact-Info {
      display: flex;
      gap: 40px;
      flex-wrap: wrap;
    }
    .Contact-Info div {
      display: flex;
      align-items: center;
      gap: 3px;
    }
    .Contact-Info i {
      font-size: 3em;
      color: #8CC63F;
    }

    /* Navbar */
    .main-navbar-curve {
      background: #8CC63F;
      border-radius: 0 0 30px 0;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      max-width: 1200px;
      margin: auto;
      margin-top: -70px;;
      padding: 10px 20px;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0;
      padding: 0;
    }
    nav ul li a {
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      padding: 12px 18px;
      display: block;
      position: relative;
      transition: 0.3s;
    }
   nav ul li a::after {
    content: '';
    position: absolute;
    left: 0;                 /* start from the left */
    bottom: 4px;             /* adjust depending on padding */
    width: 0;                /* hidden by default */
    height: 2px;             /* thickness */
    background: #fff;        /* underline color */
    transition: width 0.3s ease;
}

    nav ul li a:hover::after {
        width: 100%;
    }

    /* Sample Button */
    .btn-login {
      background: #000;
      color: #fff;
      padding: 14px 28px;
      border-radius: 30px;
      text-decoration: none;
      font-weight: bold;
      transition: 0.3s;
    }
    .btn-login:hover {
      background: #fff;
      color: #000;
    }

    .btn-login1 {
      background: #000;
      color: #fff;
      display: inline-block;
      padding: 18px 28px;
      border-radius:20px 0px 20px 0px;
      text-decoration: none;
      font-weight: bold;
      transition:  0.6s;
      margin-left: 83vw;
    }
    .btn-login1:hover {
      background: #8cc63f;
      color: #fff;
    }

    /* Hamburger */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      width: 30px;
      height: 25px;
      background: none;
      border: none;
      cursor: pointer;
      z-index: 200;
    }
    .mobile-menu-toggle span {
      width: 100%;
      height: 3px;
      background: #000;
      border-radius: 2px;
      transition: all 0.3s;
    }

    @media (max-width: 900px){
        .btn-login1{
            display: none !important; 
        }

    }

    @media (min-width: 900px){
        .mobile-contact-info{
            display: none;
        }
    }
    

    /* Mobile Styles */
    @media (max-width: 900px) {
      .Contact-Info {
        display: none;
      }

      .main-navbar-curve {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        border-radius: 0 0 20px 20px;
        display: none;
        flex-direction: column;
        padding: 0;
        margin: 0;
      }

      .logo img{
        margin-left: -23px;
      }

      .main-navbar-curve.active {
        display: flex;
        margin-top: -75px;
      }

      .header {
     background: #fff;
        width: 100%;
     position: relative;
     z-index: 1000;
    height: 242px;
    }

      nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
         margin: 0;   /* remove default ul margin */
    padding: 0;  /* remove default ul padding */
      }
      nav ul li a {
        width: 100%;
        padding: 14px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.2);
      }

      /* Show Contact Info inside dropdown */
      .mobile-contact-info {
        padding: 15px 20px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        background: #8CC63F;
      }
      .mobile-contact-info div {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #fff;
        font-size: 14px;
      }
      .mobile-contact-info i {
        font-size: 1.4em;
      }

      .mobile-menu-toggle {
        display: flex;
      }

      .btn-login {
        width: 100%;
        text-align: center;
        margin: 15px 0;
        border-radius:20px 0px 20px 0px ;
      }
    }
    nav ul {
  list-style: none;
  margin: 0;       /* remove extra margin */
  padding: 0;      /* remove extra padding */
}

/* Hero Styles */
.hero {
    position: sticky;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
    color: white;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.25rem;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}
.cta-primary {
    background: #8CC63F;
    position: sticky;
    color: #ffffff;
    border: none;
    padding: 12px 24px; 
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);

    display: flex;           
    align-items: center;
    gap: 10px;             
}

.cta-primary img {
    width: 30px;   
    height: auto;
    display: block;
}

.cta-primary a {
    color: #ffffff !important;    
    text-decoration: none !important;
}

.cta-primary a:visited {
    color: #ffffff !important;     
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-features {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 500;
}

.feature-item svg {
    color: #dcfce7;
}

.vin-lookup-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: #225499;
}

.vin-lookup-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
}

.input-group {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
}

.input-group input {
    width: 100%;
    padding: 16px 60px 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.input-group input:focus {
    outline: none;
    border-color: #8CC63F;
    background: white;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: #8CC63F;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #16a34a;
    transform: translateY(-50%) scale(1.05);
}

@media (max-width: 480px) {
    .input-group {
        display: flex;
        flex-direction: column;
    }

    .input-group input {
        padding: 14px 20px;
    }

    .search-btn {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 10px;
        padding: 12px;
        border-radius: 12px;
    }

    .search-btn:hover {
        transform: scale(1.02);
    }
}

.vin-help {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
}

/* Responsive styles for Hero section */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr 350px;
        gap: 40px;
    }

    .hero-text h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        margin-top: 30px;
    }

    .feature-item {
        margin-bottom: 15px;
        text-align: center;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 120px;
    }

    .hero-form {
        margin-top: 100px;
        padding: auto;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 1rem;
        line-height: 1.4;
    }

    .cta-primary {
        padding: 14px 24px;
        font-size: 1rem;
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .cta-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

    .vin-lookup-card {
        padding: 24px 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

/* Why Choose Us Styles */
.why-choose {
    padding: 0;
    background: #f9fafb;
    margin-top: -30px;
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.content-left h2 {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1f2937;
}

.features-grid {
    display: grid;
    gap: 24px;
}


.feature-icon {
    color: #8CC63F;
    font-size: 20px;
    font-weight: bolder;
    margin-left: -26px;
}



.feature-content p {
    color: #000000;
    line-height: 1.5;
    font-size: large;
    font-weight: lighter;
    margin-top: -30px;
    margin-right: 5px;
}

.vin-location-guide h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1f2937;
}

.vin-diagram {
    position: relative;
    margin-bottom: 32px;
}

.vin-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.vin-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.vin-marker {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
}



.marker-label {
    background: white;
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.vin-tips {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.tip-number {
    width: 32px;
    height: 32px;
    background: #8CC63F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

/* Responsive styles for Why Choose Us section */
@media (max-width: 900px) {
    .why-choose .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .why-choose .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 10px;
    }

    .feature-icon {
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        margin-left: 0;
        margin-top: 2px;
        flex-shrink: 0;
        color: #8CC63F;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .feature-content h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 2px;
        color: #222;
        text-align: left;
    }

    .feature-content p {
        font-size: 0.95rem;
        color: #444;
        margin: 0;
        text-align: left;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .why-choose .features-grid {
        margin-top: 10px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-icon {
        font-size: 1.3rem;
        width: 28px;
        height: 28px;
        margin-left: 0;
        margin-top: 4px;
        flex-shrink: 0;
        color: #8CC63F;
    }

    .feature-content {
        flex: 1;
    }

    .feature-content h3 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 4px;
        color: #222;
        text-align: left;
    }

    .feature-content p {
        font-size: 0.95rem;
        color: #444;
        margin: 0;
        text-align: left;
        line-height: 1.5;
    }
}

/* Terms and Conditions Section */
.terms-section {
    padding: 100px 0 80px;
    background-color: #f9f9f9;
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.terms-content h1 {
    color: #8CC63F;
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
}

.terms-content h2 {
    color: #8CC63F;
    font-size: 24px;
    margin: 30px 0 15px;
}

.terms-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}

.terms-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}



/* Responsive styles for Terms and Conditions */
@media (max-width: 1024px) {
    .terms-content {
        max-width: 90%;
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .terms-section {
        padding: 80px 0 60px;
    }

    .terms-content h1 {
        font-size: 28px;
    }

    .terms-content h2 {
        font-size: 22px;
    }
}

@media (max-width: 480px) {
    .terms-section {
        padding: 70px 0 40px;
    }

    .terms-content {
        padding: 20px;
    }

    .terms-content h1 {
        font-size: 24px;
    }

    .terms-content h2 {
        font-size: 20px;
    }

    .terms-content p,
    .terms-content ul li {
        font-size: 14px;
    }

    .screenshot-container {
        flex-direction: column;
    }

    .screenshot-item {
        min-width: 100%;
        margin-bottom: 15px;
    }

    .screenshot-item img {
        height: 180px;
    }
}

/* Services Styles with Image Slider */
.services {
    padding: 100px 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1f2937;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.services-slider-container {
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.services-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(.77, 0, .18, 1);
    will-change: transform;
    touch-action: pan-y;
}

.service-slide {
    min-width: 100%;
    box-sizing: border-box;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 32px;
    margin: 0 0;
}

.service-image img {
    width: 320px;
    max-width: 45vw;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-content {
    flex: 1;
}

.slider-controls,
.slider-btn {
    display: none !important;
    /* Hide arrow buttons */
}

/* Dots remain visible and centered */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #8CC63F;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #8CC63F;
}

/* Responsive styles */
@media (max-width: 900px) {
    .service-slide {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 10px;
        gap: 18px;
    }

    .service-image img {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .services-slider-container {
        max-width: 100vw;
        padding: 0 0px;
    }

    .service-slide {
        padding: 12px 2px;
        border-radius: 10px;
    }

    .service-image img {
        width: 100%;
        max-width: 100vw;
        border-radius: 6px;
    }
}

/* Stats Section */
.stats-section {
    background: #fff;
    padding: 60px 0 40px 0;
}

.stats-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.stats-left {
    flex: 1 1 0;
    min-width: 320px;
}

.stats-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stats-desc {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    max-width: 420px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stat-icon {
    font-size: 2rem;
    color: #8CC63F;
    margin-bottom: 6px;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0;
}

.stat-label {
    color: #8CC63F;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0;
}

.stats-right {
    flex: 1 1 0;
    display: flex;
    justify-content: flex-end;
}

.showcase-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .stats-flex {
        flex-direction: column;
        align-items: center;
        gap: 32px;
    }

    .stats-right {
        justify-content: center;
        width: 100%;
    }

    .stats-left {
        width: 100%;
        text-align: center;
    }

    .stats-grid {
        margin: 0 auto;
        justify-items: center;
    }

    .stat-item {
        align-items: center;
    }
}

@media (max-width: 600px) {
    .stats-section {
        padding: 32px 0 24px 0;
    }

    .stats-left h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .showcase-img {
        max-width: 90vw;
    }
}

/* Pricing Styles */
.pricing {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 60px;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6b7280;
}

.toggle-btn.active {
    background: #8CC63F;
    color: white;
    box-shadow: 0 4px 12px #8CC63F;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #f3f4f6;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #8CC63F;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #8CC63F;
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1f2937;
}

.old-price {
    text-decoration: line-through;
    color: #222;
    font-size: 1em;
    margin-right: 8px;
    vertical-align: middle;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.currency {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 600;
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #8CC63F;
}

.period {
    font-size: 1.25rem;
    color: #6b7280;
    font-weight: 600;
}

.price-description {
    color: #6b7280;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 32px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 0.95rem;
}

.features-list svg {
    color: #8CC63F;
    flex-shrink: 0;
}

.plan-btn {
    width: 100%;
    background: #8CC63F;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Testimonials Styles */
.testimonials {
    padding: 100px 0;
    background: #8CC63F;
    color: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #8CC63F;
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials .section-header {
    margin-bottom: 50px;
}

.testimonials .section-header h2 {
    color: white;
}

.testimonials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.testimonial-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.testimonial-image:hover {
    transform: translateY(-10px);
}

.testimonial-image img {
    width: 100%;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.testimonial-image:hover img {
    transform: scale(1.05);
}

.testimonial-slider {
    position: relative;
    min-height: 250px;
    margin-bottom: 40px;
}

.testimonial-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-item blockquote {
    font-size: 1.25rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    padding: 0 20px;
}

.testimonial-item blockquote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-info p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.control-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive styles for testimonials */
@media (max-width: 1024px) {
    .testimonials-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .testimonials-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .testimonial-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .testimonial-slider {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonial-item blockquote {
        font-size: 1.1rem;
    }

    .testimonial-slider {
        min-height: 320px;
    }

    .author-avatar {
        width: 50px;
        height: 50px;
    }
}

/* FAQ Styles */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #8CC63F;
}

.faq-item.active {
    border-color: #8CC63F;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    background: #f9fafb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f3f4f6;
}

.faq-item.active .faq-question {
    background: #eff6ff;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    flex: 1;
}

.faq-toggle {
    background: none;
    border: none;
    color: #8CC63F;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 4px;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 32px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 24px 32px;
    max-height: 200px;
}

.faq-answer p {
    color: #6b7280;
    line-height: 1.6;
}

/* Contact Styles */
.contact {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.9) 0%, rgba(17, 24, 39, 0.95) 100%);
    z-index: -1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    color: white;
}

.contact-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.contact-left h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-left p {
    font-size: 1.125rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: #8CC63F;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 0.875rem;
    opacity: 0.8;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    color: #1f2937;
}

.form-group {
    margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    background: white;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    background: #8CC63F;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.submit-btn.loading .btn-text {
    opacity: 0;
}

.submit-btn.loading .btn-loader {
    opacity: 1;
}

.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Footer Styles */
.footer {
    background: #111827;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #3b82f6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 24px;
}

.newsletter-signup h4 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #1f2937;
    color: white;
    font-size: 0.875rem;
}

.newsletter-form input::placeholder {
    color: #9ca3af;
}

.newsletter-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.newsletter-btn:hover {
    background: #1d4ed8;
}

.footer-contact p {
    margin-bottom: 8px;
    font-weight: 500;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3b82f6;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
}

.contact-detail p {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-left p {
    color: #9ca3af;
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 16px;
}

.payment-methods span {
    color: #9ca3af;
    font-size: 0.875rem;
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-icon {
    background: #374151;
    color: #d1d5db;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.success-icon {
    width: 64px;
    height: 64px;
    background: #8CC63F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.modal-header p {
    color: #6b7280;
    margin-bottom: 24px;
}

.modal-close {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #1d4ed8;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .section-content,
    .testimonials-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-content {
        padding: 40px 32px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #8CC63F;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav.mobile-open {
        display: flex;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-actions {
        order: -1;
        width: 100%;
        justify-content: space-between;
    }

    .contact-info {
        display: none;
    }

    .hero {
        padding-top: 120px;
        min-height: 80vh;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-features {
        justify-content: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: none;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .section-header h2,
    .content-left h2,
    .content-right h2,
    .contact-left h2,
    .testimonial-text h2 {
        font-size: 2.25rem;
    }

    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .vin-lookup-card {
        padding: 24px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .section-header h2,
    .content-left h2,
    .content-right h2,
    .contact-left h2,
    .testimonial-text h2 {
        font-size: 1.875rem;
    }

    .service-content {
        padding: 32px 24px;
    }
}

/* Add/Enhance Responsive Utilities */
@media (max-width: 600px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
        box-sizing: border-box;
    }

    .why-choose .section-content {
        padding: 0 !important;
    }
}

/* Animation Classes (already present, just ensure they're here) */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(.77, 0, .18, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(.77, 0, .18, 1);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(.77, 0, .18, 1);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

.mb-4 {
    margin-bottom: 32px;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* Print Styles */
@media print {

    .header,
    .footer,
    .modal {
        display: none;
    }

    .hero {
        padding-top: 0;
        min-height: auto;
    }

    * {
        background: white !important;
        color: black !important;
        box-shadow: none !important;
    }
}

/* Scroll Animations */
.fade-in,
.slide-in-left,
.slide-in-right {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-right {
    transform: translateX(50px);
}

.fade-in.appear,
.slide-in-left.appear,
.slide-in-right.appear {
    opacity: 1;
    transform: translateX(0) translateY(0);
}

/* Starting state */
.slide-from-left,
.slide-from-right {
    opacity: 0;
    transform: translateX(var(--translate, 0));
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Define directions */
.slide-from-left {
    --translate: -50px;
}

.slide-from-right {
    --translate: 50px;
}

/* When visible */
.slide-from-left.appear,
.slide-from-right.appear {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Contact Info Section */
.contact-info {
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    padding: 18px 0;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.contact-details {
    flex: 1;
}

.contact-secured-img {
    width: auto;
    height: auto;
    margin-left: 0;
    margin-top: 0;
    display: block;
}

@media (max-width: 900px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 12px 0;
    }

    .contact-secured-img {
        margin-top: 10px;
        margin-left: 0;
        width: 70px;
    }
}

@media (max-width: 600px) {
    .contact-content {
        flex-direction: column;
        padding: 0 8px;
    }

    .contact-left {
        width: 100%;
        padding: 0;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }

    .contact-secured-img {
        width: 60px;
        margin-top: 8px;
        margin-left: 0;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p,
    .contact-details span {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .contact-content {
        flex-direction: column;
        padding: 0 8px;
    }

    .contact-left {
        width: 100%;
        padding: 0;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 10px 0;
    }

    .contact-secured-img {
        width: 60px;
        margin-top: 8px;
        margin-left: 0;
    }

    .contact-details h4 {
        font-size: 1rem;
    }

    .contact-details p,
    .contact-details span {
        font-size: 0.95rem;
    }
}


/* Modal Background */
    .modal {
      display: none; /* Hidden by default */
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.8);
    }

    /* Modal Content */
    .modal-content {
      margin: 5% auto;
      display: block;
      max-width: 90%;
      max-height: 85%;
      border-radius: 10px;
    }

    /* Close Button */
    .close {
      position: absolute;
      top: 15px;
      right: 30px;
      color: white;
      font-size: 35px;
      font-weight: bold;
      cursor: pointer;
    }


