/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.9) 0%, 
        rgba(10, 10, 30, 0.95) 50%, 
        rgba(20, 15, 0, 0.9) 100%);
    padding: 180px 0 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(29, 161, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(59, 89, 152, 0.06) 0%, transparent 50%);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 1), 
        transparent);
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    position: relative;
    padding-right: 40px;
}

.hero-text::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, 
        transparent, 
        rgba(255, 215, 0, 0.5), 
        transparent);
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    color: white;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-text h1 span {
    display: block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.8rem;
    font-weight: 700;
    margin-top: 10px;
}

.established {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #FFD700;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.hero-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    padding-right: 20px;
    position: relative;
}

.hero-text p::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, transparent);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.cta-button::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;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
    gap: 20px;
    padding-left: 50px;
}

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

.cta-button::after {
    content: '→';
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.1), 
        rgba(29, 161, 242, 0.1));
    z-index: 1;
    mix-blend-mode: overlay;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* Floating elements */
.hero-floating {
    position: absolute;
    z-index: 1;
}

.hero-floating:nth-child(1) {
    top: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 6s ease-in-out infinite;
}

.hero-floating:nth-child(2) {
    bottom: 30%;
    right: 10%;
    width: 40px;
    height: 40px;
    background: rgba(29, 161, 242, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 8s ease-in-out infinite reverse;
}

.hero-floating:nth-child(3) {
    top: 40%;
    right: 15%;
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 3.8rem;
    }
    
    .hero-text h1 span {
        font-size: 3.2rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .hero {
        padding: 150px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .hero-text::before {
        display: none;
    }
    
    .hero-text p {
        padding-right: 0;
        max-width: 800px;
        margin: 0 auto 40px;
    }
    
    .hero-text p::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-image {
        max-width: 700px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0) rotateX(5deg);
    }
    
    .hero-image:hover {
        transform: perspective(1000px) rotateY(0) rotateX(0);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text h1 span {
        font-size: 2.3rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 16px 35px;
        font-size: 1rem;
    }
    
    .hero-image img {
        height: 400px;
    }
    
    .hero-floating {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .hero-text h1 span {
        font-size: 1.8rem;
    }
    
    .established {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .hero-image img {
        height: 300px;
    }
}