/* Single Occasion Detail Page Styles */

/* Global overflow prevention for single occasion pages */
.single-occasion-new {
    overflow-x: hidden;
    width: 100%;
}

.single-occasion-new * {
    max-width: 100%;
    box-sizing: border-box;
}

/* Header full width for single occasion pages */
.single-occasion-new .header-main-container {
    max-width: 100%;
    padding: 15px 40px;
}

.single-occasion-new .header-top-container {
    max-width: 100%;
    padding: 0 40px;
}

/* 01. Section Afbeeldingen en Basis Gegevens */
.occasion-images-details {
    padding: 60px 0;
    background: #ffffff;
    width: 100%;
    overflow-x: hidden;
}

.occasion-images-details .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.images-details-grid {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 40px;
    align-items: start;
    width: 100%;
    max-width: 100%;
}

/* Linker Kolom: Afbeeldingen */
.images-column {
    position: relative;
    min-width: 0;
    /* Prevents overflow */
    overflow: hidden;
}

.image-slider {
    margin-bottom: 40px;
}

.main-image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8fafc;
    aspect-ratio: 4/3;
    width: 100%;
    max-width: 100%;
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.main-image:hover {
    transform: scale(1.02);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Thumbnails */
.image-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
}

.image-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.image-thumbnails::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.image-thumbnails::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    padding: 0;
    background: transparent;
}

.thumbnail-item.active {
    border-color: #2563eb;
    transform: scale(1.05);
}

.slider-arrow:focus-visible,
.thumbnail-item:focus-visible,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
    outline: 3px solid #ffbf47;
    outline-offset: 3px;
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.thumbnail-item img:hover {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox-trigger {
    cursor: pointer;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 30px;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 24px;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-title {
    position: absolute;
    bottom: -40px;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

/* USPs onder beide kolommen */
.occasion-usps-bottom {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e2e8f0;
}

.occasion-usps-bottom .usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    padding: 24px 16px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.occasion-usps-bottom .usp-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.occasion-usps-bottom .usp-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #22c55e;
}

.occasion-usps-bottom .usp-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.occasion-usps-bottom .usp-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Occasion category grid onder images-details-grid */
.occasion-category-grid {
    margin-top: 40px;
}

.occasion-category-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
}

.occasion-category-grid-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
}

.occasion-category-grid-count {
    font-size: 14px;
    color: #64748b;
}

@media (max-width: 768px) {
    .occasion-category-grid-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}


/* Rechter Kolom: Details - Modern Car Listing Card */
.details-column {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    padding: 0;
    min-width: 0;
    /* Prevents overflow */
    overflow-wrap: break-word;
    word-wrap: break-word;
    position: sticky;
    height: fit-content;
}

.details-card-header {
    background: #264F7F;
    color: white;
    padding: 24px;
    border-radius: 16px 16px 0 0;
    text-align: center;
}

.details-card-header h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.details-card-header .subtitle {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.details-card-body {
    padding: 24px;
}

.price-section {
    margin-bottom: 24px;
    text-align: center;
}

.price-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}

.kilometer-info {
    margin-bottom: 12px;
}

.km-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin: 16px 0;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #264F7F;
}

