/* =========================================
   CSS Variables & Theme
   ========================================= */
:root {
    /* Colors - Premium Light Theme */
    --bg-main: #ffffff;
    --bg-secondary: #f8f8fb;
    --bg-offer: #faf6f3;
    --text-main: #1a1a24;
    --text-muted: #6b6b7b;
    --accent-color: #796e62;
    --accent-hover: #5a5248;
    --brand-orange: #e47144;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(12px);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Roboto', sans-serif;

    /* Spacing & Utilities */
    --section-padding: 100px 5%;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 16px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

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

ul {
    list-style: none;
}

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

.section-padding {
    padding: var(--section-padding);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, var(--text-main), var(--text-muted));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* =========================================
   Glassmorphism Utilities
   ========================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-color);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* =========================================
   Navigation Bar
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 12px 5%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 54px;
    width: auto;
}

.nav-links ul {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s;
}

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

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

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

.nav-cta {
    background: var(--brand-orange);
    color: #ffffff;
    border: 1px solid var(--brand-orange);
    padding: 10px 24px;
    border-radius: 30px;
}

.nav-cta:hover {
    background: #ffffff;
    color: var(--brand-orange);
}

.nav-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.mobile-menu-btn:active {
    background: rgba(0,0,0,0.05);
}

.mobile-menu-btn span {
    width: 26px;
    height: 2px;
    background: var(--text-main);
    transition: 0.3s;
    display: block;
    border-radius: 2px;
}

/* ── Dropdown ── */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: inline-flex;
    align-items: center;
}

.dropdown-arrow {
    font-size: 0.65rem;
    margin-left: 4px;
    transition: transform 0.25s ease, opacity 0.25s;
    opacity: 0.7;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    opacity: 1;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    min-width: 120px;
    padding: 6px;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 200;
    list-style: none;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #fff;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(228, 113, 68, 0.08);
    color: var(--brand-orange);
}

/* =========================================
   Scroll Reveal Animations
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 8s linear;
    transform: scale(1.05);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(1.9rem, 6vw, 3rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    color: #f5ede4;
}

.hero p {
    font-size: clamp(1.05rem, 3.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
    padding: 0 8px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--accent-color);
    color: #ffffff;
}

.prev-btn { left: 40px; }
.next-btn { right: 40px; }

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: var(--accent-color);
    width: 28px;
    border-radius: 10px;
}

/* =========================================
   Gallery Section
   ========================================= */
.gallery-section {
    background-color: var(--bg-main);
    color: var(--text-main);
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-main-title {
    color: #1a1a24;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.gallery-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.divider-line {
    height: 2px;
    width: 60px;
    background-color: var(--brand-orange);
}

.divider-circle {
    width: 12px;
    height: 12px;
    border: 2px solid var(--brand-orange);
    border-radius: 50%;
    background-color: transparent;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.gallery-tab {
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    padding-bottom: 10px;
    position: relative;
    transition: color 0.3s ease;
}

.gallery-tab:hover { color: var(--brand-orange); }
.gallery-tab.active { color: var(--brand-orange); }

.gallery-tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--brand-orange);
    z-index: 2;
}

.tab-divider {
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    background-color: #fff;
}

.gallery-item.hidden { display: none; }

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background-color: #f0ece8;
    will-change: transform;
}

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

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-overlay .material-symbols-outlined {
    background-color: #ffffff;
    color: #000000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.gallery-item:hover .hover-overlay { opacity: 1; }

.gallery-item:hover .hover-overlay .material-symbols-outlined {
    transform: scale(1);
}

/* =========================================
   About Section
   ========================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.highlight-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.animated-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    padding-left: 30px;
    color: var(--text-main);
    font-weight: 500;
}

.animated-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: transform 0.3s;
}

.animated-list li:hover::before {
    transform: translateX(5px);
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    padding: 10px;
}

.image-wrapper img {
    border-radius: calc(var(--border-radius) - 5px);
    width: 100%;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--accent-color);
    color: #ffffff;
    padding: 30px;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    animation: bounce 3s infinite ease-in-out;
}

.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* =========================================
   Factories Section
   ========================================= */
.factory-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.factory-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
}

