/* ========================================
   El Tayeb Modern Elevators - Premium Styles
   ======================================== */

:root {
    /* Colors - Restored Original Palette */
    --color-bg: #050505;
    --color-surface: #111111;
    --color-surface-light: #1a1a1a;
    --color-gold: #EEBD1A; /* Rich metallic bronze/gold */
    --color-gold-dim: rgba(238, 189, 26, 0.15);
    --color-text: #F5F5F5;
    --color-text-muted: #A0A0A0;
    
    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Spacing */
    --container-max: 1200px;
    --padding-x: 5%;
    
    /* Transitions */
    --transition-smooth: cubic-bezier(0.76, 0, 0.24, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: var(--color-bg);
    color: var(--color-text);
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-display {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

/* SplitType adjustments */
.char {
    display: inline-block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--padding-x);
}

.section {
    padding: 10vh 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 5vw, 4rem);
    margin-bottom: 2rem;
    color: var(--color-text);
}

/* Utility classes */
.text-gold { color: var(--color-gold); }
.text-center { text-align: center; }

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin-bottom: 1rem;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

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

.section-header.text-center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1rem 0;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

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

.logo-img {
    height: 40px;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-gold);
}

.nav {
    display: none;
}

@media (min-width: 992px) {
    .nav {
        display: block;
    }
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    transition: color 0.3s;
}

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

.btn-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f4ce42 0%, var(--color-gold) 100%);
    color: var(--color-bg);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(238, 189, 26, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-menu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 189, 26, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fae06e 0%, #d8a20e 100%);
}

/* Header right grouping */
.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 992px) {
    .hamburger { display: none; }
}

/* Mobile Nav Drawer */
@media (max-width: 991px) {
    .nav {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100dvh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255,255,255,0.06);
        flex-direction: column;
        justify-content: center;
        padding: 3rem 2.5rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 150;
    }

    .nav.open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        gap: 2.5rem;
    }

    .nav-link {
        font-size: 2rem;
        color: var(--color-text);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--color-bg);
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    inset: 0;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(5,5,5,0.95) 0%, rgba(5,5,5,0.4) 100%);
}

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

.hero-badge-wrapper {
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-gold-dim);
    color: var(--color-gold);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
}

.line-inner {
    display: block;
    font-size: clamp(2.5rem, 8vw, 6rem);
    line-height: 1;
    letter-spacing: -0.02em;
}

.line-inner.accent {
    color: var(--color-gold);
}

.hero-bottom {
    margin-top: 2rem;
}

