/* ==========================================================================
   LED KADA - DESIGN SYSTEM & STYLESHEET
   Branding: #E61C24 (Red), #0A0A0B (Dark), #FFFFFF (White), #F4F4F6 (Grey)
   ========================================================================== */

/* 1. RESET & BASE VARIABLES */
:root {
    --primary-red: #E61C24;
    --primary-red-hover: #C5131B;
    --red-gradient: linear-gradient(135deg, #FF3B43 0%, #D01018 100%);
    --red-glow: rgba(230, 28, 36, 0.35);
    
    --bg-dark: #0A0A0B;
    --bg-dark-card: #141417;
    --bg-light: #FFFFFF;
    --bg-grey: #F4F4F6;
    --bg-footer: #F9F9FB;
    
    --text-primary-dark: #111111;
    --text-secondary-dark: #55555C;
    --text-primary-light: #FFFFFF;
    --text-secondary-light: #A0A0A8;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 12px 32px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 16px 40px rgba(230, 28, 36, 0.25);
    
    --container-width: 1280px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary-dark);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

main {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    outline: none;
}

/* 2. REUSABLE UTILITIES */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-secondary-light); }

.highlight-red {
    color: var(--primary-red);
    font-weight: 700;
}

.gradient-text-red {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-block;
    padding: 0.85rem 2rem;
    background: var(--red-gradient);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px var(--red-glow);
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(230, 28, 36, 0.45);
}

/* Scroll Animation Base Classes & Smooth Reveal Transitions */
.reveal-item, .reveal-up, .reveal-left, .reveal-right, .reveal-scale, .reveal-flip {
    opacity: 0;
    will-change: transform, opacity;
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-up { transform: translateY(55px) scale(0.96); }
.reveal-left { transform: translateX(-60px) scale(0.96); }
.reveal-right { transform: translateX(60px) scale(0.96); }
.reveal-scale { transform: scale(0.84); }
.reveal-flip { transform: perspective(800px) rotateX(25deg) translateY(50px); }

.reveal-active {
    opacity: 1 !important;
    transform: translate(0, 0) scale(1) rotateX(0deg) !important;
}

/* Staggered Delay Utilities */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ==========================================================================
   3. HEADER & NAVIGATION
   ========================================================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Nav Left */
.nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-icon-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary-dark);
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    transition: var(--transition-fast);
}

.nav-icon-btn:hover {
    color: var(--primary-red);
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

/* Nav Center Logo */
.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-smooth);
}

.brand-logo:hover img {
    transform: scale(1.04);
}

/* Nav Right Links */
.nav-right {
    display: flex;
    align-items: center;
    gap: 1.8rem;
}

.nav-action-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-primary-dark);
}

.nav-action-link:hover {
    color: var(--primary-red);
}




/* MOBILE DRAWER NAV */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -110%;
    width: min(340px, 86vw);
    max-width: 86vw;
    height: 100vh;
    background: #F5F5F7;
    z-index: 2000;
    box-shadow: 10px 0 40px rgba(0, 0, 0, 0.15);
    transition: left var(--transition-smooth);
    padding: 0.65rem 1rem 1.25rem 0.65rem;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.mobile-drawer.open {
    left: 0;
}

/* Header */
.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.drawer-logo {
    height: 42px;
    width: auto;
}

.close-drawer-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.close-drawer-btn svg {
    width: 20px;
    height: 20px;
}

.close-drawer-btn:hover {
    background: var(--primary-red);
    transform: scale(1.08);
}

.close-drawer-btn:hover svg {
    stroke: #FFFFFF;
}

/* Drawer Body Scroll Container */
.drawer-scroll-body {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    padding-right: 2px;
}

/* Numbered Menu Cards */
.drawer-nav-cards {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.drawer-menu-card {
    background: #FFFFFF;
    padding: 0.65rem 0.95rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.drawer-menu-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(230, 28, 36, 0.12);
    border-color: rgba(230, 28, 36, 0.25);
}

.card-left-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 28, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.menu-icon-badge svg {
    width: 16px;
    height: 16px;
}

.menu-num {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-red);
}

.menu-divider {
    color: #E2E2E8;
    font-size: 0.8rem;
}

.menu-title {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary-dark);
}

.card-arrow {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-arrow svg {
    width: 14px;
    height: 14px;
}

/* Contact Us Card */
.drawer-contact-card {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.2rem;
}

.contact-card-title {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #444448;
    text-transform: uppercase;
}

.contact-card-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid #F0F0F4;
}

.contact-card-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.row-left {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.contact-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(230, 28, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-badge svg {
    width: 15px;
    height: 15px;
}

.contact-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary-dark);
    text-decoration: underline;
}

.contact-link:hover {
    color: var(--primary-red);
}

.address-text {
    font-size: 0.75rem;
    font-weight: 400;
    color: #444448;
    line-height: 1.3;
}

.action-btn-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(230, 28, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.action-btn-circle svg {
    width: 13px;
    height: 13px;
}

.action-btn-circle:hover {
    background: var(--primary-red);
}

.action-btn-circle:hover svg {
    stroke: #FFFFFF;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.drawer-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* SEARCH MODAL */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.85);
    backdrop-filter: blur(10px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.search-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.search-modal-content {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.close-search-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-secondary-dark);
}

.search-input-wrapper {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.search-input-wrapper input {
    flex: 1;
    padding: 0.85rem 1.2rem;
    border: 2px solid #E0E0E5;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
}

.search-input-wrapper input:focus {
    border-color: var(--primary-red);
}

.submit-search-btn {
    padding: 0.85rem 1.5rem;
    background: var(--primary-red);
    color: #FFFFFF;
    font-weight: 600;
    border-radius: 10px;
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
}

.popular-searches a {
    background: var(--bg-grey);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.popular-searches a:hover {
    background: var(--primary-red);
    color: #FFF;
}

/* LOGIN MODAL POPUP */
.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 3500;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

.login-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.login-modal-content {
    background: #FFFFFF;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
    transform: translateY(20px);
    transition: transform var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.login-modal.active .login-modal-content {
    transform: translateY(0);
}

.close-login-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F4F4F6;
    font-size: 1.5rem;
    line-height: 1;
    color: #333338;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.close-login-btn:hover {
    background: var(--primary-red);
    color: #FFFFFF;
}

.login-modal-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.login-modal-logo {
    height: 42px;
    width: auto;
    margin-bottom: 0.8rem;
}

.login-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary-dark);
    margin-bottom: 0.3rem;
}

.login-modal-header p {
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
}

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

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

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: #222225;
}

.form-group input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #E2E2E8;
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color var(--transition-fast);
}

.form-group input:focus {
    border-color: var(--primary-red);
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    color: #444;
}

.remember-me input {
    accent-color: var(--primary-red);
}

.forgot-link {
    color: var(--primary-red);
    font-weight: 600;
}

.btn-login-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(230, 28, 36, 0.3);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    margin-top: 0.4rem;
}

.btn-login-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(230, 28, 36, 0.45);
}

/* Divider & Social Login */
.login-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #EAEAEA;
}

.login-divider span {
    position: relative;
    background: #FFFFFF;
    padding: 0 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #888890;
}

.social-login-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-social-login {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1.5px solid #E2E2E8;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: #333338;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.btn-social-login:hover {
    background: #F8F8FA;
    border-color: #CCCCCC;
}

.login-modal-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: #55555E;
}

.signup-link {
    color: var(--primary-red);
    font-weight: 700;
}


/* ==========================================================================
   4. SECTION 1: HERO SECTION - SPLIT BACKGROUND & ASYMMETRIC COLLAGE SCROLLER
   ========================================================================== */
.hero-section {
    position: relative;
    width: 100%;
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
}

#spider-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

/* Background Split: Upper White & Lower Black */
.hero-bg-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    pointer-events: none;
}

.hero-bg-top-white {
    height: 220px;
    background-color: #FFFFFF;
}

.hero-bg-bottom-black {
    flex: 1;
    background-color: #000000;
}

/* Hero Text Block - Positioned in Flow BELOW Collage Wrapper with High Z-Index */
.hero-text-block {
    position: relative;
    z-index: 50;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0;
    padding: 4rem 1rem;
    background-color: #000000;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 50;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 0.4rem;
}

.red-line-dash {
    width: 36px;
    height: 2px;
    background: var(--primary-red);
    border-radius: 2px;
    display: inline-block;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.05;
    margin: 0;
}

.title-line-1, .title-line-2 {
    font-size: 4.8rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: -1px;
    display: block;
}

.hero-red-swoosh {
    width: 360px;
    max-width: 90%;
    margin: 0.2rem auto 0;
}

.hero-red-swoosh svg {
    width: 100%;
    height: auto;
}

/* Overlapping Asymmetric Mosaic Collage Scroller Wrapper */
.hero-collage-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 240px; /* Snug fit for 214px tall cards + shadow */
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.hero-marquee-track {
    display: flex;
    gap: 1.25rem; /* Small gap between collage sets */
    width: max-content;
    margin-top: 0;
    animation: heroAsymmetricScroll 36s linear infinite;
}

.hero-collage-wrapper:hover .hero-marquee-track {
    animation-play-state: paused;
}

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

/* Single Asymmetric Collage Group */
.hero-asymmetric-collage {
    display: flex;
    gap: 1.25rem; /* Small gap in each image */
    align-items: center;
    flex-shrink: 0;
}

