/* ============================================
   OSA ENGINEERING — COMPLETE REDESIGN
   style.css
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

/* ============================================
   CSS VARIABLES & ROOT
   ============================================ */
:root {
    --navy: #050d1a;
    --navy-mid: #0a1628;
    --navy-light: #0f2040;
    --steel: #1a2d4a;
    --steel-light: #253d5e;
    --gold: #f0a500;
    --gold-bright: #ffc840;
    --gold-dim: #a06e00;
    --silver: #b0bec5;
    --silver-light: #cfd8dc;
    --white: #f5f7fa;
    --offwhite: #e8edf3;
    --text-muted: #7a909e;
    --danger: #e05c3a;

    --font-display: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;

    --shadow-gold: 0 0 30px rgba(240, 165, 0, 0.25);
    --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);

    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: 0.2s ease;
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    cursor: none;
}

a {
    text-decoration: none;
    color: inherit;
}

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

button {
    font-family: var(--font-body);
    cursor: none;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(240, 165, 0, 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: width 0.35s, height 0.35s, border-color 0.35s;
}

body:has(a:hover) .cursor-dot,
body:has(button:hover) .cursor-dot {
    width: 14px;
    height: 14px;
    background: var(--gold-bright);
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
    width: 54px;
    height: 54px;
    border-color: var(--gold);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--navy);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.eyebrow {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: var(--white);
    margin-top: 0.5rem;
}

.section-title span {
    color: var(--gold);
    position: relative;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-pad {
    padding: 100px 0;
}

.text-gold {
    color: var(--gold);
}

.text-silver {
    color: var(--silver);
}

.text-muted {
    color: var(--text-muted);
}

.bg-navy {
    background: var(--navy);
}

.bg-navy-mid {
    background: var(--navy-mid);
}

.bg-navy-light {
    background: var(--navy-light);
}

.bg-steel {
    background: var(--steel);
}

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

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

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

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Gold divider line */
.gold-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.2rem 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.2s;
}

.btn:hover::after {
    opacity: 1;
}

.btn-gold {
    background: var(--gold);
    color: var(--navy);
    box-shadow: 0 0 0 rgba(240, 165, 0, 0);
}

.btn-gold:hover {
    background: var(--gold-bright);
    box-shadow: 0 0 25px rgba(240, 165, 0, 0.4);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
}

.btn-ghost:hover {
    background: rgba(240, 165, 0, 0.1);
    border-color: var(--gold-bright);
    transform: translateY(-2px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(240, 165, 0, 0.4);
    color: var(--gold);
    font-size: 1rem;
    transition: var(--transition);
}

.btn-icon:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.1);
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.from-left {
    transform: translateX(-60px);
}

.reveal.from-right {
    transform: translateX(60px);
}

.reveal.scale-in {
    transform: scale(0.85);
}

.reveal.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    background: rgba(5, 13, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.8rem 0;
    box-shadow: 0 1px 0 rgba(240, 165, 0, 0.15), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1.3rem;
    font-weight: 900;
    font-family: var(--font-display);
    letter-spacing: -1px;
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text .name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--white);
}

.nav-logo-text .sub {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Desktop Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--silver-light);
    padding: 0.5rem 0.9rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: calc(100% - 1.8rem);
}

.nav-link.active {
    color: var(--gold);
}

.nav-link.active::after {
    width: calc(100% - 1.8rem);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: none;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
    transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 13, 26, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(240, 165, 0, 0.2);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-mobile.open {
    display: flex;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav-mobile .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-mobile .nav-link::after {
    display: none;
}

.nav-mobile .btn {
    margin-top: 0.5rem;
    align-self: flex-start;
}

/* ============================================
   HERO SECTION
   ============================================ */
#hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    z-index: 0;
    transform: scale(1.05);
    transition: transform 8s ease;
    will-change: transform;
}

.hero-bg.loaded {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(5, 13, 26, 0.92) 0%,
            rgba(5, 13, 26, 0.75) 50%,
            rgba(10, 22, 40, 0.88) 100%);
    z-index: 1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    z-index: 2;
    background-image:
        linear-gradient(rgba(240, 165, 0, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(240, 165, 0, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-inner {
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(240, 165, 0, 0.12);
    border: 1px solid rgba(240, 165, 0, 0.3);
    border-radius: 100px;
    padding: 6px 16px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    animation: fadeSlideDown 0.8s ease forwards;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

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

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeSlideUp 1s ease 0.2s both;
}

.hero-title .line-gold {
    color: var(--gold);
    display: block;
}

.hero-title .line-thin {
    font-weight: 300;
    color: var(--silver-light);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--silver);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeSlideUp 1s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--silver);
    font-family: var(--font-display);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: none;
}

.hero-scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(var(--gold), transparent);
    animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Hero floating stats */
.hero-stats {
    position: absolute;
    bottom: 4rem;
    right: 0;
    z-index: 10;
    display: flex;
    gap: 1px;
    animation: fadeSlideLeft 1s ease 0.8s both;
}

.hero-stat {
    background: rgba(10, 22, 40, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(240, 165, 0, 0.15);
    padding: 1.2rem 1.8rem;
    text-align: center;
}

.hero-stat:first-child {
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.hero-stat:last-child {
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.25rem;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ============================================
   FEATURES / PILLARS STRIP
   ============================================ */
#features {
    background: var(--navy-mid);
    border-top: 1px solid rgba(240, 165, 0, 0.1);
    border-bottom: 1px solid rgba(240, 165, 0, 0.1);
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 3rem 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transition: width 0.5s ease;
}

.feature-card:hover {
    background: rgba(240, 165, 0, 0.04);
}

.feature-card:hover::before {
    width: 100%;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}

.feature-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}

.feature-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
#about {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

#about::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

/* About image side */
.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-img-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-img-wrap:hover img {
    transform: scale(1.04);
}

.about-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: var(--gold);
    color: var(--navy);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-deep);
    z-index: 2;
}

.about-badge-num {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
}

.about-badge-label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.about-accent-box {
    position: absolute;
    top: 2rem;
    left: -2rem;
    background: var(--navy-mid);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    z-index: 2;
    box-shadow: var(--shadow-card);
}

.about-accent-box .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.about-accent-box .value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
}

