/* ===== CSS VARIABLES ===== */
:root {
    --fire: #FF4E00;
    --ember: #FF8C42;
    --gold: #FFD166;
    --dark: #0D0D0D;
    --deep: #141414;
    --card: #1A1A1A;
    --muted: #2A2A2A;
    --text: #F0EDE8;
    --text-muted: #A09E9A;
    --white: #FFFFFF;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --shadow-glow: 0 0 40px rgba(255, 78, 0, 0.25);
}

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    outline: none;
}

/* ===== NOISE TEXTURE ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--fire);
    border-radius: 4px;
}

/* ===== NAVBAR ===== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 5%;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background var(--transition), box-shadow var(--transition);
}

    #navbar.scrolled {
        background: rgba(13, 13, 13, 0.95);
        backdrop-filter: blur(20px);
        box-shadow: 0 1px 0 rgba(255, 78, 0, 0.2);
    }

.nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--fire), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

    .nav-links a {
        font-size: 0.9rem;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
        transition: color var(--transition);
        position: relative;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--fire);
            transition: width var(--transition);
        }

        .nav-links a:hover {
            color: var(--white);
        }

            .nav-links a:hover::after {
                width: 100%;
            }

.nav-cta {
    background: linear-gradient(135deg, var(--fire), var(--ember));
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: transform var(--transition), box-shadow var(--transition) !important;
}

    .nav-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 78, 0, 0.45) !important;
    }

    .nav-cta::after {
        display: none !important;
    }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 4px;
}

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(20px);
    padding: 2rem;
    flex-direction: column;
    gap: 1.5rem;
    z-index: 999;
    border-top: 1px solid rgba(255,78,0,0.2);
}

    .mobile-nav.open {
        display: flex;
    }

    .mobile-nav a {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: var(--text-muted);
        transition: color var(--transition);
    }

        .mobile-nav a:hover {
            color: var(--fire);
        }

/* ===== HERO ===== */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ===== HERO SLIDESHOW BACKGROUND ===== */
.hero-slideshow {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: 100%;
}

    .hero-slideshow .slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1.2s ease-in-out;
        filter: brightness(0.5);
        z-index: 0;
    }

        .hero-slideshow .slide.active {
            opacity: 1;
            z-index: 1;
        }

    .hero-slideshow .slide-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient( 105deg, rgba(13,13,13,0.72) 0%, rgba(13,13,13,0.42) 55%, rgba(13,13,13,0.28) 100% );
        z-index: 2;
        pointer-events: none;
    }

    .hero-slideshow::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #1a0800;
        z-index: -1;
    }

/* Grid lines decoration */
.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image: linear-gradient(rgba(255,78,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,78,0,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Hero content sits above the slideshow */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 5% 100px;
    width: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 680px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,78,0,0.14);
    border: 1px solid rgba(255,78,0,0.35);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ember);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
}

    .hero-tag::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--fire);
        animation: blink 1.5s ease-in-out infinite;
    }

@keyframes blink {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 8vw, 7.5rem);
    line-height: 0.92;
    letter-spacing: 2px;
    animation: fadeInUp 0.7s 0.1s ease both;
}

    .hero-title .line-fire {
        background: linear-gradient(135deg, var(--fire) 0%, var(--gold) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        display: block;
    }

    .hero-title .line-white {
        color: var(--white);
        display: block;
    }

.hero-italic {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--ember);
    font-size: 1.2rem;
    margin: 1.2rem 0 1.8rem;
    animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(240,237,232,0.85);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3.5rem;
    animation: fadeInUp 0.7s 0.5s ease both;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    text-align: left;
}

.stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--fire), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    color: rgba(160,158,154,0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 4px;
}

/* ===== SLIDESHOW DOTS ===== */
.hero-dots {
    position: absolute;
    bottom: 80px;
    left: 5%;
    z-index: 4;
    display: flex;
    gap: 8px;
    animation: fadeInUp 0.7s 0.6s ease both;
}

    .hero-dots .dot {
        width: 28px;
        height: 3px;
        border-radius: 2px;
        background: rgba(255,255,255,0.3);
        cursor: pointer;
        transition: background var(--transition), width var(--transition);
    }

        .hero-dots .dot.active {
            background: var(--fire);
            width: 48px;
        }

