/* ===================================
   Hero Section
   =================================== */

.about-hero.hero-section,
.contact-hero.hero-section,
.dealers-hero.hero-section,
.products-hero.hero-section {

    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        var(--luxury-black) 0%,
        var(--luxury-black-light) 50%,
        var(--luxury-charcoal) 100%
    );
    overflow: hidden;
}
.dealers-hero.hero-section{
    min-height: 80vh;
}
.about-hero.hero-section::before,
.contact-hero.hero-section::before,
.dealers-hero.hero-section::before,
.products-hero.hero-section::before {

    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(80, 200, 120, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    filter: blur(2px);
}
.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.dealers-hero .hero-content{
    padding: 80px 20px 40px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--luxury-gold);
    border-radius: 50px;
    color: var(--luxury-gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-badge i {
    font-size: 1.2rem;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--luxury-white);
    font-family: 'Tajawal', sans-serif;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--luxury-gold-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

@media (min-width: 1400px) {
    .hero-title {
        font-size: 4rem;
    }
}
/* Tablet Landscape (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .about-hero.hero-section,
    .contact-hero.hero-section,
    .dealers-hero.hero-section,
    .products-hero.hero-section {
        min-height: 65vh;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .dealers-hero .hero-subtitle,
    .products-hero .hero-subtitle {
        font-size: 1.1rem;
    }
}
/* Tablet Portrait (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .about-hero.hero-section,
    .contact-hero.hero-section,
    .dealers-hero.hero-section,
    .products-hero.hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .about-hero .hero-content,
    .contact-hero .hero-content,
    .dealers-hero .hero-content,
    .products-hero .hero-content {
        padding: 30px 20px;
    }
    
    .about-hero .hero-badge,
    .contact-hero .hero-badge,
    .dealers-hero .hero-badge,
    .products-hero .hero-badge {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .dealers-hero .hero-subtitle,
    .products-hero .hero-subtitle {
        font-size: 1rem;
    }
}
/* Mobile Landscape (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .about-hero.hero-section,
    .contact-hero.hero-section,
    .dealers-hero.hero-section,
    .products-hero.hero-section {
        min-height: 55vh;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        font-size: 2rem;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .dealers-hero .hero-subtitle,
    .products-hero .hero-subtitle {
        font-size: 0.95rem;
    }
}
/* Mobile Portrait (< 480px) */
@media (max-width: 479px) {
    .about-hero.hero-section,
    .contact-hero.hero-section,
    .dealers-hero.hero-section,
    .products-hero.hero-section {
        min-height: 50vh;
        padding: 30px 0;
    }
    
    .about-hero .hero-content,
    .contact-hero .hero-content,
    .dealers-hero .hero-content,
    .products-hero .hero-content {
        padding: 20px 15px;
    }
    
    .about-hero .hero-badge,
    .contact-hero .hero-badge,
    .dealers-hero .hero-badge,
    .products-hero .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
        gap: 8px;
    }
    
    .about-hero .hero-badge i,
    .contact-hero .hero-badge i,
    .dealers-hero .hero-badge i,
    .products-hero .hero-badge i {
        font-size: 1rem;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .dealers-hero .hero-subtitle,
    .products-hero .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
        line-height: 1.6;
    }
}
/* High DPI Screens (Retina) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        text-rendering: optimizeLegibility;
    }
}
/* Extra Small Mobile (< 360px) */
@media (max-width: 359px) {
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        font-size: 1.5rem;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .dealers-hero .hero-subtitle,
    .products-hero .hero-subtitle {
        font-size: 0.85rem;
    }
}
/* Landscape Orientation */
@media (orientation: landscape) and (max-height: 500px) {
    .about-hero.hero-section,
    .contact-hero.hero-section,
    .dealers-hero.hero-section,
    .products-hero.hero-section {
        min-height: 100vh;
    }
    
    .about-hero .hero-content,
    .contact-hero .hero-content,
    .dealers-hero .hero-content,
    .products-hero .hero-content {
        padding: 20px;
    }
    
    .about-hero .hero-title,
    .contact-hero .hero-title,
    .dealers-hero .hero-title,
    .products-hero .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .about-hero .hero-subtitle,
    .contact-hero .hero-subtitle,
    .dealers-hero .hero-subtitle,
    .products-hero .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {    
    .about-hero .hero-badge,
    .contact-hero .hero-badge,
    .dealers-hero .hero-badge,
    .products-hero .hero-badge {
        animation: none;
    }
}
/* ===================================
   Enhanced Hero Section
   =================================== */
.home-hero.hero-section {
    min-height: 90vh;
    margin-bottom: 5.63rem;
}

.home-hero .hero-slide {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    transition: all 0.5s ease;
}

.home-hero .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 38px;
}

.home-hero .hero-badge {
    background: rgba(212, 175, 55, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: float 3s ease-in-out infinite;
}

.home-hero .hero-badge i {
    color: var(--luxury-gold);
    font-size: 1.1rem;
}

.home-hero .hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin: 0 0 20px;
}

.home-hero .hero-subtitle {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.home-hero .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}


/* Responsive Design */
@media (max-width: 1024px) {
    .home-hero.hero-section,
    .home-hero .hero-slide {
        min-height: 80vh;
    }
    .home-hero.hero-section{
        margin-bottom: 4.63rem;
    }
}

@media (max-width: 768px) {
    .home-hero.hero-section,
    .home-hero .hero-slide {
        min-height: 70vh;
    }
    .home-hero.hero-section{
        margin-bottom: 3.63rem;
    }
    
    .home-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .home-hero .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .home-hero .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .home-hero.hero-section,
    .home-hero .hero-slide {
        min-height: 550px !important;
    }
    .home-hero.hero-section{
        margin-bottom: 2.63rem;
    }
    .home-hero .hero-title {
        font-size: 2rem;
    }
    
    .home-hero .hero-badge {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
}