@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #973d9c;
    color: #e8e8e8;
    overflow-x: hidden;
}

:root {
    --gold: #d4af37;
    --dark: #080808;
    --dark2: #111111;
    --dark3: #181818;
    --white: #f5f5f5;
    --gray: #888;
    --pad: clamp(24px, 6vw, 80px);
}

.gold {
    color: rgb(228, 87, 5)
}

.eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    display: block;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTONS */
.btn {
    display: inline-block;
    background: var(--gold);
    color: #000;
    padding: 13px 28px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    white-space: nowrap;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px var(--pad);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.logo img {
    height: 50px;
}

nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.3s;
}

nav a:hover,
nav a.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ABOUT HERO */
.about-hero {
    position: relative;
    width: 100%;
    height: 99.9vh;
    min-height: 500px;
    background: url(ig/ww.png) no-repeat center center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero::before {
    display: none;
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 40%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.overlay {
    display: none;
}

.about-hero .hero-content {
    position: relative;
    z-index: 10;
    padding: 0 var(--pad);
    max-width: 800px;
    padding-top: 80px;
}

.about-hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 0.95;
    letter-spacing: 2px;
    color: var(--white);
    margin-bottom: 24px;
}

.hero-sub {
    font-size: clamp(14px, 2vw, 17px);
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    line-height: 1.7;
}


/* STORY */
.story-section {
    padding: 100px var(--pad);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 2px;
    line-height: 1;
    color: var(--white);
}

.story-right p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.9;
    margin-bottom: 20px;
}

/* =====================
   MISSION / VISION CARDS
   — image background, text reveals on hover
   ===================== */
.mv-section {
    padding: 80px var(--pad);
    background: var(--dark2);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.mv-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    background: #535353;
    transition: box-shadow 0.4s ease;
}

.mv-card:hover {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.4), 0 24px 60px rgba(0, 0, 0, 0.7);
}

/* BG image fills card */
.mv-card .mv-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: brightness(0.6);
}

.mv-card:hover .mv-bg {
    transform: scale(1.08);
    filter: brightness(0.35);
}

/* Gradient overlay — dark at bottom always */
.mv-card .mv-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    transition: background 0.5s ease;
    z-index: 1;
}

.mv-card:hover .mv-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.65) 55%, rgba(0, 0, 0, 0.25) 100%);
}

/* Icon — sits above title, moves up on hover */
.mv-card .mv-icon {
    position: absolute;
    bottom: 76px;
    left: 28px;
    font-size: 2.4rem;
    z-index: 2;
    transition: bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.mv-card:hover .mv-icon {
    bottom: 200px;
}

/* Title — always visible at bottom */
.mv-card .mv-title {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.1rem;
    letter-spacing: 2px;
    color: var(--white);
    z-index: 2;
    transition: bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.1;
}

.mv-card:hover .mv-title {
    bottom: 136px;
}

/* Gold underline — appears on hover */
.mv-card .mv-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-top: 8px;
    transition: width 0.4s ease 0.15s;
}

.mv-card:hover .mv-title::after {
    width: 48px;
}

/* Description — hidden, fades in on hover */
.mv-card .mv-desc {
    position: absolute;
    bottom: 36px;
    left: 28px;
    right: 28px;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.75;
    z-index: 2;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.4s ease 0.12s, transform 0.4s ease 0.12s;
}

.mv-card:hover .mv-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Gold bottom bar */
.mv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s ease;
    z-index: 3;
}

.mv-card:hover::after {
    width: 100%;
}

/* STATS */
.stats-strip {
    background: var(--dark);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px var(--pad);
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: rgb(218, 6, 6);
    letter-spacing: 2px;
    line-height: 1;
}

.stat p {
    font-size: 13px;
    color: var(--gray);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 6px;
}

.divider-v {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

/* =====================
   WHY CHOOSE US CARDS
   — image background, text reveals on hover
   ===================== */
.why-section {
    padding: 100px var(--pad);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
    background: #0f0f0f;
    transition: box-shadow 0.4s ease;
}

.why-card:hover {
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35), 0 18px 45px rgba(0, 0, 0, 0.6);
}

/* BG image */
.why-card .why-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1), filter 0.5s ease;
    filter: brightness(0.6);
}

.why-card:hover .why-bg {
    transform: scale(1.08);
    filter: brightness(0.32);
}

/* Overlay */
.why-card .why-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 55%, transparent 100%);
    transition: background 0.5s ease;
    z-index: 1;
}

.why-card:hover .why-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 55%, rgba(0, 0, 0, 0.3) 100%);
}

/* Icon */
.why-card .why-icon {
    position: absolute;
    bottom: 64px;
    left: 24px;
    font-size: 2.1rem;
    z-index: 2;
    transition: bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.why-card:hover .why-icon {
    bottom: 178px;
}

/* Title */
.why-card .why-title {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    z-index: 2;
    transition: bottom 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.2;
}

.why-card:hover .why-title {
    bottom: 116px;
}

/* Gold underline */
.why-card .why-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--gold);
    margin-top: 6px;
    transition: width 0.4s ease 0.15s;
}

.why-card:hover .why-title::after {
    width: 36px;
}

/* Description */
.why-card .why-desc {
    position: absolute;
    bottom: 28px;
    left: 24px;
    right: 24px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    z-index: 2;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease 0.12s, transform 0.4s ease 0.12s;
}

.why-card:hover .why-desc {
    opacity: 1;
    transform: translateY(0);
}

/* Gold bottom bar */
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s ease;
    z-index: 3;
}

.why-card:hover::after {
    width: 100%;
}

/* TEAM */
.team-section {
    padding: 100px var(--pad);
    background: var(--dark2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.member-img-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 20px;
}

.member-img-wrap img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    filter: grayscale(20%);
}

.member:hover .member-img-wrap img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.member-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.member-info {
    padding: 0 4px;
}

.member-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.member-info span {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* CTA */
.cta-banner {
    padding: 100px var(--pad);
    background:
        radial-gradient(ellipse at 50% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 70%),
        var(--dark);
    text-align: center;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.cta-inner h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--white);
}

.cta-sub {
    font-size: 16px;
    color: var(--gray);
    margin-bottom: 36px;
}

/* FOOTER */
footer {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 60px var(--pad) 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo img {
    height: 48px;
    margin-bottom: 14px;
}

.footer-logo p {
    font-size: 13px;
    color: var(--gray);
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-social a {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    background: #25d366;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* MOBILE */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-btn {
        display: none;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: 100vh;
        background: rgba(8, 8, 8, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 80px 36px;
        gap: 6px;
        border-left: 1px solid rgba(212, 175, 55, 0.15);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    nav.open {
        right: 0;
    }

    nav a {
        font-size: 22px;
        font-weight: 600;
        padding: 12px 0;
        border-radius: 0;
    }

    .story-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .divider-v {
        display: none;
    }

    .stats-strip {
        gap: 30px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .mv-card {
        height: 300px;
    }

    .why-card {
        height: 260px;
    }

    .about-hero h1 {
        font-size: clamp(3rem, 13vw, 5rem);
    }
}