.factory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    height: 360px;
    overflow: hidden;
    background: #111;
}

.factory-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.factory-card:hover .factory-video {
    transform: scale(1.03);
}

.video-controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.factory-card:hover .video-controls {
    opacity: 1;
    transform: translateY(0);
}

.v-control-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v-control-btn:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    transform: scale(1.1);
}

.v-control-btn .material-symbols-outlined { font-size: 20px; }

.factory-info {
    position: relative;
    padding: 28px 32px;
    background: #fff;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    z-index: 3;
    margin-top: 0;
    border-top: 3px solid var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.factory-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 6px;
}

.factory-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.factory-card .factory-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--brand-orange);
    border-radius: 0 0 0 var(--border-radius);
}

/* ── Factory Row Layout ── */
.factory-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
    margin-bottom: 40px;
    background: #fff;
    width: 100%;
    max-width: 100%;
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.3s ease;
}

.factory-row:last-child { margin-bottom: 0; }

.factory-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.13);
}

.factory-row .factory-row-video { order: 1; }
.factory-row .factory-row-info {
    order: 2;
    border-left: 4px solid var(--brand-orange);
    border-right: none;
}

.factory-row.reverse { transform: translateX(60px); }
.factory-row.reverse .factory-row-video { order: 2; }
.factory-row.reverse .factory-row-info {
    order: 1;
    border-left: none;
    border-right: 4px solid var(--brand-orange);
}

.factory-row.visible {
    opacity: 1;
    transform: translateX(0);
}

.factory-row.reverse.visible {
    opacity: 1;
    transform: translateX(0);
}

.factory-row-video {
    position: relative;
    overflow: hidden;
    background: #111;
    height: 400px;
}

.factory-row-video .factory-video {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.factory-row:hover .factory-row-video .factory-video {
    transform: scale(1.03);
}

.factory-row-video .video-controls {
    position: absolute;
    bottom: 16px;
    right: 16px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.factory-row:hover .factory-row-video .video-controls {
    opacity: 1;
    transform: translateY(0);
}

/* ── Fullscreen Button on Factory Videos ── */
.video-fullscreen-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 10;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(6px) scale(0.9);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.video-fullscreen-btn .material-symbols-outlined {
    font-size: 22px;
    line-height: 1;
}

.factory-row-video:hover .video-fullscreen-btn {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.video-fullscreen-btn:hover {
    background: var(--brand-orange);
    transform: translateY(0) scale(1.1) !important;
}

.video-fullscreen-btn:active {
    transform: scale(0.95) !important;
}

.factory-row-info {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.factory-tag {
    display: inline-block;
    background: var(--brand-orange);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    width: fit-content;
}

.factory-row-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.factory-row-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.factory-row-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.92rem;
}

.factory-row-meta span .material-symbols-outlined {
    font-size: 18px;
    color: var(--brand-orange);
}

.factory-row-info p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.8;
}

.factory-row-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand-orange);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.3s ease;
}

.factory-row-link .material-symbols-outlined {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.factory-row-link:hover .material-symbols-outlined {
    transform: translateX(4px);
}

/* =========================================
   What We Offer Section
   ========================================= */
.offer-section {
    background-color: var(--bg-main);
    color: var(--text-main);
}

.offer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-top: 40px;
}

.offer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.offer-separator {
    width: 1px;
    background-color: rgba(0, 0, 0, 0.2);
    align-self: stretch;
}

.offer-col-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.offer-col-link:hover {
    transform: translateY(-5px);
}

.offer-category-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.offer-main-icon { margin-bottom: 30px; }

.xl-icon {
    font-size: 80px;
    color: var(--text-main);
    display: block;
}

.offer-icons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.offer-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
    color: var(--brand-orange);
    transition: var(--transition-smooth);
    font-weight: 500;
    font-size: 0.9rem;
    min-height: 115px;
}

