/* =========================================================================
   BOXNFIT. Premium Modern Sport Design 
   ========================================================================= */

:root {
    --clr-bg: #050505;
    --clr-bg-alt: #111111;
    --clr-card: #141414;
    --clr-card-hover: #1a1a1a;
    --clr-primary: #85FF33;
    /* Vibrant sport green */
    --clr-primary-glow: rgba(133, 255, 51, 0.4);
    --clr-text-main: #FFFFFF;
    --clr-text-muted: #999999;
    --clr-border: #222222;

    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;

    --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--clr-bg);
}

/* =========================================================================
   SPLASH SCREEN
   ========================================================================= */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #000000;
    /* Pure black to perfectly hide the image background */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    animation: splashFadeOut 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 2.2s;
}

.splash-text {
    position: absolute;
    top: 10%;
    left: 50%;
    text-align: center;
    font-size: clamp(4rem, 10vw, 8rem);
    opacity: 0;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.1em;
    animation: textPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1.0s;
    z-index: 3;
}

.glove {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    z-index: 5;
}

.img-glove {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    -webkit-transform: translateZ(0); /* Force Hardware accel for iOS Safari bug */
    transform: translateZ(0);
    /* Removed drop-shadow to fix bounding box artifact */
    filter: contrast(1.5) brightness(0.9);
    -webkit-filter: contrast(1.5) brightness(0.9);
}

.left-glove {
    left: -250px;
    animation: punchLeft 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
    animation-delay: 0.5s;
}

.right-glove {
    right: -250px;
    animation: punchRight 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) forwards;
    animation-delay: 0.5s;
}


.impact-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    border: 15px solid var(--clr-primary);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.impact-ring.fire {
    animation: ringBlast 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes punchLeft {
    0% {
        left: -400px;
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        left: calc(50% - 280px);
        transform: translateY(-50%) rotate(10deg);
    }
}

@keyframes punchRight {
    0% {
        right: -400px;
        transform: translateY(-50%) rotate(0deg);
    }

    100% {
        right: calc(50% - 280px);
        transform: translateY(-50%) rotate(-10deg);
    }
}

@keyframes flashOp {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes ringBlast {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
        border-width: 15px;
    }

    100% {
        transform: translate(-50%, -50%) scale(15);
        opacity: 0;
        border-width: 1px;
    }
}

@keyframes textPop {
    0% {
        opacity: 0;
        transform: translate(-50%, 50px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, 0) scale(1);
    }
}

@keyframes splashFadeOut {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
    }
}

body {
    font-family: var(--font-body);
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.text-green {
    color: var(--clr-primary);
}

/* Letter "N" in BOXNFIT — no fill, white stroke only */
.logo-n {
    color: transparent;
    -webkit-text-stroke: 1.5px #ffffff;
    text-stroke: 1.5px #ffffff;
}

.text-center {
    text-align: center;
}

.w-100 {
    width: 100%;
    text-align: center;
}

.mt-auto {
    margin-top: auto;
}

/* Utilities / Layout */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    padding: 6rem 0;
    position: relative;
    z-index: 2;
}

/* Headings */
.section-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 3rem;
    font-weight: 600;
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    background: transparent;
}

.btn-primary {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    box-shadow: 0 0 20px var(--clr-primary-glow);
}

.btn-primary:hover {
    background-color: #fff;
    color: var(--clr-bg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-text-main);
}

.btn-secondary:hover {
    color: var(--clr-primary);
}

.btn-outline {
    border: 1px solid var(--clr-text-muted);
    color: var(--clr-text-main);
}

.btn-outline:hover {
    border-color: var(--clr-primary);
    color: var(--clr-primary);
}

.btn-outline-dark {
    border: 1px solid rgba(0, 0, 0, 0.5);
    color: var(--clr-bg);
}

.btn-outline-dark:hover {
    background-color: var(--clr-bg);
    color: var(--clr-primary);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--clr-primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.link-arrow .arrow {
    transition: var(--transition);
}

.link-arrow:hover .arrow {
    transform: translateX(8px);
}

.link-sm {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--clr-text-main);
}

