/* HMO Tyres Landing Page Styles */

.landing-page {
    background: linear-gradient(135deg, var(--card-bg) 0%, #f8f9fa 100%);
    min-height: 100vh;
}

/* Header Navigation */
.landing-page .landing-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.landing-page .landing-login-btn {
    background-color: var(--checkout-btn-color) !important;
    border-color: var(--checkout-btn-color) !important;
    color: white !important;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.landing-page .landing-login-btn:hover {
    background-color: var(--checkout-btn-hover-color) !important;
    border-color: var(--checkout-btn-hover-color) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(130, 201, 30, 0.3);
}

/* Hero Section */
.landing-page .hero-section {
    background: 
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../../images/login_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.landing-page .hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.landing-page .hero-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-transform: uppercase;
}

.landing-page .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    margin-bottom: 3rem;
    color: #e8e8e8;
    line-height: 1.4;
}

.landing-page .hero-usps-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.landing-page .hero-usps {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.landing-page .hero-usp-item {
    font-size: 1.4rem;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .hero-usp-item i {
    color: var(--checkout-btn-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.landing-page .hero-usp-item span {
    color: #e8e8e8;
}

.landing-page .hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.landing-page .hero-contact {
    text-align: left;
}

.landing-page .hero-phone {
    color: white !important;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.landing-page .hero-phone:hover {
    color: var(--checkout-btn-color) !important;
    text-decoration: none !important;
}

.landing-page .btn-hero-request {
    background-color: var(--checkout-btn-color) !important;
    border-color: var(--checkout-btn-color) !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(130, 201, 30, 0.3);
    transition: all 0.3s ease;
}

.landing-page .btn-hero-request:hover {
    background-color: var(--checkout-btn-hover-color) !important;
    border-color: var(--checkout-btn-hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(130, 201, 30, 0.4);
}

/* Target Audience Section - Left-Right Layout */
.landing-page .target-audience-section {
    background-color: var(--card-bg);
    padding-bottom: 0 !important;
}

.landing-page .why-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.landing-page .why-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}


.landing-page .why-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.landing-page .why-highlight-box {
    font-size: 1rem;
    font-weight: 500;
    color: #155724;
    background: #d1ecf1;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    border: 1px solid #bee5eb;
    margin: 0;
    display: inline-flex;
    align-items: center;
    box-shadow: none;
}

.landing-page .why-highlight-box i {
    color: #17a2b8;
    font-size: 1rem;
    margin-right: 0.5rem;
}

.landing-page .target-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.landing-page .target-grid-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    min-height: 72px;
    gap: 12px;
}

.landing-page .target-grid-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.landing-page .target-grid-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(130, 201, 30, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    font-size: 20px;
    color: #2E7D32 !important;
}

.landing-page .target-grid-item:hover .target-grid-icon {
    background: rgba(130, 201, 30, 0.2);
}

.landing-page .target-grid-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

.landing-page .why-highlight-box-bottom {
    font-size: 1rem;
    font-weight: 500;
    color: #155724;
    background: #d1ecf1;
    padding: 0.8rem 1.2rem;
    border-radius: 16px;
    border: 1px solid #bee5eb;
    margin: 1.5rem 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.landing-page .why-highlight-box-bottom i {
    color: #17a2b8;
    font-size: 1rem;
    margin-right: 0.5rem;
}

/* Features Section - Improved Layout */
.landing-page .features-section {
    background-color: var(--card-bg);
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.landing-page .features-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Features List - Grid Layout with Cards */
.landing-page .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.landing-page .features-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    min-height: 72px;
    cursor: default;
    position: relative;
    gap: 12px;
}

.landing-page .features-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.landing-page .features-item:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--checkout-btn-color);
}

.landing-page .features-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(130, 201, 30, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.landing-page .features-bullet i {
    font-size: 20px;
    color: #2E7D32;
}

.landing-page .features-item:hover .features-bullet {
    background: rgba(130, 201, 30, 0.2);
}

.landing-page .feature-content {
    flex: 1;
}

.landing-page .feature-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 2px;
}

.landing-page .feature-subtitle {
    font-size: 12px;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.25;
    opacity: 0.7;
}

.landing-page .features-item-wide {
    grid-column: span 3;
}

/* Bandenhotel Widget - Consistent styling */
.landing-page .bandenhotel-widget {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.8rem;
    color: var(--primary-color);
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.landing-page .widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    gap: 0.5rem;
}

.landing-page .widget-icon {
    font-size: 1.2rem;
    color: var(--checkout-btn-color) !important;
}

.landing-page .widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color);
}

.landing-page .widget-description {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: #666;
}

.landing-page .widget-description small {
    font-size: 0.75rem;
    display: block;
    margin-top: 0.5rem;
    line-height: 1.3;
    color: #888;
}

.landing-page .btn-widget-info {
    background-color: transparent !important;
    border: 1px solid var(--checkout-btn-color) !important;
    color: var(--checkout-btn-color) !important;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.landing-page .btn-widget-info:hover {
    background-color: var(--checkout-btn-color) !important;
    color: white !important;
    transform: none;
}

/* CTA Section */
.landing-page .cta-section {
    background: linear-gradient(135deg, var(--card-bg) 0%, #e9ecef 100%);
}

.landing-page .cta-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    border: 1px solid #e5e7eb;
}

@media screen and (max-width: 768px) {
    .landing-page .cta-card {
        padding: 1rem;
    }
}

.landing-page .cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
}

.landing-page .cta-text {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 500;
}

.landing-page .cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.landing-page .cta-divider {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: italic;
}

.landing-page .cta-contact {
    text-align: start;
}

.landing-page .contact-phone {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.landing-page .contact-phone:hover {
    color: var(--checkout-btn-color);
    text-decoration: none;
}

@media (min-width: 576px) {
    .landing-page .cta-actions {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    
    .landing-page .cta-divider {
        font-size: 1rem;
    }
}

.landing-page .btn-cta {
    background-color: var(--checkout-btn-color) !important;
    border-color: var(--checkout-btn-color) !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(130, 201, 30, 0.3);
    transition: all 0.3s ease;
}

.landing-page .btn-cta:hover {
    background-color: var(--checkout-btn-hover-color) !important;
    border-color: var(--checkout-btn-hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(130, 201, 30, 0.4);
}

.landing-page .contact-info-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1rem;
}

.landing-page .contact-item {
    display: flex;
    align-items: center;
    color: #666;
    font-weight: 500;
}

.landing-page .contact-divider {
    color: #ccc;
    font-weight: 300;
}

.landing-page .landing-contact-icon {
    color: var(--checkout-btn-color) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .landing-page .hero-title {
        font-size: 2.8rem;
    }
    
    .landing-page .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .landing-page .hero-cta-group {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .landing-page .hero-contact {
        text-align: center;
    }
    
    .landing-page .section-title {
        font-size: 2rem;
    }
    
    .landing-page .contact-info-inline {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .landing-page .contact-divider {
        display: none;
    }
}

/* Request Form Styles */
.landing-page .request-section {
    background: white;
    min-height: 60vh;
}

.landing-page .request-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 40px rgba(31, 59, 27, 0.1);
    border: 2px solid var(--border-color-dark);
    position: relative;
    overflow: hidden;
}

.landing-page .request-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.landing-page .request-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.landing-page .form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.landing-page .form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #fbfcfd;
}

.landing-page .form-control:focus {
    border-color: var(--checkout-btn-color);
    box-shadow: 0 0 0 0.2rem rgba(130, 201, 30, 0.15);
    background-color: white;
    transform: translateY(-1px);
}

.landing-page .form-control:hover {
    border-color: #d1d9df;
    background-color: white;
}

.landing-page .request-form select.form-control {
    padding: 0 15px;
}

.landing-page .btn-request-submit {
    background-color: var(--checkout-btn-color) !important;
    border-color: var(--checkout-btn-color) !important;
    color: white !important;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 15px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(130, 201, 30, 0.3);
    transition: all 0.3s ease;
}

.landing-page .btn-request-submit:hover {
    background-color: var(--checkout-btn-hover-color) !important;
    border-color: var(--checkout-btn-hover-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(130, 201, 30, 0.4);
}

.landing-page .btn-outline-primary {
    background-color: transparent !important;
    border: 2px solid var(--checkout-btn-color) !important;
    color: var(--checkout-btn-color) !important;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.landing-page .btn-outline-primary:hover {
    background-color: var(--checkout-btn-color) !important;
    border-color: var(--checkout-btn-color) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(130, 201, 30, 0.3);
    text-decoration: none;
}

.landing-page .contact-info-section {
    border-color: #e9ecef !important;
}

.landing-page .contact-info-section h5 {
    color: var(--primary-color);
    font-weight: 600;
}

.landing-page .contact-info-section .contact-item {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.landing-page .contact-info-section .contact-item:hover {
    color: var(--checkout-btn-color);
    text-decoration: none;
}

/* Alert Styles */
.landing-page .alert-success {
    background-color: #d4edda;
    border-color: var(--checkout-btn-color);
    color: #0f5132;
    border-radius: 10px;
}

/* Secondary CTA button */
.landing-page .btn-features-cta {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.landing-page .btn-features-cta:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

/* Responsive - Medium screens */
@media (max-width: 991px) {
    .landing-page .features-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .landing-page .features-item-wide {
        grid-column: span 2;
    }
    
    .landing-page .bandenhotel-widget {
        margin-top: 2rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .landing-page .request-title {
        font-size: 2rem;
    }
    
    .landing-page .request-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    /* Target Audience Mobile - Left-Right Layout */
    .landing-page .target-audience-section .row {
        flex-direction: column;
    }
    
    .landing-page .why-title {
        font-size: 1.8rem;
        text-align: center !important;
    }
    
    .landing-page .why-text {
        font-size: 1rem;
        text-align: center !important;
    }
    
    .landing-page .why-highlight-box {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        text-align: center;
        margin: 0 auto 1.5rem auto;
        display: flex;
        justify-content: center;
        max-width: 280px;
    }
    
    .landing-page .target-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
        gap: 1rem; /* was 0.8rem - improved spacing for touch */
        margin-top: 0;
    }
    
    .landing-page .target-grid-item {
        padding: 0.6rem 0.8rem;
    }

    @media screen and (max-width: 768px) {
        .landing-page .target-grid-item {
            padding: 0.4rem 0.4rem;
            min-height: 0;
        }
    }
    
    .landing-page .target-grid-icon {
        font-size: 1.1rem;
        margin-right: 0;
        width: 32px;
        height: 32px;
    }
    
    .landing-page .target-grid-text {
        font-size: 0.9rem;
    }
    
    .landing-page .why-highlight-box-bottom {
        font-size: 0.9rem;
        padding: 0.7rem 1rem;
        margin: 1rem 0 0 0;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .landing-page .why-highlight-box-bottom i {
        margin-right: 0;
        margin-bottom: 0.2rem;
    }

    @media screen and (max-width: 768px) {
        /* Features Mobile */
        .landing-page .features-title {
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 1rem !important;
        }
    }

    .landing-page .features-list {
        grid-template-columns: repeat(2, 1fr); /* was 1fr - 2 column grid on mobile */
        gap: 12px; /* was 10px - improved spacing for touch */
        margin-bottom: 0;
    }

    .landing-page .features-item {
        padding: 0.4rem 0.4rem;
        min-height: 56px;
    }

    .landing-page .features-bullet {
        width: 32px; /* was 28px - improved touch target */
        height: 32px;
        margin-right: 0;
    }

    .landing-page .features-bullet i {
        font-size: 17px; /* was 16px */
    }

    .landing-page .feature-title {
        font-size: 0.9rem;
    }

    .landing-page .feature-subtitle {
        font-size: 0.8rem; /* was 0.7rem - improved readability */
        line-height: 1.4;
    }
    
    .landing-page .features-item-wide {
        grid-column: span 2; /* span both columns on mobile */
    }
    
    /* Bandenhotel Widget Mobile */
    .landing-page .bandenhotel-widget {
        margin-top: 1rem;
        min-height: auto;
        padding: 1.5rem;
    }
    
    .landing-page .widget-title {
        font-size: 1rem;
    }
    
    .landing-page .widget-description {
        font-size: 0.9rem; /* was 0.85rem - improved readability */
        margin-bottom: 0.8rem;
    }

    .landing-page .btn-widget-info {
        font-size: 0.9rem; /* was 0.8rem - improved readability */
        padding: 8px 14px; /* was 5px 10px - improved touch target */
        min-height: 36px;
    }

    /* Improved touch targets for all buttons */
    .landing-page .btn-cta,
    .landing-page .btn-hero-request {
        padding: 12px 28px !important; /* Minimum 44px height for touch */
        font-size: 1rem !important;
    }

    .landing-page .hero-cta-group {
        gap: 2rem; /* More spacing between CTA elements */
    }
}

/* Brand Logos Section */
.landing-page .brand-logos-section {
    background: white;
    position: relative;
    margin-top: -60px;
    z-index: 10;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.landing-page .brands-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.landing-page .brand-logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: auto;
}

.landing-page .brand-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    width: 120px;
    flex-shrink: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.landing-page .brand-logo {
    max-height: 40px;
    max-width: 100px;
    width: auto;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.landing-page .brand-logo-item:hover .brand-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .landing-page .hero-content {
        padding: 2.5rem 2rem;
        margin: 0 1rem;
    }
    
    .landing-page .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1.5px;
        margin-bottom: 1.2rem;
    }
    
    .landing-page .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 0.8px;
        margin-bottom: 2.5rem;
        line-height: 1.35;
    }
}

@media (max-width: 768px) {
    .landing-page .hero-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .landing-page .hero-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
        margin-bottom: 1rem;
    }
    
    .landing-page .hero-subtitle {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
        margin-bottom: 2rem;
        line-height: 1.3;
    }

    .landing-page .hero-usp-item {
        font-size: 1.1rem;
        gap: 0.5rem;
    }

    .landing-page .hero-usp-item i {
        font-size: 1rem;
    }

    /* Brand Logos Section - Fix overflow and wrapping */
    .landing-page .brand-logos-section {
        overflow: hidden !important; /* Prevent horizontal overflow */
    }

    .landing-page .brand-logos-grid {
        display: flex !important;
        flex-wrap: wrap !important; /* Force wrapping on mobile */
        overflow-x: hidden !important; /* Disable horizontal scroll */
        gap: 0.8rem !important;
        justify-content: center !important;
        padding: 1rem 0.5rem !important; /* Internal padding only */
        width: 100% !important;
        max-width: 100% !important;
    }

    .landing-page .brand-logo-item {
        width: 100px !important;
        height: 50px !important;
        flex-shrink: 0 !important; /* Prevent shrinking */
    }

    .landing-page .brand-logo {
        max-height: 30px !important;
        max-width: 80px !important;
    }
}

@media (max-width: 585px) {
    .landing-page .hero-title {
        font-size: 1.9rem;
        letter-spacing: -0.5px;
    }
    
    .landing-page .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .landing-page .hero-content {
        padding: 1.5rem 1rem;
    }

    .landing-page .hero-title {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
    }

    .landing-page .hero-subtitle {
        font-size: 1rem;
    }

    .landing-page .hero-usp-item {
        font-size: 0.95rem;
        gap: 0.5rem;
    }

    .landing-page .hero-usp-item i {
        font-size: 0.9rem;
    }
}

@media (max-width: 465px) {
    .landing-page .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.3px;
    }
    
    .landing-page .hero-subtitle {
        font-size: 0.95rem;
    }
}

@media (max-width: 420px) {
    .landing-page .hero-title {
        font-size: 1.3rem;
        letter-spacing: -0.2px;
    }

    .landing-page .hero-subtitle {
        font-size: 0.9rem;
    }
}

/* Mobile - Change all px-4 sections to px-2 */
@media (max-width: 768px) {
    .landing-page .px-4 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
}

/* ===================================
   BANDENHOTEL LANDING PAGE STYLES
   =================================== */

/* Bandenhotel Hero Section */
.landing-page .bandenhotel-hero-section {
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../../images/login_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
}

.landing-page .bandenhotel-hero-section .hero-content {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.landing-page .bandenhotel-hero-section .hero-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.05;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.landing-page .bandenhotel-hero-section .hero-subtitle {
    font-size: 1.6rem;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    margin-bottom: 3rem;
    color: #e8e8e8;
    line-height: 1.4;
}

.landing-page .bandenhotel-usps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.landing-page .bandenhotel-usp-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(130, 201, 30, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(130, 201, 30, 0.15);
    transition: all 0.3s ease;
}

.landing-page .bandenhotel-usp-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: rgba(130, 201, 30, 0.08);
}

.landing-page .bandenhotel-usp-item i {
    font-size: 1.3rem;
    color: var(--checkout-btn-color);
}

.landing-page .bandenhotel-usp-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.landing-page .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.landing-page .hero-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.landing-page .hero-stats .stat-item i {
    font-size: 2rem;
    color: var(--checkout-btn-color);
}

.landing-page .hero-stats .stat-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

.landing-page .hero-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 4rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.landing-page .hero-image-container .hero-icon {
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.3);
}

/* USP Section */
.landing-page .usps-section {
    background-color: var(--card-bg);
}

.landing-page .usps-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d3f23;
}

.landing-page .usps-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.landing-page .usp-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.landing-page .usp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--checkout-btn-color);
}

.landing-page .usp-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--checkout-btn-color) 0%, #6fb51f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.landing-page .usp-icon i {
    font-size: 2rem;
    color: white;
}