/* About text side */
.about-checks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.about-check {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--silver-light);
}

.about-check i {
    color: var(--gold);
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* ============================================
   SERVICES / PRODUCTS SECTION
   ============================================ */
#services {
    background: var(--navy-mid);
    position: relative;
}

#services::after {
    content: 'PRODUCTS';
    position: absolute;
    right: -3rem;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: var(--font-display);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    letter-spacing: 0.1em;
    pointer-events: none;
    user-select: none;
}

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

.services-header .eyebrow {
    justify-content: center;
}

.services-header .eyebrow::before {
    display: none;
}

.services-header .eyebrow::after {
    content: '';
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: rgba(240, 165, 0, 0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-card {
    background: var(--navy-mid);
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: default;
}

.service-card:hover {
    z-index: 2;
}

.service-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    filter: brightness(0.7) saturate(0.6);
}

.service-card:hover .service-card-img img {
    transform: scale(1.08);
    filter: brightness(0.9) saturate(0.8);
}

.service-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 13, 26, 0.8) 0%, transparent 60%);
}

.service-card-body {
    padding: 1.5rem;
    position: relative;
}

.service-card-icon {
    position: absolute;
    top: -22px;
    left: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.4);
}

.service-card:hover .service-card-icon {
    background: var(--gold-bright);
    box-shadow: 0 6px 25px rgba(240, 165, 0, 0.5);
    transform: translateY(-3px);
}

.service-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 1rem;
    margin-bottom: 0.4rem;
}

.service-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.service-card-hover-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.5s ease;
}

.service-card:hover .service-card-hover-bar {
    width: 100%;
}

/* ============================================
   INDUSTRIES SECTION
   ============================================ */