.link-sm.text-green {
    color: var(--clr-primary);
}

.link-sm:hover {
    color: var(--clr-primary);
    padding-left: 5px;
}


/* =========================================================================
   CANVAS BACKGROUND
   ========================================================================= */
#smoke-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.6;
}

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(133, 255, 51, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--clr-text-main);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
}

.logo-icon {
    width: 28px;
    height: auto;
    display: block;
    filter: brightness(0) saturate(100%) invert(80%) sepia(90%) saturate(500%) hue-rotate(55deg) brightness(1.1);
    /* Tints the SVG to match --clr-primary (#85FF33 green) */
    opacity: 0.92;
    flex-shrink: 0;
}

.logo .dot {
    color: var(--clr-primary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--clr-text-muted);
}

.nav-links a:hover {
    color: var(--clr-text-main);
}

.btn-nav {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    box-shadow: 0 0 15px var(--clr-primary-glow);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-text-main);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--clr-bg-alt);
    border-left: 1px solid var(--clr-border);
    z-index: 99;
    padding: 6rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
}

.mobile-menu.open {
    right: 0;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-text-main);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    overflow: hidden;
    background-color: var(--clr-bg);
}

/* Gym Brick Wall — real photographic texture */
.hero-wall-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: #0a0a0a;

    background-image:
        /* ── Layer 1: Heavy dark vignette — edges very dark, centre reveals bricks ── */
        radial-gradient(ellipse 85% 80% at 50% 50%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.97) 100%),

        /* ── Layer 2: Subtle green atmospheric glow from the gym floor ── */
        radial-gradient(ellipse 65% 40% at 50% 100%, rgba(133, 255, 51, 0.04) 0%, transparent 70%),

        /* ── Layer 3: Strong grey-blue tint to heavily subdue bricks ── */
        linear-gradient(rgba(10, 10, 14, 0.78), rgba(10, 10, 14, 0.78)),

        /* ── Layer 4: The real brick wall photo ── */
        url('brick_wall.png');

    background-size:
        100% 100%,   /* vignette           */
        100% 100%,   /* green floor glow   */
        100% 100%,   /* grey tint overlay  */
        cover;       /* brick photo        */

    background-position:
        center,
        center,
        center,
        center;

    background-repeat:
        no-repeat,
        no-repeat,
        no-repeat,
        repeat;       /* tile the brick texture */
}

/* Watermark/Graffiti logo in the background */
.hero-logo-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    max-width: 720px;
    z-index: 2;
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.45;
    will-change: transform, opacity;
    transition: opacity 0.1s linear;
}

.hero-logo-bg img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 60px rgba(133, 255, 51, 0.2)) saturate(1.1);
    transform-origin: center center;
}

.hero-container {
    position: relative;
    z-index: 3; /* Overlay on top of the background wall and logo */
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding-left: 0; /* Let hero text reach closer to the left edge */
}

.hero-content {
    position: relative;
}

@media (min-width: 1025px) {
    .hero-content {
        margin-left: -80px; /* Shift the text content to left edge on desktop */
    }
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 1.0;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
    text-shadow:
        0 4px 10px rgba(0, 0, 0, 0.9),
        0 20px 60px rgba(0, 0, 0, 0.6);
}

/* Thin green accent bar — sits between title and description */
.hero-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--clr-primary), transparent);
    margin-top: 1.4rem;
    border-radius: 2px;
    box-shadow: 0 0 14px var(--clr-primary-glow);
}

.hero-title .text-green {
    text-shadow:
        0 0 40px rgba(133, 255, 51, 0.35),
        0 4px 10px rgba(0, 0, 0, 0.8);
}

.hero-desc {
    color: rgba(160, 160, 160, 0.9);
    font-size: 1.05rem;
    max-width: 420px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    letter-spacing: 0.01em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    transform: translateX(60px) translateY(170px); /* Shifted right and down — clears the background logo */
}

/* Minimalist Glowing Ring Structure */
.glowing-ring {
    position: relative;
    width: 400px;
    height: 280px;
    transform-style: preserve-3d;
    transform: rotateX(55deg) rotateZ(-30deg);
}