/* Individual Card Positions matching Mockup Exactly */
.collage-card {
    position: relative;
    flex-shrink: 0;
    width: 380px; /* Standard wide screen width */
    aspect-ratio: 16 / 9; /* 16:9 proportion! */
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collage-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 18px 35px rgba(230, 28, 36, 0.25);
    z-index: 25 !important;
}

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

/* Card Caption Overlay - Small Heading on Each Image */
.card-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
    padding: 1.5rem 1rem 1rem 1rem;
    text-align: center;
    pointer-events: none;
    z-index: 10;
    transition: transform var(--transition-smooth);
}

.card-caption-overlay span {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    display: inline-block;
    border-bottom: 2px solid #E61C24;
    padding-bottom: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.collage-card:hover .card-caption-overlay {
    transform: translateY(-3px);
}

/* Light Badges */
.light-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    border-radius: 4px;
    backdrop-filter: blur(6px);
}

.cool-tag {
    background: rgba(41, 128, 185, 0.9);
    color: #FFFFFF;
}

.warm-tag {
    background: rgba(230, 126, 34, 0.95);
    color: #FFFFFF;
}


/* ==========================================================================
   5. SECTION 2: POWER OF LED
   ========================================================================== */
.power-section {
    background: #FFFFFF;
    padding: 7rem 0;
    overflow: hidden;
}

.power-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 100%;
    padding-left: 0;
    padding-right: 2rem;
}

/* Left K-Logo Frame Graphic */
.power-graphic-col {
    display: flex;
    justify-content: flex-start;
    width: 100%;
}

.power-k-frame-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    transition: transform var(--transition-smooth);
}

.power-k-frame-wrapper:hover {
    transform: scale(1.03);
}

.power-k-frame-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.12));
    transition: filter var(--transition-smooth);
}

.power-k-frame-wrapper:hover .power-k-frame-img {
    filter: drop-shadow(0 25px 50px rgba(230, 28, 36, 0.25));
}



/* Right Content */
.section-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary-dark);
    margin-bottom: 0.5rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    color: var(--text-primary-dark);
}

.section-desc {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333338;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.section-subdesc {
    font-size: 1rem;
    color: var(--text-secondary-dark);
    margin-bottom: 2rem;
}

.power-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(230, 28, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary-dark);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--text-secondary-dark);
}


/* ==========================================================================
   6. SECTION 3: ABOUT FUTURE ELECTRONICS (HARDWARE BACKGROUND)
   ========================================================================== */
.about-hardware-section {
    position: relative;
    width: 100%;
    min-height: 580px;
    background-color: #EBEBEB;
    background-image: url('../assets/images/about_hardware_bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 5.5rem 0;
    display: flex;
    align-items: center;
}

.about-hardware-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.about-text-content {
    max-width: 540px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
}

.about-logo-wrapper {
    margin-bottom: 1.5rem;
}

.about-brand-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.about-paragraphs p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.65;
    color: #222225;
    font-weight: 500;
}

.tag-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-red);
}

.hardware-floating-tag:hover .tag-dot {
    background: #FFFFFF;
}

.tag-1 { top: 20%; left: 10%; }
.tag-2 { top: 55%; right: 8%; }
.tag-3 { bottom: 15%; left: 15%; }


/* ==========================================================================
   7. SECTION 4: LIGHTING THE FUTURE, BEAUTIFULLY (CATEGORIES)
   ========================================================================== */
.categories-section {
    background-color: var(--bg-dark);
    color: var(--text-primary-light);
    padding: 7rem 0;
}

.categories-header {
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.cat-subtitle {
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--text-secondary-light);
}

.cat-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1;
}

.cat-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #E0E0E8;
    margin-bottom: 1rem;
}

.cat-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary-light);
}

/* 4 Cards Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    background: var(--bg-dark-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.cat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
    box-shadow: 0 20px 40px var(--red-glow);
}

.cat-image-holder {
    width: 100%;
    height: 100%;
    position: relative;
}

.cat-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cat-card:hover .cat-image-holder img {
    transform: scale(1.1);
}

.cat-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 11, 0.95) 100%);
}

.cat-card-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    z-index: 2;
}

.cat-card-caption span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-red);
    display: block;
    margin-bottom: 0.2rem;
}

.cat-card-caption h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFFFFF;
}


/* ==========================================================================
   8. SECTION 5: OUR PROJECTS - W O R K S
   ========================================================================== */
.projects-section {
    background-color: var(--bg-light);
    padding: 7rem 0;
}

.projects-header {
    margin-bottom: 3.5rem;
}

.projects-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary-dark);
    margin-bottom: 0.3rem;
}

.projects-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
}

/* 5 Stadium / Pill Cards Flex Container */
.works-pills-container {
    display: flex;
    gap: 1.2rem;
    height: 480px;
    width: 100%;
}

.work-pill {
    flex: 1;
    position: relative;
    border-radius: 120px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: flex 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s ease;
}

.work-pill:hover, .work-pill.active {
    flex: 2.2;
}

.pill-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.pill-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.work-pill:hover .pill-image-wrapper img {
    transform: scale(1.1);
}

.pill-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.75) 100%);
}

/* Giant W O R K S Lettering Overlay */
.pill-letter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 6rem;
    font-weight: 900;
    color: #FFFFFF;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
    pointer-events: none;
    transition: transform 0.4s ease, color 0.4s ease;
}

.work-pill:hover .pill-letter {
    transform: translate(-50%, -50%) scale(1.15);
    color: var(--primary-red);
}

/* Info Overlay */
.pill-info {
    position: absolute;
    bottom: 2rem;
    left: 0;
    width: 100%;
    text-align: center;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 0 1rem;
}

.work-pill:hover .pill-info, .work-pill.active .pill-info {
    opacity: 1;
    transform: translateY(0);
}

.pill-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.pill-info p {
    font-size: 0.85rem;
    color: var(--text-secondary-light);
}


/* ==========================================================================
   9. SECTION 6: INTERACTIVE ROOM SHOWCASE WITH HOTSPOTS
   ========================================================================== */
.room-showcase-section {
    position: relative;
    width: 100%;
    min-height: 640px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

.room-image-container {
    position: relative;
    width: 100%;
    height: 640px;
}

.room-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mood Lighting Filter Overlays */
.room-light-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.6s ease, filter 0.6s ease;
}

.room-light-overlay.warm-mode {
    background: radial-gradient(circle at 50% 30%, rgba(255, 179, 71, 0.25) 0%, rgba(0, 0, 0, 0.4) 100%);
    mix-blend-mode: soft-light;
}

.room-light-overlay.neutral-mode {
    background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0.4) 100%);
    mix-blend-mode: soft-light;
}

.room-light-overlay.cool-mode {
    background: radial-gradient(circle at 50% 30%, rgba(135, 206, 250, 0.25) 0%, rgba(0, 0, 0, 0.5) 100%);
    mix-blend-mode: soft-light;
}

/* Hotspot Pins */
.hotspot-pin {
    position: absolute;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.pin-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-red);
    border: 3px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-red);
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(230, 28, 36, 0.4);
    animation: pinPulseKeyframe 2s infinite ease-out;
}

@keyframes pinPulseKeyframe {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

.pin-label {
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: var(--transition-fast);
}

.hotspot-pin:hover .pin-label {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

/* Room Overlay Info Card */
.room-info-card {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    width: 420px;
    background: rgba(15, 15, 18, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2rem;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.room-card-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-red);
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.4rem;
}

.room-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.25;
}

.room-card-desc {
    font-size: 0.9rem;
    color: var(--text-secondary-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Mood Selector */
.mood-selector {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.mood-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #D0D0D8;
}

.mood-btns {
    display: flex;
    gap: 0.5rem;
}

.mood-btn {
    flex: 1;
    padding: 0.45rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: #E0E0E8;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-fast);
}

.mood-btn.active, .mood-btn:hover {
    background: var(--primary-red);
    color: #FFFFFF;
    border-color: var(--primary-red);
}

/* Popover Tooltip */
.hotspot-popover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 320px;
    background: #FFFFFF;
    color: var(--text-primary-dark);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.hotspot-popover.active {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.close-popover {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 1.4rem;
    color: #888;
}

.hotspot-popover h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.4rem;
}

.hotspot-popover p {
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
}


/* ==========================================================================
   10. SECTION 7: FOOTER & FEATURE BADGES
   ========================================================================== */
.site-footer {
    background-color: #FAFAFC;
    border-top: 1px solid #EAEAEA;
}

/* Main Footer Container */
.footer-main-wrapper {
    padding: 5rem 0 4rem 0;
}

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

/* Column 1 - Brand Column */
.brand-col .footer-logo {
    height: 44px;
    margin-bottom: 0.6rem;
}

.brand-tagline {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #444;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.footer-bio {
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
    max-width: 320px;
}

.footer-red-line {
    width: 45px;
    height: 2.5px;
    background: var(--primary-red);
    margin: 1.2rem 0 1.5rem;
}

/* Features Badges Card in Column 1 */
.footer-features-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
    padding: 1.25rem 1.4rem;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
}

.footer-badge-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.badge-icon-circle {
    width: 32px;
    height: 32px;
    background: rgba(230, 28, 36, 0.06);
    border: 1px solid rgba(230, 28, 36, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.badge-icon-circle svg {
    width: 15px;
    height: 15px;
}

.footer-badge-item .badge-text h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-primary-dark);
    margin-bottom: 0.05rem;
    line-height: 1.2;
}

.footer-badge-item .badge-text p {
    font-size: 0.7rem;
    color: var(--text-secondary-dark);
    margin: 0;
    line-height: 1.2;
}

/* Social Links below Card */
.footer-social-links {
    display: flex;
    gap: 0.75rem;
}

.footer-social-links a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #E4E4EC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary-dark);
    transition: var(--transition-fast);
}

.footer-social-links a svg {
    width: 15px;
    height: 15px;
}

.footer-social-links a:hover {
    background: var(--primary-red);
    color: #FFFFFF;
    border-color: var(--primary-red);
    transform: translateY(-2px);
}

/* Columns Header Groups */
.footer-header-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.8rem;
    position: relative;
}

