/* ============================================
   SIMPLE HERO SECTION - MOBILE-FIRST DESIGN
   SmartBridge Real Estate
   ============================================ */

/* Hero Container */
.hero-simple {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.hero-simple-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 50px;
}

/* Background Image */
.hero-simple-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-simple-background img,
.hero-simple-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Video specific styles */
.hero-background-video {
    display: block;
}

.hero-simple-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

/* Content */
.hero-simple-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    color: var(--white);
}

/* Badge */
.hero-simple-badge {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.25) 0%, rgba(244, 208, 63, 0.3) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(212, 175, 55, 0.6);
    border-radius: 50px;
    color: #f4d03f;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: fadeInDown 0.8s ease, badgePulse 3s ease-in-out infinite;
}

/* Title */
.hero-simple-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 30px rgba(0, 0, 0, 0.9)) drop-shadow(0 4px 60px rgba(0, 0, 0, 0.7));
    animation: fadeInUp 0.8s ease 0.2s backwards, titleShimmer 4s ease-in-out infinite;
}

/* Subtitle */
.hero-simple-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0 0 32px 0;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 4px 40px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 0.8s ease 0.4s backwards;
    letter-spacing: 0.3px;
}

/* CTA Button */
.hero-simple-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    background-size: 200% auto;
    color: #0a1929;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4), 0 2px 8px rgba(212, 175, 55, 0.2);
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-simple-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-simple-cta:hover::before {
    left: 100%;
}

.hero-simple-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 48px rgba(212, 175, 55, 0.6), 0 4px 16px rgba(212, 175, 55, 0.3);
    background-position: right center;
}

.hero-simple-cta .cta-text {
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.hero-simple-cta i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-simple-cta:hover i {
    transform: translateX(4px);
}

/* Features */
.hero-simple-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease 0.8s backwards;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-feature-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hero-feature-item:hover::before {
    opacity: 1;
}

.hero-feature-item i {
    color: #f4d03f;
    font-size: 1rem;
    filter: drop-shadow(0 0 8px rgba(244, 208, 63, 0.5));
    transition: all 0.3s ease;
}

.hero-feature-item:hover i {
    filter: drop-shadow(0 0 12px rgba(244, 208, 63, 0.8));
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes badgePulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 4px 28px rgba(212, 175, 55, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    }
}

@keyframes titleShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* ============================================
   MOBILE OPTIMIZATIONS (Under 768px)
   ============================================ */
@media (max-width: 767px) {
    .hero-simple {
        min-height: 90vh;
    }
    
    .hero-simple-container {
        padding: 80px 20px 40px !important;
        min-height: 90vh;
    }
    
    .hero-simple-content {
        max-width: 100%;
    }
    
    .hero-simple-badge {
        font-size: 1.2rem;
        padding: 13px 26px;
        margin-bottom: 20px;
    }
    
    .hero-simple-title {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }
    
    .hero-simple-subtitle {
        font-size: 1.25rem;
        margin-bottom: 28px;
        padding: 0 10px;
    }
    
    .hero-simple-cta {
        padding: 14px 32px;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .hero-simple-features {
        flex-direction: column;
        gap: 12px;
        margin-top: 32px;
        margin-bottom: 0;
        align-items: center;
    }
    
    .hero-feature-item {
        padding: 12px 29px;
        font-size: 0.975rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ============================================
   SMALL MOBILE (Under 480px)
   ============================================ */
@media (max-width: 479px) {
    .hero-simple-container {
        padding: 80px 20px 40px !important;
    }
    
    .hero-simple-title {
        font-size: 2.2rem;
    }
    
    .hero-simple-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-simple-badge {
        font-size: 1.05rem;
        padding: 11px 18px;
    }
}

/* ============================================
   TABLET & DESKTOP (768px+)
   ============================================ */
@media (min-width: 768px) {
    .hero-simple-container {
        padding: 120px 20px 30px;
    }
    
    .hero-simple-title {
        font-size: 3.5rem;
        line-height: 1.05;
        margin-bottom: 18px;
        background-size: 200% auto;
    }
    
    .hero-simple-subtitle {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 28px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-simple-badge {
        margin-bottom: 22px;
        padding: 12px 28px;
        font-size: 0.9375rem;
    }
    
    .hero-simple-cta {
        padding: 18px 48px;
        font-size: 1.0625rem;
    }
    
    .hero-simple-features {
        flex-direction: row;
        margin-top: 32px;
        gap: 20px;
    }
    
    .hero-feature-item {
        width: auto;
        padding: 12px 24px;
        font-size: 0.9375rem;
    }
}

/* ============================================
   LARGE DESKTOP (1200px+)
   ============================================ */
@media (min-width: 1200px) {
    .hero-simple-container {
        padding: 130px 20px 40px;
    }
    
    .hero-simple-content {
        max-width: 780px;
    }
    
    .hero-simple-title {
        font-size: 3.75rem;
        line-height: 1.05;
        margin-bottom: 20px;
    }
    
    .hero-simple-subtitle {
        font-size: 1.3125rem;
        line-height: 1.4;
        margin-bottom: 32px;
    }
    
    .hero-simple-badge {
        font-size: 1rem;
        padding: 13px 32px;
        margin-bottom: 24px;
    }
    
    .hero-simple-cta {
        padding: 20px 52px;
        font-size: 1.125rem;
    }
    
    .hero-simple-features {
        margin-top: 36px;
        gap: 24px;
    }
    
    .hero-feature-item {
        padding: 14px 28px;
        font-size: 1rem;
    }
}