.ring-floor {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(133, 255, 51, 0.08) 0%, transparent 65%);
    border: 1px solid rgba(133, 255, 51, 0.25);
    box-shadow:
        inset 0 0 60px rgba(133, 255, 51, 0.12),
        0 0 30px rgba(133, 255, 51, 0.08);
}

.ring-post {
    position: absolute;
    width: 6px;
    height: 120px;
    border-radius: 3px;
    background: linear-gradient(to top, rgba(133, 255, 51, 0.2), var(--clr-text-muted));
    transform-origin: bottom center;
    transform: rotateX(-90deg) translateY(60px);
}

.p-tl {
    top: -3px;
    left: -3px;
}

.p-tr {
    top: -3px;
    right: -3px;
}

.p-bl {
    bottom: -3px;
    left: -3px;
}

.p-br {
    bottom: -3px;
    right: -3px;
}

/* Horizontal Ropes */
.ring-rope,
.ring-rope-v {
    position: absolute;
    background: var(--clr-primary);
    box-shadow:
        0 0 8px var(--clr-primary-glow),
        0 0 20px var(--clr-primary),
        0 0 40px rgba(133, 255, 51, 0.15);
    transform-style: preserve-3d;
}

.ring-rope {
    height: 2px;
    left: 0;
    right: 0;
}

.r-top {
    top: 0;
    transform-origin: top center;
}

.r-bottom {
    bottom: 0;
    transform-origin: bottom center;
}

.r-top.r-1,
.r-bottom.r-1 {
    transform: rotateX(-90deg) translateZ(100px);
    opacity: 0.8;
}

.r-top.r-2,
.r-bottom.r-2 {
    transform: rotateX(-90deg) translateZ(70px);
    opacity: 0.5;
}

.r-top.r-3,
.r-bottom.r-3 {
    transform: rotateX(-90deg) translateZ(40px);
    opacity: 0.3;
}

/* Vertical Ropes */
.ring-rope-v {
    width: 2px;
    top: 0;
    bottom: 0;
}

.r-left {
    left: 0;
    transform-origin: left center;
}

.r-right {
    right: 0;
    transform-origin: right center;
}

.r-left.r-1,
.r-right.r-1 {
    transform: rotateY(-90deg) translateZ(-100px);
    opacity: 0.8;
}

.r-left.r-2,
.r-right.r-2 {
    transform: rotateY(-90deg) translateZ(-70px);
    opacity: 0.5;
}

.r-left.r-3,
.r-right.r-3 {
    transform: rotateY(-90deg) translateZ(-40px);
    opacity: 0.3;
}


/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about {
    background-color: var(--clr-bg-alt);
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-image: url('boxing-match.png');
    background-size: cover;
    background-position: center;
    border: 1px solid var(--clr-border);
}

.block-pattern::before {
    content: '';
    position: absolute;
    inset: 4px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(133, 255, 51, 0.03) 10px, rgba(133, 255, 51, 0.03) 11px);
    border: 1px solid var(--clr-border);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    padding: 1rem;
    font-weight: 600;
}

.about-text {
    color: var(--clr-text-muted);
    margin-bottom: 2rem;
}

.about-text p {
    margin-bottom: 1rem;
}

/* =========================================================================
   PROGRAMS / BENTO GRID
   ========================================================================= */
.programs {
    background: var(--clr-bg);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.bento-card {
    position: relative;
    padding: 2.5rem;
    border-radius: 2px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--clr-border);
    transition: var(--transition);
}

.bento-card:hover {
    border-color: rgba(133, 255, 51, 0.4);
    transform: translateY(-5px);
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    width: 40px;
    height: 40px;
    color: var(--clr-primary);
    opacity: 0.5;
}

/* Card Types */
.card-dark {
    background-color: var(--clr-card);
}

.card-green {
    background-color: var(--clr-primary);
    color: var(--clr-bg);
    border-color: var(--clr-primary);
}

.card-green .card-content p {
    color: rgba(0, 0, 0, 0.7);
}

.card-large {
    background: linear-gradient(to right, #111, #0a0a0a);
}

/* Positioning */
.bento-card:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    justify-content: flex-end;
}