.header-icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(230, 28, 36, 0.06);
    border: 1px solid rgba(230, 28, 36, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
}

.header-icon-circle svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    margin: 0;
}

.header-underline {
    width: 35px;
    height: 2px;
    background: var(--primary-red);
    margin-top: 0.6rem;
}

/* Column Links list */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 4px;
}

/* Column Dividers (Desktop Only) */
.footer-grid > .footer-col:nth-child(2),
.footer-grid > .footer-col:nth-child(3),
.footer-grid > .footer-col:nth-child(4) {
    border-right: 1px solid #EAEAEA;
    padding-right: 2rem;
}

/* Column 5: Contact details with Map Backdrop */
.contact-col {
    position: relative;
}

.world-map-svg-bg {
    position: absolute;
    top: -50px;
    right: -30px;
    width: 220px;
    opacity: 0.15;
    z-index: 1;
    pointer-events: none;
}

.contact-col .footer-header-group,
.contact-col .contact-list {
    position: relative;
    z-index: 2;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
    line-height: 1.45;
}

.contact-list li a {
    color: inherit;
    transition: color var(--transition-fast);
}

.contact-list li a:hover {
    color: var(--primary-red);
}

.contact-list .contact-icon-badge {
    width: 32px;
    height: 32px;
    background: rgba(230, 28, 36, 0.05);
    border: 1px solid rgba(230, 28, 36, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.contact-list .contact-icon-badge svg {
    width: 15px;
    height: 15px;
}

/* Bottom Bar */
.footer-bottom-bar {
    background: #FFFFFF;
    border-top: 1px solid #EAEAEA;
    padding: 1.5rem 0;
}

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

.copyright-text {
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
    text-align: center;
}

.copyright-text a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.25s ease;
}

.copyright-text a:hover {
    color: var(--primary-red);
}


/* ==========================================================================
   11. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .badges-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .title-line-1, .title-line-2 { font-size: 3.8rem; }
}

@media (max-width: 768px) {
    /* Mobile Header Layout & Logo Fix */
    .header-container { 
        padding: 0.65rem 0.45rem; 
        gap: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .nav-left { 
        display: flex;
        align-items: center;
        gap: 0.45rem; 
    }

    .nav-icon-btn { 
        padding: 0.35rem; 
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-left .nav-text {
        display: none;
    }

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

    .brand-logo img { 
        height: 36px; 
        max-width: 125px; 
        object-fit: contain; 
    }

    .nav-right { 
        display: flex;
        align-items: center;
        gap: 0.45rem; 
    }

    .nav-action-link {
        padding: 0.35rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-action-link span { 
        display: none; 
    }
    
    /* Prevent any horizontal overflow / side-to-side scroll */
    .section-container {
        padding: 0 1.2rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-section,
    .hero-collage-wrapper,
    .power-section,
    .about-hardware-section,
    .categories-section,
    .projects-section,
    .room-showcase-section,
    .site-footer {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Hero Section Mobile Cards & Spacing Fix */
    .hero-section { 
        padding-top: 65px; 
        padding-bottom: 2rem;
        min-height: auto;
    }

    .hero-asymmetric-collage {
        width: 760px;
        height: 340px;
    }

    .card-1 { width: 155px; height: 230px; top: 10px; left: 0; }
    .card-2 { width: 135px; height: 175px; top: 140px; left: 45px; }
    .card-3 { width: 150px; height: 215px; top: 60px; left: 165px; }
    .card-4 { width: 135px; height: 170px; top: 15px; left: 330px; }
    .card-5 { width: 135px; height: 175px; top: 155px; left: 300px; }
    .card-6 { width: 130px; height: 170px; top: 85px; left: 450px; }
    .card-7 { width: 120px; height: 130px; top: 205px; left: 535px; }
    .card-8 { width: 90px; height: 180px; top: 30px; left: 660px; }

    .hero-bg-top-white { height: 200px; }

    .hero-text-block {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
        padding: 0 1rem;
    }

    .hero-subtitle-wrapper {
        gap: 0.5rem;
        margin-bottom: 0.3rem;
    }

    .red-line-dash {
        width: 22px;
        height: 2px;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        letter-spacing: 0.5px;
    }

    .title-line-1, .title-line-2 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }

    .hero-red-swoosh {
        width: 200px;
    }

    .power-container { grid-template-columns: 1fr; gap: 2.5rem; }

    .about-hardware-section {
        padding: 3.5rem 0;
        background-position: 80% center;
    }

    .about-hardware-container {
        padding: 0 1rem;
    }

    .about-text-content {
        max-width: 100%;
        padding: 1.5rem;
        background: rgba(255, 255, 255, 0.88);
        border-radius: 18px;
    }

    .cat-title { font-size: 2.8rem; }
    .categories-grid { grid-template-columns: 1fr; }

    .works-pills-container { flex-direction: column; height: auto; }
    .work-pill { height: 180px; border-radius: 30px; }
    .pill-letter { font-size: 4rem; }

    .room-showcase-section {
        display: flex;
        flex-direction: column;
        min-height: auto;
        height: auto;
        background-color: var(--bg-dark);
    }
    .room-info-card { 
        position: relative; 
        bottom: auto; 
        right: auto; 
        width: 100%; 
        border-radius: 0;
        border: none;
        background: transparent;
        padding: 3rem 1.5rem 1.5rem 1.5rem;
        box-shadow: none;
        backdrop-filter: none;
        order: 1;
    }
    .room-image-container { 
        height: 380px; 
        order: 2;
        position: relative;
    }

    .badges-grid { grid-template-columns: 1fr; }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 1.5rem;
    }
    .footer-grid > .footer-col:nth-child(1),
    .footer-grid > .footer-col:nth-child(2),
    .footer-grid > .footer-col:nth-child(5) {
        grid-column: span 2;
    }
    .footer-grid > .footer-col:nth-child(3),
    .footer-grid > .footer-col:nth-child(4) {
        grid-column: span 1;
    }
    .footer-bottom-container { flex-direction: column; gap: 1rem; text-align: center; }
}

/* ==========================================================================
   12. MOBILE FIXED FLOATING FOOTER NAVIGATION (MOBILE ONLY)
   ========================================================================== */
.mobile-fixed-footer {
    display: none;
}

@media (max-width: 768px) {
    .mobile-fixed-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: fixed;
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 32px);
        max-width: 420px;
        background: #FFFFFF;
        border-radius: 50px;
        padding: 0.5rem 1.4rem;
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(230, 28, 36, 0.25);
        border: 1px solid rgba(0, 0, 0, 0.06);
        z-index: 2500;
    }

    .m-footer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2px;
        flex: 1;
        text-align: center;
        color: #000000;
        text-decoration: none;
        position: relative;
        padding: 0.2rem 0;
    }

    .m-footer-icon-wrapper {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
    }

    .m-quote-svg, .m-phone-svg {
        width: 24px;
        height: 24px;
    }

    .currency-symbol {
        position: absolute;
        font-size: 0.68rem;
        font-weight: 800;
        color: var(--primary-red);
        top: 6px;
        left: 10px;
    }

    .m-footer-label {
        font-family: var(--font-heading);
        font-size: 0.76rem;
        font-weight: 700;
        color: #000000;
        white-space: nowrap;
    }

    .m-active-pill {
        width: 22px;
        height: 3px;
        background: var(--primary-red);
        border-radius: 2px;
        margin-top: 3px;
    }

    .m-footer-divider {
        width: 1px;
        height: 32px;
        background: #E8E8EC;
        margin: 0 0.4rem;
        flex-shrink: 0;
    }

    .m-footer-center-btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        position: relative;
        margin-top: -30px;
        flex: 1;
    }

    .m-center-circle {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: #0E0E10;
        border: 3px solid #FFFFFF;
        box-shadow: 0 0 20px rgba(230, 28, 36, 0.75), 0 6px 20px rgba(0, 0, 0, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    }

    .m-footer-center-btn:active .m-center-circle {
        transform: scale(0.92);
        box-shadow: 0 2px 10px rgba(230, 28, 36, 0.3);
    }

    .m-center-favicon {
        width: 34px;
        height: 34px;
        object-fit: contain;
    }

    .m-center-label {
        font-family: var(--font-heading);
        font-size: 0.78rem;
        font-weight: 700;
        color: #000000;
        margin-top: 2px;
    }

    /* Provide bottom buffer so content doesn't get hidden behind fixed footer */
    .footer-bottom-bar {
        padding-bottom: 6rem;
    }
}

/* ==========================================================================
   13. CONTACT PAGE CUSTOM STYLES
   ========================================================================== */
.contact-hero {
    position: relative;
    padding: 12rem 0 16rem;
    background: url('../assets/images/contact_banner.jpg') center/cover no-repeat;
    color: #FFFFFF;
    text-align: left;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.1) 0%, rgba(10, 10, 11, 0.5) 100%);
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
}

