/* ═══════════════════════════════════════════════════════════════
   LOCAL FONT — HELVETICA NEUE (all 16 variants)
   Path is relative to this CSS file location (assets/css/)
   ═══════════════════════════════════════════════════════════════ */

/* UltraLight — weight 100 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueUltraLight.otf') format('opentype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueUltraLightItalic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

/* Thin — weight 200 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueThin.otf') format('opentype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueThinItalic.otf') format('opentype');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

/* Light — weight 300 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueLight.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueLightItalic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

/* Roman / Regular — weight 400 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueRoman.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

/* Medium — weight 500 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueMedium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueMediumItalic.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

/* Bold — weight 700 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueBold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueBoldItalic.otf') format('opentype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

/* Heavy — weight 800 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueHeavy.otf') format('opentype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueHeavyItalic.otf') format('opentype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

/* Black — weight 900 */
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueBlack.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Helvetica Neue';
    src: url('helvetica-neue-5/HelveticaNeueBlackItalic.otf') format('opentype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* Base Styles and Variables */
:root {
    --bg-dark: #1e1e1e;
    --bg-darker: #151515;
    --primary-orange: #d95c27;
    --text-white: #ffffff;
    --text-light: #dcdcdc;
    --text-dark: #333333;
    --white: #ffffff;
    --font-primary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-secondary: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --scroll-y: 0px;
}

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

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


/* --- Water drop grid lines --- */
.pxl-grid-lines {
    padding: 0 7.15%;
    display: flex;
    justify-content: space-between;
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

@media (max-width: 768px) {
    .pxl-grid-lines:not(.grid-mobile) {
        display: none !important;
    }
}

.pxl-grid-lines span {
    position: relative;
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: rgba(255,255,255,0.1); /* Match old gradient line color */
    transition: none !important;
}

.pxl-grid-lines span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 60px;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.00000001) 100%);
    animation: pxl_grid_fall 25s linear infinite;
}

.pxl-grid-lines span:nth-child(2):before,
.pxl-grid-lines span:nth-child(4):before,
.pxl-grid-lines span:nth-child(6):before {
    animation-delay: 1s;
}

@keyframes pxl_grid_fall {
    0% {
        top: 0%;
    }
    100% {
        top: 100%;
    }
}


a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Header & Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
}

.logo-img {
    height: 50px;
    max-height: 60px;
    width: auto;
    display: block;
    margin-left: 40px;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 55%;
    transform: translateX(-50%);
}

.nav-links li a {
    font-size: 14px;
    font-weight: 450;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--text-light);
}

/*.nav-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-actions button {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.nav-actions button:hover {
    color: var(--primary-orange);
}*/

/* Page Layout */
.main-content {
    margin-top: 120px; /* Offset for sticky header */
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    background-color: transparent;
    padding: 100px 5% 80px; /* Space top and bottom */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Clip the intro overlay to this section */
}

.hero-slider-container {
    width: 80%; /* Leaves space on sides */
    height: 80vh;
    position: relative;
    overflow: visible; /* Allow overflowing info box */
    transform: translateX(-40px);
    padding-right: 40px; /* keep symmetric spacing on right */
    transition: opacity 0.7s ease; /* fade-in after intro animation */
}

.hero-slides-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden; /* Hide sliding images */
    position: relative;
}

.hero-slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-info-box {
    position: absolute;

    right: -4%;
    top: 50%;
    transform: translateY(-50%);
    background-color: #d95c27; 
    /* reduced width, increased height, tighter padding */
    padding: 30px 28px;
    width: 260px;
    height: 480px;
    z-index: 10;
    transition: opacity 0.5s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-info-box .category {
    display: none; /* removed — text moved to hero-sub below h2 */
}

.hero-info-box h2 {
    font-family: var(--font-secondary);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--white);
}

