/* 
    FORTIVO PLYBOARDS - DESIGN SYSTEM
    Luxury, Modern, Industrial Theme
*/




@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
    --color-primary: #0d1a2c;
    /* Navy Blue */
    --color-accent: #E26534;
    /* Vibrant Orange */
    --color-secondary: #0D264A;
    /* Deep Navy */
    --color-text: #FFFFFF;
    /* Pure White for readability */
    --color-text-dim: #D1D9E6;
    /* Light Blue Gray */
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Sora', sans-serif;
    --section-padding: 100px 5%;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --br-sm: 8px;
    --br-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 245, 236, 1);
    color: var(--color-text);
    font-family: var(--font-body);
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100dvh;
    overflow-x: hidden;
    background: rgba(255, 245, 236, 1);
    line-height: 1.6;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
    letter-spacing: 0.02em;
}

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

ul {
    list-style: none;
}

/* NAVBAR */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(13, 26, 44, 0.9);
    border-bottom: 1px solid rgba(226, 101, 52, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
}


.nav-logo {
    height: 45px;
    width: auto;
    border-radius: 4px;
    transition: var(--transition-smooth);
}

.nav-logo:hover {
    transform: scale(1.1);
}

.nav-toggle {
    display: none;
}

.nav-links {
    display: none;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.nav-links a:hover {
    color: var(--color-accent);
}

/* BUTTONS */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-block;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(255, 157, 46, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(227, 218, 201, 0.3);
}

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

/* HERO SECTION */

.hero {
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: #000000;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.top-left-logo {
    position: absolute;
    top: -50px;
    left: 20px;
    z-index: 100;
}

.top-left-logo img {
    height: 250px;
    width: auto;
    border-radius: var(--br-sm);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: var(--transition-smooth);
}

.top-left-logo img:hover {
    transform: scale(1.05);
}

.top-right-nav {
    position: absolute;
    top: 40px;
    right: 50px;
    display: flex;
    gap: 2.5rem;
    z-index: 100;
}

.top-right-nav a {
    color: #FFFFFF;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
}

.top-right-nav a:hover {
    color: var(--color-accent);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.1);
    object-position: center top;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 26, 44, 0.25), rgba(0, 0, 0, 0.6));
    z-index: 2;
    /* Sits above the video but below the content */
}

.hero-content {
    padding: 60px 80px;
    z-index: 10;
    max-width: 1000px;
}

/* Removed hero logo styles as it moved to navbar */

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes cinematicZoom {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(2%, 2%);
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 12px;
    background: linear-gradient(45deg, #ffffff, #E26534, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
    white-space: nowrap;
    line-height: 1.1;
    animation: shine 5s linear infinite, heroReveal 2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0s, 0.4s;
    opacity: 0;
    filter: blur(20px);
}

@keyframes heroReveal {
    0% {
        opacity: 0;
        transform: translateY(120px) scale(0.95);
        letter-spacing: 40px;
        filter: blur(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        letter-spacing: 12px;
        filter: blur(0);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero h2 {
    font-size: 1.1rem;
    color: var(--color-accent);
    letter-spacing: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 5px;
    margin-bottom: 30px;
    display: inline-block;
    animation: heroRevealSmall 1.8s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: 0.1s;
    opacity: 0;
}

@keyframes heroRevealSmall {
    0% {
        opacity: 0;
        transform: translateY(60px);
        letter-spacing: 20px;
        filter: blur(15px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 8px;
        filter: blur(0);
    }
}

.hero .headline {
    font-family: var(--font-body);
    font-size: 1.4rem;
    max-width: 800px;
    margin: 20px auto 40px;
    color: var(--color-text-dim);
    font-weight: 300;
    font-style: italic;
    animation: intenseFadeIn 2.2s cubic-bezier(0.19, 1, 0.22, 1) forwards 0.6s;
    opacity: 0;
}

@keyframes intenseFadeIn {
    0% {
        opacity: 0;
        transform: translateY(40px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeInDelay 2.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.8s;
    opacity: 0;
}

.hero-btns .btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-accent);
}

.hero-btns .btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #FFFFFF;
}

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

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

/* SECTIONS */
section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title div {
    height: 2px;
    width: 60px;
    background: var(--color-accent);
    margin: 0 auto;
}

/* FEATURE CARDS */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(44, 24, 16, 0.4);
    padding: 40px;
    border-radius: var(--br-lg);
    border: 1px solid rgba(255, 157, 46, 0.1);
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 157, 46, 0.5);
    background: rgba(44, 24, 16, 0.6);
    box-shadow: 0 15px 35px rgba(255, 157, 46, 0.15), 0 0 15px rgba(255, 157, 46, 0.1);
}

.feature-card i {
    font-size: 3rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    display: block;
    transition: transform 0.4s ease, color 0.4s ease;
}

.feature-card:hover i {
    transform: scale(1.1);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    transition: color 0.4s ease;
}

.feature-card:hover h3 {
    color: var(--color-accent);
}

.feature-card p {
    color: var(--color-text-dim);
    font-size: 0.95rem;
}

/* CINEMATIC "WHY CHOOSE" REDESIGN */
.cinematic-section {
    position: relative;
    background: radial-gradient(circle at 50% 10%, #0d1a2c 0%, #050a14 100%);
    overflow: hidden;
    padding: 160px 5%;
    z-index: 1;
}

.cinematic-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent url('https://www.transparenttextures.com/patterns/dark-matter.png');
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}

@keyframes ambientDrift {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.2) translate(2%, 2%);
    }
}

