/* Banner Container */
.hero-banner {
    background-color: #f8f9fa; /* Light background */
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
}

/* Left Side - Text Content */
.banner-content {
    padding-right: 20px;
    z-index: 2;
}

.banner-badge {
    display: inline-block;
    background-color: #eff6ff; /* Light blue bg */
    color: #1e3a8a; /* Blue text */
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.banner-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1e3a8a; /* Logo Blue */
    margin-bottom: 20px;
    font-family: 'Battambang', system-ui, -apple-system, sans-serif; /* Fallback to Khmer font */
}

.banner-description {
    font-size: 1.1rem;
    color: #64748b; /* Slate gray */
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 90%;
}

/* Buttons */
.banner-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn-banner-primary {
    background-color: var(--primary); /* Main Blue */
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.btn-banner-primary:hover {
    background-color: #172554; /* Darker Blue */
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(30, 58, 138, 0.4);
    color: white;
}

.btn-banner-secondary {
    background-color: white;
    color: #0f172a;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.btn-banner-secondary:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
    color: #0f172a;
}

/* Specs / Features Row */
.banner-features {
    display: flex;
    gap: 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
    font-family: 'Siemreap', sans-serif;
}

.feature-text p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
    font-family: 'Siemreap', sans-serif;
    line-height: 1.4;
}

/* Right Side - Image Area */
.banner-image-container {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-backdrop {
    position: absolute;
    width: 90%;
    height: 90%;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
    border-radius: 30px;
    z-index: 1;
    transform: rotate(-3deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.banner-img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.banner-image-container:hover .banner-img {
    transform: scale(1.05) rotate(2deg);
}

/* Floating Availability Card */
.availability-card {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    padding: 12px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-icon {
    width: 24px;
    height: 24px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.status-text small {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
}

.status-text span {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 991.98px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .hero-banner {
        flex-direction: column-reverse;
        padding: 20px;
        text-align: center;
    }

    .banner-content {
        padding-right: 0;
        margin-top: 30px;
    }

    .banner-actions {
        justify-content: center;
    }

    .banner-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding-top: 20px;
    }

    .feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: flex-start;
        background: #f8fafc;
        padding: 10px;
        border-radius: 12px;
    }

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

    .image-backdrop {
        width: 100%;
        height: 250px;
        transform: rotate(0);
    }
    
    .banner-img {
        max-width: 100%;
        height: auto;
        max-height: 300px;
    }
    
    .availability-card {
        top: -10px;
        right: 0;
        transform: scale(0.9);
    }
}

/* ================= DARK MODE SUPPORT ================= */

body.dark .hero-banner {
    background-color: #1e293b; /* Slate-800 */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark .banner-title {
    color: #f1f5f9; /* Slate-100 */
}

body.dark .banner-description {
    color: #cbd5e1; /* Slate-300 */
}

body.dark .banner-badge {
    background-color: #3f151b; /* Dark red bg */
    color: #fb7185; /* Light red text */
}

/* Dark Mode Buttons */
body.dark .btn-banner-secondary {
    background-color: transparent;
    border-color: #475569; /* Slate-600 */
    color: #f1f5f9;
}

body.dark .btn-banner-secondary:hover {
    background-color: #334155; /* Slate-700 */
    border-color: #64748b;
    color: white;
}

/* Dark Mode Features */
body.dark .banner-features {
    border-top-color: #334155; /* Slate-700 */
}

body.dark .feature-icon {
    background-color: #334155; /* Slate-700 */
    color: #fb7185; /* Light red */
}

body.dark .feature-text h4 {
    color: #f1f5f9; /* Slate-100 */
}

body.dark .feature-text p {
    color: #94a3b8; /* Slate-400 */
}

/* Dark Mode Mobile Feature Item */
@media (max-width: 991.98px) {
    body.dark .feature-item {
        background-color: #0f172a; /* Slate-900 */
    }
}

/* Dark Mode Availability Card */
body.dark .availability-card {
    background-color: #0f172a; /* Slate-900 */
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

body.dark .status-text small {
    color: #64748b; /* Slate-500 */
}

body.dark .status-text span {
    color: #f1f5f9; /* Slate-100 */
}

body.dark .status-icon {
    background-color: #14532d; /* Dark Green bg */
    color: #4ade80; /* Light Green text */
}

/* Dark Mode Image Backdrop - make it lighter/different to contrast */
body.dark .image-backdrop {
    background: radial-gradient(circle at center, #334155 0%, #1e293b 100%);
}