.price-note {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.lease-info {
    margin-top: 8px;
}

.lease-text {
    font-size: 14px;
    color: #4b5563;
}

/* Discount pricing styles */
.price-badge-container {
    margin-bottom: 12px;
    text-align: center;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #264F7F;
    border: 1px solid #264F7F;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    width: fit-content;
}

.price-badge .badge-pct {
    background: #ef4444;
    color: #fff;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 12px;
}

.price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.old-price {
    color: #94a3b8;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 16px;
}

.btw-label {
    font-size: 12px;
    color: #64748b;
    background: rgba(38, 79, 127, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(38, 79, 127, 0.1);
    margin-left: 8px;
}

.btw-label {
    font-size: 12px;
    color: #64748b;
    background: rgba(38, 79, 127, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
    border: 1px solid rgba(38, 79, 127, 0.1);
    margin-left: 8px;
}

/* Key Features Section */
.key-features {
    margin-bottom: 24px;
}

.key-features h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.feature-icon {
    color: #264F7F;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}



.test-drive-section {
    margin-top: 24px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
}

.test-drive-section .booking-title {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 16px 0;
    text-align: center;
}

.btn-test-drive {
    background: #25d366;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    transition: all 0.3s ease;
    border: none;
}

.btn-test-drive:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

/* Description Section */
.occasion-description {
    padding: 60px 0;
    background: #f8fafc;
}

.occasion-description .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.description-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.description-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 30px 0;
}

.description-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
    margin: 0 0 30px 0;
    text-align: left;
}

.description-text.collapsed {
    max-height: 120px;
    overflow: hidden;
    position: relative;
}

.description-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(transparent, #f8fafc);
}

.description-toggle {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.description-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Print Section Styles */
.print-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-print {
    background: #6b7280;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.btn-print:hover {
    background: #4b5563;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.btn-print i {
    font-size: 16px;
}

/* 02. Reviews Section - Uses homepage testimonials styling */
/* No additional CSS needed - uses existing testimonials classes from style.css */

/* Container width responsive adjustments */
@media (max-width: 1600px) {

    .occasion-images-details .container,
    .occasion-description .container {
        max-width: 1600px;
    }
}

@media (max-width: 1400px) {

    .occasion-images-details .container,
    .occasion-description .container {
        max-width: 1200px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) {

    .occasion-images-details .container,
    .occasion-description .container {
        max-width: 100%;
    }

    .images-details-grid {
        gap: 30px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-whatsapp,
    .btn-email {
        flex: none;
        width: 100%;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .occasion-images-details .container {
        padding: 0 20px;
    }

    .images-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .occasion-usps-bottom {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 40px;
        padding-top: 30px;
    }

    .occasion-usps-bottom .usp-item {
        padding: 20px 12px;
    }

    .occasion-usps-bottom .usp-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .occasion-usps-bottom .usp-content h4 {
        font-size: 14px;
    }

    .occasion-usps-bottom .usp-content p {
        font-size: 12px;
    }

    /* Header mobile adjustments */
    .single-occasion-new .header-main-container {
        padding: 15px 20px;
    }

    .single-occasion-new .header-top-container {
        padding: 0 20px;
    }

    .contact-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-print {
        padding: 10px 20px;
        font-size: 13px;
    }

    .btn-whatsapp,
    .btn-email {
        flex: none;
        width: 100%;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }

    .details-column {
        padding: 0;
        position: static;
    }

    .details-card-header {
        padding: 20px;
    }

    .details-card-header h3 {
        font-size: 18px;
    }

    .details-card-body {
        padding: 20px;
    }

    .price-amount {
        font-size: 28px;
    }

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

    .description-content h3 {
        font-size: 24px;
    }

    .description-text {
        font-size: 15px;
    }

    /* Lightbox mobile adjustments */
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox-nav {
        font-size: 20px;
        padding: 12px 16px;
    }

    .lightbox-prev {
        left: -50px;
    }

    .lightbox-next {
        right: -50px;
    }

    .lightbox-close {
        font-size: 24px;
        top: -35px;
    }
}

/* 03. Specifications Section */
.occasion-specifications {
    padding: 80px 0;
    background: #ffffff;
}

.occasion-specifications .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.specifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.specs-main-section {
    display: grid;
    grid-template-columns: 80% 20%;
    gap: 40px;
}

.specs-main-column h3 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 40px 0;
}

.specs-three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.spec-label {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
}

.spec-value {
    font-size: 16px;
    font-weight: 500;
    color: #1e293b;
}

/* Options Column */
.specs-options-column h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 24px 0;
}

.option-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.option-item:last-child {
    border-bottom: none;
}

.option-item i {
    color: #22c55e;
    font-size: 14px;
    flex-shrink: 0;
}

.option-item span {
    font-size: 14px;
    color: #4b5563;
}

.show-all-options {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.show-all-options:hover {
    background: #2563eb;
}

.all-options {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.all-options {
    grid-column: 1 / -1;
    margin-top: 40px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.all-options h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 20px 0;
}

.all-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.no-options {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

/* 04. Delivery Section */
.occasion-delivery {
    padding: 80px 0;
    background: #f8fafc;
}

.occasion-delivery .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.occasion-delivery h3 {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin: 0 0 60px 0;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.delivery-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.delivery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.delivery-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f0f9ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.delivery-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.delivery-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
}

/* 05. Lease Section */
.occasion-lease {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.occasion-lease .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.lease-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.lease-info-column h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px 0;
}

.lease-info-column h4 {
    font-size: 20px;
    font-weight: 500;
    color: #3b82f6;
    margin: 0 0 24px 0;
}

.lease-info-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin: 0 0 32px 0;
}

.lease-usps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lease-usp {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.lease-usp i {
    font-size: 18px;
    flex-shrink: 0;
}

.lease-usp span {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.lease-form-column {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

/* Lease Calculation CTA */
.lease-calculation-cta {
    margin-top: 20px;
    text-align: center;
}

.btn-lease-calc {
    background: #264F7F;
    color: white;
    border: none !important;
    padding: 14px 24px;
    font-weight: 600;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

.btn-lease-calc:hover {
    background: #1e3f66;
    border: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(38, 79, 127, 0.3);
    color: white;
    text-decoration: none;
}

.btn-lease-calc i {
    font-size: 1.1rem;
}

.lease-form-container h4 {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 24px 0;
    text-align: center;
}

.lease-calculation-form .form-group {
    margin-bottom: 20px;
}

.lease-calculation-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin-bottom: 6px;
}

.lease-calculation-form select,
.lease-calculation-form input {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    background: white;
}

.lease-calculation-form button {
    width: 100%;
    background: #3b82f6;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lease-calculation-form button:hover {
    background: #2563eb;
}

/* Mobile Responsive for Additional Sections */
@media (max-width: 768px) {
    .specifications-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .specs-main-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .all-options {
        padding: 20px;
        margin-top: 30px;
    }

    .occasion-specifications .container,
    .occasion-delivery .container,
    .occasion-lease .container {
        padding: 0 20px;
    }

    .all-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .delivery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .lease-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lease-info-column h3 {
        font-size: 22px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .lease-info-column h4 {
        font-size: 16px;
    }

    .lease-info-column p {
        font-size: 14px;
    }

    .lease-usps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lease-form-column {
        padding: 24px;
    }

    .all-options-grid {
        grid-template-columns: 1fr;
        gap: 6px;
    }
}

/* ============================================================
   FunnelLease Form — Mobile Responsive (14 Mar 2026)
   ============================================================ */
@media (max-width: 768px) {
    .occasion-lease { padding: 40px 0; }
    .occasion-lease .container { padding: 0 15px; }
    .lease-grid { grid-template-columns: 1fr; gap: 30px; }
    .lease-info-column h3 { font-size: 22px; word-wrap: break-word; overflow-wrap: break-word; }
    .lease-info-column h4 { font-size: 16px; }
    .lease-info-column p { font-size: 14px; line-height: 1.5; }
    .lease-usps { grid-template-columns: 1fr; gap: 10px; }
    .lease-usp { padding: 12px; }
    .lease-form-column { padding: 20px 15px; }
    .lease-form-container { overflow: hidden; }
    .lease-form-container h4 { font-size: 18px; margin-bottom: 15px; }
    .funnellease-form, .funnel-lease-form, [class*="funnellease"], [class*="funnel-lease"] {
        max-width: 100% !important; overflow: hidden;
    }
    .funnellease-form input, .funnellease-form select, .funnellease-form textarea,
    .funnel-lease-form input, .funnel-lease-form select, .funnel-lease-form textarea {
        max-width: 100%; box-sizing: border-box; font-size: 16px;
    }
    .funnellease-form .form-row, .funnel-lease-form .form-row { flex-direction: column; gap: 10px; }
    .funnellease-form .form-group, .funnel-lease-form .form-group { width: 100% !important; }
    .lease-faq-section { margin-top: 20px; }
    .lease-faq-section h3 { font-size: 18px; }
}
@media (max-width: 480px) {
    .occasion-lease .container { padding: 0 10px; }
    .lease-info-column h3 { font-size: 20px; }
    .lease-form-column { padding: 15px 10px; }
}