.contact-subtitle {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.contact-lead {
    font-size: 1.05rem;
    color: #E2E2EA;
    max-width: 580px;
    margin: 0;
    line-height: 1.6;
}

.contact-grid-section {
    padding: 0 0 6rem;
    background: #FFFFFF;
    position: relative;
    z-index: 5;
    margin-top: -110px;
}

.contact-layout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 2.5rem;
    align-items: stretch;
}

.contact-form-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid #EAEAEA;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.form-tag {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 0.8rem;
}

.form-card-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    margin-bottom: 2.5rem;
    line-height: 1.2;
}

.led-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
}

.led-contact-form input,
.led-contact-form textarea {
    width: 100%;
    padding: 1.05rem 1.2rem;
    border: 1.5px solid #E2E2E8;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    background: #FAFBFD;
    color: var(--text-primary-dark);
    transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.led-contact-form input:focus,
.led-contact-form textarea:focus {
    border-color: var(--primary-red);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(230, 28, 36, 0.06);
}

.led-contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.privacy-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #77777F;
    font-size: 0.85rem;
}

.privacy-lock-icon {
    width: 15px;
    height: 15px;
    color: #77777F;
}

/* Submit Button Override */
.btn-submit-message {
    width: auto;
    padding: 1.05rem 2.2rem;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(230, 28, 36, 0.25);
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.btn-submit-message:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(230, 28, 36, 0.4);
}

.btn-submit-message:active {
    transform: translateY(0);
}

/* Form Errors */
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #E61C24 !important;
    background-color: #FFFDFD !important;
    box-shadow: 0 0 0 4px rgba(230, 28, 36, 0.08) !important;
}

.error-msg {
    display: none;
    font-size: 0.76rem;
    font-weight: 600;
    color: #E61C24;
    margin-top: 0.15rem;
}

.form-group.has-error .error-msg {
    display: block;
}

/* Right Column: Dark Contact Card */
.info-card-primary {
    background: #0F0F12;
    border-radius: 20px;
    padding: 3rem;
    color: #FFFFFF;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.info-card-primary .info-card-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    padding-left: 0;
    border-left: none;
}

.info-card-subdesc {
    font-size: 0.92rem;
    color: #888892;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.info-detail-list {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.info-detail-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.info-icon {
    width: 46px;
    height: 46px;
    background: rgba(230, 28, 36, 0.08);
    border: 1.5px solid rgba(230, 28, 36, 0.18);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    flex-shrink: 0;
}

.info-icon svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.info-text h4 {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #888892;
    letter-spacing: 0.8px;
    margin-bottom: 0.3rem;
}

.info-text p, 
.info-text a {
    font-size: 1.05rem;
    color: #FFFFFF;
    font-weight: 600;
    line-height: 1.45;
}

.info-text a {
    transition: color var(--transition-fast);
}

.info-text a:hover {
    color: var(--primary-red);
}

/* Our Offices Section */
.offices-section {
    padding: 6.5rem 0;
    background: #F8F8FC;
}

.offices-subtitle {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.6rem;
}

.offices-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    margin-bottom: 3.5rem;
}

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

.office-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E2E2E8;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(230, 28, 36, 0.15);
}

.office-image-holder {
    height: 160px;
    position: relative;
    overflow: hidden;
    background: #000000;
}

.office-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.office-card:hover .office-image-holder img {
    transform: scale(1.08);
}

.office-pin-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 32px;
    height: 32px;
    background: #FFFFFF;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.office-pin-badge svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
}

.office-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.office-card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary-dark);
    margin-bottom: 1.2rem;
    line-height: 1.3;
}

.office-details-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.6rem;
}

.office-details-list li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #55555F;
    line-height: 1.45;
}

.det-icon {
    font-size: 0.95rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.office-details-list a {
    color: inherit;
    transition: color var(--transition-fast);
}

.office-details-list a:hover {
    color: var(--primary-red);
}

.btn-office-direction {
    border-top: 1px solid #EAEAEA;
    display: block;
    padding: 1.1rem 0 0;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    text-align: left;
}

.btn-office-direction:hover {
    color: var(--primary-red-hover);
    padding-left: 5px;
}

/* Full Map Section */
.full-map-section {
    width: 100%;
    height: 450px;
    overflow: hidden;
    display: block;
    background: #E5E3DF;
}

.full-map-section iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Loader Spin Keyframes */
.btn-submit-message.is-loading .btn-text {
    visibility: hidden;
}

.btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #FFFFFF;
    animation: spin 0.8s ease-in-out infinite;
    position: absolute;
}

.btn-submit-message.is-loading .btn-spinner {
    display: block;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Popup Modal */
.success-popup-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 11, 0.6);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-popup-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.success-popup-content {
    background: #FFFFFF;
    border-radius: 28px;
    padding: 3rem;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform: scale(0.85);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-popup-modal.active .success-popup-content {
    transform: scale(1);
}

.success-icon-badge {
    width: 72px;
    height: 72px;
    background: #34A853;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 24px rgba(52, 168, 83, 0.3);
}

.success-icon-badge svg {
    width: 36px;
    height: 36px;
}

.success-popup-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    margin-bottom: 0.8rem;
}

.success-popup-content p {
    font-size: 0.95rem;
    color: var(--text-secondary-dark);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-close-success {
    padding: 0.85rem 3rem;
    background: var(--bg-dark);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-close-success:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 28, 36, 0.3);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .contact-layout-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 9rem 0 11rem;
        text-align: center;
    }

    .contact-hero-overlay {
        background: linear-gradient(180deg, rgba(10, 10, 11, 0.6) 0%, rgba(10, 10, 11, 0.9) 100%);
    }
    
    .contact-title {
        font-size: 2.5rem;
    }
    
    .contact-lead {
        margin: 0 auto;
    }
    
    .contact-grid-section {
        margin-top: -80px;
    }
    
    .contact-form-card, 
    .info-card-primary {
        padding: 2.2rem 1.5rem;
    }
    
    .form-card-title {
        font-size: 1.7rem;
    }
    
    .split-form-row {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }
    
    .offices-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

/* ==========================================================================
   14. ABOUT PAGE CUSTOM STYLES
   ========================================================================== */
.about-hero-new {
    position: relative;
    padding: 12rem 0;
    background: #060608;
    color: #FFFFFF;
    text-align: left;
    overflow: hidden;
}

.about-hero-overlay-new {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(230, 28, 36, 0.05) 0%, rgba(10, 10, 11, 0) 60%);
    z-index: 1;
}

.about-hero-container-new {
    position: relative;
    z-index: 2;
}

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

.about-subtitle-new {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.about-title-new {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.about-lead-new {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #A0A0AB;
    margin: 0;
}

/* COLLAGE WRAPPER */
.hero-collage-wrapper {
    position: relative;
    width: 100%;
}

.main-collage-image {
    width: 80%;
    height: 340px;
    border-radius: 24px;
    overflow: hidden;
    margin-left: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
}

.main-collage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-collage-card {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    transition: transform var(--transition-smooth);
    z-index: 2;
}

.floating-collage-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-collage-card:hover {
    transform: scale(1.08) translateY(-5px);
}

.card-pos-1 {
    width: 100px;
    height: 130px;
    top: 15%;
    left: 5%;
}

.card-pos-2 {
    width: 110px;
    height: 140px;
    bottom: 5%;
    left: 12%;
}

.card-pos-3 {
    width: 100px;
    height: 130px;
    top: -5%;
    right: 5%;
}

.card-pos-4 {
    width: 110px;
    height: 140px;
    bottom: 15%;
    right: -5%;
}

/* STATS BAR */
.about-stats-section {
    position: relative;
    z-index: 10;
    margin-top: -3.5rem;
}

.about-stats-bar {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #EAEAEE;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    padding: 2.2rem 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-bar-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.stat-indicator-line {
    width: 3px;
    height: 38px;
    background: var(--primary-red);
    border-radius: 2px;
    flex-shrink: 0;
}

.stat-item-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    line-height: 1.1;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary-dark);
    line-height: 1.3;
}

/* WHY CHOOSE US STYLES */
.about-why-choose-section {
    padding: 9rem 0;
    background: #FFFFFF;
}

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

.about-why-text {
    max-width: 520px;
}

.about-why-divider {
    width: 40px;
    height: 2px;
    background: var(--primary-red);
    margin: 1.5rem 0 2rem;
}

.photos-grid-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
}

.photo-item-tall {
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    border: 1px solid #F0F0F2;
}

.photo-item-tall img, .photo-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.photos-stack-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.photo-item-small {
    height: 182.5px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    border: 1px solid #F0F0F2;
}

/* TIMELINE AND JOURNEY SECTION */
.about-journey-section {
    padding: 8rem 0;
    background: #060608;
    color: #FFFFFF;
    overflow: hidden;
}

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

.glowing-arch-wrapper {
    position: relative;
    padding: 10px;
    background: linear-gradient(135deg, rgba(230, 28, 36, 0.25) 0%, rgba(230, 28, 36, 0) 80%);
    border-radius: 200px 200px 0 0;
}

.arch-portal {
    width: 320px;
    height: 450px;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 40px rgba(230, 28, 36, 0.12);
}

.arch-portal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.journey-right-content {
    position: relative;
}

.journey-timeline-track {
    position: relative;
    margin-top: 4.5rem;
    padding-top: 1rem;
}

.timeline-rail-line {
    position: absolute;
    left: 0;
    top: 45px;
    width: 100%;
    height: 1.5px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.timeline-steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.timeline-track-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 18%;
    text-align: center;
    cursor: pointer;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.8rem;
    display: block;
    transition: transform var(--transition-smooth);
}

