/* ===== SIMPLE HERO SECTION ===== */

/* Reset any conflicting styles */
.hero-section,
.modern-hero,
.professional-hero {
    display: none !important;
}

/* Simple Hero */
.simple-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 80px; /* Space for header */
}

/* Dark overlay */
.simple-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(255, 94, 77, 0.8) 0%,
        rgba(255, 154, 0, 0.7) 50%,
        rgba(239, 68, 68, 0.8) 100%
    );
    z-index: 1;
}

/* Hero content */
.simple-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.simple-hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 2.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.simple-hero-title i {
    color: #fbbf24;
    font-size: 1em;
}

.simple-hero-description {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.6;
}

.simple-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 3rem;
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.simple-hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.simple-hero-btn {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.simple-hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    text-decoration: none;
}

.simple-hero-btn-primary {
    background: linear-gradient(135deg, #ff5e4d 0%, #ff9a00 100%);
    color: white;
}

.simple-hero-btn-primary:hover {
    color: white;
}

.simple-hero-btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

.simple-hero-btn-whatsapp:hover {
    color: white;
}

/* Floating particles */
.simple-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.simple-particle {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 187, 36, 0.3), transparent);
    animation: floatSimple 8s ease-in-out infinite;
}

.simple-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.simple-particle:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.simple-particle:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.simple-particle:nth-child(4) {
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

/* Animations */
@keyframes floatSimple {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 0.6;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .simple-hero {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
        padding-top: 100px; /* More space for mobile header */
    }
    
    .simple-hero-title {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 2rem;
    }
    
    .simple-hero-description {
        margin-bottom: 1.2rem;
    }
    
    .simple-hero-subtitle {
        margin-bottom: 2.5rem;
    }
    
    .simple-hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .simple-hero-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .simple-particles {
        display: none;
    }
}

@media (max-width: 480px) {
    .simple-hero {
        height: 60vh;
        min-height: 450px;
        padding-top: 120px; /* Even more space for small screens */
    }
    
    .simple-hero-content {
        padding: 0 15px;
    }
    
    .simple-hero-title {
        margin-bottom: 1.5rem;
    }
    
    .simple-hero-description {
        margin-bottom: 1rem;
    }
    
    .simple-hero-subtitle {
        margin-bottom: 2rem;
    }
}

/* Ensure no conflicts */
body.home-page {
    padding-top: 0 !important;
}

/* Header transparency */
body.home-page .modern-header {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000 !important;
    transition: all 0.3s ease !important;
}

body.home-page .modern-header .navbar-nav .nav-link {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8) !important;
    font-weight: 600 !important;
}

body.home-page .modern-header .navbar-nav .nav-link:hover,
body.home-page .modern-header .navbar-nav .nav-link.active {
    color: #fbbf24 !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px;
}

body.home-page .modern-header .btn-whatsapp {
    background: rgba(37, 211, 102, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

body.home-page .modern-header .mobile-whatsapp-icon {
    background: rgba(37, 211, 102, 0.9) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
}

/* Mobile menu for home page */
@media (max-width: 991.98px) {
    body.home-page .modern-header .navbar-collapse {
        background: rgba(0, 0, 0, 0.95) !important;
        backdrop-filter: blur(20px) !important;
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body.home-page .modern-header .navbar-nav .nav-link {
        color: white !important;
        background: rgba(255, 255, 255, 0.1) !important;
        padding: 12px 16px;
        border-radius: 10px;
        margin-bottom: 8px;
    }
    
    body.home-page .modern-header .navbar-nav .nav-link:hover,
    body.home-page .modern-header .navbar-nav .nav-link.active {
        background: rgba(255, 187, 36, 0.2) !important;
        color: #fbbf24 !important;
    }
}