@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
    /* Color Palette */
    --color-bg-dark: #0f0f10;
    --color-bg-card: #161618;
    --color-bg-light: #faf9f6;
    --color-bg-surface: #ffffff;
    
    --color-text-light: #f3f4f6;
    --color-text-muted-light: #a1a1aa;
    --color-text-dark: #1f2937;
    --color-text-muted-dark: #6b7280;

    --color-accent: #c5a880; /* Elegant Warm Gold/Champagne */
    --color-accent-hover: #b3946b;
    --color-accent-light: rgba(197, 168, 128, 0.1);
    
    --color-border-dark: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(0, 0, 0, 0.08);

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    
    /* Layout Constants */
    --header-height: 50px;
    --container-width: 1200px;
}

/* --- RESET & BASIC STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    overflow-x: hidden;
}

body.dark-mode-override {
    color: var(--color-text-light);
    background-color: var(--color-bg-dark);
}

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

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

ul {
    list-style: none;
}

button, input, select, textarea {
    font-family: inherit;
    outline: none;
    border: none;
    background: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--color-accent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted-dark);
    text-align: center;
    max-width: 600px;
    margin: -0.5rem auto 3rem;
}

/* --- LAYOUT UTILITIES --- */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

/* --- HEADER / NAVIGATION --- */
.site-header {
    height: var(--header-height);
    background-color: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border-light);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background-color: rgba(250, 249, 246, 0.98);
    height: 45px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 98%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Logo Design */
.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #1f2937;
    text-transform: uppercase;
}

.logo span {
    color: var(--color-accent);
    font-weight: 300;
}

.header-logo-img {
    height: 35px;
    width: auto;
    margin-right: 12px;
    mix-blend-mode: multiply;
    filter: contrast(1.15) brightness(1.08);
    display: inline-block;
}

/* Navigation Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    position: relative;
    padding: 0.5rem 0;
    color: var(--color-text-dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--color-accent);
    transition: var(--transition-smooth);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

/* Language Dropdown Selector */
.lang-selector {
    position: relative;
    cursor: pointer;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 0.5rem 0.8rem;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    background: transparent;
    transition: var(--transition-smooth);
}

.lang-btn:hover {
    border-color: var(--color-accent);
    background-color: var(--color-bg-light);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    box-shadow: var(--shadow-premium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    min-width: 150px;
    z-index: 1010;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    color: var(--color-text-dark);
}

.lang-option:hover {
    background-color: var(--color-accent-light);
    color: var(--color-accent);
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-dark);
    z-index: 1020;
}

/* --- HERO SPLIT SECTION --- */
.hero-split-container {
    display: flex;
    height: 100vh;
    width: 100%;
    background: linear-gradient(135deg, #24252a 0%, #17181c 100%);
    padding-top: var(--header-height);
}

.hero-split-info {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 6% 0 8%;
    color: var(--color-text-light);
    position: relative;
    z-index: 10;
    background: transparent;
}

.hero-split-info h1 {
    font-size: 3.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    line-height: 1.25;
    color: var(--color-text-light);
}

.hero-split-info p {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--color-text-muted-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-split-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    height: calc(100% - var(--header-height) - 4rem);
    margin-top: calc(var(--header-height) + 1rem);
    margin-bottom: 3rem;
    margin-right: 3rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

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

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

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    opacity: 0;
    pointer-events: none;
}

.prev-arrow {
    left: 1.5rem;
    transform: translateY(-50%) translateX(-10px);
}

.next-arrow {
    right: 1.5rem;
    transform: translateY(-50%) translateX(10px);
}

.hero-split-slider:hover .slider-arrow {
    opacity: 0.8;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.hero-split-slider .slider-arrow:hover {
    opacity: 1;
    background-color: var(--color-accent);
    color: #1a1a1a;
    border-color: var(--color-accent);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Mobile responsive for arrows */
@media (max-width: 991px) {
    .slider-arrow {
        opacity: 0.7;
        pointer-events: auto;
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    .prev-arrow {
        left: 1rem;
        transform: translateY(-50%);
    }
    .next-arrow {
        right: 1rem;
        transform: translateY(-50%);
    }
    .hero-split-slider:hover .slider-arrow {
        opacity: 0.9;
    }
}

/* Premium Button CTA */
.btn-premium {
    display: inline-block;
    padding: 1rem 2.2rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background-color: var(--color-accent);
    color: #1a1a1a;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    transition: var(--transition-smooth);
    z-index: -1;
}

.btn-premium:hover {
    color: var(--color-accent);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-premium:hover::before {
    left: 0;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background-color: var(--color-accent);
    transform: scale(1.5);
}

/* --- HOME SECTIONS --- */
/* About Section */
.home-about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.home-about-img {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1f2937, #111827);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border-light);
}

/* Decorative visual background pattern representing loom threads */
.home-about-img::before {
    content: '';
    position: absolute;
    width: 80%;
    height: 80%;
    border: 1px solid var(--color-accent);
    opacity: 0.15;
}

.home-about-img-inner {
    width: 90%;
    height: 90%;
    background: linear-gradient(to right, rgba(197, 168, 128, 0.15) 1px, transparent 1px),
                linear-gradient(to bottom, rgba(197, 168, 128, 0.15) 1px, transparent 1px);
    background-size: 15px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 4rem;
}

.home-about-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-dark);
}

.home-about-info p {
    color: var(--color-text-muted-dark);
    margin-bottom: 2rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-dark);
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 0.3rem;
}

.btn-secondary:hover {
    color: var(--color-accent);
    padding-left: 0.5rem;
}

/* Features Grid */
.features-section {
    background-color: #f5f4f0;
}

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

.feature-card {
    background-color: var(--color-bg-surface);
    padding: 3rem 2rem;
    border-radius: 4px;
    border: 1px solid var(--color-border-light);
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-premium);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* --- CORPORATE PAGE --- */
.page-hero {
    height: 15vh;
    min-height: 120px;
    background: linear-gradient(rgba(15,15,16,0.8), rgba(15,15,16,0.85)), 
                radial-gradient(circle at top right, rgba(197,168,128,0.2) 0%, transparent 60%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-light);
    padding-top: var(--header-height);
}

.page-hero h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
}

.page-hero .breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted-light);
}

