/* Root variables for premium color palette */
:root {
    --bg-dark: #070a13;
    --bg-card: rgba(15, 22, 42, 0.65);
    --border-glass: rgba(255, 255, 255, 0.08);
    --primary-cyan: #00ffcc;
    --primary-blue: #00d2ff;
    --primary-purple: #bd00ff;
    --glow-color: rgba(0, 210, 255, 0.45);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-heading: 'Orbitron', 'Noto Sans Arabic', sans-serif;
    --font-body: 'Inter', 'Noto Sans Arabic', sans-serif;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: #1f2937;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* Premium Background Effects */
.stars {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px);
    background-size: 550px 550px, 350px 350px;
    background-position: 0 0, 40px 60px;
    opacity: 0.15;
    z-index: 0;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

.main-orb-1 {
    top: 10%;
    right: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--primary-blue) 0%, transparent 70%);
}

.main-orb-2 {
    top: 60%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-purple) 0%, transparent 70%);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    background: rgba(7, 10, 19, 0.7);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-emblem {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.2));
    transition: all 0.3s ease;
}

.logo:hover .logo-emblem {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 210, 255, 0.5);
    background: linear-gradient(45deg, #fff, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-tag {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 3px;
    color: var(--primary-cyan);
    margin-top: -4px;
}

nav {
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

nav a:hover, nav a.active {
    color: var(--primary-cyan);
    text-shadow: 0 0 8px rgba(0, 255, 204, 0.4);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 0.75rem 1.6rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-glowing {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: #070a13;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.4);
}

.btn-primary-glowing:hover {
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

.btn-hud {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

.btn-hud:hover, .btn-hud.active {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    box-shadow: 0 0 10px rgba(0, 210, 255, 0.2);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    z-index: 1;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.badge {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-blue);
    letter-spacing: 0.5px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--primary-blue);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(0, 210, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 210, 255, 0); }
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.25;
    background: linear-gradient(to left, #fff, #b4c6ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.brand-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 550px;
}

/* HUD Panel */
.hud-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hud-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 0.6rem;
}

.hud-controls {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.control-group.flex-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.control-group label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-group {
    display: flex;
    gap: 0.5rem;
}

.color-selectors {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.color-dot.active {
    border-color: #fff;
    transform: scale(1.15);
}

/* Switch styling */
.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid var(--border-glass);
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(0, 210, 255, 0.2);
    border-color: var(--primary-blue);
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: var(--primary-blue);
    box-shadow: 0 0 8px var(--primary-blue);
}

/* 3D Visual Column */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#canvas-container {
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: grab;
}

#canvas-container:active {
    cursor: grabbing;
}

.visual-backdrop {
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    border-radius: 50%;
    animation: pulseBackdrop 6s infinite ease-in-out;
}

@keyframes pulseBackdrop {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.15); opacity: 0.8; }
}

.visual-indicator {
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 3;
    pointer-events: none;
}

.indi-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--primary-blue));
}

.indi-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: var(--primary-blue);
    opacity: 0.7;
}

/* Section Common Title */
.section-title-wrap {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.section-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.8rem;
}

.title-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-purple));
    margin: 0 auto 1.2rem;
    border-radius: 2px;
}

.section-title-wrap p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Air Cooler Details Section */
.details-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.detail-card:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.08);
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(0, 210, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.detail-card h3 {
    font-size: 1.25rem;
    color: #fff;
}

.detail-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Catalog Section */
.catalog-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.product-card:hover {
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(189, 0, 255, 0.08);
}

.product-image-container {
    height: 220px;
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.8), rgba(7, 10, 19, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-placeholder-icon {
    font-size: 4.5rem;
    color: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(189, 0, 255, 0.3);
    color: #e0aaff;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.product-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-info h4 {
    font-size: 1.2rem;
    color: #fff;
}

.product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    min-height: 50px;
}

.product-specs {
    display: flex;
    gap: 1rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
}

.product-specs span {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.product-specs i {
    color: var(--primary-cyan);
}

/* Footer Section */
footer {
    background: rgba(4, 6, 12, 0.95);
    border-top: 1px solid var(--border-glass);
    padding: 5rem 2rem 2rem;
    position: relative;
    z-index: 1;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1.5px;
    background: linear-gradient(45deg, #fff, var(--primary-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 350px;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
    transform: translateY(-3px);
}

.footer-links h4, .footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-links h4::after, .footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-cyan);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    padding-right: 5px;
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.footer-contact i {
    color: var(--primary-blue);
}

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

/* Responsiveness */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hud-panel {
        width: 100%;
        max-width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .upload-guide-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .warehouse-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 1.6;
    }
}

@media (max-width: 768px) {
    nav {
        display: none; /* simple mobile fallback, or keeps clean header */
    }
    
    .hero-content h1 {
        font-size: 2.4rem;
    }
    
    .nav-actions {
        display: none;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1.3;
    }
    
    .warehouse-badges {
        flex-direction: column;
    }
}

/* Upload Guide Banner Styles */
.upload-guide-banner {
    grid-column: 1 / -1;
    margin-top: 3rem;
    background: rgba(0, 210, 255, 0.04);
    border: 1px solid rgba(0, 210, 255, 0.15);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.02);
}

.upload-guide-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-blue);
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.1);
}

.upload-guide-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.upload-guide-text h5 {
    font-size: 1.15rem;
    color: #fff;
    font-family: var(--font-heading);
}

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

.upload-guide-text code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    color: var(--primary-cyan);
    font-family: monospace;
    font-size: 0.85rem;
    direction: ltr;
    display: inline-block;
}

/* Air Coolers Section Styles */
.coolers-section {
    padding: 6rem 2rem;
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
}

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

.model-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.model-card:hover {
    border-color: var(--primary-cyan);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 204, 0.08);
}

.model-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 255, 204, 0.15);
    border: 1px solid rgba(0, 255, 204, 0.3);
    color: var(--primary-cyan);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 5;
    text-shadow: 0 0 5px rgba(0, 255, 204, 0.3);
}

.model-img-wrapper {
    height: 320px;
    background: linear-gradient(135deg, rgba(15, 22, 42, 0.8), rgba(7, 10, 19, 0.9));
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--border-glass);
}

.model-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.model-card:hover .model-img {
    transform: scale(1.05);
}

.model-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-grow: 1;
}

.model-details h3 {
    font-size: 1.3rem;
    color: #fff;
    font-family: var(--font-heading);
}

.model-tagline {
    font-size: 0.85rem;
    color: var(--primary-blue);
    font-weight: 600;
}

.model-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
    border-top: 1px solid var(--border-glass);
    padding-top: 1rem;
}

.model-features li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.model-features i {
    color: var(--primary-cyan);
    width: 16px;
    text-align: center;
}

/* Warehouse Showcase and Gallery */
.warehouse-showcase {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: center;
}

.warehouse-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.warehouse-text h3 {
    font-size: 1.8rem;
    color: #fff;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.warehouse-text h3 i {
    color: var(--primary-blue);
}

.warehouse-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
}

.warehouse-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.warehouse-badges span {
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.2);
    color: var(--primary-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.warehouse-badges i {
    color: var(--primary-cyan);
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1.2;
    border: 1px solid var(--border-glass);
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: 1.4;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(to top, rgba(7, 10, 19, 0.9) 0%, transparent 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}