.cinematic-glow-sweep {
    position: absolute;
    top: 50%;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(226, 101, 52, 0.05), transparent);
    transform: translateY(-50%) rotate(-15deg);
    pointer-events: none;
    z-index: 1;
}

.cinematic-section.in-view .cinematic-glow-sweep {
    animation: sweepFull 3.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes sweepFull {
    0% {
        left: -100%;
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.cursor-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(226, 101, 52, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: opacity 0.5s ease;
}

.section-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-cinematic {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.reveal-text {
    font-size: 3.5rem;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #fff;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(30px);
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.cinematic-section.in-view .reveal-text {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.title-underline {
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
    margin: 20px auto 0;
    position: relative;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.5s;
}

.cinematic-section.in-view .title-underline {
    width: 250px;
}

.title-underline::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--color-accent);
    transform: translateY(-50%);
    animation: sparkMove 1.5s linear infinite;
    opacity: 0;
}

.cinematic-section.in-view .title-underline::after {
    opacity: 1;
}

@keyframes sparkMove {
    0% {
        left: 0;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

.features-grid-cinematic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Initial positions for split entrance */
.feature-card-cinematic:nth-child(1),
.feature-card-cinematic:nth-child(2) {
    transform: translateX(-100vw);
}

.feature-card-cinematic:nth-child(3),
.feature-card-cinematic:nth-child(4) {
    transform: translateX(100vw);
}

.feature-card-cinematic {
    background: rgba(13, 38, 74, 0.3);
    backdrop-filter: blur(10px);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
    opacity: 0;
    filter: blur(25px);
    z-index: 1;
}

/* Split entrance animations with "Butter Smooth" Easing */
.cinematic-section.in-view .feature-card-cinematic:nth-child(1),
.cinematic-section.in-view .feature-card-cinematic:nth-child(2) {
    animation:
        boxesEntranceLeft 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards,
        ambientFloat 6s ease-in-out infinite 2.5s;
}

.cinematic-section.in-view .feature-card-cinematic:nth-child(3),
.cinematic-section.in-view .feature-card-cinematic:nth-child(4) {
    animation:
        boxesEntranceRight 2.5s cubic-bezier(0.19, 1, 0.22, 1) forwards,
        ambientFloat 6s ease-in-out infinite 2.5s;
}

@keyframes boxesEntranceLeft {
    0% {
        opacity: 0;
        transform: translateX(-100vw);
        filter: blur(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes boxesEntranceRight {
    0% {
        opacity: 0;
        transform: translateX(100vw);
        filter: blur(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.feature-card-cinematic:hover {
    background: rgba(13, 38, 74, 0.5);
    border-color: var(--color-accent);
    box-shadow: 0 0 25px rgba(226, 101, 52, 0.6), inset 0 0 10px rgba(226, 101, 52, 0.2);
    transform: translateY(-15px) scale(1.02) !important;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.05),
            transparent);
    transform: skewX(-25deg);
    animation: luxuryShine 6s infinite;
    animation-delay: calc(var(--i) * 1.5s);
}

@keyframes luxuryShine {
    0% {
        left: -100%;
    }

    20%,
    100% {
        left: 200%;
    }
}

.feature-card-cinematic i {
    font-size: 3.5rem;
    color: var(--color-accent);
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(226, 101, 52, 0.3);
    animation: iconPulse 4s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.1);
        filter: brightness(1.3);
    }
}

.feature-card-cinematic h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-card-cinematic p {
    color: #a0aec0;
    line-height: 1.7;
    font-size: 1rem;
}

.card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: 2px solid transparent;
    pointer-events: none;
    z-index: 0;
}

.cinematic-section.in-view .feature-card-cinematic .card-border-glow {
    animation: borderLandingPulse 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
    animation-delay: calc(2.4s + (var(--i) * 0.1s));
}

@keyframes borderLandingPulse {
    0% {
        border-color: transparent;
        box-shadow: 0 0 0 transparent;
        transform: scale(0.99);
        opacity: 0;
    }

    30% {
        border-color: var(--color-accent);
        box-shadow: 0 0 50px rgba(226, 101, 52, 0.7);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        border-color: rgba(226, 101, 52, 0.3);
        box-shadow: 0 0 15px rgba(226, 101, 52, 0.15);
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes ambientFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* PRODUCT PREVIEW & GRIDS */
.product-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 1100px) {

    .product-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .product-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.product-card {
    position: relative;
    border-radius: var(--br-lg);
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26, 21, 18, 0.9));
    transform: translateY(20px);
    transition: var(--transition-smooth);
    opacity: 0.8;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-card:hover .product-info {
    transform: translateY(0);
    opacity: 1;
}

.product-info h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.product-info p {
    font-size: 0.9rem;
    color: var(--color-accent);
}

/* BRAND STATEMENT */
.brand-statement {
    position: relative;
    padding: 150px 5%;
    background: linear-gradient(rgba(226, 101, 52, 0.4), rgba(226, 101, 52, 0.4)), url('assets/images/interior.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
}

.brand-statement-content {
    max-width: 900px;
    margin: 0 auto;
}

.brand-statement h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.brand-statement p {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 300;
}

/* PREMIUM ABOUT SECTION */
#about {
    background: radial-gradient(circle at 10% 20%, rgba(255, 245, 236, 1) 0%, rgba(255, 252, 249, 1) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 160px 0;
}

#about::before {
    content: 'FORTIVO';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30vw;
    font-weight: 900;
    color: rgba(226, 101, 52, 0.03);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
    letter-spacing: 0.15em;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

#about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/pinstriped-suit.png");
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.luxury-about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    z-index: 1;
    width: 96% !important;
    max-width: 1450px !important;
    margin-left: 20px !important;
    margin-right: auto !important;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
    margin-left: 40px;
}

.about-image-wrapper .main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--br-lg);
    position: relative;
    z-index: 2;
}

/* LOGO REVEAL STYLES */
.logo-reveal-container {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle inner edge */
    position: relative;
    z-index: 2;
    z-index: 2;
    aspect-ratio: 3 / 4;
    height: 65vh;
    /* Reduced to balance image weight perfectly */
    max-height: 550px;
    margin-left: 0;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-reveal-container:hover {
    transform: translateY(-12px) scale(1.01);
    /* Subtle floating effect */
}

.logo-reveal-container .main-img {
    box-shadow: none;
    border: none;
    display: block;
    z-index: 1;
}

.logo-reveal-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0d1a2c;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

.logo-reveal-container.fade-in-visible .logo-reveal-box {
    animation: fadeOverlayOut 1s cubic-bezier(0.7, 0, 0.3, 1) forwards 2.5s;
}

.logo-reveal-container .pic-reveal {
    opacity: 0;
    transform: scale(1.05);
}

.logo-reveal-container.fade-in-visible .pic-reveal {
    animation: picFadeIn 1s cubic-bezier(0.7, 0, 0.3, 1) forwards 2.5s;
}

.logo-reveal-box img {
    width: 60%;
    max-width: 250px;
    opacity: 0;
}

.logo-reveal-container.fade-in-visible .logo-reveal-box img {
    animation: logoPopAndFade 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes logoPopAndFade {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }

    20% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    80% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
        filter: drop-shadow(0 0 20px rgba(226, 101, 52, 0.4));
    }

    100% {
        opacity: 0;
        transform: scale(1.1) translateY(-10px);
    }
}

@keyframes fadeOverlayOut {
    0% {
        opacity: 1;
        visibility: visible;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes picFadeIn {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.logo-reveal-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--color-accent);
    /* Thicker for visibility */
    border-radius: 28px;
    /* Larger radius for the larger ring */
    z-index: -1;
    transform: translate(-20px, -20px);
    /* Pushed out further */
    opacity: 0.8;
    /* Higher visibility */
    filter: blur(0px);
    pointer-events: none;
    box-shadow: 0 0 30px rgba(226, 101, 52, 0.3);
    width: calc(100% + 40px);
    /* Bigger than the pic */
    height: calc(100% + 40px);
    /* Bigger than the pic */
}

.about-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section-header h2 {
    font-size: 3.2rem;
    /* Shrunk slightly as requested */
    line-height: 1.1;
    color: var(--color-primary);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 25px;
    /* Offset for line element added */
}

.header-accent-line {
    width: 60px;
    height: 3px;
    background: var(--color-accent);
    margin: 0 auto;
}

.about-section-header h2::first-line {
    color: var(--color-accent);
}

.about-section-header .accent-text {
    color: var(--color-accent);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 10px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: 700;
    opacity: 0.9;
}

.about-text-content p {
    font-size: 1.15rem;
    color: #222222;
    /* Darker for proper readability */
    margin-bottom: 35px;
    text-align: left;
    line-height: 1.9;
    max-width: 550px;
    font-weight: 400;
    /* Reverted to 400 so it does not feel too pale */
}

/* PREMIUM REDESIGN BLOCK */
.about-premium-text {
    position: relative;
    margin-top: 0;
}

.about-premium-text p:last-child {
    margin-bottom: 0;
}

.luxury-about-grid {
    align-items: center;
    gap: 3rem;
    /* Expands spatial breathing distance to text */
}

.about-bottom-text {
    margin-top: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-bottom-text p {
    font-size: 1.15rem;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.9;
    font-weight: 400;
}

.about-bottom-text p:last-child {
    margin-bottom: 0;
}

.about-logo-stamp {
    margin-top: 40px;
    display: inline-block;
    transition: var(--transition-smooth);
}

.about-logo-stamp:hover {
    transform: translateY(-5px);
}

.about-logo-stamp img {
    height: 140px;
    /* Massive, highly prominent badge sizing */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(226, 101, 52, 0.15));
}

/* VALUES CARDS */
.values-container {
    padding-top: 80px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    width: 100%;
    max-width: 400px;
    min-height: 400px;
    padding: 40px 30px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(13, 26, 44, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.value-card:hover {
    transform: translateY(-20px) scale(1.03);

    background: linear-gradient(135deg, #0d1a2c, #072349);
    /* full box color change */

    border-color: #0047AB;

    box-shadow:
        0 0 40px rgba(0, 71, 171, 0.6),
        0 20px 60px rgba(0, 0, 0, 0.4);
}

.value-card:hover h3,
.value-card:hover p {
    color: #ffffff;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.value-card:hover i {
    color: #f28f17;
}


.value-card:hover::before {
    height: 100%;
}

.value-card i {
    font-size: 1.4rem;
    color: #072349;
    margin-bottom: 10px;
    display: block;
}

.value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.value-card p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
}

/* PRODUCTS PAGE SPECIFIC STYLES - PREMIUM REDESIGN */

.products-hero {
    height: 60vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('warehouse.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 5%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 1;
}

.products-hero .section-title {
    position: relative;
    z-index: 2;
    margin-bottom: 0;
}

.products-hero h1 {
    font-size: 5.5rem;
    margin: 10px 0 20px;
    line-height: 1;
}

.products-hero p {
    font-size: 1.2rem;
    color: var(--color-text-dim);
    max-width: 600px;
    margin: 0 auto;
}

.title-line {
    height: 3px;
    width: 80px;
    background: var(--color-accent);
    margin: 30px auto 0;
}

.products-grid-section {
    position: relative;
    background: #ffffff;
    padding: 100px 5%;
    overflow: hidden;
}

.bg-pattern {
    display: none;
}



/* LUXURY PRODUCT FLIP CARDS - PREMIUM REDESIGN */
.luxury-product-card {
    background: transparent;
    perspective: 2500px;
    /* Enhanced perspective for deep 3D feel */
    height: auto;
    aspect-ratio: 1 / 1.4;
    border: none;
    overflow: visible;
    position: relative;
    cursor: pointer;
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
    /* Slower, more refined flip */
    transform-style: preserve-3d;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.luxury-product-card:hover .card-inner {
    transform: rotateY(180deg);
    /* Elegant lift and flip */
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.1);
    /* Premium brand glow */
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
    overflow: hidden;
}

.card-front {
    border: 1px solid rgba(226, 101, 52, 0.15);
    /* normal front */
}

.card-back {
    border: 1.5px solid rgba(0, 102, 255, 0.6);
    /* blue border */
}

.luxury-product-card:hover .card-back {
    box-shadow:
        0 0 30px rgba(0, 51, 153, 0.9),
        0 0 60px rgba(0, 51, 153, 0.6);
}

.card-front {
    background: #1C3F75;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}

.card-back {
    background: radial-gradient(circle at center, #1a2a44 0%, #0d1a2c 100%);
    /* Depth through gradient */
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 45px 35px;
    z-index: 1;
    border: 1.5px solid rgba(226, 101, 52, 0.4);
    position: relative;
    justify-content: center;
}

.card-back::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.product-image-box {
    width: 100%;
    height: 75%;
    overflow: hidden;
    position: relative;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.luxury-product-card:hover .product-image-box img {
    transform: scale(1.15);
}

.product-name-band {
    height: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d1a2c;
    position: relative;
    padding: 20px;
}

.product-name-band::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--color-accent);
}

.product-name-band h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.back-header {
    margin-bottom: 25px;
    text-align: center;
}

.back-header h3 {
    font-size: 2.2rem;
    /* Larger, more focal title */
    color: var(--color-accent);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
}

.mini-line {
    width: 40px;
    height: 2px;
    background: var(--color-accent);
    margin: 0 auto;
}

.card-back p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.technical-list {
    margin-bottom: 40px;
    list-style: none;
    padding: 0;
}

.technical-list li {
    font-size: 0.85rem;
    color: var(--color-text);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.technical-list i {
    color: var(--color-accent);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.75rem;
    align-self: center;
    margin-top: auto;
}

/* EDITORIAL GALLERY STYLES */
:root {
    --editorial-bg: #FFFFFF;
    --editorial-bg-overlay: rgba(255, 255, 255, 0.94);
    --editorial-text: #1A1512;
    --editorial-accent: #E26534;
    --editorial-font-alt: 'Playfair Display', serif;
}

.editorial-section {
    background: linear-gradient(var(--editorial-bg-overlay), var(--editorial-bg-overlay)), url('ff.png');
    background-size: cover;
    background-attachment: fixed;
    color: var(--editorial-text);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Gallery Header */
.gallery-editorial-header {
    padding: 80px 5% 100px;
    text-align: center;
    position: relative;
}

.gallery-editorial-header h1 {
    font-size: 7rem;
    font-weight: 400;
    font-family: var(--editorial-font-alt);
    margin-bottom: 20px;
    color: #0047AB;
    /* Premium Blue */
    letter-spacing: -2px;
}

.gallery-editorial-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(26, 21, 18, 0.6);
    line-height: 1.6;
    font-weight: 300;
}

/* Floating Decoration Panels */
.floating-element {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.8;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: floatSlow 10s ease-in-out infinite;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.panel-1 {
    top: 15%;
    left: 8%;
    width: 140px;
}

.panel-2 {
    top: 25%;
    right: 10%;
    width: 180px;
    animation-delay: -2s;
}

.panel-3 {
    bottom: 10%;
    left: 5%;
    width: 120px;
    animation-delay: -5s;
}

.panel-4 {
    bottom: 20%;
    right: 5%;
    width: 150px;
    animation-delay: -7s;
}

/* Magazine Grid Layout */
.editorial-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5% 50px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

/* Grid Item Styles */
.editorial-item {
    position: relative;
    background: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.03);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editorial-item:hover {
    transform: translateY(-10px);
}

.editorial-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.editorial-item:hover img {
    transform: scale(1.05);
}

.editorial-content {
    padding: 40px;
    background: white;
    z-index: 2;
}

.editorial-content h3 {
    font-family: var(--editorial-font-alt);
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--editorial-text);
}

.editorial-content p {
    font-size: 0.95rem;
    color: rgba(26, 21, 18, 0.6);
    margin-bottom: 25px;
    line-height: 1.6;
}

.explore-btn {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: var(--editorial-text);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--editorial-text);
    padding-bottom: 5px;
    transition: gap 0.3s ease;
}

.explore-btn:hover {
    gap: 20px;
    color: var(--editorial-accent);
    border-color: var(--editorial-accent);
}

/* Specific Sizes */
.item-hero {
    grid-column: span 12;
    height: 700px;
}

.item-medium {
    grid-column: span 6;
    height: 600px;
}

.item-small {
    grid-column: span 4;
    height: 500px;
}

@media (max-width: 1100px) {
    .item-medium {
        grid-column: span 6;
    }

    .item-small {
        grid-column: span 6;
    }

    .gallery-editorial-header h1 {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .item-hero {
        grid-template-columns: 1fr;
        height: auto;
        grid-column: span 12;
    }

    .item-hero .editorial-content {
        height: 350px;
    }

    .item-medium,
    .item-small {
        grid-column: span 12;
        height: 500px;
    }

    .gallery-editorial-header h1 {
        font-size: 4rem;
    }

    .floating-element {
        display: none;
    }
}

/* GALLERY PAGE SPECIFIC STYLES */
.gallery-hero {
    height: 40vh;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.masonry-container {
    padding: 80px 5%;
    columns: 3;
    column-gap: 2rem;
}

.gallery-item {
    margin-bottom: 2rem;
    break-inside: avoid;
    position: relative;
    border-radius: var(--br-sm);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 157, 46, 0.1);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 21, 18, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--color-accent);
}

/* CONTACT PAGE SPECIFIC STYLES */

.contact-preview-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #051429 0%, #f5bc8b 100%);
}

.section-preview-header {
    text-align: center;
    margin-bottom: 24px;
}

.contact-section {
    display: flex;
    justify-content: center;
    padding: 20px 5% 60px;
}

.contact-info {
    background: linear-gradient(145deg, #13243f 0%, #1a3154 100%);
    padding: 30px 45px;
    border-radius: 28px;
    border: 1px solid rgba(226, 101, 52, 0.22);
    max-width: 760px;
    width: 100%;
    box-shadow:
        0 30px 80px rgba(13, 26, 44, 0.22),
        0 8px 24px rgba(0, 0, 0, 0.10);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contact-info::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(226, 101, 52, 0.14), transparent 35%);
    pointer-events: none;
}

.contact-info::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 20px;
    align-items: center;
    text-align: center;
}

.info-item i {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 8px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 101, 52, 0.12);
    box-shadow: inset 0 0 0 1px rgba(226, 101, 52, 0.18);
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    color: #ffffff;
    font-family: var(--font-heading);
}

.info-item p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 420px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(26, 21, 18, 0.6);
    padding: 50px;
    border-radius: var(--br-lg);
    border: 1px solid rgba(227, 218, 201, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-accent);
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(227, 218, 201, 0.05);
    border: 1px solid rgba(227, 218, 201, 0.1);
    padding: 15px;
    color: var(--color-text);
    border-radius: var(--br-sm);
    font-family: var(--font-body);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(227, 218, 201, 0.1);
}

.submit-btn {
    width: 100%;
    border: none;
    font-family: var(--font-body);
    cursor: pointer;
}

/* FOOTER */
footer {
    padding: 80px 5% 40px;
    background: #051b3c;
    border-top: 1px solid rgba(226, 101, 52, 0.2);
}

.footer-brand img {
    width: 290px !important;
    max-width: 100%;
    height: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    justify-content: flex-start;
    /* or center if you want */
    align-items: center;
}

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 5px;
}

.footer-brand h3 {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.footer-brand p.tagline {
    font-size: 0.8rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(227, 218, 201, 0.1);
    font-size: 0.8rem;
    color: var(--color-text-dim);
}



.footer-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* centers both sections */
    text-align: center;
}

.footer-links ul {
    padding: 0;
}

.footer-links ul li {
    list-style: none;
}

.footer-links:nth-child(2) {
    align-items: center;
    text-align: center;
}

.footer-links:nth-child(3) {
    align-items: center;
    text-align: center;
}

.meet-developers {
    color: var(--color-text-dim);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    padding: 8px 16px;
    border: 1px solid rgba(226, 101, 52, 0.2);
    border-radius: 50px;
}

.meet-developers:hover {
    color: var(--color-accent);
    border-color: var(--color-accent);
    background: rgba(226, 101, 52, 0.05);
    transform: translateY(-2px);
}

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

.social-icons a {
    font-size: 1.2rem;
}

.social-icons a:hover {
    color: var(--color-accent);
    transform: translateY(-3px);
}

/* ANIMATIONS */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0) !important;
}

/* RESPONSIVE */
/* CURSOR EFFECT - REALISTIC WOOD SHARDS */
.chipping {
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
    opacity: 0;
    will-change: transform, opacity;
}

/* Base Shard */
.chipping::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #8d6e63;
    /* Default wood color */
    clip-path: polygon(20% 0%, 80% 10%, 100% 50%, 70% 90%, 10% 80%);
    /* Jagged shard */
}

/* Varied Shard Types */
.chipping.type-1::before {
    background: #5d4037;
    /* Dark Walnut */
    clip-path: polygon(50% 0%, 100% 100%, 0% 80%);
}

.chipping.type-2::before {
    background: #bcaaa4;
    /* Light Spruce */
    clip-path: polygon(0 15%, 100% 0, 85% 100%, 10% 85%);
}

.chipping.type-3::before {
    background: #a1887f;
    /* Teak */
    clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

@keyframes flutter {
    0% {
        transform: translate(0, 0) rotate(0deg) rotateX(0deg);
        opacity: 1;
    }

    15% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--x), var(--y)) rotate(var(--r)) rotateX(540deg) rotateY(360deg);
        opacity: 0;
    }
}

.chipping {
    animation: flutter 1.2s cubic-bezier(0.1, 0.4, 0.3, 1) forwards;
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column !important;
        gap: 2rem;
    }

    .masonry-container {
        columns: 2;
    }

    .contact-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        padding: 120px 25px 30px;
        /* pushes menu below your big logo */
        background: rgba(13, 26, 44, 0.98);
        backdrop-filter: blur(16px);
        gap: 1.5rem;
        transition: right 0.4s ease;
        z-index: 10000;
        border-left: 1px solid rgba(226, 101, 52, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        position: fixed !important;
        top: 30px !important;
        right: 20px !important;
        width: 50px;
        height: 50px;
        background: rgba(13, 26, 44, 0.85) !important;
        border-radius: 12px !important;
        color: #fff !important;
        z-index: 10001 !important;
        cursor: pointer !important;
    }

    .nav-links a {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .nav-links a:hover {
        color: var(--color-accent);
        padding-left: 8px;
    }

    .nav-cta {
        display: none;
        /* Hide CTA button on mobile to save space, or style it inside menu */
    }

    .hero h1 {
        font-size: 3rem;
        letter-spacing: 5px;
    }

    .hero h2 {
        font-size: 0.9rem;
        letter-spacing: 4px;
    }

    .hero-logo {
        height: 50px;
    }

    .hero-title-container {
        gap: 10px;
    }

    .luxury-about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        align-items: center;
        /* Center aligned for mobile */
    }

    .logo-reveal-container {
        height: 60vh;
        margin: 0 auto;
    }

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

    .about-text-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-text-content h2 {
        font-size: 3rem;
    }
}