/* Subheading — light italic line between heading and VIEW DETAILS */
.hero-info-box .hero-sub {
    font-family: var(--font-primary);
    font-size: 11.5px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.80);
    letter-spacing: 0.5px;
    line-height: 1.6;
    margin-bottom: 28px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   ABOUT PAGE REDESIGN
   ========================================================================== */

/* 1. Hero / Mission */
.about-redesign-hero {
    padding: 180px 0 100px;
    text-align: center;
}
.arh-header {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
}
.arh-tag {
    display: inline-block;
    font-size: 30px;
    letter-spacing: 2px;
    color: #c0b5b5;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.arh-mission-text {
    font-size: 30px;
    line-height: 1.6;
    font-weight: 250;
    color: #e65e03;
    margin: 0;
}
.arh-dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    margin: 30px auto 0;
}
.arh-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}
.arh-image img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    display: block;
}

/* 2. Features / Standard */
.about-redesign-features {
    padding: 100px 0;
}
.arf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.arf-left {
    text-align: right;
    padding-right: 40px;
    border-right: 1px solid rgba(255,255,255,0.1);
}
.arf-title {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
    margin: 0;
    color: #fff;
}
.arf-right p {
    font-size: 15px;
    line-height: 1.8;
    color: #999;
    margin: 0;
    max-width: 500px;
}
@media (max-width: 768px) {
    .arf-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .arf-left {
        text-align: left;
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 30px;
    }
}

/* 3. Media Block */
.about-redesign-media {
    padding: 0 0 100px;
}
.arm-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
.arm-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}
.arm-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
.arm-play-btn:hover {
    background-color: var(--primary-orange);
}
.arm-play-btn svg {
    width: 30px;
    height: 30px;
    color: #fff;
    margin-left: 5px; /* Visual center for play icon */
}

/* 4. Stats */
.about-redesign-stats {
    background-color: #050505; /* Slightly darker band */
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}
.ars-item h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px 0;
}
.ars-item p {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin: 0;
}
@media (max-width: 768px) {
    .ars-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* 5. Large Quote */
.about-redesign-quote {
    padding: 150px 0;
    text-align: center;
}
.arq-content {
    max-width: 800px;
    margin: 0 auto;
}
.arq-content p {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 300;
    color: #888;
}
.arq-content .highlight {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
    text-underline-offset: 4px;
}

/* 6. Collaborations / Systems */
.about-redesign-collab {
    padding: 0 0 150px;
    text-align: center;
}
.arc-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 60px;
    color: #fff;
}
.arc-slider-wrap {
    overflow-x: auto;
    padding-bottom: 20px;
}
.arc-slider {
    display: flex;
    justify-content: center;
    gap: 40px;
    min-width: 800px;
}
.arc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.arc-box {
    width: 120px;
    height: 120px;
    background-color: #111;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s;
    color: #666;
}
.arc-item:hover .arc-box {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}
.arc-item span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888;
}

