/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; 
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 60%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}
.slide.active { opacity: 1; }

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6); 
}

.slide-caption {
    position: absolute;
    bottom: 10%;
    left: 10%;
    font-size: 3rem;
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    transform: translateY(20px);
    opacity: 0;
    transition: all 1s ease 0.5s;
    color: white;
}
.slide.active .slide-caption { transform: translateY(0); opacity: 1; }

.hero-content-right {
    width: 45%;
    margin-left: auto;
    padding: 0 6%;
    z-index: 2;
    position: relative;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.animated-card { animation: floatUp 1.5s ease-out forwards; }
.glass-card h3 { font-size: 2.2rem; margin-bottom: 10px; color: #B2AD81; }
.glass-card p { margin-bottom: 25px; font-size: 1.05rem; color: #ccc; line-height: 1.5; }

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    border: 2px solid var(--primary-gold);
}
.video-wrapper iframe, .video-wrapper #testimonial-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.graphic-element {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.circle-1 {
    width: 150px;
    height: 150px;
    background: var(--primary-gold);
    top: -50px;
    right: -50px;
    opacity: 0.4;
    animation: rotateElement 10s infinite linear;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: #5a4814;
    bottom: -80px;
    left: -80px;
    opacity: 0.5;
    animation: rotateElement 15s infinite linear reverse;
}

@keyframes floatUp {
    0% { transform: translateY(50px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

/* --- Hero Section Responsive Layout --- */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        padding-top: 100px; 
        padding-bottom: 60px;
        overflow: visible;
    }
    
    .slider-container {
        position: relative;
        width: 90%;
        height: 45vh; 
        margin: 0 auto;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    }

    .slide img { filter: brightness(0.5); } 
    .slide-caption { font-size: 2rem; bottom: 8%; left: 5%; }

    .hero-content-right {
        width: 95%;
        margin: -60px auto 0 auto; /* Creates overlap effect over the slider */
        padding: 0;
    }

    .glass-card { padding: 25px; }
    .glass-card h3 { font-size: 1.8rem; }
}

@media (max-width: 480px) {
    .hero-section { padding-top: 90px; }
    .slider-container { width: 100%; border-radius: 0; height: 40vh; }
    .hero-content-right { width: 90%; margin-top: -9px; }
    .slide-caption { font-size: 1.6rem; }
}

/* =========================================
   2. WHY US SECTION
   ========================================= */
.why-us-section {
    padding: 100px 5%;
    background-color: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 2px;
}
.section-title span { color: var(--primary-gold); font-weight: 700; }

.why-us-content p {
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #b3b3b3;
    font-size: 1.15rem;
    line-height: 1.8;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 40px 20px;
    text-align: center;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease-out;
}
.stat-box.visible { transform: translateY(0); opacity: 1; }

.stat-number {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-bottom: 15px;
}
.stat-number h3, .stat-number span {
    font-size: 4.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    line-height: 1;
}

.stat-box p {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin: 0;
}

/* --- Why Us Responsive Layout --- */
@media (max-width: 1024px) {
    .stats-container { gap: 20px; }
    .stat-number h3, .stat-number span { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .why-us-section { padding: 70px 5%; }
    .section-title { font-size: 2.3rem; }
    .why-us-content p { font-size: 1rem; margin-bottom: 40px; }
    
    .stats-container { flex-direction: column; align-items: center; }
    .stat-box { width: 100%; max-width: 100%; min-height: auto; padding: 30px 20px; }
}