@media (max-width: 600px) {
    .masonry-container {
        columns: 1;
    }
}

/* Realistic Wood Chippings / Sawdust Effect */
.chipping {
    position: absolute;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.9;
    box-shadow: 0 0 6px rgba(212, 163, 115, 0.5);
    /* Subtle warm glow */
    animation: fallAndFade 1.2s ease-out forwards;
}

/* Different types for natural variation in shape and color */
.chipping.type-0 {
    background: #d4a373;
    border-radius: 1px 4px 2px 3px;
}

/* Light Brown */
.chipping.type-1 {
    background: #faedcd;
    border-radius: 3px 2px 4px 1px;
}

/* Beige */
.chipping.type-2 {
    background: #e0c097;
    border-radius: 2px 3px 1px 4px;
}

/* Warm Wood */
.chipping.type-3 {
    background: #c89f70;
    border-radius: 4px 1px 3px 2px;
}

/* Oak Tone */

@keyframes fallAndFade {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.9;
    }

    70% {
        opacity: 0.6;
    }

    100% {
        transform: translate(var(--x), var(--y)) rotate(var(--r));
        opacity: 0;
    }
}

/* GALLERY SECTION — Marquee Style */
.gallery-section {
    width: 100%;
    background: var(--color-primary);
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
}

.gallery-editorial-header {
    padding: 0 5% 60px;
    text-align: center;
    position: relative;
}