.timeline-dot-circle {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #060608;
    border: 2px solid var(--primary-red);
    margin-bottom: 1.2rem;
    transition: transform var(--transition-smooth), background var(--transition-smooth), box-shadow var(--transition-smooth);
}

.timeline-node-info h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.4rem;
}

.timeline-node-info p {
    font-size: 0.76rem;
    line-height: 1.5;
    color: #8E8E9A;
    margin: 0;
}

.timeline-track-node:hover .timeline-year {
    transform: translateY(-2px);
}

.timeline-track-node:hover .timeline-dot-circle {
    background: var(--primary-red);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(230, 28, 36, 0.6);
}

/* FEATURES SECTION */
.about-features-section {
    padding: 8rem 0;
    background: #FAFAFC;
}

.features-lead-desc {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-secondary-dark);
    margin-top: 1.5rem;
}

.about-features-header {
    max-width: 700px;
    margin: 0 auto 5rem;
    text-align: center;
}

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

.feature-layout-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #EAEAEE;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.015);
    padding: 3rem 2.2rem;
    text-align: center;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.feature-layout-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border-color: rgba(230, 28, 36, 0.15);
}

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(230, 28, 36, 0.06);
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-card-icon svg.about-feature-svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary-red);
    stroke-width: 1.8;
    fill: none;
}

.feature-layout-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    margin-bottom: 0.8rem;
}

.feature-layout-card p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary-dark);
    margin: 0;
}

/* TEAM STYLES */
.about-team-section-new {
    padding: 8rem 0;
    background: #FFFFFF;
}

.about-team-layout-new {
    display: grid;
    grid-template-columns: 1.1fr 3.9fr;
    gap: 3.5rem;
    align-items: center;
}

.team-layout-left {
    max-width: 320px;
}

.team-lead-desc {
    font-size: 0.96rem;
    line-height: 1.65;
    color: var(--text-secondary-dark);
    margin-top: 1.2rem;
}

.team-layout-right {
    width: 100%;
}

.team-cards-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.team-grayscale-card {
    background: #0C0C0E;
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.member-photo-frame {
    height: 250px;
    overflow: hidden;
    background: #111113;
}

.member-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.member-info-footer {
    padding: 1.2rem;
    text-align: left;
}

.member-info-line {
    width: 25px;
    height: 2px;
    background: var(--primary-red);
    margin-bottom: 0.8rem;
}

.member-info-footer h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
}

.member-info-footer span {
    font-size: 0.78rem;
    color: #8E8E9A;
    display: block;
}

.team-grayscale-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-grayscale-card:hover .member-photo-frame img {
    filter: grayscale(0%);
    transform: scale(1.04);
}


/* ==========================================================================
   15. SERVICES PAGE CUSTOM STYLES
   ========================================================================== */
.services-hero {
    position: relative;
    padding: 12rem 0 16rem;
    background: #060608 url('../assets/images/contact_banner.jpg') center center / cover no-repeat;
    color: #FFFFFF;
    text-align: left;
    overflow: hidden;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.1) 0%, rgba(10, 10, 11, 0.5) 100%);
    z-index: 1;
}

.services-hero-container {
    position: relative;
    z-index: 2;
}

.services-subtitle {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

.services-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #A0A0AB;
    max-width: 600px;
    margin: 0;
}

.btn-play-video {
    width: 68px;
    height: 68px;
    background: var(--primary-red);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    cursor: pointer;
    z-index: 2;
    box-shadow: 0 10px 25px rgba(230, 28, 36, 0.4);
    transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.btn-play-video svg {
    width: 22px;
    height: 22px;
    margin-left: 4px;
}

.btn-play-video:hover {
    transform: scale(1.1);
    background: var(--primary-red-hover);
}

/* 15.1 WHAT WE DO STYLES */
.services-grid-section {
    padding: 8rem 0;
    background: #FFFFFF;
}

.services-section-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 5rem;
    text-align: left;
}

.services-section-header .header-left .section-badge {
    margin-bottom: 1rem;
}

.services-section-header .header-left .section-title {
    font-size: 2.6rem;
    margin: 0;
}

.services-section-header .header-right p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary-dark);
    margin: 0;
    max-width: 480px;
}

.services-deck-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.service-deck-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #EAEAEA;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.015);
    padding: 3.5rem 1.2rem;
    text-align: center;
    position: relative;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.service-deck-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(230, 28, 36, 0.15);
}

.card-icon-header {
    color: var(--text-primary-dark);
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card-icon-header svg.service-icon-svg {
    width: 58px;
    height: 58px;
    stroke-width: 1.5;
}

.card-divider {
    width: 25px;
    height: 2px;
    background: var(--primary-red);
    margin: 1.2rem auto;
}

.service-deck-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    margin-bottom: 1rem;
}

.service-deck-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary-dark);
    margin-bottom: 3.5rem;
}

.btn-card-link {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    background: rgba(230, 28, 36, 0.05);
    border: 1px solid rgba(230, 28, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    transition: var(--transition-smooth);
}

.btn-card-link svg {
    width: 14px;
    height: 14px;
}

.service-deck-card:hover .btn-card-link {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #FFFFFF;
    transform: scale(1.08);
}

/* 15.2 OUR PROCESS (DARK) */
.services-process-section-dark {
    padding: 8rem 0;
    background: #0A0A0C;
    color: #FFFFFF;
}

.process-header-dark {
    text-align: center;
    margin-bottom: 6rem;
}

.process-header-dark .section-badge {
    margin-bottom: 1rem;
}

.process-header-dark .section-title {
    color: #FFFFFF;
    font-size: 2.6rem;
    margin-top: 1rem;
}

.process-timeline-dark {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
    position: relative;
}

.process-timeline-dark::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-top: 1px dashed rgba(230, 28, 36, 0.3);
    z-index: 1;
}

.timeline-step-dark {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-badge-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #0A0A0C;
    border: 2px solid var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(230, 28, 36, 0.2);
    transition: var(--transition-smooth);
}

.timeline-step-dark:hover .step-badge-circle {
    background: var(--primary-red);
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(230, 28, 36, 0.4);
}

.step-icon-large {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.timeline-step-dark:hover .step-icon-large {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(230, 28, 36, 0.05);
}

.step-icon-large svg {
    width: 28px;
    height: 28px;
}

.timeline-step-dark h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.8rem;
}

.timeline-step-dark p {
    font-size: 0.82rem;
    color: #A0A0AB;
    line-height: 1.55;
    margin: 0;
}

/* 15.3 SOLUTIONS FOR EVERY SPACE */
.environments-section {
    padding: 8rem 0;
    background: #FFFFFF;
}

.environments-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-end;
    margin-bottom: 5rem;
    text-align: left;
}

.environments-header .header-left .section-badge {
    margin-bottom: 1rem;
}

.environments-header .header-left .section-title {
    font-size: 2.6rem;
    margin: 0;
}

.environments-header .header-right p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-secondary-dark);
    margin: 0;
    max-width: 480px;
}

.environments-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.2rem;
}

.env-card {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.env-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.env-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.env-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.1) 0%, rgba(10, 10, 11, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2.2rem 1.2rem;
    text-align: center;
    z-index: 2;
    transition: background 0.4s ease;
}

.env-card:hover .env-card-overlay {
    background: linear-gradient(180deg, rgba(230, 28, 36, 0.15) 0%, rgba(10, 10, 11, 0.95) 100%);
}

.env-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.env-card:hover .env-badge-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

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

.env-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: relative;
}

.env-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary-red);
    transition: width 0.4s ease;
}

.env-card:hover h3::after {
    width: 30px;
}

/* 15.4 CTA SOFA CARD */
.services-cta-section-new {
    padding: 8rem 0;
    background: #FAFAFC;
}

.cta-banner-sofa {
    position: relative;
    border-radius: 32px;
    padding: 7rem 5rem;
    text-align: left;
    color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-sofa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.cta-sofa-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-sofa-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1.2rem;
}

.cta-sofa-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
}

.cta-sofa-content p {
    font-size: 1.05rem;
    color: #A0A0AB;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-cta-red-sofa {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-cta-red-sofa:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 28, 36, 0.35);
}

.btn-cta-watch-work {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-watch-work:hover {
    color: var(--primary-red);
}

.play-icon-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #FFFFFF;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.btn-cta-watch-work:hover .play-icon-small {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: #FFFFFF;
    transform: scale(1.05);
}

.play-icon-small svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}


/* ==========================================================================
   16. NEW RESPONSIVE BREAKPOINTS (ABOUT & SERVICES)
   ========================================================================== */
@media (max-width: 1200px) {
    .environments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    transition: background 0.4s ease;
}

.env-card:hover .env-card-overlay {
    background: linear-gradient(180deg, rgba(230, 28, 36, 0.15) 0%, rgba(10, 10, 11, 0.95) 100%);
}

.env-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
    transition: var(--transition-smooth);
}

.env-card:hover .env-badge-icon {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: scale(1.05);
}

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

.env-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    position: relative;
}

.env-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary-red);
    transition: width 0.4s ease;
}

.env-card:hover h3::after {
    width: 30px;
}

/* 15.4 CTA SOFA CARD */
.services-cta-section-new {
    padding: 8rem 0;
    background: #FAFAFC;
}

.cta-banner-sofa {
    position: relative;
    border-radius: 32px;
    padding: 7rem 5rem;
    text-align: left;
    color: #FFFFFF;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cta-sofa-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.cta-sofa-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-sofa-badge {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 1.2rem;
}

