/*=============================
         HERO
=============================*/

.hero {
    position: relative;
    min-height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://res.cloudinary.com/dwigi4tpd/image/upload/v1779892226/ChatGPT_Image_May_27_2026_06_55_49_AM_tu0ggo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: zoomHero 22s linear infinite alternate;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(8, 10, 16, .88), rgba(8, 10, 16, .5));
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-left: clamp(30px, 6vw, 100px);
    /* Adds professional breathing room from the left edge */
    padding-right: clamp(20px, 4vw, 40px);
}

/* Content */
.hero-content {
    max-width: 720px;
}

.hero-tag {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: .85rem;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(3rem, 7vw, 5.3rem);
    color: #fff;
    line-height: 1.05;
    font-family: "Cormorant Garamond", serif;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-description {
    color: rgba(255, 255, 255, .82);
    line-height: 1.8;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    max-width: 640px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary {
    padding: 16px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 100px;
    transition: .4s;
    font-weight: 600;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-5px);
}

.btn-secondary {
    padding: 16px 32px;
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    border-radius: 100px;
    backdrop-filter: blur(12px);
    transition: .4s;
    text-align: center;
}

.btn-secondary:hover {
    background: #fff;
    color: #111;
}

/* Bottom Cards */
.hero-bottom {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1180px, 92%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    z-index: 3;
}

.hero-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
    padding: 24px 20px;
    border-radius: 20px;
}

.hero-card h3 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 6px;
    font-family: "Cormorant Garamond", serif;
}

.hero-card p {
    color: rgba(255, 255, 255, .75);
    font-size: 0.9rem;
}

/* Scroll */
.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    z-index: 5;
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 45px;
    background: rgba(255, 255, 255, .45);
    position: relative;
    overflow: hidden;
}

.scroll-indicator span::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 15px;
    background: var(--primary);
    animation: scrollDown 2s infinite;
}

/* Keyframes */
@keyframes zoomHero {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.12);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(50px);
        opacity: 0;
    }
}

/* ===========================
   RESPONSIVE (TABLETS & MOBILE)
=========================== */

@media (max-width: 992px) {
    .hero {
        min-height: 900px;
    }

    .hero-bottom {
        bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 100vh;
        height: auto;
        padding-top: 100px;
        padding-bottom: 160px;
        align-items: flex-start;
    }

    .hero-bg {
        background-position: 60% center;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(8, 10, 16, .88), rgba(8, 10, 16, .72));
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0;
    }

    .hero-tag {
        font-size: .7rem;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 0.88rem;
        line-height: 1.6;
        padding: 0 4px;
    }

    /* Buttons */
    .hero-buttons {
        margin-top: 25px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.75rem;
        white-space: nowrap;
        border-radius: 50px;
    }

    /* Glass Statistics Cards */
    .hero-bottom {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .hero-card {
        padding: 10px 4px;
        border-radius: 12px;
        text-align: center;
        background: rgba(255, 255, 255, .10);
        backdrop-filter: blur(15px);
    }

    .hero-card h3 {
        font-size: 0.95rem;
        margin-bottom: 2px;
    }

    .hero-card p {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .scroll-indicator {
        display: none;
    }
}