#industries {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.industries-bg-text {
    position: absolute;
    bottom: -3rem;
    left: -2rem;
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    letter-spacing: -0.02em;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.industry-card {
    position: relative;
    background: var(--navy-mid);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    overflow: hidden;
    cursor: default;
    transform-style: preserve-3d;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(240, 165, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    border-color: rgba(240, 165, 0, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(240, 165, 0, 0.15);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(240, 165, 0, 0.1);
    border: 2px solid rgba(240, 165, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-icon {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(240, 165, 0, 0.4);
}

.industry-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.industry-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

.industry-card-tag {
    display: inline-block;
    margin-top: 1.2rem;
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.industry-card:hover .industry-card-tag {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
#stats {
    background: linear-gradient(135deg, var(--gold) 0%, #d48f00 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

#stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
}

#stats::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(5, 13, 26, 0.7);
    margin-top: 0.5rem;
}

.stat-icon {
    font-size: 2.5rem;
    color: rgba(5, 13, 26, 0.12);
    margin-bottom: 0.5rem;
}

/* ============================================
   JOURNEY / MILESTONES SECTION
   ============================================ */
#journey {
    background: var(--navy-mid);
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 3rem auto 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(var(--gold), rgba(240, 165, 0, 0.1));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    flex: 0 0 calc(50% - 1.5rem);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-year {
    text-align: left;
}

.timeline-year-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    opacity: 0.3;
}

.timeline-dot {
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.5rem;
}

.timeline-dot::before {
    content: '';
    width: 16px;
    height: 16px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(240, 165, 0, 0.2), 0 0 20px rgba(240, 165, 0, 0.4);
    flex-shrink: 0;
}

.timeline-content {
    flex: 0 0 calc(50% - 1.5rem);
    background: var(--navy);
    border: 1px solid rgba(240, 165, 0, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem 1.8rem;
    transition: var(--transition);
}

.timeline-content:hover {
    border-color: rgba(240, 165, 0, 0.4);
    transform: translateX(-5px);
    box-shadow: var(--shadow-card);
}

.timeline-item:nth-child(even) .timeline-content:hover {
    transform: translateX(5px);
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================
   GALLERY SECTION
   ============================================ */
#gallery {
    background: var(--navy);
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: none;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    filter: brightness(0.75) saturate(0.5);
    transition: transform 0.6s ease, filter 0.6s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.9) saturate(0.9);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(5, 13, 26, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

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

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
#contact {
    background: var(--navy-mid);
    position: relative;
    overflow: hidden;
}

#contact::before {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(240, 165, 0, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

/* Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input,
.form-textarea {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(122, 144, 158, 0.5);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--gold);
    background: rgba(240, 165, 0, 0.04);
    box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: none;
}

.form-check input[type=checkbox] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    cursor: none;
    flex-shrink: 0;
}

.form-check label {
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: none;
}

/* Branches */
.branches-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.branch-card {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.branch-card:hover {
    border-color: rgba(240, 165, 0, 0.25);
    background: rgba(240, 165, 0, 0.04);
}

.branch-icon {
    width: 44px;
    height: 44px;
    background: rgba(240, 165, 0, 0.1);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.branch-card:hover .branch-icon {
    background: var(--gold);
    color: var(--navy);
}

.branch-info h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.branch-info .branch-head {
    color: var(--gold);
}

.branch-info p {
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.branch-info .branch-contact {
    font-size: 0.8rem;
    color: var(--silver);
    margin-top: 0.3rem;
}

.map-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(240, 165, 0, 0.08);
    border: 1px solid rgba(240, 165, 0, 0.2);
    border-radius: var(--radius-md);
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: var(--transition);
}

.map-link:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
#footer {
    background: var(--navy);
    border-top: 1px solid rgba(240, 165, 0, 0.12);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    padding: 5rem 0 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {}

.footer-brand .logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.2rem;
}

.footer-brand-icon {
    width: 46px;
    height: 46px;
    background: var(--gold);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -1px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-brand-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(240, 165, 0, 0.1);
    transform: translateY(-3px);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-link {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-link::before {
    content: '›';
    color: var(--gold);
    font-size: 1rem;
    transition: transform 0.2s;
}

.footer-link:hover {
    color: var(--gold);
}

.footer-link:hover::before {
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
    font-size: 0.8rem;
}

/* Newsletter */
.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.footer-newsletter-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    color: var(--white);
    font-size: 0.85rem;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.footer-newsletter-input::placeholder {
    color: rgba(122, 144, 158, 0.6);
}

.footer-newsletter-input:focus {
    border-color: var(--gold);
}

.footer-newsletter-btn {
    background: var(--gold);
    color: var(--navy);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.9rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.footer-newsletter-btn:hover {
    background: var(--gold-bright);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: 0.82rem;
    color: var(--text-muted);
    gap: 1rem;
    flex-wrap: wrap;
}

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

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ============================================
   NOISE OVERLAY
   ============================================ */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 99997;
    opacity: 0.4;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 500;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(240, 165, 0, 0.4);
    cursor: none;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-bright);
    box-shadow: 0 6px 30px rgba(240, 165, 0, 0.5);
    transform: translateY(-3px);
}

/* ============================================
   LOADING SCREEN
   ============================================ */
#loading {
    position: fixed;
    inset: 0;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.05em;
}

.loading-logo span {
    color: var(--gold);
}

.loading-bar-wrap {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: var(--gold);
    border-radius: 1px;
    animation: loadBar 1.2s ease forwards;
}

@keyframes loadBar {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .feature-card:last-child {
        border-bottom: none;
    }

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

    .about-accent-box {
        display: none;
    }

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

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

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    .section-pad {
        padding: 70px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }

    .hero-stats {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

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

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

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

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

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

    .stat-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        flex: none;
        text-align: left;
    }

    .timeline-year-num {
        font-size: 2rem;
    }

    .timeline-dot {
        padding: 0;
    }

    .timeline-dot::before {
        margin-left: 12px;
    }

    .timeline-content {
        flex: none;
    }

    .gallery-masonry {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-item:nth-child(1) {
        grid-row: span 1;
    }

    .gallery-item:nth-child(5) {
        grid-column: span 1;
    }

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

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body {
        cursor: auto;
    }

    button {
        cursor: pointer;
    }

    a {
        cursor: pointer;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

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

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

    .gallery-masonry {
        grid-template-columns: 1fr;
    }
}