.cta-sofa-content h2 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.2rem;
}

.cta-sofa-content p {
    font-size: 1.05rem;
    color: #A0A0AB;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-btn-group {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.btn-cta-red-sofa {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-cta-red-sofa:hover {
    background: var(--primary-red-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 28, 36, 0.35);
}

.btn-cta-watch-work {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: transparent;
    border: none;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-cta-watch-work:hover {
    color: var(--primary-red);
}

.play-icon-small {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #FFFFFF;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: var(--transition-smooth);
}

.btn-cta-watch-work:hover .play-icon-small {
    border-color: var(--primary-red);
    background: var(--primary-red);
    color: #FFFFFF;
    transform: scale(1.05);
}

.play-icon-small svg {
    width: 14px;
    height: 14px;
    margin-left: 2px;
}


/* ==========================================================================
   16. NEW RESPONSIVE BREAKPOINTS (ABOUT & SERVICES)
   ========================================================================== */
@media (max-width: 1200px) {
    .environments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .env-card {
        height: 320px;
    }
}

@media (max-width: 1024px) {
    .services-deck-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Redesigned About Us Responsive overrides */
    .about-hero-grid-new {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .hero-left-content {
        max-width: 100%;
    }

    .about-title-new {
        font-size: 2.8rem;
    }

    .hero-collage-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-why-text {
        max-width: 100%;
    }

    .about-why-divider {
        margin: 1.5rem auto 2rem;
    }

    .about-journey-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .journey-left-arch {
        margin: 0 auto;
    }

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

    .about-team-layout-new {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .team-layout-left {
        max-width: 100%;
        margin: 0 auto;
    }

    .team-cards-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 8rem 0;
        background-position: center;
        background-size: cover;
    }

    .services-hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-left-content {
        max-width: 100%;
    }

    .services-title {
        font-size: 2.6rem;
    }

    .hero-play-button-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        margin: 0 auto;
        height: 180px;
    }

    .services-section-header, .environments-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .services-section-header .header-right p,
    .environments-header .header-right p {
        margin: 0 auto;
        max-width: 100%;
    }

    .services-deck-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }

    .service-deck-card {
        padding: 2.8rem 1.8rem;
    }

    .process-header-dark .section-title {
        font-size: 2rem;
    }

    .process-timeline-dark {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process-timeline-dark::before {
        display: none;
    }

    .timeline-step-dark {
        align-items: flex-start;
        text-align: left;
        flex-direction: row;
        gap: 1.5rem;
    }

    .step-badge-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-icon-large {
        display: none;
    }

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

    .cta-banner-sofa {
        padding: 4rem 2rem;
        text-align: center;
    }

    .cta-sofa-overlay {
        background: linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.95) 100%);
    }

    .cta-sofa-content h2 {
        font-size: 2.2rem;
    }

    .cta-btn-group {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .btn-cta-red-sofa {
        width: 100%;
    }

    /* Redesigned About Us - Mobile Timeline & Grid */
    .about-stats-bar {
        grid-template-columns: 1fr;
        padding: 2.2rem 2rem;
        gap: 1.8rem;
    }

    .journey-timeline-track {
        padding-left: 2rem;
    }

    .timeline-rail-line {
        left: 20px;
        top: 0;
        width: 2px;
        height: 100%;
    }

    .timeline-steps-container {
        flex-direction: column;
        gap: 2.5rem;
        align-items: flex-start;
    }

    .timeline-track-node {
        flex-direction: row;
        width: 100%;
        text-align: left;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .timeline-year {
        margin-bottom: 0;
        font-size: 1rem;
        width: 60px;
        text-align: right;
        flex-shrink: 0;
    }

    .timeline-dot-circle {
        margin-bottom: 0;
        margin-top: 4px;
        flex-shrink: 0;
    }

    .timeline-node-info {
        text-align: left;
    }

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

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

@media (max-width: 480px) {
    .environments-grid {
        grid-template-columns: 1fr;
    }
    
    .team-cards-row {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   16. PRODUCTS PAGE STYLES
   ========================================================================== */
.products-hero {
    position: relative;
    padding: 12rem 0 16rem;
    background: #060608 url('../assets/images/contact_banner.jpg') center center / cover no-repeat;
    color: #FFFFFF;
    text-align: left;
}
.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.1) 0%, rgba(10, 10, 11, 0.5) 100%);
    z-index: 1;
}
.products-hero-container {
    position: relative;
    z-index: 2;
}
.products-subtitle {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
.products-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}
.products-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #B4B4C0;
    max-width: 600px;
}

/* ==========================================================================
   16.5. WORKS PAGE STYLES
   ========================================================================== */
.works-hero {
    position: relative;
    padding: 12rem 0 16rem;
    background: #060608 url('../assets/images/contact_banner.jpg') center center / cover no-repeat;
    color: #FFFFFF;
    text-align: left;
}
.works-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 11, 0.1) 0%, rgba(10, 10, 11, 0.5) 100%);
    z-index: 1;
}
.works-hero-container {
    position: relative;
    z-index: 2;
}
.works-subtitle {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--primary-red);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}
.works-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}
.works-lead {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #B4B4C0;
    max-width: 600px;
}
.works-portfolio-section {
    padding: 6rem 0 8rem;
    background: #FAFAFC;
}
.products-catalog-section {
    padding: 6rem 0 8rem;
    background: #FAFAFC;
}
.products-filter-panel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem;
}
.filter-btn {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.9rem 1.8rem;
    background: #FFFFFF;
    border: 1px solid #EAEAEE;
    color: var(--text-primary-dark);
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--primary-red);
    border-color: var(--primary-red);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(230, 28, 36, 0.15);
}
.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.2rem;
}
.product-item-card {
    background: #FFFFFF;
    border-radius: 20px;
    border: 1px solid #EAEAEE;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth), opacity 0.3s ease, transform 0.3s ease;
}
.product-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border-color: rgba(230, 28, 36, 0.15);
}
.product-image-box {
    position: relative;
    height: 250px;
    background: #F4F4F6;
    overflow: hidden;
}
.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.product-item-card:hover .product-image-box img {
    transform: scale(1.06);
}
.product-badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(6, 6, 8, 0.85);
    backdrop-filter: blur(8px);
    color: #FFFFFF;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.product-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-image-box:hover .product-hover-overlay {
    opacity: 1;
}
.btn-product-detail {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #FFFFFF;
    background: var(--primary-red);
    padding: 0.8rem 1.6rem;
    border-radius: 30px;
    text-decoration: none;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(230, 28, 36, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}
.btn-product-detail:hover {
    transform: scale(1.05);
    background: #C4141B;
}
.product-details {
    padding: 1.8rem;
}
.product-details h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary-dark);
    margin-bottom: 0.8rem;
}
.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.product-spec {
    font-size: 0.82rem;
    color: var(--text-secondary-dark);
}
.product-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Responsive breakpoints for Works */
@media (max-width: 1024px) {
    .works-title {
        font-size: 3.2rem;
    }
}
@media (max-width: 768px) {
    .works-hero {
        padding: 8rem 0 6rem;
        text-align: center;
    }
    .works-title {
        font-size: 2.5rem;
    }
    .works-lead {
        margin: 0 auto;
    }
    .works-portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

/* Responsive breakpoints for Products */
@media (max-width: 1024px) {
    .products-title {
        font-size: 3.2rem;
    }
    .products-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
    }
}
@media (max-width: 768px) {
    .products-hero {
        padding: 8rem 0 6rem;
        text-align: center;
    }
    .products-title {
        font-size: 2.5rem;
    }
    .products-lead {
        margin: 0 auto;
    }
    .products-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .products-filter-panel {
        margin-bottom: 3rem;
    }
    .filter-btn {
        padding: 0.7rem 1.4rem;
        font-size: 0.8rem;
    }
}
@media (max-width: 480px) {
    .products-catalog-grid {
        grid-template-columns: 1fr;
    }
    .product-image-box {
        height: 220px;
    }
}

/* ==========================================================================
   16. PRODUCTS CATEGORY BOX GRID STYLING
   ========================================================================== */
.product-categories-section {
    padding: 6rem 0 3rem 0;
    background-color: #FFFFFF;
}

.categories-box-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.category-box-card {
    display: block;
    position: relative;
    height: 340px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.category-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.category-box-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2.5rem 1.5rem;
    transition: background 0.4s ease;
}

.category-box-overlay h3 {
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    text-align: center;
    border-bottom: 3px solid #E61C24;
    padding-bottom: 8px;
    margin: 0;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.category-box-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(230, 28, 36, 0.22);
}

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

.category-box-card:hover .category-box-overlay {
    background: rgba(0, 0, 0, 0.45);
}

/* Ensure 3 cards row centers nicely if there are leftovers */
@media (min-width: 1200px) {
    .categories-box-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .category-box-card:nth-child(5),
    .category-box-card:nth-child(6),
    .category-box-card:nth-child(7) {
        grid-column: span 1;
    }
}

/* ==========================================================================
   17. FULL-WIDTH HERO SLIDER STYLING
   ========================================================================== */
.hero-slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 73px);
    min-height: 550px;
    background-color: #000;
    overflow: hidden;
    margin-top: 73px; /* Shift below the fixed header menu */
}

.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 3;
}