.bento-card:nth-child(2) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.bento-card:nth-child(3) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.bento-card:nth-child(4) {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.bento-card:nth-child(5) {
    grid-column: 3 / 4;
    grid-row: 2 / 4;
}


/* =========================================================================
   PRICING
   ========================================================================= */
.pricing {
    background-color: var(--clr-bg-alt);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
}

.price-card {
    background-color: var(--clr-card);
    border: 1px solid var(--clr-border);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    transition: var(--transition);
    position: relative;
}

.price-card:hover {
    border-color: rgba(133, 255, 51, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-8px);
}

.price-card.popular {
    border-color: var(--clr-primary);
    box-shadow: 0 0 30px rgba(133, 255, 51, 0.05);
    background-color: #161a14;
    transform: scale(1.03);
}

.price-card.popular:hover {
    transform: scale(1.03) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-primary);
    color: var(--clr-bg);
    font-family: var(--font-heading);
    padding: 0.3rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.plan-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-text-muted);
}

.popular .plan-name {
    color: var(--clr-primary);
}

.plan-price {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    margin-top: 0.5rem;
}

.amount {
    font-size: 4.5rem;
    font-family: var(--font-heading);
    line-height: 1;
}

.period {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    align-self: flex-end;
    margin-bottom: 0.8rem;
}

.plan-features {
    margin-bottom: 2.5rem;
}

.plan-features li {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--clr-border);
    display: flex;
    align-items: center;
}

.plan-features li::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--clr-primary);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

/* Feature label/value layout for pricing breakdown */
.plan-features li {
    justify-content: space-between;
}

.feat-label {
    color: var(--clr-text-muted);
    flex: 1;
}

.feat-val {
    color: var(--clr-primary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: auto;
}

/* Plan subtitle (e.g., "Group Sessions") */
.plan-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    margin-top: 0.2rem;
}

/* Personal Training price layout */
.plan-price-personal {
    margin-bottom: 2rem;
}

.starts-from {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.period-block {
    display: block;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

/* Pricing tagline */
.pricing-tagline {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.2em;
    color: var(--clr-primary);
    text-transform: uppercase;
    margin-top: -2rem;
    margin-bottom: 3rem;
    opacity: 0.85;
}

/* Terms line */
.pricing-terms {
    margin-top: 2.5rem;
    font-size: 0.85rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
    opacity: 0.7;
}


/* =========================================================================
   GALLERY
   ========================================================================= */
.gallery {
    padding: 0;
    overflow: hidden;
    background-color: var(--clr-bg);
}

.gallery-track {
    display: flex;
    height: 350px;
}

.gallery-item {
    flex: 1;
    background-color: #111;
    border-right: 1px solid var(--clr-bg);
    position: relative;
    transition: var(--transition);
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
}

/* Real images provided by the user */
.item-1 {
    background-image: url('gallery-1.jpg');
}

.item-2 {
    background-image: url('gallery-2.jpg');
}

.item-3 {
    background-image: url('gallery-3.jpg');
}

.item-4 {
    background-image: url('gallery-4.jpg');
}

.item-5 {
    background-image: url('gallery-5.jpg');
}

.gallery-item:hover {
    flex: 1.5;
    filter: grayscale(0%);
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact {
    padding: 8rem 0;
    background-color: var(--clr-bg);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 400px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.detail-item {
    border-left: 2px solid var(--clr-primary);
    padding-left: 1.5rem;
}

.detail-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-primary);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.detail-item p {
    color: var(--clr-text-main);
    line-height: 1.5;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.6rem;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
    width: fit-content;
}

.contact-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.call-link {
    color: var(--clr-text-main);
}

.call-link:hover {
    color: var(--clr-primary);
    transform: translateX(4px);
}

.whatsapp-link {
    color: #25D366;
}

.whatsapp-link:hover {
    color: #1ebe5d;
    transform: translateX(4px);
}

.contact-form {
    background-color: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 1rem 0;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-bottom-color: var(--clr-primary);
    box-shadow: 0 4px 10px -4px var(--clr-primary-glow);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--clr-text-muted);
}

.form-group select option {
    background-color: var(--clr-bg);
    color: var(--clr-text-main);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* =========================================================================
   MAP SECTION
   ========================================================================= */
.map-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--clr-border);
    border-bottom: 1px solid var(--clr-border);
}

.map-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 5%;
    background-color: var(--clr-bg-alt);
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.2em;
    color: var(--clr-primary);
    border-bottom: 1px solid rgba(133, 255, 51, 0.15);
}

