/* ============================================
   TrueCore Traders — Bold Editorial Design System
   Inspired by VIKTORCODDY reference layout
   ============================================ */

/* === DESIGN TOKENS === */
:root {
    --orange-hot: #FF3B00;
    --orange-deep: #E63200;
    --orange-light: #FF6B35;
    --orange-glow: rgba(255, 59, 0, 0.4);
    --orange-subtle: rgba(255, 59, 0, 0.08);

    --surface-0: #FAFAF9;
    --surface-1: #FFFFFF;
    --surface-2: #F5F5F0;
    --surface-dark: #0C0C0C;
    --surface-dark-2: #161616;
    --surface-dark-3: #1E1E1E;

    --text-primary: #0C0C0C;
    --text-secondary: #5A5A58;
    --text-tertiary: #9A9A97;
    --text-inverse: #FAFAF9;
    --text-inverse-muted: #ABABAB;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 4px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 24px 60px rgba(0, 0, 0, 0.10), 0 8px 24px rgba(0, 0, 0, 0.06);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET & BASE === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    background-color: var(--surface-0);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--orange-hot);
    color: #fff;
}

/* === SCREEN READER ONLY (SEO H1) === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === PAGE LOADER === */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--orange-hot);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-icon {
    font-size: 3rem;
    color: #fff;
    animation: loaderSpin 2s linear infinite;
}

.loader-text {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: #fff;
}

@keyframes loaderPulse {

    0%,
    100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

@keyframes loaderSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* === SCROLL PROGRESS === */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: #fff;
    z-index: 9998;
    transition: width 0.1s linear;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* === REVEAL ANIMATIONS === */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
    transition-delay: var(--delay, 0s);
}

.reveal-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* === NAVIGATION === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 3rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
    background: rgba(255, 59, 0, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.8rem 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #fff;
    z-index: 10;
}

.nav-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    transform: scale(2.5);
    transform-origin: left center;
}

.nav-logo-icon {
    font-size: 1.6rem;
    color: #fff;
    font-family: sans-serif;
    transition: transform 0.4s var(--ease-spring);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(60deg);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.05em;
    font-weight: 800;
    color: #fff;
}

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

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: width 0.3s var(--ease-out-expo);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s;
    z-index: 10;
}

.nav-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover .nav-cta-arrow {
    background: #fff;
    border-color: #fff;
    color: var(--orange-hot);
    transform: rotate(-45deg);
}

.nav-cta:hover .nav-cta-arrow svg {
    stroke: var(--orange-hot);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #FF3B00 0%, #FF5500 40%, #FF6B20 70%, #FF8040 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background watermark text */
.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: clamp(6rem, 16vw, 22rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.07);
    letter-spacing: -0.02em;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease 0.3s;
}

.hero-watermark.visible {
    opacity: 1;
}

/* Giant headline typography */
.hero-headline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 3rem;
    z-index: 5;
    pointer-events: none;
}

.hero-word {
    font-family: var(--font-heading);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 0.95;
    display: block;
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.hero-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-word-1 {
    font-size: clamp(3.8rem, 8.5vw, 9.5rem);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.12);
}

.hero-word-2 {
    font-size: clamp(3.8rem, 8.5vw, 9.5rem);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.12);
    transition-delay: 0.15s;
}

.hero-word-3 {
    font-size: clamp(3.8rem, 8.5vw, 9.5rem);
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.12);
    transition-delay: 0.3s;
}

/* Hero image */
.hero-image-wrapper {
    position: absolute;
    right: 4%;
    /* Aligns the crate hook between 'CONTACT' and 'HIRE US' */
    top: 0;
    z-index: 8;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100vh;
    width: 45vw;
    max-width: 700px;
    opacity: 0;
    transition: opacity 1s var(--ease-out-expo) 0.4s;
}

.hero-image-wrapper.visible {
    opacity: 1;
}

.hero-image-glow {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(255, 200, 0, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    object-fit: contain;
    object-position: top center;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.2));
}