.hero-subtitle {
    max-width: 500px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.hero-image-side {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 60%;
    max-width: 800px;
    opacity: 0.8;
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .hero-image-side {
        right: -30%;
        opacity: 0.3;
    }
}

/* Marquee Section */
.marquee-section {
    padding: 3rem 0;
    background: var(--color-surface);
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-container {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 8rem;
    animation: marquee 50s linear infinite;
    will-change: transform;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 160px;
    height: 80px;
}

.marquee-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: opacity(0.8);
    transition: all 0.4s ease;
}

.marquee-item:hover img {
    filter: opacity(1) drop-shadow(0 0 15px rgba(238, 189, 26, 0.4));
    transform: scale(1.1);
}

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

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

@media (max-width: 991px) {
    .about-image-wrapper {
        margin-top: 2rem;
    }
}

.about-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
    font-size: 2.5rem;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* Products Section */
.products {
    background-color: #0a0a0a;
    background-image: url('../images/marble_bg.avif');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--color-bg) 0%, rgba(5,5,5,0.7) 50%, var(--color-bg) 100%);
    pointer-events: none;
}

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

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: rgba(15, 15, 15, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible; /* to allow images to pop out slightly if needed */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(238, 189, 26, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

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

.product-card:hover {
    border-color: rgba(238, 189, 26, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
}

.product-card-content {
    position: relative;
    z-index: 2;
    width: 60%;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-3d-img {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 170px;
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 20px 20px rgba(0,0,0,0.5));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-3d-img {
    transform: translateY(-55%) scale(1.05);
}

.product-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background: linear-gradient(135deg, rgba(238, 189, 26, 0.2), rgba(238, 189, 26, 0.05));
    border: 1px solid rgba(238, 189, 26, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.product-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.product-desc {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.product-link {
    margin-top: auto;
    font-size: 0.9rem;
    color: var(--color-gold);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.product-link:hover {
    gap: 0.8rem;
}

@media (max-width: 767px) {
    .product-3d-img {
        right: 0%;
        opacity: 0.7; /* Increased opacity for better visibility on mobile */
        max-width: 120px;
    }
    .product-card-content {
        width: 100%;
        padding-right: 0;
    }
    .product-card {
        padding: 2rem;
        min-height: 300px;
    }
}

/* Catalog Section */
.catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

.catalog-item {
    background: rgba(15, 15, 15, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.catalog-item:hover {
    transform: translateY(-5px);
    border-color: rgba(238, 189, 26, 0.3);
}

.catalog-item-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.catalog-item-header h3 {
    font-size: 1.4rem;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.catalog-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.catalog-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

.catalog-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-gold);
}

.catalog-list li strong {
    color: var(--color-text);
    font-weight: 600;
}


/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    background: var(--color-surface);
    padding: 3rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.05);
}

@media (min-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 4rem;
    }
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    background: var(--color-surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.contact-item-text h4 {
    font-size: 0.9rem;
    color: var(--color-text);
}

.contact-item-text p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: var(--color-surface-light);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 1rem;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 1rem;
    border-radius: 5px;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--color-gold);
}

.btn-submit {
    background: linear-gradient(135deg, #f4ce42 0%, var(--color-gold) 100%);
    color: var(--color-bg);
    padding: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(238, 189, 26, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(238, 189, 26, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    background: linear-gradient(135deg, #fae06e 0%, #d8a20e 100%);
}

/* Footer */
.footer {
    background: var(--color-bg);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand h2 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

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

.footer-links h4 {
    margin-bottom: 1rem;
}

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

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

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

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-align: center;
}

/* Utilities */
.reveal-up {
    will-change: opacity, transform;
}

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

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 1rem;
    font-family: var(--font-body);
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
}

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

/* ============================================
   Responsive — Mobile-first fixes
   ============================================ */

/* Tighten horizontal padding on very small screens */
@media (max-width: 480px) {
    :root { --padding-x: 4%; }

    .line-inner {
        font-size: clamp(2rem, 9vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .product-card {
        padding: 1.5rem;
        min-height: 220px;
    }

    /* Show images with high visibility on mobile */
    .product-3d-img {
        display: block;
        opacity: 0.75;
        right: 0;
        max-width: 100px;
    }

    .product-card-content {
        width: 100%;
        padding-right: 0;
    }

    .catalog-grid {
        gap: 1rem;
    }

    .catalog-item {
        padding: 1.5rem;
    }

    .modal-container {
        width: 100%;
        max-height: 100dvh;
        border-radius: 0;
    }

    .modal-details {
        padding: 2rem 1.5rem;
    }

    .modal-details h2 {
        font-size: 1.5rem;
    }
}

/* Tablet mid-range */
@media (min-width: 481px) and (max-width: 767px) {
    .product-3d-img {
        opacity: 0.15;
        max-width: 120px;
    }

    .product-card-content {
        width: 100%;
        padding-right: 0;
    }
}

/* Footer responsive */
@media (max-width: 767px) {
    .footer-top {
        grid-template-columns: 1fr !important;
        gap: 2rem;
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    background: var(--color-surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--color-text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: var(--color-gold);
    color: var(--color-bg);
}

.modal-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

@media (min-width: 768px) {
    .modal-content {
        grid-template-columns: 1fr 1fr;
    }
}

.modal-image {
    position: relative;
    background: radial-gradient(circle at center, rgba(238, 189, 26, 0.15), transparent 70%);
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .modal-image {
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.modal-image img {
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.6));
}

.modal-details {
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.modal-details h3 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.modal-desc-body {
    color: var(--color-text-muted);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.modal-desc-body ul {
    padding-left: 1.2rem;
    margin-top: 1rem;
}

.modal-desc-body li {
    margin-bottom: 0.8rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.process-track {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

@media (min-width: 768px) {
    .process-track {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 0 1rem;
}

@media (max-width: 767px) {
    .process-step {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 0 0 3rem 0;
    }
}

.process-number {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 800;
    color: rgba(238, 189, 26, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .process-number {
        font-size: 3rem;
        margin-bottom: 0;
    }
}

.process-connector {
    position: absolute;
    top: 2.5rem;
    left: 50%;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(238,189,26,0.3), transparent);
    display: none;
}

@media (min-width: 768px) {
    .process-connector {
        display: block;
    }
    .process-connector.last {
        display: none;
    }
}

.process-body {
    flex: 1;
}

.process-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(238, 189, 26, 0.1);
    border: 1px solid rgba(238, 189, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-gold);
    margin: 0 auto 1.2rem;
    transition: background 0.3s, border-color 0.3s;
}

@media (max-width: 767px) {
    .process-icon {
        margin: 0 0 0.8rem;
        flex-shrink: 0;
    }
}

.process-step:hover .process-icon {
    background: rgba(238, 189, 26, 0.2);
    border-color: rgba(238, 189, 26, 0.6);
}

.process-body h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
}

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

/* ============================================
   WHY US
   ============================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 600px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .why-grid { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    background: rgba(15, 15, 15, 0.5);
    transition: border-color 0.35s, transform 0.35s;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

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

.why-card:hover {
    border-color: rgba(238, 189, 26, 0.25);
    transform: translateY(-4px);
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: rgba(238, 189, 26, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    transition: background 0.3s;
}

.why-card:hover .why-icon { background: rgba(238, 189, 26, 0.18); }

.why-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
}

.why-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* ============================================
   PROJECTS
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
}

.project-card {
    border-radius: 12px;
    overflow: hidden;
    background: var(--color-surface);
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.4s;
}

.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(238, 189, 26, 0.3);
}

.project-visual {
    position: relative;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.project-bg-icon {
    font-size: 5rem;
    color: rgba(238, 189, 26, 0.15);
    transition: transform 0.5s ease, color 0.3s;
}

.project-card:hover .project-bg-icon {
    transform: scale(1.15) rotate(3deg);
    color: rgba(238, 189, 26, 0.28);
}

.project-year {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-gold);
    background: rgba(0,0,0,0.4);
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

.project-info {
    padding: 1.5rem;
}

.project-type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    font-weight: 600;
}

.project-info h3 {
    font-size: 1.15rem;
    margin: 0.5rem 0 0.75rem;
    font-family: var(--font-display);
}

.project-info p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-tags span {
    font-size: 0.75rem;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: rgba(238, 189, 26, 0.08);
    color: var(--color-gold);
    border: 1px solid rgba(238, 189, 26, 0.2);
    letter-spacing: 0.5px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 2.5rem 2rem 2rem;
    position: relative;
    transition: border-color 0.35s, transform 0.35s;
}

.testimonial-card:hover {
    border-color: rgba(238, 189, 26, 0.2);
    transform: translateY(-4px);
}

.testimonial-quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    color: var(--color-gold);
    opacity: 0.25;
    line-height: 0.7;
    margin-bottom: 1.5rem;
    display: block;
}

.testimonial-text {
    font-size: 0.97rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-top: 1.5rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(238, 189, 26, 0.12);
    border: 1px solid rgba(238, 189, 26, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--color-text);
    font-family: var(--font-display);
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* ============================================
   BRANDS DEEP
   ============================================ */
.brands-deep-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (min-width: 640px) {
    .brands-deep-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .brands-deep-grid { grid-template-columns: repeat(3, 1fr); }
}

.brand-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(15, 15, 15, 0.5);
    transition: border-color 0.35s, transform 0.35s, background 0.35s;
    text-decoration: none;
    color: inherit;
}

.brand-card:hover {
    border-color: rgba(238, 189, 26, 0.35);
    background: rgba(238, 189, 26, 0.03);
    transform: translateY(-5px);
}

.brand-card-flag {
    font-size: 2.2rem;
    line-height: 1;
}

.brand-card-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--color-text);
}

.brand-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
}

.brand-card-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    transition: gap 0.3s;
}

.brand-card:hover .brand-card-cta { gap: 0.7rem; }


/* ========================================
   Catalog DNA Reveal Styles
   ======================================== */
.catalog-reveal-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.reveal-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.reveal-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal-item.active {
    background: rgba(238, 189, 26, 0.08);
    border-color: var(--color-gold);
    transform: translateX(15px);
}

.reveal-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-gold);
    opacity: 0.5;
}

.reveal-item.active .reveal-number { opacity: 1; }

.reveal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.reveal-content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.reveal-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--color-surface);
}

.reveal-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reveal-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent, rgba(238, 189, 26, 0.1));
    pointer-events: none;
}

/* ========================================
   Pipeline Timeline Styles
   ======================================== */
.pipeline-container {
    position: relative;
    max-width: 900px;
    margin: 4rem auto 0;
    padding: 2rem 0;
}

.pipeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--color-gold), transparent);
    transform: translateX(-50%);
}

.pipeline-step {
    display: flex;
    width: 100%;
    margin-bottom: 4rem;
    position: relative;
}

.pipeline-step:nth-child(even) { justify-content: flex-end; }
.pipeline-step:nth-child(odd) { justify-content: flex-start; }

.step-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    position: relative;
}