/* 7. Contact Redesign */
.about-redesign-contact {
    background-color: #050505;
    padding: 100px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.ar-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1000px;
    margin: 0 auto;
}
.arc-left h2 {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 20px 0;
    color: #fff;
}
.arc-left p {
    font-size: 14px;
    line-height: 1.8;
    color: #888;
}
.arc-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.arc-form input,
.arc-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    padding: 15px 0;
    font-family: inherit;
    font-size: 13px;
    outline: none;
    resize: none;
    transition: border-color 0.3s;
}
.arc-form input:focus,
.arc-form textarea:focus {
    border-bottom-color: var(--primary-orange);
}
.arc-form textarea {
    height: 80px;
}
.arc-btn {
    align-self: flex-start;
    background-color: var(--primary-orange);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s;
}
.arc-btn:hover {
    background-color: #fff;
    color: #000;
}
@media (max-width: 768px) {
    .ar-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


.hero-info-box .btn-view {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-info-box .btn-view span.icon-circle {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid var(--white);
    border-radius: 50%;
    position: relative;
}
.hero-info-box .btn-view span.icon-circle::after {
    content: '→';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-pagination {
    position: absolute;
    bottom: -40px; /* Below image container */
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.hero-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background-color 0.3s;
}

.hero-dot.active {
    background-color: var(--primary-orange);
}

/* About Section */
.about-section {
    display: flex;
    position: relative;
    background-color: var(--bg-dark);
    min-height: 800px;
    padding: 50px 0;
}

.about-orange-bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 25%;
    background-color: var(--primary-orange);
    z-index: 1;
}

.watermark-A {
    position: absolute;
    font-size: 35vw;
    font-weight: 900;
    color: rgba(0,0,0,0.06);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    line-height: 0.8;
}

.black-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: #1e1e1e;
    border-radius: 50%;
    bottom: 40%;
    left: 50%;
    transform: translateX(-50%);
}

.about-image-wrapper {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

.about-image-wrapper img {
    position: absolute;
    right: 0;
    top: 0;
    width: 70%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
}

.about-content-wrapper {
    flex: 1;
    position: relative;
    padding: 100px 5%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.watermark-T {
    position: absolute;
    font-size: 35vw;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    line-height: 0.8;
    z-index: 0;
}

.orange-dot {
    position: absolute;
    width: 15px;
    height: 15px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    bottom: 25%;
    right: 15%;
    z-index: 0;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.about-content .subtitle {
    color: var(--primary-orange);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 8px;
}

.about-content .subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-orange);
}


.about-content h2 {
    font-size: 40px;
    font-family: var(--font-secondary);
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
}

.wave-heading span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stagger-container.is-revealed .wave-heading span {
    opacity: 1;
    transform: translateY(0);
}

.about-content p {
    color: #a0a0a0;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    font-weight: 500;
}

.feature-icon {
    width: 35px;
    height: 35px;
    background-color:white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    width: 18px;
    height: 18px;
}

.btn-container {
    position: relative;
    display: inline-block;
    margin-top: 40px;
}

.btn-container::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--primary-orange);
    z-index: -1;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-weight: 600;
    border: none;
    outline: none;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: translate(2px, 2px);
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background-color: var(--bg-darker);
    background-image: linear-gradient(rgba(17,17,17,0.65), rgba(17,17,17,0.65)), url('../images/bg-2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 80px; /* Prevent overlap with About section */
    min-height: 400px; /* Ensure enough height for stats */
}

.stat-item h3 {
    font-size: 70px;
    font-family: var(--font-secondary);
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--white);
}

.stat-item p {
    font-size: 14px;
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    text-align: center;
    position: relative;
}

.gallery-section h2 {
    font-size: 80px;
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--white);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-desc {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 40px;
    position: relative;
    max-width: 800px;
}

.gallery-desc::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background-color: rgba(255,255,255,0.1);
}

.desc-left {
    flex: 1;
    text-align: right;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    padding-right: 30px;
}

.desc-right {
    flex: 1;
    text-align: left;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 30px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 10px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    transition: color 0.3s;
    display: inline-block;
    text-decoration: none;
    font-family: inherit;
}

.filter-btn.active {
    color: var(--white);
}