.gallery-editorial-header h2 {
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--color-text);
}

.gallery-editorial-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-text-dim);
    line-height: 1.6;
    font-weight: 300;
}

/* Marquee wrapper — clips overflow and adds edge fade */
.gallery-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.gallery-marquee-wrapper::before,
.gallery-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.gallery-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-primary), transparent);
}

.gallery-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-primary), transparent);
}

/* The scrolling track */
.gallery-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    padding: 10px 10px;
}

/* Left-scrolling row */
.gallery-marquee--left .gallery-marquee-track {
    animation: marqueeLeft 40s linear infinite;
}

.gallery-marquee--left:hover .gallery-marquee-track {
    animation-play-state: paused;
}

/* Right-scrolling row */
.gallery-marquee--right .gallery-marquee-track {
    animation: marqueeRight 40s linear infinite;
}

.gallery-marquee--right:hover .gallery-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Individual image cards */
.gallery-card {
    position: relative;
    width: 340px;
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid rgba(226, 101, 52, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.gallery-card:hover {
    box-shadow: 0 16px 50px rgba(226, 101, 52, 0.35), 0 0 0 1px rgba(226, 101, 52, 0.5);
    border-color: var(--color-accent);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover img {
    transform: scale(1.08);
}

/* Label that slides up on hover */
.gallery-card span {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover span {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .gallery-card {
        width: 260px;
        height: 185px;
    }

    .gallery-editorial-header h2 {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        width: 200px;
        height: 145px;
    }

    .gallery-editorial-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .gallery-card {
        width: 200px;
        height: 145px;
    }

    .gallery-editorial-header h2 {
        font-size: 2.5rem;
    }
}

/* NEW MOBILE HERO OVERRIDES */
@media (max-width: 768px) {
    .top-right-nav {
        display: none !important;
    }

    .top-left-logo {
        top: 10px !important;
        left: 14px !important;
    }

    .top-left-logo img {
        height: 90px !important;
        width: auto;
    }

    .hero {
        padding: 110px 20px 40px;
        min-height: 100vh;
    }

    .hero-content {
        padding: 20px !important;
        width: 100% !important;
        max-width: 420px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: 3px !important;
        white-space: normal !important;
        text-align: center !important;
        line-height: 1.15;
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }

    .hero h2 {
        font-size: 0.95rem !important;
        letter-spacing: 4px !important;
        max-width: 220px !important;
        margin: 0 auto 18px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        display: block !important;
        white-space: normal !important;
    }

    .hero .headline {
        font-size: 1.05rem !important;
        line-height: 1.7;
        margin: 14px auto 28px;
    }

    .hero-btns {
        flex-direction: row;
        gap: 14px;
        flex-wrap: wrap;
    }

    .hero-btns .btn {
        min-width: 145px;
        text-align: center;
        padding: 12px 22px;
        font-size: 0.78rem;
    }
}

/* CENTER LAYOUT OVERRIDES FOR ALL PAGES (EXCEPT HERO HEADER) */
@media (max-width: 768px) {

    /* Main Section Containers */
    .cinematic-section,
    .brand-statement,
    #about,
    #products,
    .gallery-editorial-header,
    .contact-preview-section,
    .contact-section,
    footer {
        text-align: center !important;
    }

    /* Flex Grids to Single Column Centered */

    .contact-section,
    .footer-content,
    .luxury-about-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 3rem !important;
    }


    /* Icon / Image Centering inside cards */
    .feature-card-cinematic i,
    .value-card i,
    .info-item i,
    .luxury-product-card .product-image-box {
        margin: 0 auto 15px !important;
        display: block !important;
    }

    /* Specific Text Adjustments */
    .about-text-content p,
    .brand-statement p,
    .contact-info p {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Individual Cards & Info Blocks */
    .feature-card-cinematic,
    .value-card,
    .luxury-product-card,
    .footer-brand,
    .footer-links,
    .about-text-content {
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }


    /* Footer Cleanup */
    .footer-links ul {
        padding: 0 !important;
        text-align: center !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 1.5rem !important;
        align-items: center !important;
    }
}

/* Specific Text Adjustments */
.about-text-content p,
.brand-statement p,
.contact-info p {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Footer Cleanup */
.footer-links ul {
    padding: 0 !important;
    text-align: center !important;
}

.footer-bottom {
    flex-direction: column !important;
    gap: 1.5rem !important;
    align-items: center !important;
}

@media (max-width: 768px) {
    .top-left-logo img {
        height: 180px !important;
        width: auto !important;
    }
}

@media (max-width: 768px) {
    .top-left-logo {
        top: -15px !important;
        left: 5px !important;
    }
}

@media (max-width: 768px) {
    .features-grid-cinematic {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 18px !important;
        padding: 10px 20px 20px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }

    .features-grid-cinematic::-webkit-scrollbar {
        display: none;
    }

    .feature-card-cinematic {
        flex: 0 0 85% !important;
        max-width: 85% !important;
        min-width: 85% !important;
        margin: 0 !important;
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .luxury-about-grid {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 12px !important;
        overflow: hidden !important;
    }

    .about-image-wrapper {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .logo-reveal-container {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        aspect-ratio: 3 / 4 !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .about-image-wrapper .main-img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .logo-reveal-container::after {
        display: none !important;
    }
}


@media (max-width: 768px) {
    .products-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        gap: 18px !important;
        padding: 10px 20px 20px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        align-items: stretch !important;
    }

    .products-grid::-webkit-scrollbar {
        display: none;
    }

    .luxury-product-card {
        flex: 0 0 85% !important;
        min-width: 85% !important;
        max-width: 85% !important;
        margin: 0 !important;
        scroll-snap-align: center;
    }
}

@media (max-width: 768px) {
    .contact-info {
        padding: 38px 24px !important;
        max-width: 360px !important;
        border-radius: 24px !important;
    }

    .contact-info h2 {
        font-size: 2.6rem !important;
        line-height: 1.05 !important;
        margin-bottom: 28px !important;
        text-align: center !important;
    }

    .info-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 12px !important;
        margin-bottom: 26px !important;
    }

    .info-item i {
        margin: 0 auto !important;
        width: 54px !important;
        height: 54px !important;
        font-size: 1.15rem !important;
    }

    .info-item h4 {
        margin-bottom: 6px !important;
        font-size: 1.9rem !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .info-item p {
        max-width: 100% !important;
        margin: 0 auto !important;
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
        text-align: center !important;
    }

    .contact-cta-box {
        margin-top: 10px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }

    .contact-cta-box .btn {
        width: 100% !important;
        max-width: 260px !important;
        text-align: center !important;
        padding: 14px 18px !important;
        line-height: 1.5 !important;
    }
}

@media (max-width: 768px) {
    .info-item i {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        width: 56px !important;
        height: 56px !important;

        border-radius: 50% !important;

        font-size: 18px !important;
        line-height: 1 !important;
    }
}

/* IMAGE MODAL LIGHTBOX STYLES */
.image-modal {
    display: flex;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.image-modal.show {
    opacity: 1;
    pointer-events: auto;
}

.image-modal .modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 75vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    object-fit: contain;
}

.image-modal #modalCaption {
    margin: 20px auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #f1f1f1;
    font-size: 1.4rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    animation: zoomIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.image-modal .close-modal {
    position: absolute;
    top: 25px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 3001;
}

.image-modal .close-modal:hover,
.image-modal .close-modal:focus {
    color: var(--color-accent);
    text-decoration: none;
    cursor: pointer;
}

.gallery-card {
    cursor: pointer;
}

/* --- ABOUT CARDS PREMIUM MOBILE REDESIGN (Breakpoint: 1024px) --- */
@media (max-width: 1024px) {
    #about .values-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 25px !important;
        padding: 0 5% !important;
    }

    #about .value-card {
        width: 100% !important;
        max-width: 420px !important;
        height: auto !important;
        min-height: auto !important;
        margin: 0 auto 10px !important;
        padding: 45px 30px !important;
        background: #0d1a2c !important;
        /* Premium Navy */
        border: 1px solid rgba(226, 101, 52, 0.4) !important;
        text-align: left !important;
        align-items: flex-start !important;
        border-radius: 28px !important;
        box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4) !important;
        cursor: pointer !important;
        position: relative !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        pointer-events: auto !important;
    }

    #about .value-card i {
        color: var(--color-accent) !important;
        font-size: 2.2rem !important;
        margin-bottom: 22px !important;
        display: block !important;
        margin-left: 0 !important;
    }

    #about .value-card h3 {
        color: #fff !important;
        font-size: 1.6rem !important;
        margin-bottom: 14px !important;
        text-align: left !important;
    }

    /* Description Preview with Smooth Fade */
    #about .value-card p:not(:first-of-type) {
        display: none !important;
    }

    #about .value-card p:first-of-type {
        color: #d1d9e6 !important;
        font-size: 1.05rem !important;
        line-height: 1.75 !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 4 !important;
        line-clamp: 4 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-align: left !important;
        mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
        -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    }

    #about .value-card:active {
        transform: scale(0.97) translateY(2px) !important;
        background: #122841 !important;
    }
}