.landing-page .usp-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0d3f23;
    margin-bottom: 1rem;
}

.landing-page .usp-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* How It Works Section */
.landing-page .how-it-works-section {
    background: var(--card-bg);
    padding-bottom: 0 !important;
}

.landing-page .how-it-works-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0d3f23;
}

.landing-page .how-it-works-section .section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.landing-page .step-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    height: 100%;
    position: relative;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
    .landing-page .step-card {
        padding: 1rem;
        padding-top: 1.5rem;
    }
}

.landing-page .step-card:hover {
    border-color: var(--checkout-btn-color);
    background: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.landing-page .step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--checkout-btn-color) 0%, #6fb51f 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.landing-page .step-icon {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
}

.landing-page .step-icon i {
    font-size: 3rem;
    color: var(--checkout-btn-color);
}

.landing-page .step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #0d3f23;
    margin-bottom: 1rem;
}

.landing-page .step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section - with gradient (both homepage and bandenhotel) */
.landing-page .cta-section .cta-card {
    background: linear-gradient(135deg, #0d3f23 0%, #165a31 100%);
}

.landing-page .cta-section .cta-title {
    color: white;
}

.landing-page .cta-section .cta-text {
    color: rgba(255, 255, 255, 0.9);
}

.landing-page .cta-section .cta-contact small,
.landing-page .cta-section .cta-contact .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

.landing-page .cta-section .contact-phone {
    color: white;
}

.landing-page .cta-section .cta-divider {
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 991px) {
    .landing-page .bandenhotel-hero-section .hero-title {
        font-size: 2rem;
    }

    .landing-page .bandenhotel-hero-section .hero-subtitle {
        font-size: 1.3rem;
    }

    .landing-page .bandenhotel-usps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-page .bandenhotel-hero-section .hero-title {
        font-size: 1.75rem;
        letter-spacing: -1px;
    }

    .landing-page .bandenhotel-hero-section .hero-subtitle {
        font-size: 1.1rem;
    }

    .landing-page .bandenhotel-hero-section .hero-content {
        padding: 2rem 1.5rem;
    }

    .landing-page .bandenhotel-usps-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
        gap: 0.5rem; /* Tighter gap for mobile */
    }

    .landing-page .bandenhotel-usp-item {
        padding: 0.6rem 0.5rem; /* Reduced padding for mobile */
        gap: 0.4rem; /* Tighter gap between icon and text */
        flex-direction: column; /* Stack icon above text */
        text-align: center;
    }

    .landing-page .bandenhotel-usp-item i {
        font-size: 1.1rem; /* Smaller icon */
    }

    .landing-page .bandenhotel-usp-item span {
        font-size: 0.75rem; /* Smaller text to fit */
        line-height: 1.2;
    }
}

.landing-page .usps-section .section-title,
.landing-page .how-it-works-section .section-title {
    font-size: 2rem;
}
