/* Hero Section Styles - Separate File */
.hero-section {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 350px;
    overflow: hidden;
    background: #000;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
}

.testimonial-box {
    position: absolute;
    bottom: 20px; /* Moved closer to bottom from 40px */
    left: 8%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 30px 40px;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInUp 1s ease-out;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
    justify-content: center;
}

.star {
    color: #ff6b35;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
    color: #fff;
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.testimonial-main {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    border: 3px solid #fff;
    padding: 18px 24px;
    display: inline-block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.testimonial-author {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    text-align: center;
}

@keyframes fadeInUp {
    from { 
        opacity: 0; 
        transform: translateY(30px); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .testimonial-box {
        bottom: 20%;
        left: 5%;
        right: 5%;
        max-width: none;
        padding: 25px 30px;
    }
    
    .testimonial-main {
        font-size: 28px;
        padding: 15px 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .star {
        font-size: 20px;
    }
}