.offer-icon-item .material-symbols-outlined {
    font-size: 40px;
    color: var(--brand-orange);
}

.offer-icon-item span {
    color: var(--text-muted);
}

.offer-icon-item:hover {
    transform: scale(1.1);
}

.offer-icon-item:hover span {
    color: var(--brand-orange);
}

/* ── Custom Offer Icons ── */
.offer-custom-icon {
    width: 44px;
    height: 44px;
    object-fit: contain;
    margin-bottom: 8px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.offer-icon-item:hover .offer-custom-icon {
    transform: scale(1.15) translateY(-4px);
    filter: drop-shadow(0 6px 10px rgba(224, 123, 57, 0.45));
}

.offer-icon-item span {
    color: var(--brand-orange, #e07b39);
    transition: color 0.3s ease;
}

.offer-icon-item:hover span {
    color: #c96527;
}

/* ── Offer Image Icons ── */
.offer-img-wrap {
    width: 80px;
    height: 80px;
    border-radius: 14px;
    overflow: hidden;
    margin: 0 auto 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.offer-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.offer-img-wrap i {
    font-size: 36px;
    color: var(--brand-orange, #e07b39);
    transition: transform 0.35s ease, color 0.35s ease;
}

.offer-icon-item:hover .offer-img-wrap {
    border-color: var(--brand-orange, #e07b39);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(224, 123, 57, 0.25);
}

.offer-icon-item:hover .offer-img-wrap img { transform: scale(1.08); }
.offer-icon-item:hover .offer-img-wrap i {
    transform: scale(1.15);
    color: var(--brand-orange, #e07b39);
}

/* =========================================
   Clients Section
   ========================================= */
.clients-section {
    background-color: var(--bg-main);
    overflow: hidden;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track img {
    height: 80px;
    object-fit: contain;
    margin: 0 40px;
    opacity: 1;
    transition: var(--transition-smooth);
}

.marquee-track img:hover { transform: scale(1.1); }

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

/* ── Clients Static Grid ── */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px 30px;
    margin-top: 50px;
    align-items: center;
}

.client-logo-item {
    flex: 0 0 calc(25% - 30px);
    display: flex;
    justify-content: center;
    min-width: 150px;
}

.client-logo-item img {
    max-width: 220px;
    max-height: 110px;
    width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo-item.wide-logo img {
    max-width: 320px;
    max-height: 150px;
    transform: scale(1.3);
}

.client-logo-item.wide-logo:hover img { transform: scale(1.4); }
.client-logo-item:hover img { transform: scale(1.08); }

/* =========================================
   Contact Section
   ========================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.detail-item:hover .icon {
    background: var(--brand-orange);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(228, 113, 68, 0.35);
}

.detail-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.detail-item p { color: var(--text-muted); }

.glass-form { padding: 40px; }

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: -12px;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.submit-btn {
    width: 100%;
    margin-top: 10px;
}

/* ── Form feedback ── */
.form-status {
    margin-top: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    min-height: 24px;
    text-align: center;
}

.form-status.success { color: #2e7d32; }
.form-status.error { color: #c62828; }

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--bg-secondary);
    padding: 80px 5% 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
}

.footer-brand .footer-logo {
    height: 50px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-bottom: 20px;
    max-width: 350px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.social-links a:hover {
    background: var(--brand-orange);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(228, 113, 68, 0.35);
}

.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul li { margin-bottom: 12px; }

.footer-links ul li a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.footer-links ul li a:hover { color: var(--accent-color); }

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   Our Work — Showcase Grid
   ========================================= */
.gallery-marquee-section {
    padding: 70px 0 60px;
    background-color: var(--bg-main);
    position: relative;
}

.gallery-marquee-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gallery-marquee-section .section-header h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 18px;
}

.gallery-marquee-section .section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--brand-orange, #e07b39);
    border-radius: 2px;
}

.gallery-marquee-section .section-header p {
    margin-top: 14px;
    font-size: 1rem;
    color: var(--text-muted, #888);
    letter-spacing: 0.5px;
}

/* ── 4-card marquee with labels ── */
.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 8px 0;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main, #fff) 20%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main, #fff) 20%, transparent 100%);
}

.marquee-row {
    overflow: visible;
    width: 100%;
}

.marquee-inner {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    padding: 6px 0 16px;
    animation: marqueeLeft 40s linear infinite;
}

.marquee-row:hover .marquee-inner {
    animation-play-state: paused;
}

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

/* ── Card ── */
.marquee-card {
    flex-shrink: 0;
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
                box-shadow 0.35s ease;
    /* Reset anchor styles when used as <a> */
    text-decoration: none;
    color: inherit;
    display: block;
}

.marquee-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.13),
                0 0 0 2px var(--brand-orange, #e07b39);
}

.marquee-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e8e0d8;
}

.marquee-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.marquee-card:hover .marquee-card-img img {
    transform: scale(1.07);
}

/* ── Label ── */
.marquee-card-label {
    padding: 12px 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.marquee-card-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-orange, #e07b39);
}

.marquee-card-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
}

/* =========================================
   Animations & Keyframes
   ========================================= */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.left { transform: translateX(-50px); }
.reveal.left.visible { transform: translateX(0); }
.reveal.right { transform: translateX(50px); }
.reveal.right.visible { transform: translateX(0); }

.animated-list li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.animated-list.visible li {
    opacity: 1;
    transform: translateX(0);
}

.animated-list.visible li:nth-child(1) { transition-delay: 0.1s; }
.animated-list.visible li:nth-child(2) { transition-delay: 0.2s; }
.animated-list.visible li:nth-child(3) { transition-delay: 0.3s; }
.animated-list.visible li:nth-child(4) { transition-delay: 0.4s; }
.animated-list.visible li:nth-child(5) { transition-delay: 0.5s; }

/* =========================================
   Splash Screen
   ========================================= */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-main);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.splash-logo {
    width: 200px;
    height: auto;
    animation: zoomOutSplash 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes zoomOutSplash {
    0% { transform: scale(2.5); opacity: 0; }
    30% { opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* =========================================
   Projects Page - Banner & Modal
   ========================================= */
.page-banner {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    margin-top: 80px;
    color: #ffffff;
}

.page-banner h1 { font-size: 3.5rem; margin-bottom: 15px; }
.page-banner p { font-size: 1.2rem; opacity: 0.9; }

.cursor-zoom { cursor: zoom-in; }

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.modal-content {
    max-width: 90%;
    max-height: 80vh;
    animation: zoomIn 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

@keyframes zoomIn {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10000;
}

.close-modal:hover { color: var(--brand-orange); }

.modal-prev,
.modal-next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.3s;
    user-select: none;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 4px;
    z-index: 10000;
}

.modal-prev { left: 20px; }
.modal-next { right: 20px; }
.modal-prev:hover, .modal-next:hover { background-color: var(--brand-orange); }

/* =========================================
   Media Loaders
   ========================================= */
.media-loading-wrap {
    position: relative;
    background-color: #f5f5f5;
    overflow: hidden;
}

.media-loading-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border: 3px solid rgba(228, 113, 68, 0.2);
    border-top-color: var(--brand-orange);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 1;
}

.media-loading-wrap img,
.media-loading-wrap iframe,
.media-loading-wrap video {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    position: relative;
    z-index: 2;
}

.media-loading-wrap.loaded::before {
    display: none;
}

.media-loading-wrap.loaded img,
.media-loading-wrap.loaded iframe,
.media-loading-wrap.loaded video {
    opacity: 1;
}

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


/* ╔══════════════════════════════════════════════════════
   ║  RESPONSIVE DESIGN — TABLET & MOBILE
   ╚══════════════════════════════════════════════════════ */

/* ── Large Tablet (≤1024px) ── */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid {
        gap: 40px;
    }

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

    .client-logo-item {
        flex: 0 0 calc(33.333% - 30px);
    }
}

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
    .factory-row {
        grid-template-columns: 1fr;
    }

    .factory-row .factory-row-video,
    .factory-row.reverse .factory-row-video {
        order: 1;
        height: 280px;
    }

    .factory-row-video .factory-video {
        height: 280px;
    }

    .factory-row .factory-row-info,
    .factory-row.reverse .factory-row-info {
        order: 2;
        border-left: 4px solid var(--brand-orange);
        border-right: none;
        padding: 32px 28px;
    }

    .marquee-card {
        width: 230px;
    }

    .marquee-wrapper::before,
    .marquee-wrapper::after {
        width: 60px;
    }

    .gallery-marquee-section {
        padding: 60px 0 50px;
    }

    .client-logo-item {
        flex: 0 0 calc(33.333% - 30px);
    }
}

/* ── Mobile (≤768px) ── */
@media (max-width: 768px) {
.nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 280px;
        height: 100vh;
        background: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: -4px 0 30px rgba(0,0,0,0.1);
        transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

.nav-links ul {
        flex-direction: column;
        gap: 0;
        padding: 0 36px;
    }

    .nav-links ul li {
        border-bottom: 1px solid rgba(0,0,0,0.07);
    }

    .nav-links ul li:last-child {
        border-bottom: none;
        margin-top: 28px;
    }

    .nav-links ul li .nav-link {
        display: block;
        padding: 18px 0;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-main);
        transition: color 0.2s ease;
    }

    .nav-links ul li .nav-link:hover {
        color: var(--brand-orange);
    }

.nav-dropdown {
        border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    }

    .dropdown-menu {
        position: static !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none !important;
        background: transparent !important;
        padding: 0 0 12px 12px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        min-width: unset !important;
    }

    .dropdown-menu::before {
        display: none !important;
    }

    .dropdown-menu li {
        border-bottom: none !important;
    }

    .dropdown-menu li a {
        padding: 7px 0 !important;
        font-size: 0.88rem !important;
        color: var(--text-muted) !important;
        font-weight: 400 !important;
        border-radius: 0 !important;
    }

    .dropdown-menu li a:hover {
        color: var(--brand-orange) !important;
        background: transparent !important;
    }

    .dropdown-arrow {
        display: none !important;
    }

    .dropdown-toggle {
        color: var(--text-main) !important;
        font-weight: 500 !important;
    }

    .nav-cta {
        display: block;
        text-align: center;
        background: var(--brand-orange) !important;
        color: #fff !important;
        border: none !important;
        border-radius: 50px !important;
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
        font-weight: 600 !important;
    }

    /* Dropdown inline */
    .dropdown-menu {
        position: static;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin: 0;
    }

    .dropdown-menu::before { display: none; }

    .dropdown-menu li { border-bottom: none; }

    .dropdown-menu li a {
        padding: 10px 0;
        font-size: 0.95rem;
        color: var(--text-muted);
        display: block;
    }

    .dropdown-menu li a:hover {
        color: var(--brand-orange);
        background: transparent;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* Overlay when nav is open */
    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.35);
        z-index: 998;
    }

    /* ── Hero ── */
    .hero-title {
        font-size: clamp(1.4rem, 5vw, 2rem);
        letter-spacing: 0.5px;
    }

    .hero p { font-size: 0.95rem; }

    .prev-btn { left: 16px; }
    .next-btn { right: 16px; }

    .carousel-btn {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    /* ── Section headers ── */
    .section-header h2 { font-size: 2rem; }
    .section-header { margin-bottom: 40px; }

    /* ── Offer section ── */
    .offer-grid {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .offer-separator {
        width: 80%;
        height: 1px;
        background-color: rgba(0, 0, 0, 0.12);
        margin: 36px 0;
        align-self: center;
    }

    .offer-column { width: 100%; }

    .offer-category-title { font-size: 1.5rem; }

    .offer-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 10px;
    }

    .offer-icon-item {
        font-size: 0.78rem;
        min-height: 90px;
        gap: 6px;
    }

    .offer-custom-icon {
        width: 36px;
        height: 36px;
    }

    /* ── Factory rows ── */
    .factory-row {
        border-radius: 14px;
        margin-bottom: 28px;
    }

    .factory-row-info {
        padding: 28px 24px;
        gap: 12px;
    }

    .factory-row-info h3 { font-size: 1.4rem; }
    .factory-row-info p { font-size: 0.92rem; }

    /* ── About ── */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image { order: -1; }

    .about-text h2 { font-size: 1.9rem; }

    /* ── Contact ── */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 { font-size: 2.2rem; }

    .glass-form { padding: 28px 24px; }

    /* ── Gallery grid ── */
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-tabs { gap: 20px; }

    /* ── Clients ── */
    .client-logo-item {
        flex: 0 0 calc(33.333% - 20px);
        min-width: 100px;
    }

    .clients-grid {
        gap: 36px 20px;
        margin-top: 36px;
    }

    /* ── Footer ── */
    .footer {
        padding: 60px 4% 28px;
    }

    .footer-grid {
        flex-direction: column;
        gap: 36px;
    }

    .footer-brand p { max-width: 100%; }

    /* ── Page banner ── */
    .page-banner {
        background-attachment: scroll; /* Fix parallax on mobile */
        min-height: 280px;
        height: 45vh;
    }

    .page-banner h1 { font-size: 2.2rem; }
    .page-banner p { font-size: 1rem; }

    /* ── Modal ── */
    .close-modal { right: 20px; font-size: 32px; }
    .modal-prev { left: 8px; padding: 12px; }
    .modal-next { right: 8px; padding: 12px; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {
    :root {
        --section-padding: 60px 4%;
    }

    /* ── Hero ── */
    .hero-buttons { flex-direction: column; align-items: center; }

    .carousel-btn { display: none; }

    .hero-title { font-size: clamp(1.2rem, 6vw, 1.6rem); }

    /* ── Experience badge ── */
    .experience-badge {
        width: 100px;
        height: 100px;
        padding: 15px;
        left: -10px;
        bottom: -10px;
    }

    .experience-badge .number { font-size: 1.5rem; }

    /* ── Offer icons ── */
    .offer-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px 6px;
    }

    .offer-icon-item {
        font-size: 0.7rem;
        min-height: 80px;
    }

    .offer-custom-icon {
        width: 30px;
        height: 30px;
    }

    .offer-category-title { font-size: 1.3rem; }

    /* ── Section headers ── */
    .section-header h2 { font-size: 1.7rem; }
    .gallery-main-title { font-size: 2rem; }

    /* ── Gallery marquee ── */
    .marquee-card { width: 180px; }
    .marquee-wrapper::before,
    .marquee-wrapper::after { width: 30px; }
    .gallery-marquee-section { padding: 50px 0 40px; }

    /* ── Clients ── */
    .client-logo-item {
        flex: 0 0 calc(50% - 16px);
        min-width: unset;
    }

    .clients-grid { gap: 28px 16px; }

    /* ── Contact ── */
    .contact-info h2 { font-size: 1.9rem; }
    .glass-form { padding: 20px 16px; }
    .detail-item { gap: 14px; }
    .detail-item h4 { font-size: 1rem; }

    /* ── Factory rows ── */
    .factory-row-info { padding: 22px 18px; }
    .factory-row-info h3 { font-size: 1.2rem; }

    /* ── Footer ── */
    .footer { padding: 48px 4% 24px; }

    .social-links a {
        width: 38px;
        height: 38px;
    }

    /* ── Splash ── */
    .splash-logo { width: 160px; }

    /* ── Nav logo ── */
    .logo img { height: 44px; }
}

/* ── Extra small (≤360px) ── */
@media (max-width: 360px) {
    .offer-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px 4px;
    }

    .offer-icon-item { font-size: 0.64rem; }
    .offer-custom-icon { width: 26px; height: 26px; }

    .client-logo-item { flex: 0 0 calc(50% - 12px); }

    .contact-info h2 { font-size: 1.6rem; }

    .factory-row-info h3 { font-size: 1.1rem; }
}