.crate-closed {
    transform-origin: top center;
    animation: crateClosedLoop 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

.crate-open {
    opacity: 0;
    transform: translateY(-100%);
    animation: crateOpenLoop 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
}

@keyframes crateClosedLoop {
    0% { transform: translateY(-100%) scale(1.15); opacity: 0; }
    5% { transform: translateY(0) scale(1.15); opacity: 1; }
    30% { transform: translateY(0) scale(1.15); opacity: 1; }
    35% { transform: translateY(-100%) scale(1.15); opacity: 0; }
    100% { transform: translateY(-100%) scale(1.15); opacity: 0; }
}

@keyframes crateOpenLoop {
    0%, 40% { transform: translateY(-100%); opacity: 0; }
    45% { transform: translateY(0); opacity: 1; }
    95% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes crateClosedLoopMobile {
    0% { transform: translateY(-40%) scale(1.15); opacity: 0; }
    5% { transform: translateY(0) scale(1.15); opacity: 1; }
    30% { transform: translateY(0) scale(1.15); opacity: 1; }
    35% { transform: translateY(-40%) scale(1.15); opacity: 0; }
    100% { transform: translateY(-40%) scale(1.15); opacity: 0; }
}

@keyframes crateOpenLoopMobile {
    0%, 40% { transform: translateY(-40%); opacity: 0; }
    45% { transform: translateY(0); opacity: 1; }
    95% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(-40%); opacity: 0; }
}

.crate-open-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Right tagline */
.hero-tagline {
    position: absolute;
    right: 3rem;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    opacity: 0;
    transition: opacity 0.8s ease 0.8s;
}

.hero-tagline.visible {
    opacity: 1;
}

.hero-tagline-slash {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.hero-tagline-text {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(0.85rem, 1.2vw, 1.1rem);
    color: #fff;
    line-height: 1.6;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Left description */
.hero-description {
    position: absolute;
    left: 3rem;
    bottom: 8rem;
    max-width: 320px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.8s ease 1s;
}

.hero-description.visible {
    opacity: 1;
}

.hero-description p {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* === BRAND TICKER === */
.brand-ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    overflow: hidden;
    padding: 1.5rem 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.12) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.8s ease 1.2s;
}

.brand-ticker.visible {
    opacity: 1;
}

.brand-ticker-track {
    display: flex;
    gap: 3rem;
    align-items: center;
    white-space: nowrap;
    width: max-content;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.brand-name.brand-outlined {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.6);
}

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

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

/* === ABOUT SECTION === */
.about-section {
    padding: 8rem 4rem;
    background: var(--surface-0);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--orange-hot);
    background: var(--orange-subtle);
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.2vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.text-accent {
    color: var(--orange-hot);
}

.about-text {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.feature-icon {
    color: var(--orange-hot);
    font-size: 1.2rem;
    font-family: sans-serif;
}

/* === STATS SECTION === */
.stats-section {
    padding: 8rem 4rem;
    background: var(--surface-dark);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(255, 59, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 59, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s var(--ease-out-expo);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
    border-color: rgba(255, 59, 0, 0.25);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: var(--orange-hot);
    letter-spacing: -0.02em;
    display: inline;
}

.stat-suffix {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    color: var(--orange-light);
}

.stat-label {
    color: var(--text-inverse-muted);
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
    letter-spacing: 0.02em;
}

/* === WHY CHOOSE US SECTION === */
.why-choose-section {
    position: relative;
    padding: 6rem 10%;
    overflow: hidden;
    background: #111;
}

.why-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('supply-safety-gear.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 1;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 2;
}

.why-choose-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.why-choose-heading {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: #FFC107;
    margin-bottom: 3rem;
}

.why-choose-heading .check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #4CAF50;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    font-size: 2rem;
    line-height: 1;
}

.why-choose-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.why-choose-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 1.35rem;
    line-height: 1.5;
    color: #e0e0e0;
}

.why-choose-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 8px;
    height: 8px;
    background-color: white;
}

.why-choose-list li strong {
    color: white;
}

/* === SERVICES SECTION === */
.services-section {
    padding: 8rem 4rem;
    background: var(--surface-0);
}

.services-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 5rem;
}

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