/* Right-side steps get left text alignment; left-side steps get right alignment */
.pipeline-step:nth-child(even) .step-content { text-align: left; }
.pipeline-step:nth-child(odd) .step-content { text-align: right; }

.step-dot {
    position: absolute;
    left: 50%;
    top: 2rem;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px var(--color-gold);
    z-index: 2;
}

.step-icon {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 1.5rem;
}

/* ========================================
   Bento Grid Styles
   ======================================== */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-image {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bento-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.bento-item:hover .bento-image img {
    transform: scale(1.1);
    opacity: 0.6;
}

.bento-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.2) 100%);
    z-index: 1;
}

.bento-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.bento-item:hover {
    border-color: rgba(238, 189, 26, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-medium { grid-column: span 2; }
.bento-tall { grid-column: span 1; grid-row: span 2; }
.bento-square { grid-column: span 1; }

.bento-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.bento-item h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.bento-item p { font-size: 0.9rem; color: var(--color-text-muted); }

.bento-bg-icon {
    position: absolute;
    top: -1rem;
    right: -1rem;
    font-size: 10rem;
    opacity: 0.03;
    color: var(--color-gold);
    pointer-events: none;
}

/* ========================================
   Swiper Specific Overrides
   ======================================== */
.projects-swiper { padding: 2rem 0 5rem; }

.project-slide-inner {
    border-radius: 30px;
    overflow: hidden;
    background: var(--color-surface);
    height: 500px;
    position: relative;
}

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

.project-slide-info {
    padding: 2rem;
    position: relative;
}

.project-year {
    position: absolute;
    top: -2rem;
    right: 2rem;
    background: var(--color-gold);
    color: var(--color-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3.5rem;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--color-gold), transparent);
}

.testimonial-quote-icon {
    font-size: 2.5rem;
    color: var(--color-gold);
    opacity: 0.2;
    margin-bottom: 2rem;
}

.testimonial-body p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--color-gold);
    color: var(--color-bg);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
}