.filter-btn:hover, .filter-btn.active {
    color: var(--primary-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

.gallery-item.is-hidden {
    display: none !important;
}

.fp-cat-item.active .fp-icon-circle {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 1px rgba(217,92,39,0.25);
}

.fp-cat-item.active .fp-cat-label {
    color: var(--primary-orange);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 1.2s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(217, 92, 39, 0.9) 0%, rgba(217, 92, 39, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(100%);
    pointer-events: none;
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: brightness(0.8);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

/* Pixel Reveal Animation Setup */
/* Pixel Animation Overlay */
.pixel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-template-rows: repeat(10, 1fr);
    pointer-events: none;
    z-index: 5;
}

.pixel {
    transition: opacity 0.3s;
}

/* Testimonial Section */
.testimonial-section {
    width: min(1400px, calc(100% - 120px));
    margin: 80px auto;

    position: relative;
    overflow: hidden;

    border-radius: 8px;

    background-image:
        linear-gradient(rgba(17,17,17,0.65), rgba(17,17,17,0.65)),
        url('../images/bg-1.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    min-height: 420px;

    padding: 80px 5%;

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

.testimonial-slider {
    position: relative;
    z-index: 1;
    max-width: 600px;
    text-align: center;
}

.testimonial-slide {
    display: none;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.testimonial-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
    transform: translateX(100px);
    color: white;
    max-width: 600px;
}

.testimonial-author {
    color: var(--primary-orange);
    font-weight: 600;
    transform: translateX(100px);
}

.test-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 10px;
    transform: translateX(100px);
}

.test-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.3);
    cursor: pointer;
}

.test-dot.active {
    background-color: var(--white);
}

@media (max-width: 900px) {
    .logo-img { margin-left: 0; }
    .hero-slider-container { transform: none; padding-right: 0; }
    .hero-info-box { right: -4%; width: 320px; height: auto; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Contact Section */
.contact-section {
    display: flex;
    padding: 100px 10%;
    background-color: var(--bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.contact-left {
    flex: 1;
    padding-right: 50px;
}

.contact-left h2 {
    font-size: 60px;
    font-family: var(--font-secondary);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.contact-left p {
    color: var(--text-light);
    max-width: 500px;
}

.contact-right {
    flex: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background-color: #000000;
    border: none;
    padding: 20px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 1px solid var(--primary-orange);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #b7491d;
}

.site-footer {
    background-color: var(--bg-darker);
    padding: 60px 5%;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    background-color: #000000;
    border: 1px solid rgba(255,255,255,0.05);
}

.footer-col {
    border-right: 1px solid rgba(255,255,255,0.05);
    min-height: 400px;
    position: relative;
}

.footer-col:last-child {
    border-right: none;
}

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

.footer-contact-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 80px;
    font-family: var(--font-secondary);
    color: rgba(255,255,255,0.1);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.col-info {
    padding: 60px 0 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.footer-info-block {
    margin-bottom: 30px;
}

.footer-info-block:last-child {
    margin-bottom: 0;
}

.address-block p {
    width: 250%;
    line-height: 1.8;
}

.footer-info-block h4 {
    color: var(--primary-orange);
    margin-bottom: 8px;
    font-weight: 400;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-info-block p,
.footer-info-block a {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
}

.col-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    display: block;
    margin-bottom: 30px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.footer-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.footer-copyright {
    color: rgba(255,255,255,0.3);
    font-size: 11px;
}

/* --- Reveal Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-up.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s ease-out;
}
.reveal-fade.is-revealed {
    opacity: 1;
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}


.stagger-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════
   FEATURED PROJECTS SECTION
   ═══════════════════════════════════════════════════════════════ */

.featured-projects-section {
    display: flex;
    align-items: stretch;
    background-color: var(--bg-dark);
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.featured-projects-about {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ── LEFT CONTENT PANEL ────────────────────────────────────────── */
.fp-content {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 5% 80px 8%;
    position: relative;
    z-index: 2;
}

/* Orange label */
.fp-label {
    display: inline-block;
    color: var(--primary-orange);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 22px;
}

/* Main heading */
.fp-heading {
    font-family: var(--font-secondary);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 500;
    color: var(--text-white);
    line-height: 1.05;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Description */
.fp-desc {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #9a9a9a;
    line-height: 1.9;
    margin-bottom: 48px;
}

/* ── CATEGORY ICONS ────────────────────────────────────────────── */
.fp-categories {
    display: flex;
    gap: 18px;
    flex-wrap: nowrap;
    margin-bottom: 52px;
    align-items: center;
    overflow-x: auto;
    padding-bottom: 4px;
}

.fp-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 100px;
}

/* Dark circle background for icon — matches reference */
.fp-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.fp-icon-circle img {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    background-color: #2a2a2a;
    object-fit: contain;
    display: block;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.fp-icon-circle svg {
    width: 25px;
    height: 25px;
}

.fp-icon-circle:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.fp-cat-label {
    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white);
    text-align: center;
}

/* Orange underline bar beneath each label */
.fp-cat-underline {
    width: 28px;
    height: 2px;
    background-color: var(--primary-orange);
    margin-top: -4px;
}

/* ── CTA BUTTON ────────────────────────────────────────────────── */
.fp-btn-wrap {
    position: relative;
    display: inline-block;
    width: fit-content;
}

/* Offset dashed border — same treatment as about section btn */
.fp-btn-wrap::after {
    content: '';
    position: absolute;
    bottom: -7px;
    right: -7px;
    width: 100%;
    height: 100%;
    border: 1px dashed var(--primary-orange);
    z-index: -1;
}

.fp-btn {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--primary-orange);
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.fp-btn:hover {
    background-color: #c04e1e;
    transform: translate(2px, 2px);
}

/* ── RIGHT IMAGE PANEL ─────────────────────────────────────────── */
.fp-image-side {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    overflow: hidden;
}

/* Orange dot on left edge of image (matches reference) */


/* Image frame matches the about section image proportions */
.fp-image-frame {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.fp-image-frame img {
    position: absolute;
    right: 0;
    top: 0;
    width: 78%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

featured-projects-section:hover .fp-image-frame img {
    transform: scale(1.04);
}

/* Orange vertical sidebar — far right of section (matches reference) */
.fp-orange-bar {
    flex: 0 0 clamp(110px, 12vw, 160px);
    margin-left: auto;
    align-self: stretch;
    /* height: calc(100% + 80px); */
    margin-top: -40px;
    margin-bottom: -40px;
    background-color: var(--primary-orange);
    position: relative;
    z-index: 2;
}



/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .featured-projects-section {
        flex-direction: column;
        min-height: auto;
    }

    .fp-content {
        flex: none;
        padding: 60px 6%;
    }

    .fp-image-side {
        min-height: 320px;
        flex-direction: row;
    }

    .fp-orange-bar {
        flex: 0 0 60px;
        height: auto;
        margin-top: 0;
        margin-bottom: 0;
    }

    .fp-orange-dot {
        left: -6px;
        width: 12px;
        height: 12px;
    }

    .fp-categories {
        gap: 20px;
    }

    .fp-diagonal-pattern {
        top: 8%;
        left: calc(100% - clamp(80px, 10vw, 120px) - 70px);
        width: 140px;
        height: 100px;
    }

    .fp-icon-circle {
        width: 52px;
        height: 52px;
    }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — MISSION GRID
   ═══════════════════════════════════════════════════════════════ */

.ab-grid-wrapper {
    background-color: #111;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Horizontal Sections (Top and Bottom) */
.ab-hero-box {
    background-color: #1a1a1a;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    height: 400px;
}

.ab-hero-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.ab-hero-image {
    flex: 1;
    overflow: hidden;
}

.ab-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Typography */
.ab-section {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.ab-section h1,
.ab-section h2,
.ab-section h3,
.ab-section h4,
.ab-section h5,
.ab-section h6,
.ab-section p,
.ab-section span,
.ab-section a,
.ab-section div {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
/* Removed permanent infinite loop animations per user request. 
   Elements now use .stagger-container and .stagger-item for reveal on scroll. */

/* Minimal space to stats */
.ab-sections-wrapper {
    margin-bottom: 0px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
}

.ab-hero-box + .ab-hero-box {
    border-top: 1px solid #333;
    padding-top: 24px;
}

.ab-hero-box:last-child {
    border-bottom: 1px solid #333;
    padding-bottom: 16px;
    margin-bottom: 14px;
}

#stats {
    margin-top: 0px;
    margin-bottom: 80px; /* Space after stats to featured */
}

.ab-label-wrap, .ab-card-top {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.ab-label, .ab-card-num {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 500;
}

.ab-line {
    height: 1px;
    width: 40px;
    background-color: var(--primary-orange);
}

.ab-title-serif, .ab-card-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    color: white;
}

.ab-title-serif {
    font-size: 38px;
    margin-bottom: 10px;
}

.ab-subtitle {
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 2px;
    color: #ccc;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.ab-divider {
    height: 1px;
    width: 60px;
    background-color: var(--primary-orange);
    margin-bottom: 20px;
}

.ab-desc, .ab-card-desc {
    font-family: var(--font-primary);
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    max-width: 400px;
}

.ab-orange-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-orange);
    border-radius: 50%;
    position: absolute;
    bottom: 30px;
    left: 60px;
}

/* Middle Row Cards */
.ab-cards-row {
    display: flex;
    gap: 16px;
    height: 500px;
}

.ab-card {
    flex: 1;
    background-color: #1a1a1a;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
}

.ab-card-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.ab-card-title {
    font-size: 64px;
    margin-bottom: 12px;
    line-height: 1.05;
}

.ab-card-image {
    width: 40%;
    overflow: hidden;
}

.ab-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .ab-hero-box {
        flex-direction: column;
        height: auto;
    }
    
    .ab-hero-content {
        padding: 40px 20px;
    }
    
    .ab-hero-image {
        height: 300px;
        flex: none;
    }
    
    .ab-orange-dot {
        left: 20px;
        bottom: 20px;
    }

    .ab-cards-row {
        flex-direction: column;
        height: auto;
    }
    
    .ab-card {
        flex-direction: column;
        height: auto;
    }

    .ab-card-content {
        padding: 40px 20px;
    }
    
    .ab-card-image {
        width: 100%;
        height: 300px;
    }
}

/* ── GALLERY: no-header modifier ───────────────────────────────── */
/* When gallery section has no heading block, reduce top padding */
.gallery-section--no-header {
    padding-top: 40px;
}

/* --- Navigation Dropdown --- */
.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    display: flex;
    flex-direction: column;
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li {
    padding: 0;
}
.dropdown-menu li a {
    display: block;
    padding: 12px 20px;
    font-size: 13px;
    transition: background-color 0.3s, color 0.3s;
}
.dropdown-menu li a:hover {
    background-color: var(--primary-orange);
    color: var(--text-white);
}
.arrow {
    font-size: 10px;
    margin-left: 5px;
    display: inline-block;
    transition: transform 0.3s;
}
.dropdown:hover .arrow {
    transform: rotate(180deg);
}

/* --- Collection Pages layout --- */
.product-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 0; /* Header pushes content down */
}
.product-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* overlay */
    z-index: 1;
}
.product-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}
.product-breadcrumb {
    font-size: 14px;
    font-weight: 400 ;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #e77339;
    margin-bottom: 10px;
}
.product-title {
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
}
.product-gallery-section {
    padding: 80px 5%;
    background-color:transparent; /* The light gray background from the image */
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}
.product-card {
    background: var(--bg-dark); /* Card text background */
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.product-card-img {
    width: 100%;
    aspect-ratio: 1/1; /* Ensure square images or similar */
    object-fit: cover;
    background: #fff;
}
.product-card-title {
    padding: 15px 10px;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-white);
    background: #020202; /* Dark gray */
    margin: 0;
}
@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .product-grid { grid-template-columns: 1fr; }
}
/* New Product Hero Additions */
.product-hero-extra {
    margin-top: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.product-hero-sub {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 1rem;
    color: white;
}
.product-hero-body {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.product-features-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
}
.product-feature-item {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}
.product-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: rgba(255,255,255,0.2);
}
.product-feature-item p {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
}
.product-feature-line {
    width: 30px;
    height: 2px;
    background-color: #f0791e;
    margin: 0 auto;
}

/* ==========================================================================
   MOBILE OPTIMIZATION (General Website)
   ========================================================================== */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    /* Navbar */
    .nav-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-dark);
        flex-direction: column;
        padding: 20px 5%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transform: none;
        gap: 20px;
    }

    .nav-links.open {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        border: none;
        padding-left: 20px;
        background-color: transparent;
        display: none;
    }
    
    .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
        display: flex;
    }

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

    .footer-col {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding: 40px 20px;
    }

    .col-contact {
        padding: 40px 20px;
    }

    .footer-contact-title {
        writing-mode: horizontal-tb;
        transform: none;
        font-size: 40px;
        letter-spacing: 2px;
    }

    /* Stats */
    .stats-section {
        grid-template-columns: 1fr 1fr;
        padding: 60px 5%;
    }
    
    .stat-item h3 {
        font-size: 48px;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-section h2 {
        font-size: 48px;
    }
    
    .gallery-desc {
        flex-direction: column;
        gap: 20px;
    }
    
    .gallery-desc::after {
        display: none;
    }
    
    .desc-left, .desc-right {
        text-align: center;
        padding: 0;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 15px;
    }

    /* Product Grid */
    .product-hero {
        height: auto;
        padding: 120px 5% 60px;
    }
    
    .product-title {
        font-size: 32px;
    }
    
    .product-features-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .product-feature-item:not(:last-child)::after {
        display: none;
    }
    
    /* Contact Section */
    .contact-section {
        flex-direction: column;
        padding: 60px 5%;
    }
    
    .contact-left {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .contact-left h2 {
        font-size: 40px;
    }
}

@media (max-width: 600px) {
    .stats-section {
        grid-template-columns: 1fr;
    }
}


/* Hero Section */
.full-screen-hero {
    height: 90vh;
    margin-top: 0;
    flex-direction: column;
}
/* Info Section (Features) */
.redesigned-info-section {
    padding: 80px 20px;
    background-color: #111; /* Matching the dark theme of the images */
}
.text-center { text-align: center; }
.mb-5 { margin-bottom: 3rem; }

.feature-box-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-box {
    border: 1px solid #333;
    padding: 40px 20px;
    text-align: center;
    background: transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.feature-box h3 {
    color: white;
    font-size: 16px;
    margin: 20px 0 10px;
    font-weight: 500;
}
.feature-box p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
}
.feature-icon {
    color: #e77339;
    background-color: transparent;
    margin-bottom: 10px;
}
.feature-box:hover {
    border-color: #e77339;
}

/* Categories Collage Grid */
.redesign-gallery {
    padding: 60px 20px;
    background-color: #0a0a0a;
}
.category-heading-container h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 300;
}
.collage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
}
.collage-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
}
.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.collage-item:hover img {
    transform: scale(1.05);
}
.collage-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
}
.collage-subtitle {
    color: #e77339;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 5px;
}
.collage-title {
    color: white;
    font-size: 25px;
    margin: 0;
    font-weight: 400;
}
/* Grid layout mappings based on img3 */
.item-openable { grid-column: 1 / 3; grid-row: 1 / 2; }
.item-glass { grid-column: 3 / 4; grid-row: 1 / 2; }
.item-sliding { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-walkin { grid-column: 2 / 4; grid-row: 2 / 3; }
.item-accessories { grid-column: 4 / 5; grid-row: 1 / 3; }

@media (max-width: 768px) {
    .feature-box-grid { grid-template-columns: 1fr; }
    .collage-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .collage-item { grid-column: 1 / -1 !important; grid-row: auto !important; height: 250px; }
}

/* Category Modal */
.category-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #111;
    z-index: 9999;
    flex-direction: column;
}

.modal-navbar {
    padding: 20px 40px;
    border-bottom: 1px solid #333;
    display: flex;
    align-items: center;
}
.modal-back-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}
.modal-back-btn:hover {
    color: #e77339;
}
.modal-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.modal-main-img-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.modal-main-img-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
}
.modal-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    font-size: 40px;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
}
.modal-nav-arrow:hover {
    background: #e77339;
}
.left-arrow { left: 20px; }
.right-arrow { right: 20px; }