.service-card {
    position: relative;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.service-image-box {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: #eaedf0;
    border-radius: var(--radius-lg);
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s var(--ease-out-expo);
    mix-blend-mode: darken;
}

.service-card:hover .service-img {
    transform: scale(1.06);
}

.service-badge {
    display: none;
}

.service-content {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-card-line {
    display: none;
}

.service-card:hover .service-card-line {
    display: none;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

.service-card:hover h3 {
    color: var(--orange-hot);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* === CTA SECTION === */
.cta-section {
    padding: 8rem 4rem;
    background: var(--orange-hot);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    filter: blur(60px);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.6rem, 4.5vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 3rem;
    line-height: 1.7;
    font-weight: 500;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--orange-hot);
    padding: 1.15rem 2.5rem;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: all 0.4s var(--ease-out-expo);
    border: none;
    cursor: pointer;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    background: var(--surface-dark);
    color: #fff;
}

.cta-btn:hover svg {
    stroke: #fff;
}

/* === FOOTER === */
.site-footer {
    background: var(--surface-dark);
    color: var(--text-inverse);
    padding: 6rem 4rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: -15px;
}

.footer-logo .nav-logo-image {
    filter: brightness(0) invert(1);
}

.footer-logo .nav-logo-icon {
    color: var(--orange-hot);
}

.footer-logo .nav-logo-text {
    color: var(--text-inverse);
}

.footer-tagline {
    color: var(--text-inverse-muted);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-inverse-muted);
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    color: var(--text-inverse-muted);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.footer-col ul a:hover {
    color: var(--orange-hot);
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: var(--text-inverse-muted);
}

.contact-list svg {
    color: var(--orange-hot);
    flex-shrink: 0;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 2rem;
    color: var(--text-inverse-muted);
    font-size: 0.9rem;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {

    .hero-word-1,
    .hero-word-2,
    .hero-word-3 {
        font-size: clamp(3.2rem, 7.5vw, 7.5rem);
    }

    .hero-tagline {
        right: 2rem;
    }
}

@media (max-width: 1024px) {
    .hero-headline {
        padding: 0 2rem;
        align-items: center;
        text-align: center;
        justify-content: flex-start;
        padding-top: 48vh;
        gap: 1rem;
    }



    .hero-word-1,
    .hero-word-2,
    .hero-word-3 {
        font-size: clamp(4rem, 10vw, 7rem);
    }

    .hero-image-wrapper {
        width: 80%;
        height: 65vh;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        right: auto;
    }

    .hero-watermark {
        top: 25%;
        font-size: 20vw;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

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

    .navbar {
        padding: 1.25rem 2rem;
    }

    .navbar.scrolled {
        padding: 0.8rem 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 59, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        z-index: 999;
    }

    .nav-links.mobile-open {
        display: flex;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 700;
        color: #fff;
    }

    .mobile-toggle {
        display: flex;
    }

    .navbar .nav-cta {
        display: none;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-headline {
        padding: 0 1.5rem;
        justify-content: flex-start;
        padding-top: 40vh;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }

    .hero-word-1,
    .hero-word-2,
    .hero-word-3 {
        font-size: clamp(3.2rem, 12vw, 6rem);
    }

    .hero-image-wrapper {
        width: 130%;
        height: 75vh;
        top: 0;
        left: 50%;
        transform: translateX(-50%) scale(1.3);
        transform-origin: top center;
        right: auto;
    }

    .crate-closed {
        animation: crateClosedLoopMobile 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    }

    .crate-open {
        animation: crateOpenLoopMobile 20s cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
    }

    .crate-open-group {
        height: 100%;
        width: 100%;
    }

    .hero-image {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: top center;
    }

    .hero-watermark {
        top: 72%;
        font-size: 24vw;
    }

    .hero-tagline {
        right: 1.5rem;
        top: auto;
        bottom: 10rem;
        transform: none;
    }

    .hero-tagline-text {
        font-size: 0.75rem;
    }

    .hero-description {
        left: 1.5rem;
        bottom: 6rem;
        max-width: 200px;
    }

    .hero-description p {
        font-size: 0.65rem;
    }

    .about-section,
    .services-section,
    .cta-section {
        padding: 6rem 1.5rem;
    }

    .stats-section {
        padding: 5rem 1.5rem;
    }

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

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

    .about-features {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .site-footer {
        padding: 4rem 1.5rem 2rem;
    }
}

@media (max-width: 480px) {

    .hero-word-1,
    .hero-word-2,
    .hero-word-3 {
        font-size: clamp(2.2rem, 12vw, 3.8rem);
    }

    .hero-image-wrapper {
        width: 85%;
    }

    .hero-tagline {
        display: none;
    }

    .hero-description {
        display: none;
    }

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

    .stat-card {
        padding: 2.5rem 1rem;
    }
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-sticky:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
    color: #fff;
}

/* === PRINT STYLES === */
@media print {

    .page-loader,
    .scroll-progress,
    .brand-ticker {
        display: none !important;
    }
}

/* ===== SERVICES, CONTACT & ABOUT PAGE FIXES ===== */
.services-hero .hero-headline,
.contact-hero .hero-headline,
.about-hero .hero-headline {
    padding-top: 0 !important;
    justify-content: center !important;
}

.services-hero .hero-watermark,
.contact-hero .hero-watermark,
.about-hero .hero-watermark {
    top: 50% !important;
}

@media (max-width: 768px) {
    .hero .hero-watermark {
        font-size: 18vw !important;
        top: 68% !important;
    }
    .services-hero .hero-watermark,
    .contact-hero .hero-watermark,
    .about-hero .hero-watermark {
        font-size: 13vw !important;
    }
}

/* ===== WHATSAPP INLINE BUTTON ===== */
.whatsapp-inline-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    margin-top: 0.25rem;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
    align-self: flex-start;
}

.whatsapp-inline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}