.slide-content-container {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.slide-content {
    max-width: 800px;
    text-align: center;
    color: #FFFFFF;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.8s ease;
    transition-delay: 0.2s;
}

.hero-slide.active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-badge {
    display: inline-block;
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 0.4rem 1rem;
    background: rgba(230, 28, 36, 0.85);
    border-radius: 4px;
    margin-bottom: 1.5rem;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.slide-desc {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.slide-actions .btn-primary {
    background-color: #E61C24;
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border-radius: 6px;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.slide-actions .btn-primary:hover {
    background-color: #C11319;
    transform: translateY(-2px);
}

.slide-actions .btn-secondary {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
    padding: 0.9rem 2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    border-radius: 6px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.slide-actions .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #FFFFFF;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: background var(--transition-fast), transform var(--transition-fast), opacity var(--transition-fast);
    opacity: 0;
}

.hero-slider-section:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow:hover {
    background: #E61C24;
    transform: translateY(-50%) scale(1.08);
}

.arrow-left {
    left: 2rem;
}

.arrow-right {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.slider-dot.active {
    background: #E61C24;
    transform: scale(1.2);
    width: 24px;
    border-radius: 5px;
}

/* Bottom Marquee Block Adjustments */
.bottom-marquee-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background-color: #FFFFFF;
    margin-top: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments for Slider */
@media (max-width: 768px) {
    .hero-slider-section {
        margin-top: 58px; /* Align with mobile header height and eliminate white gap */
        height: 85vh;
    }
    .slide-title {
        font-size: 2.25rem;
    }
    .slide-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    .slide-actions {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .slide-actions .btn-primary,
    .slide-actions .btn-secondary {
        width: 100%;
        padding: 0.8rem 1.5rem;
    }
    .slider-arrow {
        display: none; /* Hide arrows on mobile */
    }
}

/* ==========================================================================
   18. MAKES A DIFFERENCE SECTION STYLING
   ========================================================================== */
.difference-section {
    padding: 8.5rem 0;
    background-color: #0A0A0B; /* Premium deep black background */
    text-align: center;
}

.difference-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.difference-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #E61C24;
    letter-spacing: 0.25em;
    margin-bottom: 1.25rem;
}

.difference-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 900;
    color: #FFFFFF; /* Clean white title text */
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.difference-content .red-underline-swoosh {
    width: 260px;
    margin: 0.5rem auto 2.25rem;
}

.difference-desc {
    font-size: 1.15rem;
    line-height: 1.85;
    color: #B4B4C0; /* Elegant silver-gray description text */
    margin: 0 auto;
    font-weight: 400;
}

/* Responsive adjustments for Difference section */
@media (max-width: 768px) {
    .difference-section {
        padding: 4.5rem 0;
    }
    .difference-title {
        font-size: 2rem;
    }
    .difference-desc {
        font-size: 1.05rem;
        line-height: 1.75;
    }
}

/* ==========================================================================
   18. E-COMMERCE SHOPPING CART & WISHLIST CUSTOM STYLES
   ========================================================================== */

/* Cart and Wishlist Drawer containers */
.cart-drawer, .wishlist-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(440px, 95vw);
    height: 100vh;
    background: #FFFFFF;
    z-index: 2100;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    color: var(--text-primary-dark);
}

.cart-drawer.open, .wishlist-drawer.open {
    right: 0;
}

/* Overlays for Cart & Wishlist */
.cart-overlay, .wishlist-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 11, 0.5);
    backdrop-filter: blur(4px);
    z-index: 2090;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.active, .wishlist-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Drawer Headers */
.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #EAEAEE;
}

.drawer-header h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0;
}

.drawer-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-secondary-dark);
    transition: color 0.2s ease;
}

.drawer-close-btn:hover {
    color: var(--primary-red);
}

/* Drawer Scrollable Content */
.drawer-scroll-body {
    flex: 1;
    overflow-y: auto;
}

/* Empty drawer message */
.drawer-empty-msg {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary-dark);
}

.drawer-empty-msg svg {
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    stroke: #A0A0AB;
}

.drawer-empty-msg p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.btn-drawer-shop {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--primary-red);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-drawer-shop:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 28, 36, 0.25);
}

/* Cart / Wishlist Items layouts */
.drawer-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.drawer-item-card {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #F3F3F6;
    align-items: center;
}

.drawer-item-img {
    width: 75px;
    height: 75px;
    object-fit: cover;
    border-radius: 8px;
    background: #F3F3F6;
}

.drawer-item-details {
    flex: 1;
}

.drawer-item-details h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
}

.drawer-item-spec {
    font-size: 0.78rem;
    color: var(--text-secondary-dark);
    margin-bottom: 0.4rem;
}

.drawer-item-price {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* Quantity Control Buttons */
.drawer-item-qty {
    display: flex;
    align-items: center;
    border: 1px solid #EAEAEE;
    border-radius: 4px;
    overflow: hidden;
    width: max-content;
    margin-top: 0.5rem;
}

.qty-btn {
    background: #FAFAFC;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.2s ease;
}

.qty-btn:hover {
    background: #ECECEF;
}

.qty-val {
    width: 32px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    border-left: 1px solid #EAEAEE;
    border-right: 1px solid #EAEAEE;
    background: #FFFFFF;
}

.drawer-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #A0A0AB;
    padding: 0.4rem;
    transition: color 0.2s ease;
}

.drawer-item-remove:hover {
    color: var(--primary-red);
}

.drawer-item-remove svg {
    width: 18px;
    height: 18px;
}

/* Quick Add to Bag from Wishlist */
.btn-wishlist-add-to-cart {
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    padding: 0.4rem 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.btn-wishlist-add-to-cart:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(230, 28, 36, 0.15);
}

/* Drawer Footer */
.drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid #EAEAEE;
    background: #FAFAFC;
}

.drawer-subtotal-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.drawer-footer-text {
    font-size: 0.78rem;
    color: var(--text-secondary-dark);
    margin-bottom: 1.25rem;
}

.btn-drawer-checkout {
    display: block;
    width: 100%;
    padding: 0.9rem;
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-drawer-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 28, 36, 0.25);
}

/* Product Wishlist toggle heart button overlay */
.btn-wishlist-toggle {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    z-index: 10;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.btn-wishlist-toggle:hover {
    background: #FFFFFF;
    transform: scale(1.1);
}

.btn-wishlist-toggle svg {
    width: 17px;
    height: 17px;
    stroke: #2D2D30;
    fill: none;
    transition: all 0.3s ease;
}

.btn-wishlist-toggle.active svg {
    stroke: var(--primary-red);
    fill: var(--primary-red);
}

/* Add to Cart button inside the Product Details card */
.btn-card-add-to-cart {
    width: 100%;
    margin-top: 1rem;
    padding: 0.7rem;
    border: 1px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card-add-to-cart:hover {
    background: var(--primary-red);
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(230, 28, 36, 0.15);
}

/* Global Notification Overlay Toast */
.ecom-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #0A0A0B;
    color: #FFFFFF;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    z-index: 2200;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ecom-notification.active {
    transform: translateY(0);
    opacity: 1;
}

.ecom-notification-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #27C468;
    color: #FFFFFF;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
}

.ecom-notification-icon.warning {
    background: var(--primary-red);
}

.ecom-notification-msg {
    font-size: 0.88rem;
    font-weight: 600;
}

/* Checkout Success Modal Popup */
.checkout-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 10, 11, 0.6);
    backdrop-filter: blur(8px);
    z-index: 2300;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.checkout-success-modal.active {
    opacity: 1;
    visibility: visible;
}

.checkout-success-box {
    background: #FFFFFF;
    padding: 3rem 2rem;
    border-radius: 12px;
    width: min(460px, 90vw);
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.checkout-success-modal.active .checkout-success-box {
    transform: scale(1);
}

.success-icon-circle {
    width: 72px;
    height: 72px;
    background: rgba(39, 196, 104, 0.1);
    color: #27C468;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
}

.success-icon-circle svg {
    width: 36px;
    height: 36px;
}

.checkout-success-box h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
}

.checkout-success-box p {
    color: var(--text-secondary-dark);
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-size: 0.95rem;
}

.btn-success-close {
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(230, 28, 36, 0.25);
}

/* Login Page Styles */
.login-section {
    padding: 10rem 0 12rem;
    background: #FAFAFC;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.login-card-wrapper {
    background: #FFFFFF;
    width: min(485px, 95vw);
    padding: 3.5rem 2.75rem;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid #EAEAEE;
}

.login-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    text-align: center;
    letter-spacing: -0.01em;
}

.login-subtitle {
    font-size: 0.88rem;
    color: var(--text-secondary-dark);
    text-align: center;
    margin-bottom: 2.25rem;
}

.login-form .form-group {
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.login-form label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary-dark);
    letter-spacing: 0.5px;
}

.login-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid #EAEAEE;
    border-radius: 6px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.25s ease;
    background-color: #FFFFFF;
    color: var(--text-primary-dark);
}

.login-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 28, 36, 0.08);
}

.login-form .form-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    font-size: 0.85rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.checkbox-label input {
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-red);
}