/* About Card Full Description Modal (Premium Mobile) */
.about-card-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 14, 25, 0.85);
    /* Deep blurred navy */
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 20000;
    justify-content: center;
    align-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-card-modal.show {
    display: flex;
    opacity: 1;
}

.about-card-modal-content {
    background: #0d1a2c;
    width: 100%;
    max-width: 440px;
    max-height: 80vh;
    padding: 55px 35px 45px;
    border-radius: 32px;
    border: 1px solid rgba(226, 101, 52, 0.4);
    position: relative;
    overflow-y: auto;
    transform: scale(0.85);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.about-card-modal.show .about-card-modal-content {
    transform: scale(1);
}

.close-about-modal {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(226, 101, 52, 0.1);
    color: var(--color-accent);
    font-size: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-about-modal:hover {
    background: var(--color-accent);
    color: #fff;
    transform: rotate(90deg);
}

.about-card-modal h3 {
    color: var(--color-accent);
    font-size: 1.9rem;
    margin-bottom: 25px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    border-bottom: 1px solid rgba(226, 101, 52, 0.2);
    padding-bottom: 15px;
}

.about-card-modal .modal-body {
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-card-modal .modal-body p {
    margin-bottom: 20px;
    color: #d1d9e6;
}

.about-card-modal .modal-body p:last-child {
    margin-bottom: 0;
}

/* FIX: remove blue line above orange line (mobile) */
@media (max-width: 768px) {

    .card-front {
        background: #0d1a2c !important;
    }

    .product-image-box {
        height: auto !important;
        line-height: 0 !important;
        overflow: hidden !important;
    }

    .product-image-box img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
    }

    .product-name-band {
        margin-top: 0 !important;
        top: 0 !important;
    }
}

/* --- MAP SECTION PREMIUM STYLING --- */
.map-section {
    padding: 120px 5%;
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.section-subtitle {
    color: var(--color-accent);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-top: 10px;
    text-align: center;
}

.map-section .section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.map-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 32px;
    overflow: hidden;
    border: 1px solid rgba(226, 101, 52, 0.3);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    filter: grayscale(0.8) contrast(1.1);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    position: relative;
    cursor: crosshair;
}

.map-redirect-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 10;
    background: var(--color-accent);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(226, 101, 52, 0.4);
    transition: var(--transition-smooth);
    opacity: 0.9;
}

.map-redirect-btn:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    background: #fff;
    color: var(--color-accent);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.2);
}

