/* hero-section.css (FULLY RESPONSIVE VERSION) */

/* =================
   HERO SECTION BASE
   ================= */
#hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-black) 0%, #1a2a35 100%);
}

.hero-section__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(228, 195, 32, 0.1) 0%, transparent 50%);
}

/* ======================
   HERO SECTION SHAPES
   ====================== */
.hero-section__animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-section__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: hero-section-float 20s infinite ease-in-out;
}

.hero-section__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--color-primary);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-section__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--color-secondary);
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.hero-section__shape--3 {
    width: 250px;
    height: 250px;
    background: var(--color-primary);
    top: 60%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes hero-section-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

/* ========================
   HERO SECTION CONTAINER
   ======================== */
.hero-section__container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 120px 20px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =====================
   HERO SECTION CONTENT
   ===================== */
.hero-section__content {
    color: var(--color-white);
}

.hero-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(228, 195, 32, 0.15);
    border: 1px solid var(--color-primary);
    border-radius: 30px;
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-section__badge i {
    font-size: 16px;
}

.hero-section__title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--color-white);
}

.hero-section__highlight {
    color: var(--color-primary);
    position: relative;
    display: inline-block;
}

.hero-section__highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(228, 195, 32, 0.3);
    z-index: -1;
    animation: hero-section-underline-expand 1s ease-out forwards;
    animation-delay: 0.8s;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes hero-section-underline-expand {
    to {
        transform: scaleX(1);
    }
}

.hero-section__description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

/* ===================
   HERO SECTION CTA
   =================== */
.hero-section__cta {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.hero-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.hero-section__btn i {
    flex-shrink: 0;
}

.hero-section__btn span {
    display: inline-block;
}

.hero-section__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-section__btn:hover::before {
    width: 300px;
    height: 300px;
}

.hero-section__btn--primary {
    background: var(--color-primary);
    color: var(--color-black);
}

.hero-section__btn--primary:hover {
    background: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(228, 195, 32, 0.4);
}

.hero-section__btn-arrow {
    transition: transform 0.3s ease;
}

.hero-section__btn--primary:hover .hero-section__btn-arrow {
    transform: translateX(5px);
}

.hero-section__btn--secondary {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.hero-section__btn--secondary:hover {
    background: var(--color-primary);
    color: var(--color-black);
    transform: translateY(-3px);
}

/* ====================
   HERO SECTION STATS
   ==================== */
.hero-section__stats {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-section__stat-item {
    text-align: center;
    position: relative;
    flex: 1;
    min-width: 100px;
}

.hero-section__stat-icon {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 10px;
    display: block;
    transition: transform 0.5s ease;
}

.hero-section__stat-number {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
    font-family: 'Arial', sans-serif;
}

.hero-section__stat-label {
    font-size: clamp(11px, 1.5vw, 14px);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-section__stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
}

/* ====================
   HERO SECTION IMAGE
   ==================== */
.hero-section__image {
    position: relative;
    width: 100%;
}

.hero-section__image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-section__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: hero-section-image-float 6s ease-in-out infinite;
    display: block;
}

@keyframes hero-section-image-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ==========================
   HERO SECTION FLOATING CARDS
   ========================== */
.hero-section__floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: hero-section-card-float 4s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 2;
}

.hero-section__floating-card--1 {
    top: 8%;
    right: -30px;
    animation-delay: 0s;
}

.hero-section__floating-card--2 {
    bottom: 12%;
    left: -30px;
    animation-delay: 2s;
}

@keyframes hero-section-card-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.hero-section__card-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    color: var(--color-black);
    font-size: 18px;
}

.hero-section__card-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-black);
    margin: 0 0 5px 0;
    white-space: nowrap;
}

.hero-section__card-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    white-space: nowrap;
}

/* ============================
   HERO SECTION SCROLL INDICATOR
   ============================ */
.hero-section__scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: hero-section-bounce 2s infinite;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.hero-section__scroll-text {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero-section__scroll-arrow {
    width: 40px;
    height: 60px;
    border: 2px solid var(--color-primary);
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 8px;
    position: relative;
}

.hero-section__scroll-arrow i {
    color: var(--color-primary);
    font-size: 14px;
    animation: hero-section-scroll-down 2s infinite;
}

@keyframes hero-section-scroll-down {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(25px);
        opacity: 0;
    }
}