.testimonial-info strong {
    display: block;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
}

.testimonial-bubble p {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-meta strong { display: block; color: var(--color-gold); font-size: 1.2rem; }

.swiper-pagination-bullet { background: rgba(255, 255, 255, 0.2); }
.swiper-pagination-bullet-active { background: var(--color-gold); }
.swiper-button-next, .swiper-button-prev { color: var(--color-gold); }

/* ========================================
   Mobile Overrides for New Components
   ======================================== */
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } /* Increased height for better image visibility */
    .bento-large { grid-column: span 2; grid-row: span 2; }
    .pipeline-line { left: 20px; transform: none; }
    .step-dot { left: 20px; transform: translateX(-50%); }
    .step-content { width: calc(100% - 60px); margin-left: 60px; text-align: left !important; }
    
    /* Vertical stack for cards to prevent overlap */
    .product-card {
        display: flex;
        flex-direction: column;
        min-height: auto !important;
        padding: 2rem !important;
        overflow: hidden;
    }

    .product-card-content {
        width: 100% !important;
        padding-right: 0 !important;
        margin-bottom: 1.5rem;
        z-index: 2;
    }

    .product-3d-img {
        position: relative !important;
        display: block !important;
        opacity: 1 !important; /* Full visibility since it's not overlapping anymore */
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 160px !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        filter: drop-shadow(0 15px 15px rgba(0,0,0,0.4)) !important;
    }
}

@media (max-width: 480px) {
    .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .bento-large, .bento-medium { grid-column: span 1; }
    .bento-tall { grid-row: span 1; }
}