.map-redirect-btn i {
    font-size: 1rem;
}

.map-wrapper::after {
    content: 'View Our Location';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-accent);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    opacity: 0.8;
    transition: var(--transition-smooth);
}

.map-wrapper:hover {
    filter: grayscale(0) contrast(1);
    border-color: var(--color-accent);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.8);
    transform: scale(1.01);
}

.map-wrapper:hover::after {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-section {
        padding: 80px 5%;
    }

    .map-wrapper {
        height: 350px;
        border-radius: 20px;
    }

    .map-section .reveal-text {
        font-size: 2.5rem !important;
    }
}

/* FAQ SECTION */
.faq-section {
    background: #0d1a2c;
    padding: 100px 5%;
}

.faq-grid {
    max-width: 1000px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--br-lg);
    border: 1px solid rgba(226, 101, 52, 0.1);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--color-accent);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.faq-item p {
    color: var(--color-text-dim);
    line-height: 1.6;
}

/* FOOTER ENHANCEMENTS */
.footer-logo {
    width: 450px;
    max-width: 100%;
    height: auto;
}

.footer-links h4 {
    color: var(--color-accent);
    margin-bottom: 25px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links li {
    margin-bottom: 15px;
    color: var(--color-text-dim);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    margin-top: 60px;
    text-align: center;
}

.footer-bottom a {
    color: var(--color-text-dim);
    transition: var(--transition-smooth);
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem !important;
        letter-spacing: 4px !important;
        white-space: normal !important;
    }

    .hero h2 {
        font-size: 0.9rem !important;
        letter-spacing: 4px !important;
    }

    .reveal-text {
        font-size: 2.2rem !important;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }
}