/* Wave divider */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    line-height: 0;
    z-index: 5;
}

/* ===== KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--fire), var(--ember));
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 4px 20px rgba(255,78,0,0.35);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(255,78,0,0.5);
    }

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: 1.5px solid rgba(255,255,255,0.2);
    transition: all var(--transition);
}

    .btn-secondary:hover {
        border-color: var(--fire);
        color: var(--fire);
        transform: translateY(-3px);
    }

/* ===== SECTION COMMON ===== */
section {
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-pad {
    padding: 100px 0;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 1rem;
}

    .section-tag::before {
        content: '';
        display: block;
        width: 24px;
        height: 2px;
        background: var(--fire);
    }

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.8rem;
}

    .section-title span {
        background: linear-gradient(135deg, var(--fire), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-sub {
    color: var(--text-muted);
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--fire), var(--gold));
    border-radius: 2px;
    margin: 1rem 0 1.5rem;
}

/* ===== MARQUEE ===== */
.marquee-section {
    background: linear-gradient(135deg, var(--fire), var(--ember));
    padding: 1.2rem 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

    .marquee-track:hover {
        animation-play-state: paused;
    }

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.85);
}

.marquee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    flex-shrink: 0;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ===== ABOUT ===== */
#about {
    background: var(--deep);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img-box {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: linear-gradient(160deg, #1f1f1f 0%, #200d00 60%, #160800 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .about-img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        display: block;
    }

    .about-img-box::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.8) 100%);
        z-index: 1;
        pointer-events: none;
    }

.about-svg {
    width: 65%;
    height: auto;
    opacity: 0.9;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 30px;
    left: -20px;
    width: 3px;
    height: 60%;
    background: linear-gradient(180deg, var(--fire), transparent);
    border-radius: 2px;
}

.about-experience {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: linear-gradient(135deg, var(--fire), var(--ember));
    border-radius: 16px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(255,78,0,0.4);
    z-index: 2;
}

.exp-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
}

.exp-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.8);
    text-transform: uppercase;
}

.about-text .section-sub {
    max-width: 100%;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(255,78,0,0.06);
    border: 1px solid rgba(255,78,0,0.1);
    border-radius: 12px;
    transition: border-color var(--transition), transform var(--transition);
}

    .feature-item:hover {
        border-color: rgba(255,78,0,0.3);
        transform: translateY(-3px);
    }

.feature-icon {
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
}

.feature-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.feature-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
}

    .cert-badge:hover {
        border-color: var(--fire);
        color: var(--fire);
    }

    .cert-badge span {
        color: var(--fire);
    }

/* ===== RESULTS ===== */
#results {
    background: var(--dark);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.result-card {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    overflow: hidden;
}

    .result-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--fire), var(--gold));
    }

    .result-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    }

.result-quote {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

    .result-quote::before {
        content: '"';
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: var(--fire);
        line-height: 0;
        display: block;
        margin-bottom: 0.8rem;
    }

.result-person {
    display: flex;
    align-items: center;
    gap: 12px;
}

.result-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(255,78,0,0.15);
    border: 2px solid rgba(255,78,0,0.3);
    flex-shrink: 0;
}

.result-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.result-detail {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.result-stars {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--gold);
}

/* ===== GALLERY ===== */
#gallery {
    background: var(--deep);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    background: var(--card);
}

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }

    .gallery-item:nth-child(7) {
        grid-column: span 2;
    }

/* Real image styles */
.gallery-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--transition);
    min-height: 200px;
}

.gallery-item:nth-child(1) .gallery-real-img {
    min-height: 400px;
}

.gallery-item:hover .gallery-real-img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

/* ===== FAQ ===== */
#faq {
    background: var(--deep);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    overflow: hidden;
    background: var(--card);
    transition: border-color var(--transition);
}

    .faq-item.open {
        border-color: rgba(255,78,0,0.3);
    }

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text);
    transition: color var(--transition);
}

    .faq-question:hover {
        color: var(--fire);
    }

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--fire);
    flex-shrink: 0;
    transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(255,78,0,0.15);
    border-color: rgba(255,78,0,0.4);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

    .faq-answer.open {
        max-height: 300px;
        padding-bottom: 1.3rem;
    }

    .faq-answer p {
        font-size: 0.88rem;
        color: var(--text-muted);
        line-height: 1.7;
    }