.breadcrumbs a:hover {
    color: var(--color-accent);
}

.corp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.corp-vision-mission {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.vision-mission-card {
    background-color: var(--color-bg-surface);
    padding: 3rem;
    border-radius: 4px;
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-soft);
}

.vision-mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.vision-mission-card p {
    color: var(--color-text-muted-dark);
}

/* --- REFERENCES --- */
.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.ref-card {
    background-color: var(--color-bg-surface);
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-muted-dark);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

.ref-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.ref-card:hover {
    color: var(--color-accent);
    border-color: var(--color-accent-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-premium);
}

.ref-card:hover::before {
    transform: scaleX(1);
}

.ref-card img {
    max-height: 82%;
    max-width: 95%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.ref-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- CAREER --- */
.career-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--color-border-light);
    background-color: var(--color-bg-surface);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

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

.file-input-wrapper {
    position: relative;
    display: block;
}

.file-input-wrapper input[type="file"] {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.file-input-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    border: 1px dashed var(--color-accent);
    border-radius: 4px;
    background-color: var(--color-accent-light);
    color: var(--color-accent);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.file-input-wrapper:hover .file-input-btn {
    background-color: var(--color-accent);
    color: #1a1a1a;
    border-style: solid;
}

.alert-success {
    background-color: #d1fae5;
    border: 1px solid #10b981;
    color: #065f46;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* --- CONTACT --- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
}

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

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--color-accent);
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-surface);
}

.contact-info-text h4 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-text p {
    color: var(--color-text-muted-dark);
}

.map-container {
    margin-top: 4rem;
    border: 1px solid var(--color-border-light);
    border-radius: 4px;
    overflow: hidden;
    height: 400px;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    padding: 80px 0 30px;
    border-top: 1px solid var(--color-border-dark);
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--color-accent);
    font-weight: 300;
}

.footer-about p {
    color: var(--color-text-muted-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1.5px;
    background-color: var(--color-accent);
}

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

.footer-links a {
    color: var(--color-text-muted-light);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 0.3rem;
}

.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--color-text-muted-light);
    font-size: 0.95rem;
}

.footer-contact-details p {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.footer-contact-details i {
    color: var(--color-accent);
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid var(--color-border-dark);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text-muted-light);
}

/* --- ANIMATIONS / TRANSITIONS --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 1024px) {
    .home-about-grid, .corp-grid, .career-container, .contact-container {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .section-padding {
        padding: 60px 0;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg-light);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition-smooth);
        border-top: 1px solid var(--color-border-light);
    }

    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .lang-selector {
        margin-top: 1rem;
    }

    .hero-split-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-split-info {
        flex: 1 0 auto;
        padding: 60px 6% 40px;
        border-right: none;
        border-bottom: 1px solid var(--color-border-dark);
    }
    
    .hero-split-info h1 {
        font-size: 2.4rem;
    }
    
    .hero-split-slider {
        flex: 0 0 45vh;
        width: calc(100% - 6rem);
        margin: 3rem;
        min-height: 300px;
        height: auto;
        border-radius: 12px;
    }

    .home-about-grid, .corp-grid, .career-container, .contact-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .home-about-img {
        order: -1;
    }

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

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

/* --- SHOWROOM PAGE --- */
.showroom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

.showroom-card {
    background-color: var(--color-bg-light);
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.showroom-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent);
    box-shadow: var(--shadow-premium);
}

.showroom-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background-color: #f3f2ee;
}

.showroom-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.showroom-card-info {
    padding: 1.5rem;
    text-align: center;
}

.showroom-card-info h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.showroom-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    color: var(--color-text-muted-dark);
    border: 2px dashed var(--color-border-light);
    border-radius: 4px;
    margin: 10px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}

.showroom-placeholder i {
    font-size: 2.5rem;
    color: var(--color-text-muted-dark);
}

/* --- LIGHTBOX MODAL --- */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 15, 16, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition-smooth);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--color-accent);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.lightbox-modal.active .lightbox-caption {
    opacity: 1;
    transform: translateY(0);
}