.modal-thumbnails {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}
.modal-thumb {
    width: 80px;
    height: 60px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.6;
}
.modal-thumb.active, .modal-thumb:hover {
    border-color: #e77339;
    opacity: 1;
}
/* --- WARDROBES REDESIGN END --- */
/* --- UPDATES --- */
.category-heading-container {
    text-align: center;
    margin-bottom: 40px;
}
.category-heading-container h2 {
    text-align: center;
    margin-bottom: 15px;
}
.category-heading-container h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e77339;
    margin: 15px auto 0;
}

.product-hero-extra {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.product-hero-sub::before {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e77339;
    margin: 0 auto 25px;
}

.collage-grid {
    grid-auto-rows: 400px;
    max-width: 1400px;
}
.feature-icon svg {
    width: 60px;
    height: 60px;
}
/* --- END UPDATES --- */
/* --- REVISIONS --- */
.product-hero-sub {
    max-width: 900px !important;
    margin: 0 auto 40px !important;
    font-size: 20px !important;
    line-height: 1.6 !important;
    letter-spacing: normal !important;
    text-align: center;
}
.product-hero-sub::before {
    display: none !important; /* Remove the before line */
}
.product-hero-sub::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #e77339;
    margin: 40px auto 0; /* Add space between text and line */
}
.feature-box {
    padding: 60px 20px !important; /* Make boxes taller */
    justify-content: flex-start !important; /* Align content to start then gap */
    gap: 30px;
}
.feature-box p {
    color: white !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    margin: 0 !important;
}
.feature-icon svg {
    width: 50px !important;
    height: 50px !important;
}
/* --- END REVISIONS --- */

