:root {
    /* Soft, Clean Theme Palette */
    --hunter-green: #0a733a;
    /* Logo green */
    --hunter-green-light: #16924d;
    /* Lighter shade of logo green for hover */
    --neon-yellow: #ffe600;
    /* Logo bright yellow */
    --neon-yellow-hover: #e5cf00;
    /* Slightly darker logo yellow for hover */
    --pure-white: #ffffff;
    --off-white: #f8fbf8;
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --border-soft: rgba(10, 115, 58, 0.08);
    --dark-grey: #374151;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Layout */
    --container-width: 1100px;
    --border-radius-lg: 24px;
    --border-radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--off-white);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--hunter-green);
    line-height: 1.2;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    h3 {
        font-size: 1.5rem !important;
    }
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
}

.section-padding {
    padding: 6rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
}

.text-center {
    text-align: center;
}

.bg-white {
    background-color: var(--pure-white);
}

.bg-off-white {
    background-color: var(--off-white);
}

.bg-green-dark {
    background-color: var(--hunter-green);
}

.text-white {
    color: var(--pure-white);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.8);
}

.mt-4 {
    margin-top: 1rem;
}

.w-full {
    width: 100%;
}

.justify-center {
    justify-content: center;
}

/* Highlight styling */
span.highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

span.highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: -2%;
    width: 104%;
    height: 30%;
    background-color: var(--neon-yellow);
    z-index: -1;
    opacity: 0.6;
    border-radius: 4px;
    transform: rotate(-1deg);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: var(--hunter-green);
    color: var(--pure-white);
    box-shadow: 0 4px 14px rgba(10, 115, 58, 0.2);
}

.btn-primary:hover {
    background-color: var(--hunter-green-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 115, 58, 0.3);
}

.btn-accent {
    background-color: var(--neon-yellow);
    color: var(--hunter-green);
    box-shadow: 0 4px 14px rgba(255, 230, 0, 0.3);
}

.btn-accent:hover {
    background-color: var(--neon-yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.4);
}

.btn-outline-accent {
    background-color: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-yellow);
    box-shadow: 0 4px 14px rgba(255, 230, 0, 0.1);
}

.btn-outline-accent:hover {
    background-color: var(--neon-yellow);
    color: var(--hunter-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 230, 0, 0.3);
}

.btn-whatsapp-fixed {
    background-color: #25d366;
    color: white;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 100;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.btn-whatsapp-fixed i,
.btn-whatsapp-fixed svg {
    width: 32px;
    height: 32px;
}

.btn-whatsapp-fixed:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    animation: none;
    /* Stop pulse on hover */
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Nav */
nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}

nav.nav-scrolled {
    background: rgba(10, 115, 58, 0.98);
    /* Dark hunter green */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

nav.nav-scrolled .nav-links a:not(.btn) {
    color: var(--pure-white);
}

nav.nav-scrolled .nav-links a:not(.btn):hover {
    color: var(--neon-yellow);
}

nav.nav-scrolled .mobile-nav-toggle {
    color: var(--pure-white);
}

@media (max-width: 992px) {
    nav.nav-scrolled .nav-links {
        background: var(--hunter-green);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--hunter-green);
}

.mobile-nav-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: 6rem;
    padding-bottom: 8rem;
    background: radial-gradient(circle at 80% 20%, rgba(255, 212, 0, 0.15), transparent 40%), linear-gradient(180deg, #F6F7F8 0%, #ECEFF1 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #E8F5EC;
    color: #1F7A4C;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.2rem;
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.05rem;
}

.hero-bullets li i {
    color: var(--hunter-green);
}

.hero-content h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-bullets {
    margin-bottom: 2.5rem;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.hero-bullets li i,
.hero-bullets li svg {
    color: var(--hunter-green);
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.trust-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.trust-microtext {
    font-size: 0.9rem !important;
    color: var(--text-secondary) !important;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-microtext span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.trust-microtext span i {
    color: #25d366;
}

/* Feature Ribbon */
.feature-ribbon {
    background-color: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-soft);
    overflow: hidden;
    position: relative;
}

.ribbon-container {
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.ribbon-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.ribbon-track img {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.ribbon-track img:hover {
    opacity: 1;
    filter: none;
}

.mobile-duplicate {
    display: none;
}

@media (max-width: 768px) {
    .feature-ribbon {
        padding: 1.5rem 0;
    }

    .ribbon-track {
        justify-content: flex-start;
        width: max-content;
        gap: 2rem;
        animation: scrollRibbon 15s linear infinite;
    }

    .ribbon-track img {
        height: 30px;
    }

    .mobile-duplicate {
        display: block;
    }
}

@keyframes scrollRibbon {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
        /* 50% shift including gap compensation */
    }
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.hero-background-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-45%, -50%) translate(20px, 20px);
    width: 90%;
    height: 95%;
    background: #FFD400;
    border-radius: 24px;
    z-index: 0;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.hero-car-image {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15), 0 10px 20px rgba(0, 0, 0, 0.08);
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trust Section */
.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background: var(--off-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border-soft);
    text-align: center;
    transition: transform 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(10, 115, 58, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter-green);
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Services section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--neon-yellow);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter-green);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Why Choose Section */
.why-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.owner-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
}

.why-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.why-bullets li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-primary);
}