/* ===== CONTACT ===== */
#contact {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 1px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

    .contact-info-title span {
        background: linear-gradient(135deg, var(--fire), var(--gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.contact-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,78,0,0.1);
    border: 1px solid rgba(255,78,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--fire);
    margin-bottom: 2px;
}

.contact-detail-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition);
}

    .social-link:hover {
        background: rgba(255,78,0,0.15);
        border-color: rgba(255,78,0,0.4);
        transform: translateY(-3px);
    }

.contact-form {
    background: var(--card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 12px 16px;
    color: var(--text);
    font-family: 'Nunito', sans-serif;
    font-size: 0.92rem;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        border-color: var(--fire);
        box-shadow: 0 0 0 3px rgba(255,78,0,0.1);
    }

    .form-input::placeholder, .form-textarea::placeholder {
        color: rgba(160,158,154,0.5);
    }

    .form-select option {
        background: var(--card);
    }

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--fire), var(--ember));
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all var(--transition);
    box-shadow: 0 6px 25px rgba(255,78,0,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .btn-submit:hover:not(:disabled) {
        transform: translateY(-3px);
        box-shadow: 0 14px 40px rgba(255,78,0,0.5);
    }

    .btn-submit:disabled {
        opacity: 0.7;
        cursor: not-allowed;
    }

.form-status {
    margin-top: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    display: none;
}

    .form-status.success {
        background: rgba(52,168,83,0.1);
        border: 1px solid rgba(52,168,83,0.3);
        color: #4CAF50;
        display: block;
    }

    .form-status.error {
        background: rgba(255,78,0,0.1);
        border: 1px solid rgba(255,78,0,0.3);
        color: var(--ember);
        display: block;
    }

/* ===== FOOTER ===== */
footer {
    background: var(--deep);
    border-top: 1px solid rgba(255,78,0,0.1);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    background: linear-gradient(135deg, var(--fire), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-brand-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

    .footer-links a {
        font-size: 0.88rem;
        color: var(--text-muted);
        transition: color var(--transition);
    }

        .footer-links a:hover {
            color: var(--fire);
        }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
}

    .footer-copy span {
        color: var(--fire);
    }

.footer-back-top {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,78,0,0.12);
    border: 1px solid rgba(255,78,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--fire);
    font-size: 1rem;
    transition: all var(--transition);
    cursor: pointer;
}

    .footer-back-top:hover {
        background: var(--fire);
        color: var(--white);
        transform: translateY(-3px);
    }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 900;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: wpPulse 2.5s ease-in-out infinite;
}

    .whatsapp-float:hover {
        transform: scale(1.1) translateY(-3px);
        box-shadow: 0 14px 35px rgba(37, 211, 102, 0.55);
    }

@keyframes wpPulse {
    0%,100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 40px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1);
    }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ===== SUCCESS BOX ===== */
.success-box {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 15px 20px;
    text-align: center;
    border-radius: 10px;
    margin: 15px auto;
    max-width: 90%;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: fadeIn 0.6s ease-in-out;
}

@media (min-width: 768px) {
    .success-box {
        font-size: 16px;
        max-width: 600px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1 / 1;
    }

    .gallery-item:nth-child(7) {
        grid-column: span 1;
    }

    .gallery-real-img {
        min-height: 180px;
    }

    .gallery-item:nth-child(1) .gallery-real-img {
        min-height: 180px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .about-grid {
        gap: 3rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 120px 5% 80px;
    }

    .hero-title {
        font-size: clamp(3.5rem, 10vw, 5.5rem);
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-dots {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-experience {
        right: 10px;
    }

    .about-image::before {
        display: none;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        aspect-ratio: 16/9;
    }

        .gallery-item:nth-child(1) .gallery-real-img {
            min-height: 220px;
        }

    .gallery-item:nth-child(7) {
        grid-column: span 2;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

        .footer-grid > :not(.footer-brand) {
            display: none;
        }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .section-pad {
        padding: 70px 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .btn-primary, .btn-secondary {
        padding: 12px 22px;
        font-size: 0.88rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

    .gallery-item:nth-child(7) {
        grid-column: span 2;
    }

    .hero-stats {
        gap: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}