.forgot-pwd-link {
    color: var(--text-secondary-dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.forgot-pwd-link:hover {
    color: var(--primary-red);
}

.btn-login-submit {
    width: 100%;
    padding: 0.95rem;
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-login-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(230, 28, 36, 0.2);
}

.switch-auth-msg {
    text-align: center;
    margin-top: 1.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary-dark);
}

.btn-auth-switch-link {
    color: var(--primary-red);
    font-weight: 700;
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: underline;
    font-size: inherit;
    font-family: inherit;
    padding: 0;
    margin-left: 0.2rem;
}

/* SSO Wrapper */
.sso-wrapper {
    margin-top: 1.75rem;
    border-top: 1px solid #EAEAEE;
    padding-top: 1.75rem;
    text-align: center;
}

.sso-title {
    font-size: 0.72rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #A0A0AB;
    margin-bottom: 1.15rem;
    letter-spacing: 1px;
    display: block;
}

.sso-btns-row {
    display: flex;
    gap: 0.75rem;
}

.btn-sso {
    flex: 1;
    padding: 0.7rem;
    border: 1.5px solid #EAEAEE;
    border-radius: 6px;
    background: #FFFFFF;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    color: var(--text-primary-dark);
}

.btn-sso:hover {
    border-color: #B4B4C0;
    background: #FAFAFC;
}

.btn-sso svg {
    width: 16px;
    height: 16px;
}

/* Legal Policy Page Styles */
.policy-section {
    padding: 10rem 0 12rem;
    background: #FAFAFC;
    min-height: 80vh;
}

.policy-card {
    background: #FFFFFF;
    max-width: 850px;
    margin: 0 auto;
    padding: 4rem 3.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #EAEAEE;
}

.policy-header {
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 1.5rem;
    margin-bottom: 2.5rem;
}

.policy-header h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 900;
    margin: 0 0 0.5rem 0;
    color: var(--text-primary-dark);
}

.policy-last-updated {
    font-size: 0.85rem;
    color: var(--text-secondary-dark);
    font-weight: 500;
}

.policy-body {
    line-height: 1.85;
    color: var(--text-primary-dark);
    font-size: 0.98rem;
}

.policy-body h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin: 2.5rem 0 1rem 0;
    color: #111115;
    letter-spacing: -0.01em;
}

.policy-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem 0;
    color: #2D2D30;
}

.policy-body p {
    margin-bottom: 1.25rem;
}

.policy-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: square;
}

.policy-body li {
    margin-bottom: 0.5rem;
}

.policy-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    font-size: 0.92rem;
}

.policy-body th, .policy-body td {
    padding: 0.85rem 1rem;
    border: 1px solid #EAEAEE;
    text-align: left;
}

.policy-body th {
    background: #FAFAFC;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    color: var(--text-primary-dark);
    letter-spacing: 0.5px;
}

/* Footer bottom bar legal links alignment */
.footer-legal-links {
    display: flex;
    gap: 1.25rem;
    font-size: 0.82rem;
    font-weight: 500;
}

.footer-legal-links a {
    color: #8A8A93;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .policy-card {
        padding: 2.5rem 1.75rem;
    }
    .policy-header h1 {
        font-size: 1.75rem;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Product Detail Page Styles */
.detail-section {
    padding: 10rem 0 12rem;
    background: #FAFAFC;
    min-height: 80vh;
}

.detail-grid {
    display: flex;
    gap: 3.5rem;
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #EAEAEE;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.detail-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 480px;
}

.main-slider-box {
    position: relative;
    width: 100%;
    height: 340px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #EAEAEE;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-slider-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.slider-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #EAEAEE;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 900;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    color: #2D2D30;
    z-index: 5;
}

.slider-arrow-btn:hover {
    background: var(--primary-red);
    color: #FFFFFF;
    border-color: var(--primary-red);
    box-shadow: 0 6px 20px rgba(225, 28, 38, 0.35);
    transform: translateY(-50%) scale(1.12);
}

.slider-arrow-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-left-btn { left: 0.75rem; }
.arrow-right-btn { right: 0.75rem; }

.slider-caption {
    background: #111115;
    color: #FFFFFF;
    text-align: center;
    padding: 0.55rem;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 0 0 12px 12px;
    margin-top: -1.5rem;
    z-index: 2;
    position: relative;
}

.thumbnail-row {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-start;
}

.thumb-card {
    width: 72px;
    height: 56px;
    border-radius: 6px;
    border: 2px solid #EAEAEE;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: border-color 0.25s ease;
    padding: 0.2rem;
}

.thumb-card.active {
    border-color: #111115;
}

.thumb-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.spec-banner-btn {
    background: #3A3F47;
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 1.1rem 1.6rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(58, 63, 71, 0.15);
}

.spec-banner-btn span:last-child {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.spec-banner-btn:hover {
    background: #111115;
    box-shadow: 0 8px 25px rgba(17, 17, 21, 0.25);
    transform: translateY(-2px);
}

.spec-banner-btn:hover span:last-child {
    transform: translateX(6px);
}

.spec-banner-btn:active {
    transform: translateY(1px);
}

.detail-right {
    flex: 1.25;
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--text-primary-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.detail-pid {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-secondary-dark);
}

.detail-desc {
    line-height: 1.7;
    color: var(--text-secondary-dark);
    font-size: 0.95rem;
}

.detail-warranty {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--text-primary-dark);
    display: inline-block;
    border-left: 3px solid var(--primary-red);
    padding-left: 0.65rem;
    margin: 0.25rem 0;
}

.detail-selects-row {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.5rem;
}

.detail-select {
    flex: 1;
    padding: 0.7rem 0.95rem;
    border: 1.5px solid #EAEAEE;
    border-radius: 6px;
    background: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.25s ease;
    cursor: pointer;
    color: var(--text-primary-dark);
}

.detail-select:focus {
    border-color: #8A8A93;
}

.variant-table-wrapper {
    margin-top: 0.5rem;
    border-top: 1px solid #EAEAEE;
    padding-top: 1.25rem;
}

.variant-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.variant-table th, .variant-table td {
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid #F0F0F3;
    vertical-align: middle;
}

.variant-table th {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #A0A0AB;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #EAEAEE;
}

.variant-table td {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary-dark);
}

.btn-variant-add-cart {
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 8px rgba(230, 28, 36, 0.15);
    padding: 0;
}

.btn-variant-add-cart svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.btn-variant-add-cart:hover {
    background: #C5131A;
    transform: scale(1.12);
    box-shadow: 0 5px 15px rgba(197, 19, 26, 0.35);
}

.btn-variant-add-cart:hover svg {
    transform: scale(1.1) rotate(-5deg);
}

.btn-variant-add-cart:active {
    transform: scale(0.95);
    box-shadow: 0 2px 5px rgba(197, 19, 26, 0.2);
}

}

@media (max-width: 768px) {
    .detail-grid {
        flex-direction: column;
        padding: 2rem 1.25rem;
        gap: 2.5rem;
    }
    .detail-left {
        max-width: 100%;
    }
    .detail-selects-row {
        flex-direction: column;
        gap: 0.65rem;
    }
    .variant-table th, .variant-table td {
        padding: 0.65rem 0.5rem;
    }
}

/* Dedicated Cart & Wishlist Pages Styles */
.cart-section, .wishlist-section {
    padding: 10rem 0 12rem;
    background: #FAFAFC;
    min-height: 80vh;
}

.cart-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.cart-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cart-right {
    flex: 1;
    position: sticky;
    top: 100px;
}

.cart-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEE;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 2rem;
}

.cart-title-block {
    border-bottom: 1px solid #F0F0F3;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.cart-title-block h1 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    color: var(--text-primary-dark);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cart-item-row {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    border-bottom: 1px solid #F0F0F3;
    padding-bottom: 1.25rem;
}

.cart-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-img {
    width: 90px;
    height: 90px;
    border-radius: 8px;
    border: 1px solid #EAEAEE;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0.25rem;
}

.cart-item-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.cart-item-info {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cart-item-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary-dark);
    margin: 0;
}

.cart-item-spec {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-secondary-dark);
}

.cart-item-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary-dark);
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.25rem;
}

.cart-qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #EAEAEE;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #55555A;
}

.cart-qty-btn:hover {
    background: #F0F0F3;
}

.cart-qty-input {
    width: 42px;
    height: 28px;
    border: 1px solid #EAEAEE;
    border-radius: 4px;
    text-align: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: #111;
    outline: none;
}

.cart-item-subtotal {
    flex: 1;
    text-align: right;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-primary-dark);
}

.cart-item-remove {
    border: none;
    background: transparent;
    cursor: pointer;
    color: #A0A0AB;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--primary-red);
}

.cart-item-remove svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.summary-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #F0F0F3;
    padding-bottom: 1rem;
    color: var(--text-primary-dark);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-secondary-dark);
}

.summary-total-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #F0F0F3;
    padding-top: 1rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-primary-dark);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.checkout-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #EAEAEE;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.25s ease;
    background: #FFFFFF;
}

.checkout-input:focus {
    border-color: #8A8A93;
}

.btn-checkout-submit {
    background: var(--primary-red);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 0.95rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 28, 38, 0.15);
    width: 100%;
}

.btn-checkout-submit:hover {
    background: #B60F1A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 28, 38, 0.25);
}

.btn-checkout-submit:active {
    transform: translateY(1px);
}

.cart-empty-box {
    text-align: center;
    padding: 5rem 2rem;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEE;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    max-width: 550px;
    margin: 0 auto;
}

.cart-empty-box h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.85rem;
    color: var(--text-primary-dark);
}

.cart-empty-box p {
    color: var(--text-secondary-dark);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-cart-continue {
    background: #111115;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    padding: 0.85rem 1.75rem;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s ease;
}

.btn-cart-continue:hover {
    background: var(--primary-red);
    transform: translateY(-2px);
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wishlist-item-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #EAEAEE;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wishlist-item-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 992px) {
    .cart-grid {
        flex-direction: column;
        gap: 2rem;
    }
    .cart-left, .cart-right {
        width: 100%;
        position: static;
    }
}