.why-bullets li i,
.why-bullets li svg {
    color: var(--hunter-green);
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.stars {
    color: var(--neon-yellow-hover);
    margin-bottom: 1rem;
    display: flex;
    gap: 0.2rem;
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.customer-avatar {
    width: 48px;
    height: 48px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.customer-info h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
}

/* Lead Trap Section */
.lead-trap {
    background: linear-gradient(135deg, rgba(10, 115, 58, 0.05) 0%, rgba(10, 115, 58, 0.02) 100%);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.lead-trap h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead-trap-sub {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 3.5rem;
    font-weight: 500;
}

.lead-trap-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.lead-card {
    background: var(--pure-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease;
    text-align: center;
}

.lead-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.lead-icon {
    width: 60px;
    height: 60px;
    background: rgba(10, 115, 58, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter-green);
    margin: 0 auto 1.5rem;
}

.lead-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.lead-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.lead-trap-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.05rem;
}


/* Form Section Layout */
.eligibility-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: #f8fafc;
    padding: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.eligibility-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text-primary);
}

.eligibility-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.eligibility-benefits {
    margin-top: 2.5rem;
}

.eligibility-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    color: var(--text-primary);
    font-weight: 500;
}

.icon-box {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background-color: #e6f0fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a365d;
    margin-top: 2px;
}

.icon-box svg,
.icon-box i {
    width: 20px;
    height: 20px;
}

.eligibility-form-wrapper {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    max-width: 480px;
}

.form-title {
    font-size: 1.6rem;
    line-height: 1.3;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.loan-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-group input,
.form-select {
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--pure-white);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1em;
}

.form-group input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--hunter-green);
}

.form-privacy-note {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Models Section (Pricing Estimates) */
.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.model-card {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
}

.model-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.model-image-container {
    width: 100%;
    aspect-ratio: 16/10;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-image-container img {
    transform: scale(1.05);
}

.model-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.model-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.model-desc {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    flex-grow: 1;
}

.installment-box {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid var(--border-soft);
}

.installment-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.installment-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--hunter-green);
    font-family: var(--font-heading);
}

.installment-price small {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: var(--font-body);
}

.trust-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: italic;
}


/* CTA Section */
.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--pure-white);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-soft);
}

.footer-grid,
.footer-grid-2col,
.footer-grid-3col {
    display: grid;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
}

.footer-grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-grid-3col {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.business-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.footer-col p i {
    min-width: 16px;
    margin-top: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-soft);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hunter-green);
}

.social-icons a:hover {
    background: var(--hunter-green);
    color: var(--pure-white);
}