.map-pin-icon {
    display: flex;
    align-items: center;
}

.map-pin-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--clr-primary);
}

.map-section iframe {
    display: block;
    filter: invert(90%) hue-rotate(180deg) saturate(0.4) brightness(0.85);
    transition: filter 0.4s ease;
}

.map-section iframe:hover {
    filter: invert(90%) hue-rotate(180deg) saturate(0.6) brightness(0.95);
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background-color: var(--clr-bg);
    border-top: 1px solid var(--clr-border);
    padding: 4rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a,
.footer-social a {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.05em;
}

.footer-links a:hover,
.footer-social a:hover {
    color: var(--clr-primary);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

/* =========================================================================
   SCROLL ANIMATIONS (Triggered by JS)
   ========================================================================= */
[data-scroll="fade-up"] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out var(--delay, 0s), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) var(--delay, 0s);
}

[data-scroll="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll="fade-left"] {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="fade-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-scroll="zoom-in"] {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

[data-scroll="zoom-in"].is-visible {
    opacity: 1;
    transform: scale(1);
}


/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }

    .hero-desc {
        margin: 0 auto 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 4rem;
        height: 300px;
        transform: translateY(0);
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .bento-card:nth-child(1) {
        grid-column: 1 / 3;
        grid-row: auto;
        min-height: 350px;
    }

    .bento-card:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-card:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: auto;
    }

    .bento-card:nth-child(4) {
        grid-column: 1 / 2;
        grid-row: auto;
    }

    .bento-card:nth-child(5) {
        grid-column: 2 / 3;
        grid-row: auto;
        min-height: 250px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .price-card.popular {
        transform: none;
    }

    .price-card.popular:hover {
        transform: translateY(-8px);
    }

    .price-card:nth-child(3) {
        grid-column: 1 / 3;
    }
}

@media (max-width: 768px) {

    .nav-links,
    .btn-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .section-title {
        font-size: 3rem;
        margin-bottom: 2rem;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card:nth-child(1),
    .bento-card:nth-child(2),
    .bento-card:nth-child(3),
    .bento-card:nth-child(4),
    .bento-card:nth-child(5) {
        grid-column: 1 / 2;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .price-card:nth-child(3) {
        grid-column: auto;
    }

    .gallery-track {
        flex-direction: column;
        height: 60vh;
    }

    .gallery-item {
        border-right: none;
        border-bottom: 1px solid var(--clr-bg);
    }

    .gallery-item:hover {
        flex: 1.5;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Device-specific responsive splash screen */
    .glove {
        width: 150px;
        height: 150px;
    }
    
    .left-glove {
        animation-name: punchLeftMobile;
    }
    
    .right-glove {
        animation-name: punchRightMobile;
    }
}

/* Mobile Safari & Android Keyframes */
@-webkit-keyframes punchLeftMobile {
    0% { left: -200px; -webkit-transform: translateY(-50%) rotate(0deg); }
    100% { left: calc(50% - 140px); -webkit-transform: translateY(-50%) rotate(10deg); }
}
@keyframes punchLeftMobile {
    0% { left: -200px; transform: translateY(-50%) rotate(0deg); }
    100% { left: calc(50% - 140px); transform: translateY(-50%) rotate(10deg); }
}

@-webkit-keyframes punchRightMobile {
    0% { right: -200px; -webkit-transform: translateY(-50%) rotate(0deg); }
    100% { right: calc(50% - 140px); -webkit-transform: translateY(-50%) rotate(-10deg); }
}
@keyframes punchRightMobile {
    0% { right: -200px; transform: translateY(-50%) rotate(0deg); }
    100% { right: calc(50% - 140px); transform: translateY(-50%) rotate(-10deg); }
}