:root {
    --gold: #d4a017;
    --navy: #1a2a4e;
}

.home-hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    max-height: 950px;
}

.hero-slider .swiper-slide {
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    transform: scale(1.05); /* Account for parallax so no black borders show */
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 78, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center; /* Center vertically */
}

/* THE GLASSMORHPISM PANEL */
.hero-glass-panel {
    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);
    border-radius: 30px;
    padding: 60px;
    max-width: 650px;
    color: #fff;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 50px;
}

.hero-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #fff !important;
}

.hero-title span {
    color: var(--gold) !important;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* BUTTONS */
.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero-primary {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
}

.btn-hero-primary .hero-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--gold);
}

.btn-hero-primary:hover .hero-arrow {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--navy);
    border-color: #fff;
}

/* CONTROLS (Bottom Nav & Pagination) */
.hero-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 30px 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.flex-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Progress Pagination */
.hero-pagination-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.progress-bar {
    width: 150px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.progress-fill {
    position: absolute;
    left: 0; top: 0;
    height: 100%;
    width: 0%;
    background: var(--gold);
    transition: width 0.1s linear; /* Smooth fill */
}

/* Nav Arrows */
.hero-nav {
    display: flex;
    gap: 15px;
}

.hero-prev, .hero-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.hero-prev:hover, .hero-next:hover {
    background: var(--gold);
    border-color: var(--gold);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-title { font-size: 42px; }
    .hero-glass-panel { padding: 40px; }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 600px;
    }
    
    .hero-glass-panel { 
        padding: 30px 20px; 
        border-radius: 15px;
        margin-top: 0; /* Push down slightly for header */
        background: rgba(15, 25, 48, 0.4); /* Darker on mobile for readability */
    }
    
    .hero-title { font-size: 32px; margin-bottom: 20px; line-height: 1.2; }
    .hero-desc { font-size: 15px; margin-bottom: 30px; }
    
    .btn-hero-primary { 
        padding: 14px 20px; 
        font-size: 13px; 
        width: 100%; 
        justify-content: center; 
    }
    
    .btn-hero-secondary {
        display: none;
    }
    
    .hero-controls {
        padding: 20px 0;
    }
    
    .progress-bar { width: 100px; }
    .hero-prev, .hero-next { width: 40px; height: 40px; font-size: 16px; }
}