@keyframes hero-section-bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* =========================
   HERO SECTION ANIMATIONS
   ========================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: hero-section-fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: hero-section-fadeInRight 1s ease forwards;
    animation-delay: 0.5s;
}

@keyframes hero-section-fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-section-fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===============================
   HERO SECTION RIPPLE EFFECT
   =============================== */
.hero-section__ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: hero-section-ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes hero-section-ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================
   HERO SECTION RESPONSIVE
   ============================ */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .hero-section__container {
        gap: 50px;
        padding: 100px 30px 70px;
    }
    
    .hero-section__image-wrapper {
        height: 500px;
    }
    
    .hero-section__floating-card--1 {
        right: -20px;
    }
    
    .hero-section__floating-card--2 {
        left: -20px;
    }
}

/* Tablet Portrait (992px and below) */
@media (max-width: 992px) {
    .hero-section__container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 90px 25px 60px;
    }
    
    .hero-section__image {
        order: -1;
    }
    
    .hero-section__image-wrapper {
        height: 450px;
        max-width: 100%;
    }
    
    .hero-section__content {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .hero-section__description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-section__cta {
        justify-content: center;
    }
    
    .hero-section__stats {
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-section__floating-card--1,
    .hero-section__floating-card--2 {
        position: absolute;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    #hero-section {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-section__container {
        padding: 60px 20px 50px;
    }
    
    .hero-section__badge {
        font-size: 12px;
        padding: 8px 16px;
        gap: 6px;
    }
    
    .hero-section__badge i {
        font-size: 14px;
    }
    
    .hero-section__title {
        margin-bottom: 20px;
    }
    
    .hero-section__description {
        margin-bottom: 30px;
    }
    
    .hero-section__cta {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .hero-section__btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-section__stats {
        gap: 15px;
    }
    
    .hero-section__stat-divider {
        display: none;
    }
    
    .hero-section__image-wrapper {
        height: 400px;
    }
    
    .hero-section__floating-card {
        padding: 12px 16px;
        gap: 10px;
    }
    
    .hero-section__card-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .hero-section__card-content h4 {
        font-size: 14px;
    }
    
    .hero-section__card-content p {
        font-size: 12px;
    }
    
    .hero-section__floating-card--1 {
        right: 10px;
        top: 10px;
    }
    
    .hero-section__floating-card--2 {
        left: 10px;
        bottom: 10px;
    }
    
    .hero-section__shape {
        filter: blur(60px);
    }
    
    .hero-section__scroll-indicator {
        bottom: 20px;
    }
}

/* Mobile Portrait (480px and below) */
@media (max-width: 480px) {
    .hero-section__container {
        padding: 50px 15px 40px;
        gap: 30px;
    }
    
    .hero-section__badge {
        font-size: 11px;
        padding: 7px 14px;
    }
    
    .hero-section__cta {
        gap: 10px;
        margin-bottom: 35px;
    }
    
    .hero-section__btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 8px;
    }
    
    .hero-section__image-wrapper {
        height: 320px;
    }
    
    .hero-section__floating-card {
        padding: 10px 14px;
        border-radius: 12px;
    }
    
    .hero-section__card-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .hero-section__card-content h4 {
        font-size: 13px;
    }
    
    .hero-section__card-content p {
        font-size: 11px;
    }
    
    .hero-section__stats {
        gap: 12px;
    }
    
    .hero-section__stat-item {
        min-width: 80px;
    }
    
    .hero-section__stat-icon {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .hero-section__scroll-text {
        font-size: 10px;
    }
    
    .hero-section__scroll-arrow {
        width: 35px;
        height: 50px;
    }
}

/* Very Small Mobile (360px and below) */
@media (max-width: 360px) {
    .hero-section__image-wrapper {
        height: 280px;
    }
    
    .hero-section__floating-card {
        position: static !important;
        margin: 10px auto;
        display: inline-flex;
    }
    
    .hero-section__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-section__stat-item {
        width: 100%;
    }
}

/* Reduce Motion Preference */
@media (prefers-reduced-motion: reduce) {
    .hero-section__shape,
    .hero-section__floating-card,
    .hero-section__main-image,
    .fade-in-up,
    .fade-in-right,
    .hero-section__scroll-indicator {
        animation: none !important;
    }
}