/* Scrolling Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {

    .hero-grid,
    .why-grid,
    .eligibility-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .eligibility-container {
        padding: 3rem 2rem;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .trust-cards,
    .services-grid,
    .testimonials-grid,
    .models-grid,
    .lead-trap-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--pure-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-soft);
        transform: translateY(-150%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
        display: flex;
    }

    .mobile-nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        color: var(--hunter-green);
        cursor: pointer;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {

    .trust-cards,
    .services-grid,
    .testimonials-grid,
    .models-grid,
    .lead-trap-cards {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .footer-grid,
    .footer-grid-2col {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        padding: 2rem;
    }

    .eligibility-container {
        display: block;
        padding: 2rem 1.2rem;
    }

    .eligibility-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .eligibility-form-wrapper {
        width: 100%;
        margin: 0 auto;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content h1 {
        font-size: 2.5rem !important;
        margin-bottom: 1rem;
    }

    .hero-content p {
        margin: 0 auto 2rem;
    }

    .hero-bullets {
        align-items: flex-start;
        text-align: left;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        max-width: 400px;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .eligibility-title {
        font-size: 1.8rem !important;
        text-align: center;
    }

    .eligibility-desc {
        text-align: center;
        font-size: 1rem;
    }

    .eligibility-benefits li {
        font-size: 0.95rem;
    }


    .trust-container {
        align-items: center;
        text-align: center;
    }

    .trust-microtext {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem !important;
    }

    .hero-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .hero-logos img {
        height: 25px;
    }

    /* Trust Section Optimizations */
    .why-grid {
        text-align: center;
    }

    .why-content h2 {
        font-size: 2rem !important;
    }

    .why-bullets {
        text-align: left;
        display: inline-block;
        margin: 0 auto 2rem;
    }

    .trust-cards {
        display: flex !important;
        flex-direction: column;
        gap: 1.5rem;
        max-width: 100% !important;
    }
}

/* Free Gift Section */
.free-gift-section {
    position: relative;
    background-image: url('images/Tinted Kereta.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--pure-white);
    overflow: hidden;
}

/* Fallback if webp not supported or as a backup */
@supports not (background-image: url('images/Tinted Kereta.webp')) {
    .free-gift-section {
        background-image: url('images/Tinted Kereta.png');
    }
}

.free-gift-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 115, 58, 0.95) 0%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.relative-container {
    position: relative;
    z-index: 2;
}

.free-gift-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
}

.gift-main-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    position: relative;
}

.gift-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--neon-yellow);
    color: var(--hunter-green);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(255, 230, 0, 0.3);
}

.gift-icon-large {
    width: 70px;
    height: 70px;
    background: var(--neon-yellow);
    color: var(--hunter-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.gift-icon-large i,
.gift-icon-large svg {
    width: 35px;
    height: 35px;
}

.gift-main-card h3 {
    color: var(--pure-white);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gift-main-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.tint-selector {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.selector-label {
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: var(--neon-yellow);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.tint-options {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tint-btn {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.tint-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.tint-btn.active {
    background: var(--neon-yellow);
    color: var(--hunter-green);
    border-color: var(--neon-yellow);
    box-shadow: 0 10px 20px rgba(255, 230, 0, 0.2);
}

.tint-status-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tint-status-text strong {
    color: var(--neon-yellow);
}

.gift-list-card {
    background: rgba(0, 0, 0, 0.2);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.gift-list-card h3 {
    color: var(--pure-white);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.gift-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gift-items li {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    transition: transform 0.3s ease;
}

.gift-items li:hover {
    transform: translateX(10px);
}

.gift-item-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 230, 0, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-yellow);
    flex-shrink: 0;
}

.gift-item-text {
    display: flex;
    flex-direction: column;
}

.gift-item-text strong {
    font-size: 1.1rem;
    color: var(--pure-white);
}

.gift-item-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.gift-note {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1/1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.hidden-gallery {
    display: none;
}

.hidden-gallery.show {
    display: block;
    animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .free-gift-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gift-main-card,
    .gift-list-card {
        padding: 2rem;
    }

    .gift-main-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .free-gift-grid {
        gap: 1.5rem;
    }

    .gift-main-card h3 {
        font-size: 1.5rem !important;
    }

    .selector-label {
        font-size: 0.8rem;
    }

    .tint-btn {
        padding: 0.75rem;
        font-size: 1rem;
    }

    .footer-grid-3col {
        gap: 2.5rem;
    }

    .footer-col {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col p {
        justify-content: center;
    }
}