/* --- MOBILE UI FIXES --- */
@media (max-width: 900px) {
    /* Fix Nav Drawer Visibility */
    .nav-links {
        z-index: 10000;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }
    
    /* Fix Horizontal Scroll & Hero Section Layout */
    body, html {
        overflow-x: hidden;
        width: 100%;
    }

    .hero-section {
        flex-direction: column;
        padding: 100px 5% 40px !important;
        display: flex;
    }

    .hero-slider-container {
        width: 100% !important;
        transform: none !important;
        padding-right: 0 !important;
        height: auto !important;
        min-height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .hero-slides-wrapper {
        height: 60vh !important;
        min-height: 350px;
        width: 100%;
        position: relative;
    }

    .hero-info-box {
        position: relative !important;
        right: auto !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;
        width: 100% !important;
        height: auto !important;
        margin-top: 0 !important;
        padding: 40px 20px !important;
        z-index: 20;
    }
    
    .hero-pagination {
        position: relative !important;
        bottom: auto !important;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    /* About Section Mobile */
    .about-section {
        flex-direction: column;
        min-height: auto;
    }
    .about-orange-bg {
        width: 100%;
        height: 25%;
        bottom: auto;
    }
    .about-image-wrapper {
        flex: 0 0 auto;
        height: 300px;
        width: 100%;
        margin-top: 50px;
    }
    .about-image-wrapper img {
        position: relative;
        width: 90%;
        height: 100%;
        margin: 0 auto;
    }
    .about-content-wrapper {
        padding: 40px 5%;
    }

    /* Footer Address Fix */
    .address-block p {
        width: 100% !important;
        white-space: normal;
    }

    /* Stats Section Fix */
    .stats-section {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
        padding: 60px 5% !important;
    }
    .stat-item h3 {
        font-size: 50px !important;
        margin-bottom: 5px !important;
    }

    /* Testimonial Fix */
    .testimonial-text, .testimonial-author, .test-pagination {
        transform: none !important;
    }
    .testimonial-section {
        padding: 40px 5% !important;
    }
}
