﻿html, body { width: 100%; overflow-x: hidden; }
:root {
    --moonlit-fog: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 30% 70%, rgba(176, 196, 222, 0.15) 0%, transparent 50%),
                    linear-gradient(135deg, #2c3e50 0%, #3a506b 25%, #435e79 50%, #516b87 75%, #5f7995 100%);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.85);
    --text-dark: #ffffff;
    --bg-canvas: transparent;
    --primary-color: #E0E0E0; /* Moonlit Silver instead of Orange */
    --primary-hover: #ffffff;
}

body {
    background: #2c3e50; /* Fallback */
    background-image: var(--moonlit-fog) !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Removed fixed attachment for performance */
    color: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    touch-action: manipulation;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Global Reveal Safety */
.js-enabled .reveal-item {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

/* Touch-friendly buttons and links */
a,
button,
input,
select,
textarea {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}

/* Minimum touch target size (44x44px recommended by Apple/Google) */
button,
.btn,
a.btn,
input[type="submit"],
input[type="button"] {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 24px;
}

/* Prevent text selection on buttons */
button,
.btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Responsive images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive iframes and embeds */
iframe,
embed,
object,
video {
    max-width: 100%;
    height: auto;
}

/* Container responsive padding */
.container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

/* ===== LOADING SCREEN ===== */
/* Classic Spinning Circle Loader */

.loader {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px); /* Reduced for performance */
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    animation: fadeInUp 0.8s ease;
}

.loading-logo {
    margin-bottom: 2rem;
}

.loading-logo img {
    width: 200px;
    height: auto;
    animation: pulse 2s ease-in-out infinite;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.loading-spinner {
    margin: 2rem 0;
}

.spinner {
    width: 100px;
    height: 50px;
    margin: 0 auto;
    position: relative;
}

.loading-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin-top: 1rem;
    animation: textPulse 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }

    40% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.8;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

@keyframes textPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

/* ===== COLOR VARIABLES & THEMES ===== */
/* ===== DESIGN SYSTEM & COLOR TOKENS ===== */
:root {
    --navbarfonts: 'Outfit', sans-serif;

    /* 🎨 RGB COMPONENTS (For Opacity Control) */
    --gold-rgb: 224, 224, 224;
    --navajo-rgb: 235, 217, 189;
    --black-rgb: 17, 17, 17;
    --white-rgb: 255, 255, 255;

    /* 🎨 BASE PALETTE */
    --white: #FFFFFF;
    --black: #111111;
    --dark-grey: #202020;
    --medium-grey: #5A5A5A;
    --light-grey: #8A8A8A;
    --faint-grey: #F5F5F5;

    /* 🎨 BRAND COLORS (NAVAJO & GOLD) */
    --navajo-white: #ffffff;
    --champagne: #f0f0f0;
    --warm-peach: #e0e0e0;
    /* 🎨 BRAND COLORS (MOONLIT SILVER EDITION) */
    --silver-primary: #E0E0E0; /* Moonlit Silver */
    --gold-hover: #ffffff;
    --gold-deep: #a0a0a0;
    --gold-bronze: #d0d0d0;
    --gold-border: rgba(255, 255, 255, 0.15);
    --gold-divider: rgba(255, 255, 255, 0.1);

    /* 🎨 RGB HELPERS FOR TRANSPARENCY */
    --white-rgb: 255, 255, 255;
    --black-rgb: 17, 17, 17;
    --gold-rgb: 224, 224, 224;

    /* 🎨 SEMANTIC THEME VARIABLES */
    --bg-main: transparent;
    --bg-secondary: transparent;
    --bg-section: transparent;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-hover: rgba(255, 255, 255, 0.1);
    --bg-canvas: transparent;
    --bg-primary: transparent;

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-white: #ffffff;
    --text-dark: #ffffff;
    --text-accent: #E0E0E0;

    --primary-color: #E0E0E0;
    --primary-hover: var(--gold-hover);
    --primary-light: var(--navajo-white);
    --primary-dark: var(--gold-deep);

    --navbar-bg: rgba(255, 255, 255, 0.05);
    --navbar-text: #ffffff;
    --navbar-hover: #E0E0E0;
    --header-bg: transparent;

    --dropdown-bg: rgba(20, 20, 20, 0.95);
    --dropdown-hover: rgba(255, 255, 255, 0.1);
    --dropdown-border: rgba(255, 255, 255, 0.1);
    --overlay-bg: rgba(0, 0, 0, 0.85);

    --border: rgba(255, 255, 255, 0.1);
    --divider: rgba(255, 255, 255, 0.05);
    --border-color: var(--border);

    --footer-bg: transparent;
    --footer-text: rgba(255, 255, 255, 0.8);
    --footer-link: rgba(255, 255, 255, 0.6);
    --footer-hover: #E0E0E0;

    /* ✨ EFFECTS & ELEVATION */
    --glass-bg: rgba(var(--white-rgb), 0.1);
    --glass-border: rgba(var(--gold-border), 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 8px 25px rgba(var(--gold-rgb), 0.3);

    --success: #6FBF73;
    --error: #E57373;

    /* UTILITY CLASSES MAPPED TO ROOT */
    --text-accent-color: #E0E0E0;
    --card-bg: var(--bg-card);
}

.text-accent {
    color: var(--text-accent-color) !important;
}

.bg-accent {
    background-color: #E0E0E0 !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--moonlit-fog) !important;
    background-blend-mode: soft-light, screen, normal;
    
    color: var(--text-primary);
    transition: background 0.4s ease, color 0.4s ease;
    margin: 0;
}

/* ===== BUTTONS (ORIGINAL COLORS) ===== */
.btn-primary {
    background-color: #E0E0E0 !important;
    color: var(--black) !important;
    box-shadow: var(--shadow-gold);
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-light) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent !important;
    color: #E0E0E0 !important;
    border: 2px solid #E0E0E0 !important;
    border-radius: 6px;
    padding: 12px 28px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-outline:hover {
    background: #E0E0E0 !important;
    color: var(--black) !important;
}


h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
}

h3,
h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

h4 {
    font-size: 1.25rem;
    font-weight: 500;
}

h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

p,
li,
span,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #ffffff !important; /* Force white for legibility */
}

p {
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* ===== LINKS ===== */
a {
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-align: center !important;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn * {
    text-align: center !important;
}

.btn>i,
.btn>span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    text-align: center !important;
}

.btn span {
    text-align: center !important;
    display: inline-block !important;
    margin: 0;
    padding: 0;
}

.btn-primary {
    background-color: #E0E0E0;
    color: #111111 !important;
    /* Dark text on light background for readability */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--black) !important;
}

.btn-outline {
    background-color: transparent;
    color: #E0E0E0 !important;
    border: 2px solid #E0E0E0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-outline:hover {
    background-color: #E0E0E0;
    color: #111111 !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--header-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
}

.navbar {
    padding: 1.2rem 0;
    position: relative;
    overflow: visible;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    overflow: visible;
}

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



.logo-text {
    font-size: 1.5rem;
    font-family: var(--navbarfonts);
    font-weight: 700;
    background: var(--text-dark);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.logo-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #E0E0E0;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-text:hover::before {
    opacity: 1;
}

.logo-text:hover {
    transform: translateY(-1px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #E0E0E0;
}

.nav-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

/* ===== DROPDOWN MENU ===== */
.dropdown {
    position: relative;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 15, 15, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--dropdown-border);
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
    list-style: none;
    padding: 1rem 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
}

/* ===== DROPDOWN SUBMENU (ÜRÜNLERİMİZ) ===== */

/* Genel stil (mobil + desktop için temel) */
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Ana kategori satırı (Tavan Sistemleri, Kapı Sistemleri, Duvar Lambrisi) */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu>a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding-right: 1.5rem;
    /* sağdaki oka yer kalsın */
}

.dropdown-submenu>a i {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Masaüstü için: yan tarafa açılan menü */
@media (min-width: 769px) {
    .dropdown-submenu>.submenu {
        position: absolute;
        top: 0;
        left: 100%;
        background: rgba(15, 15, 15, 0.9);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        min-width: 220px;
        max-width: 280px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--dropdown-border);
        border-radius: 12px;
        opacity: 0;
        visibility: hidden;
        transform: translateX(10px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
        padding: 0.5rem 0;
        margin: 0;
        margin-left: 4px;
        list-style: none;
        z-index: 1002;
    }

    /* Ekranın sağına yaklaştığında menüyü sola aç */
    .dropdown-submenu:last-child>.submenu,
    .dropdown-submenu:nth-last-child(-n+2)>.submenu {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 4px;
        transform: translateX(-10px);
    }

    .dropdown-submenu:hover>.submenu {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .dropdown-submenu:last-child:hover>.submenu,
    .dropdown-submenu:nth-last-child(-n+2):hover>.submenu {
        transform: translateX(0);
    }

    /* 3. seviye ve sonrası menüleri aşağıya aç (taşmayı önle) */
    .dropdown-submenu .submenu .dropdown-submenu {
        position: relative;
    }

    .dropdown-submenu .submenu .dropdown-submenu>.submenu {
        top: 0;
        left: 100%;
        margin-left: 4px;
        max-width: 250px;
    }

    /* Eğer sağa taşacaksa, sola aç */
    .dropdown-submenu .submenu .dropdown-submenu:last-child>.submenu,
    .dropdown-submenu .submenu .dropdown-submenu:nth-last-child(-n+2)>.submenu {
        left: auto;
        right: 100%;
        margin-left: 0;
        margin-right: 4px;
        transform: translateX(-10px);
    }

    .dropdown-submenu .submenu .dropdown-submenu:last-child:hover>.submenu,
    .dropdown-submenu .submenu .dropdown-submenu:nth-last-child(-n+2):hover>.submenu {
        transform: translateX(0);
    }

    /* Submenu (sağa kaydırma) */
    .dropdown-submenu .submenu a {
        padding: 1rem 1.5rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

}

/* ===== NAV ACTIONS ===== */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Mobile menu button - responsive */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        min-width: 44px;
        min-height: 44px;
        padding: 8px;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 25px;
        height: 2px;
        background-color: var(--text-dark);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }

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

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

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

    .search-btn {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .nav-actions {
        gap: 0.75rem;
    }

    /* MOBILE NAVIGATION EXPLICIT FIXES */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.6);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 4rem 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--black) !important;
        text-transform: uppercase;
        letter-spacing: 2px;
        justify-content: center;
        padding: 1rem;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        padding-left: 1rem;
        border-left: 2px solid #E0E0E0;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }

    .dropdown-submenu>.submenu {
        position: static;
        width: 100%;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-left: 2px solid rgba(255, 255, 255, 0.5);
        padding-left: 1rem;
        margin-top: 10px;
    }

    .dropdown-submenu:hover>.submenu {
        display: block;
    }
}

@media (min-width: 1025px) {
    .mobile-menu-btn {
        display: none !important;
    }

    .nav-menu {
        display: flex !important;
    }
}

.language-switcher {
    position: relative;
    display: inline-block;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-toggle {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--text-dark);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 60px;
    justify-content: center;
}

.language-toggle:hover {
    background-color: #E0E0E0;
    color: var(--text-dark);
    border-color: #E0E0E0;
}

.language-toggle i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-toggle i {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 6px;
    box-shadow: var(--shadow);
    min-width: 80px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}


.language-dropdown.active .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-menu .lang-btn {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    border: none;
    background-color: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}


.language-menu .lang-btn:last-child {
    border-bottom: none;
}

.language-menu .lang-btn:hover,
.language-menu .lang-btn.active {
    background-color: #E0E0E0;
    color: var(--text-dark);
}


.search-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: var(--light-gray);
    color: #E0E0E0;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    background-color: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
}


.search-form {
    display: flex;
    gap: 1rem;
}

.search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    background-color: var(--card-bg);
    color: var(--text-dark);
}

.search-input:focus {
    border-color: #E0E0E0;
}



.search-submit {
    padding: 1rem 1.5rem;
    background-color: #E0E0E0;
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background-color: var(--primary-dark);
}

.search-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== MODERN HERO SECTION ===== */
.hero-modern {
    position: relative;
    min-height: 90vh;
    padding: 8rem 0 6rem;
    margin-top: 80px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-modern-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-canvas);
    z-index: 0;
}

.hero-modern-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.hero-modern .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

.hero-modern-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: #E0E0E0;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);

}

.hero-modern-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-modern-title span {
    display: block;
    background: linear-gradient(135deg, #E0E0E0 0%, #FFF0DB 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-modern-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-modern-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 100px;
    white-space: nowrap;
}

.hero-feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-feature-item i {
    color: #E0E0E0;
    font-size: 1.1rem;
}

.hero-feature-item span {
    text-align: center;
    position: relative;
    top: 5px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.hero-modern-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-cta-primary {
    background: #E0E0E0;
    color: #111111 !important;
    border: 1px solid #E0E0E0;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.hero-cta-primary span,
.hero-cta-primary i {
    color: #111111 !important;
}

.hero-cta-primary:hover {
    background: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    color: var(--bg-primary) !important;
}

.hero-cta-primary:hover span,
.hero-cta-primary:hover i {
    color: #000000 !important;
}

.hero-cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #E0E0E0 !important;
    border: 1px solid rgba(255, 255, 255, 0.3);

}

.hero-cta-secondary span,
.hero-cta-secondary i {
    color: #E0E0E0 !important;
}

.hero-cta-secondary:hover {
    background: #E0E0E0;
    color: var(--bg-primary) !important;
    border-color: #E0E0E0;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
}

.hero-cta-secondary:hover span,
.hero-cta-secondary:hover i {
    color: var(--bg-primary) !important;
}

.hero-modern-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

.hero-visual-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    aspect-ratio: 4/3;
}

.hero-visual-card img {

    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #E0E0E0;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;

}

.hero-visual-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
}


.scroll-arrow {
    color: #E0E0E0;
    font-size: 1.2rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-modern .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    .hero-modern-visual {
        order: -1;
    }

    .hero-modern-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
    }
}

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero-modern-features {
        gap: 1rem;
    }

    .hero-feature-item {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    .hero-modern-actions {
        flex-direction: column;
    }

    .hero-cta-primary,
    .hero-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: 1920px 1080px;
    background-position: center;
    background-repeat: no-repeat;
    
    filter: brightness(0.8) contrast(1.3) saturate(1.15);
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.7), rgba(51, 51, 51, 0.5));
    z-index: 1;
}


.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    padding: 2rem 0;
}

.hero-content .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

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

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title .title-line {
    display: block;
    color: var(--text-dark);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-dark);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.9;
}



.hero-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.hero-prev {
    position: absolute;
    left: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-next {
    position: absolute;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--text-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-prev:hover,
.hero-next:hover {
    background: #E0E0E0;
    border-color: #E0E0E0;
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.hero-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator:hover {
    background: #E0E0E0;
    transform: scale(1.2);
}

.indicator.active {
    background: var(--card-bg);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 3;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.scroll-indicator:hover {
    color: #E0E0E0;
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: #E0E0E0;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.scroll-indicator span {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, #E0E0E0, transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* ===== HERO TWO COLUMN SECTION ===== */
.hero-two-column-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

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

.hero-column-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-column-paragraph {
    font-family: 'Lato', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

.hero-column-divider {
    width: 2px;
    height: 100%;
    min-height: 400px;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent 100%);
    position: relative;
}

.hero-column-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.4) 50%,
            rgba(255, 255, 255, 0.2) 100%);
}

.hero-column-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.hero-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.hero-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

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

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

/* Responsive Design for Hero Two Column */
@media (max-width: 1024px) {
    .hero-two-column-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-column-divider {
        width: 100%;
        height: 2px;
        min-height: 2px;
        background: linear-gradient(to right,
                transparent 0%,
                rgba(255, 255, 255, 0.3) 20%,
                rgba(255, 255, 255, 0.5) 50%,
                rgba(255, 255, 255, 0.3) 80%,
                transparent 100%);
    }

    .hero-column-divider::before {
        width: 100%;
        height: 1px;
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        background: linear-gradient(to right,
                rgba(255, 255, 255, 0.2) 0%,
                rgba(255, 255, 255, 0.4) 50%,
                rgba(255, 255, 255, 0.2) 100%);
    }

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

@media (max-width: 768px) {
    .hero-two-column {
        padding: 4rem 0;
    }

    .hero-column-title {
        font-size: 2rem;
    }

    .hero-column-paragraph {
        font-size: 1rem;
    }

    .hero-image-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 6rem 0;
    background-color: var(--bg-secondary);
}

.about-section .stat-number {
    color: #E0E0E0 !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: #E0E0E0;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--card-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 6rem 0;
    background-color: var(--bg-primary);
}

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

.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.product-content {
    padding: 2rem;
}

.product-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.product-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-features i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.feature-title {
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature-description {
    line-height: 1.6;
    color: var(--text-light);
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* ===== BLOG SECTION ===== */
.blog-section {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

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

.blog-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta i {
    color: #E0E0E0;
}

.blog-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    line-height: 1.4;
}

.blog-excerpt {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-link {
    color: #E0E0E0;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: var(--primary-dark);
}

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

/* ===== CONTACT CTA SECTION ===== */
.contact-cta,
.newsletter-section {
    padding: 6rem 0;
    background: var(--bg-secondary);
    color: var(--text-primary);
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.cta-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    color: #E0E0E0;
    border-color: #E0E0E0;
}

.cta-buttons .btn-outline {
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline:hover {
    background-color: #E0E0E0;
    color: #111111 !important;
}



/* ===== BLOG STYLES ===== */
.blog-categories {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.categories-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #E0E0E0;
    color: var(--text-dark);
    border-color: #E0E0E0;
}

.blog-posts {
    padding: 4rem 0;
}

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

.blog-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.blog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #E0E0E0;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.blog-read-more {
    color: #E0E0E0;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.newsletter-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 50%, #ffffff 100%);
    color: var(--text-dark);
    text-align: center;
}

.newsletter-content h2 {
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.newsletter-content p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    padding: 1rem 2rem;
    background-color: #E0E0E0;
    color: var(--text-dark);
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

/* ===== INNOVATION STYLES ===== */
.innovation-categories {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.innovation-posts {
    padding: 4rem 0;
}

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

.innovation-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.innovation-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.innovation-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.innovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.innovation-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #E0E0E0;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.innovation-content {
    padding: 1.5rem;
}

.innovation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.innovation-date {
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.innovation-category {
    background-color: var(--light-gray);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.innovation-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.innovation-excerpt {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.innovation-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background-color: #E0E0E0;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.innovation-read-more {
    color: #E0E0E0;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.innovation-read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.innovation-stats {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-icon {
    font-size: 2.5rem;
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
}

/* ===== INFO STYLES ===== */
.info-categories {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.info-posts {
    padding: 4rem 0;
}

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

.info-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.info-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: #E0E0E0;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-content {
    padding: 1.5rem;
}

.info-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.info-date {
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-category {
    background-color: var(--light-gray);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.info-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.info-excerpt {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.info-difficulty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.difficulty-label {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 500;
}

.difficulty-stars {
    display: flex;
    gap: 0.25rem;
}

.difficulty-stars i {
    color: #E0E0E0;
    font-size: 0.9rem;
}

.info-read-more {
    color: #E0E0E0;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.info-read-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

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

.quick-tips {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.tip-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tip-icon {
    font-size: 2.5rem;
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== REFERENCE STYLES ===== */
.project-stats,
.partnership-stats {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

.project-categories,
.partner-categories {
    padding: 2rem 0;
    background-color: var(--light-gray);
}

.projects-grid,
.partners-grid {
    padding: 4rem 0;
}

.projects-container,
.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.project-card,
.partner-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.project-card:hover,
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(51, 51, 51, 0.6));
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    text-align: center;
    padding: 2rem;
}

.project-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.project-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.tag {
    font-family: 'Work Sans', sans-serif;
    background-color: #E0E0E0;
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-content,
.partner-content {
    padding: 1.5rem;
}

.project-meta,
.partner-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.project-date,
.partner-date {
    color: var(--medium-gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-category,
.partner-category {
    background-color: var(--light-gray);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.project-title,
.partner-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.4;
}

.project-description,
.partner-description {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.project-details,
.partner-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.detail-item i {
    color: #E0E0E0;
}

.project-view-more,
.partner-view-more {
    color: #E0E0E0;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.project-view-more:hover,
.partner-view-more:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.projects-actions,
.partners-actions {
    text-align: center;
}

/* ===== PARTNER SPECIFIC STYLES ===== */
.partner-logo {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background-color: var(--light-gray);
    border-bottom: 2px solid var(--border-color);
}

.partner-logo img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
}

.partner-category {
    color: #E0E0E0;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

/* ===== TESTIMONIALS STYLES ===== */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light-gray);
}

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

.testimonial-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-size: 2rem;
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* ===== PARTNERSHIP BENEFITS STYLES ===== */
.partnership-benefits {
    padding: 4rem 0;
    background-color: var(--card-bg);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-gray);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* ===== BECOME PARTNER CTA STYLES ===== */
.become-partner-cta {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--dark-gray));
    color: var(--text-dark);
    text-align: center;
}

.cta-content h2 {
    color: #E0E0E0;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    color: var(--text-dark);
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 150px;
}

/* ===== MODERN ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: var(--progress-width, 100%);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ===== RESPONSIVE MODERN SECTIONS ===== */
@media (max-width: 768px) {
    .mission-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-points {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .vision-goals {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-title,
    .vision-title {
        font-size: 2rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .mission-point,
    .vision-goal {
        padding: 1rem;
    }

    .goal-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

.hero-title {
    font-size: 3rem;
}

.about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
}

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


@media (max-width: 768px) {
    .nav-actions {
        gap: 1rem;
    }

    .language-switcher {
        order: -1;
    }

    .language-toggle {
        padding: 0.4rem 0.8rem;
        font-size: 11px;
        min-width: 50px;
    }

    .language-menu {
        min-width: 70px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        z-index: 1000;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-menu .nav-item {
        width: 100%;
        margin: 0;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 1rem;
        width: 100%;
        text-align: center;
    }

    .nav-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .nav-menu .dropdown-menu li {
        margin: 0;
    }

    .nav-menu .dropdown-menu a {
        padding: 0.75rem 1rem;
        display: block;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

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

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

    /* Hero Section Mobile */
    .hero-title {
        font-size: 2.5rem;
    }


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

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hero-scroll {
        display: block;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-actions {
        gap: 0.5rem;
    }

    .language-toggle {
        padding: 0.3rem 0.6rem;
        font-size: 10px;
        min-width: 45px;
    }

    .language-menu {
        min-width: 60px;
    }

    .language-menu .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 10px;
    }

    /* Hero Section Small Mobile */
    .hero-title {
        font-size: 2rem;
    }

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


    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .feature-item {
        padding: 1rem;
        min-height: 220px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .product-content,
    .blog-content {
        padding: 1.5rem;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== SCROLL TO TOP BUTTON ===== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: #E0E0E0;
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.scroll-to-top.show {
    display: flex;
}

/* ===== LOADING ANIMATION ===== */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--text-dark);
    animation: spin 1s ease-in-out infinite;
}

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

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 8rem 0 4rem;
    background-image: linear-gradient(200deg, rgba(213, 213, 213, 0.01) 0%, rgba(213, 213, 213, 0.01) 14.286%, rgba(140, 140, 140, 0.01) 14.286%, rgba(140, 140, 140, 0.01) 28.572%, rgba(52, 52, 52, 0.01) 28.572%, rgba(52, 52, 52, 0.01) 42.858%, rgba(38, 38, 38, 0.01) 42.858%, rgba(38, 38, 38, 0.01) 57.144%, rgba(159, 159, 159, 0.01) 57.144%, rgba(159, 159, 159, 0.01) 71.42999999999999%, rgba(71, 71, 71, 0.01) 71.43%, rgba(71, 71, 71, 0.01) 85.71600000000001%, rgba(88, 88, 88, 0.01) 85.716%, rgba(88, 88, 88, 0.01) 100.002%), linear-gradient(337deg, rgba(25, 25, 25, 0.01) 0%, rgba(25, 25, 25, 0.01) 12.5%, rgba(150, 150, 150, 0.01) 12.5%, rgba(150, 150, 150, 0.01) 25%, rgba(84, 84, 84, 0.01) 25%, rgba(84, 84, 84, 0.01) 37.5%, rgba(85, 85, 85, 0.01) 37.5%, rgba(85, 85, 85, 0.01) 50%, rgba(188, 188, 188, 0.01) 50%, rgba(188, 188, 188, 0.01) 62.5%, rgba(80, 80, 80, 0.01) 62.5%, rgba(80, 80, 80, 0.01) 75%, rgba(73, 73, 73, 0.01) 75%, rgba(73, 73, 73, 0.01) 87.5%, rgba(219, 219, 219, 0.01) 87.5%, rgba(219, 219, 219, 0.01) 100%), linear-gradient(203deg, rgba(233, 233, 233, 0.01) 0%, rgba(233, 233, 233, 0.01) 25%, rgba(114, 114, 114, 0.01) 25%, rgba(114, 114, 114, 0.01) 50%, rgba(164, 164, 164, 0.01) 50%, rgba(164, 164, 164, 0.01) 75%, rgba(228, 228, 228, 0.01) 75%, rgba(228, 228, 228, 0.01) 100%), linear-gradient(317deg, rgba(139, 139, 139, 0.02) 0%, rgba(139, 139, 139, 0.02) 16.667%, rgba(44, 44, 44, 0.02) 16.667%, rgba(44, 44, 44, 0.02) 33.334%, rgba(166, 166, 166, 0.02) 33.334%, rgba(166, 166, 166, 0.02) 50.001000000000005%, rgba(2, 2, 2, 0.02) 50.001%, rgba(2, 2, 2, 0.02) 66.668%, rgba(23, 23, 23, 0.02) 66.668%, rgba(23, 23, 23, 0.02) 83.33500000000001%, rgba(21, 21, 21, 0.02) 83.335%, rgba(21, 21, 21, 0.02) 100.002%), linear-gradient(328deg, rgba(3, 3, 3, 0.03) 0%, rgba(3, 3, 3, 0.03) 12.5%, rgba(116, 116, 116, 0.03) 12.5%, rgba(116, 116, 116, 0.03) 25%, rgba(214, 214, 214, 0.03) 25%, rgba(214, 214, 214, 0.03) 37.5%, rgba(217, 217, 217, 0.03) 37.5%, rgba(217, 217, 217, 0.03) 50%, rgba(68, 68, 68, 0.03) 50%, rgba(68, 68, 68, 0.03) 62.5%, rgba(118, 118, 118, 0.03) 62.5%, rgba(118, 118, 118, 0.03) 75%, rgba(200, 200, 200, 0.03) 75%, rgba(200, 200, 200, 0.03) 87.5%, rgba(198, 198, 198, 0.03) 87.5%, rgba(198, 198, 198, 0.03) 100%), linear-gradient(97deg, rgba(195, 195, 195, 0.03) 0%, rgba(195, 195, 195, 0.03) 16.667%, rgba(177, 177, 177, 0.03) 16.667%, rgba(177, 177, 177, 0.03) 33.334%, rgba(170, 170, 170, 0.03) 33.334%, rgba(170, 170, 170, 0.03) 50.001000000000005%, rgba(158, 158, 158, 0.03) 50.001%, rgba(158, 158, 158, 0.03) 66.668%, rgba(121, 121, 121, 0.03) 66.668%, rgba(121, 121, 121, 0.03) 83.33500000000001%, rgba(146, 146, 146, 0.03) 83.335%, rgba(146, 146, 146, 0.03) 100.002%), linear-gradient(268deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 25%, rgba(112, 112, 112, 0.03) 25%, rgba(112, 112, 112, 0.03) 50%, rgba(4, 4, 4, 0.03) 50%, rgba(4, 4, 4, 0.03) 75%, rgba(227, 227, 227, 0.03) 75%, rgba(227, 227, 227, 0.03) 100%), linear-gradient(90deg, hsl(98, 0%, 0%), hsl(98, 0%, 0%));
    color: var(--text-dark);
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.page-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    opacity: 0.9;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--text-dark);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
    color: #E0E0E0;
}

.breadcrumb-separator {
    opacity: 0.6;
    color: #111111;
}

.breadcrumb-current {
    color: white;
}

/* ===== MODERN PAGE HEADER WITH FILTER ===== */
.page-header-modern {
    padding: 5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-header-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.page-header-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;

}

.page-header-modern-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.header-text {
    text-align: left;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-text .breadcrumb {
    justify-content: flex-start;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
}

.header-text .breadcrumb a {
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
}

.header-text .breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #E0E0E0, var(--navajo-white));
    transition: width 0.3s ease;
}

.header-text .breadcrumb a:hover {
    color: #E0E0E0;
}

.header-text .breadcrumb a:hover::after {
    width: 100%;
}

.page-title-modern {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #333333 0%, #555555 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-subtitle-modern {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    max-width: 600px;
    font-weight: 400;
}

.filter-section-modern {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.filter-group-modern {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex: 1;
}

.filter-label-modern {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.filter-tabs-modern {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.filter-tab-modern {
    padding: 1rem 2rem;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-weight: 600;
    font-size: 0.9375rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.filter-tab-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.filter-tab-modern i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.filter-tab-modern span {
    position: relative;
    z-index: 1;
}

.filter-tab-modern:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #E0E0E0;
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 8px 24px rgba(255, 255, 255, 0.2),
        0 4px 8px rgba(255, 255, 255, 0.1);
}

.filter-tab-modern:hover::before {
    width: 200px;
    height: 200px;
}

.filter-tab-modern:hover i {
    transform: scale(1.15) rotate(5deg);
}

.filter-tab-modern.active {
    border-color: #E0E0E0;
    background: linear-gradient(135deg, #E0E0E0 0%, var(--navajo-white) 50%, #DEB887 100%);
    color: var(--text-dark);
    box-shadow:
        0 8px 24px rgba(255, 255, 255, 0.35),
        0 4px 12px rgba(255, 255, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-2px) scale(1.02);
    position: relative;
}

.filter-tab-modern.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.filter-tab-modern.active:hover {
    background: linear-gradient(135deg, var(--navajo-white) 0%, #E0E0E0 50%, var(--navajo-white) 100%);
    box-shadow:
        0 12px 32px rgba(255, 255, 255, 0.4),
        0 6px 16px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: translateY(-4px) scale(1.03);
}

.filter-tab-modern.active i {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* ===== COMPANY STORY SECTION ===== */
.company-story {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.story-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.story-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.value-item {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.value-title {
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-description {
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

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

.team-member {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.member-photo {
    height: 250px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.member-position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.member-description {
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 6rem 0;
    background: #ffffff;
    color: var(--text-dark);
}

.stats-section .stat-number {
    color: #E0E0E0 !important;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #E0E0E0;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E0E0E0;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =====  VISION SECTION (ABOUT PAGE) ===== */
.mission-vision {
    padding: 6rem 0;
    background: #ffffff;
}

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

.mv-card {
    background: #ffffff;
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.mv-card h3 {
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mv-card p {
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 6rem 0;
    background: #ffffff;
    color: var(--text-dark);
    text-align: center;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #E0E0E0;
}

.cta-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    color: #E0E0E0;
    border-color: #E0E0E0;
}

.cta-buttons .btn-outline {
    transition: all 0.3s ease;
}

.cta-buttons .btn-outline:hover {
    background-color: #E0E0E0;
    color: #111111 !important;
}

/* ===== CONTACT INFO SECTION ===== */
.contact-info-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.contact-info-item {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-text {
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

.contact-text a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-dark);
}

/* ===== CONTACT FORM & MAP SECTION ===== */
.contact-form-map {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-section {
    position: relative;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --s: 150px;
    --c1: rgba(255, 255, 255, 0.1);
    --c2: rgba(107, 107, 107, 0.05);
    background:
        linear-gradient(135deg, #0000 18.75%, var(--c1) 0 31.25%, #0000 0),
        repeating-linear-gradient(45deg, var(--c1) -6.25% 6.25%, var(--c2) 0 18.75%);
    background-size: var(--s) var(--s);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.contact-form-section>* {
    position: relative;
    z-index: 1;
}

.form-header {
    margin-bottom: 2rem;
}

.form-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 0.75rem;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.form-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 2rem;
}

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

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

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

.form-label {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: #E0E0E0;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

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

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--text-light);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background-color: #E0E0E0;
    border-color: #E0E0E0;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: var(--text-dark);
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label a {
    color: #E0E0E0;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.form-submit {
    align-self: center;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem;
    width: 100%;
    text-align: center !important;
    position: relative;
    margin: 0 auto;
}

.form-submit>i,
.form-submit>span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.form-submit span {
    text-align: center !important;
    display: inline-block !important;
}

.form-submit .submit-loading {
    position: absolute;
    display: none;
}

/* ===== MAP SECTION ===== */
.map-section {
    position: relative;
    background: rgba(15, 15, 15, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.map-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    --s: 150px;
    --c1: rgba(255, 255, 255, 0.1);
    --c2: rgba(107, 107, 107, 0.05);
    background:
        linear-gradient(135deg, #0000 18.75%, var(--c1) 0 31.25%, #0000 0),
        repeating-linear-gradient(45deg, var(--c1) -6.25% 6.25%, var(--c2) 0 18.75%);
    background-size: var(--s) var(--s);
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.map-section>* {
    position: relative;
    z-index: 1;
}

.map-header {
    margin-bottom: 2rem;
}

.map-title {
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.map-subtitle {
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map {
    width: 100%;
    height: 400px;
    border: none;
}

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

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: var(--light-gray);
}

.faq-question h3 {
    color: #E0E0E0;
    margin: 0;
    font-size: 1.1rem;
}

.faq-question i {
    color: #E0E0E0;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem 1.5rem;
    display: none;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .contact-form-section,
    .map-section {
        padding: 2rem;
    }

    .value-item,
    .contact-info-item {
        padding: 2rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem 1rem;
    }
}

/* ===== PRODUCT PAGES ===== */
.product-overview {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.overview-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.overview-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* ===== PRODUCT CATEGORIES ===== */
.product-categories {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.category-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    height: 200px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.category-content {
    padding: 2rem;
}

.category-title {
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.category-description {
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: var(--text-light);
}

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

.category-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
    font-size: 0.9rem;
}

.category-features li:last-child {
    border-bottom: none;
}

/* ===== TECHNICAL SPECIFICATIONS ===== */
.technical-specs {
    padding: 6rem 0;
    background-color: var(--card-bg);
}

.specs-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.specifications-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.specifications-table th,
.specifications-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.specifications-table th {
    background-color: #E0E0E0;
    color: var(--text-dark);
    font-weight: 600;
}

.specifications-table tr:hover {
    background-color: var(--light-gray);
}

.specs-benefits h3 {
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.benefits-list i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* ===== INSTALLATION PROCESS ===== */
.installation-process {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

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

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background-color: var(--card-bg);
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #E0E0E0, var(--accent-color));
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #E0E0E0;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== CATALOG PAGE ===== */
.catalog-filter {
    padding: 2rem 0;
    background-color: var(--light-gray);
    border-bottom: 1px solid var(--border-color);
}

.filter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    background-color: var(--card-bg);
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-tab:hover,
.filter-tab.active {
    border-color: #E0E0E0;
    background-color: #E0E0E0;
    color: var(--text-dark);
}

.filter-actions {
    display: flex;
    gap: 1rem;
}

.catalog-grid-section {
    padding: 4rem 0;
    background-color: var(--card-bg);
}

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

.catalog-item {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.catalog-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.catalog-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.catalog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.catalog-content {
    padding: 1.5rem;
}

.catalog-title {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.catalog-code {
    color: var(--medium-gray);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.catalog-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    font-size: 0.9rem;
}

.catalog-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background-color: var(--light-gray);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ===== MODERN COLOR CATALOG ===== */
.modern-filter {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.modern-filter .filter-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-color-catalog {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
    position: relative;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid transparent;
    background-image: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    background-size: 100% 2px;
    background-position: bottom;
    background-repeat: no-repeat;
    animation: fadeInUp 0.6s ease-out;
}

.results-title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.results-title span {
    background: linear-gradient(135deg, #E0E0E0, var(--navajo-white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.results-subtitle {
    color: var(--text-light);
    font-size: 1.0625rem;
    font-weight: 400;
    opacity: 0.85;
}

.view-options {
    display: flex;
    gap: 0.5rem;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.375rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.view-btn {
    padding: 0.875rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
}

.view-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.view-btn:hover::before {
    width: 150px;
    height: 150px;
}

.view-btn:hover {
    color: #E0E0E0;
    transform: scale(1.05);
}

.view-btn.active {
    background: linear-gradient(135deg, #E0E0E0, var(--navajo-white));
    color: var(--text-dark);
    box-shadow:
        0 4px 12px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.view-btn.active::before {
    display: none;
}

.color-grid-container {
    min-height: 600px;
}

.color-grid.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.color-grid.list-view {
    grid-template-columns: 1fr;
}

.color-card {
    background: var(--card-bg);
    border: 2px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    animation: fadeInScale 0.6s ease-out backwards;
}

.color-card:nth-child(1) {
    animation-delay: 0.05s;
}

.color-card:nth-child(2) {
    animation-delay: 0.1s;
}

.color-card:nth-child(3) {
    animation-delay: 0.15s;
}

.color-card:nth-child(4) {
    animation-delay: 0.2s;
}

.color-card:nth-child(5) {
    animation-delay: 0.25s;
}

.color-card:nth-child(6) {
    animation-delay: 0.3s;
}

.color-card:nth-child(7) {
    animation-delay: 0.35s;
}

.color-card:nth-child(8) {
    animation-delay: 0.4s;
}

.color-card:nth-child(9) {
    animation-delay: 0.45s;
}

.color-card:nth-child(10) {
    animation-delay: 0.5s;
}

.color-card:nth-child(11) {
    animation-delay: 0.55s;
}

.color-card:nth-child(12) {
    animation-delay: 0.6s;
}

.color-card:nth-child(n+13) {
    animation-delay: 0.65s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.color-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.color-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(255, 255, 255, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.color-swatch-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.color-swatch {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.color-card:hover .color-swatch {
    transform: scale(1.15) rotate(2deg);
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.color-card:hover .color-overlay {
    opacity: 1;
}

.color-view-btn {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #E0E0E0;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(255, 255, 255, 0.2);
    transform: scale(0.9);
    opacity: 0;
}

.color-card:hover .color-view-btn {
    transform: scale(1);
    opacity: 1;
}

.color-view-btn:hover {
    transform: scale(1.15) rotate(90deg);
    background: linear-gradient(135deg, #E0E0E0, var(--navajo-white));
    color: var(--text-dark);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
        0 12px 32px rgba(255, 255, 255, 0.4),
        0 6px 16px rgba(255, 255, 255, 0.3);
}

.color-info {
    padding: 1.75rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, var(--white) 100%);
    position: relative;
    z-index: 2;
}

.color-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.color-card:hover .color-name {
    color: #E0E0E0;
}

.color-code {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.color-badges {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.color-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.color-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.color-badge.technique-kaplama {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.color-badge.technique-dire-boyali {
    background: linear-gradient(135deg, #DEB887 0%, var(--navajo-white) 100%);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(245, 87, 108, 0.3);
}

.color-badge.category-acik {
    background: linear-gradient(135deg, #DEB887 0%, var(--navajo-white) 100%);
    border-color: rgba(252, 182, 159, 0.3);
}

.color-badge.category-orta {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    border-color: rgba(168, 237, 234, 0.3);
}

.color-badge.category-koyu {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: var(--text-dark);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Pagination */
.pagination-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.6s ease-out;
}

.pagination {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem;
    border-radius: 20px;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pagination-btn {
    min-width: 48px;
    height: 48px;
    padding: 0 1.25rem;
    border: 2px solid transparent;
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-dark);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9375rem;
    position: relative;
    overflow: hidden;
}

.pagination-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.pagination-btn:hover:not(.disabled):not(.active)::before {
    width: 100px;
    height: 100px;
}

.pagination-btn:hover:not(.disabled):not(.active) {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    color: #E0E0E0;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.pagination-btn.active {
    background: linear-gradient(135deg, #E0E0E0, var(--navajo-white));
    color: var(--text-dark);
    border-color: #E0E0E0;
    box-shadow:
        0 4px 16px rgba(255, 255, 255, 0.35),
        0 2px 8px rgba(255, 255, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    position: relative;
}

.pagination-btn.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.pagination-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: rgba(248, 249, 250, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-light);
    pointer-events: none;
}

.pagination-ellipsis {
    padding: 0 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Color Modal */
.color-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.color-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: #E0E0E0;
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-color-preview {
    height: 300px;
    border-radius: 25px 25px 0 0;
}

.modal-color-info {
    padding: 2.5rem;
}

.modal-color-name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.modal-color-code {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-color-category {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.modal-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* List View */
.color-card.list-view-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
}

.color-card.list-view-item .color-swatch-wrapper {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    margin-right: 2rem;
    flex-shrink: 0;
}

.color-card.list-view-item .color-info {
    flex: 1;
    padding: 0;
}

@media (max-width: 768px) {
    .color-grid.modern-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .modal-content {
        width: 95%;
    }
}

/* ===== MODERN PROJECT SOLUTIONS PAGE ===== */
.modern-project-hero {
    padding: 10rem 0 8rem;
    background: linear-gradient(135deg, #E0E0E0 0%, var(--primary-dark) 50%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.modern-project-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.95) 25%,
            rgba(204, 82, 0, 0.92) 50%,
            rgba(102, 51, 0, 0.95) 75%,
            rgba(17, 17, 17, 0.98) 100%);
    opacity: 1;
}

.modern-project-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%);
    opacity: 1;
}

.modern-project-hero .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-main-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.9;
    opacity: 0.98;
    margin-bottom: 4rem;
    max-width: 850px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-feature-card {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-feature-card:hover::before {
    opacity: 1;
}

.hero-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-feature-card:hover .feature-icon-wrapper {
    transform: rotate(5deg) scale(1.1);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-feature-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.hero-feature-card p {
    opacity: 0.95;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Section Header Modern */
.section-header-modern {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Modern Solutions Grid */
.modern-solutions-section {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--light-gray), var(--white));
}

.modern-solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.modern-solution-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.modern-solution-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.solution-card-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.solution-image-modern {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.modern-solution-card:hover .solution-image-modern img {
    transform: scale(1.1);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-solution-card:hover .solution-overlay {
    opacity: 1;
}

.solution-content-modern {
    padding: 2.5rem;
}

.solution-content-modern h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.solution-features-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.solution-features-modern li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.solution-features-modern li i {
    color: #E0E0E0;
    font-size: 1rem;
}

.solution-applications-modern {
    padding-top: 1.5rem;
    border-top: 2px solid var(--border-color);
}

.solution-applications-modern h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-applications-modern h4 i {
    color: #E0E0E0;
}

.app-tags-modern {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.app-tag-modern {
    background: linear-gradient(135deg, #DEB887 0%, var(--navajo-white) 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(245, 87, 108, 0.3);
}

/* Modern Process Timeline */
.modern-design-process {
    padding: 8rem 0;
    background: linear-gradient(to bottom, var(--white), var(--light-gray));
}

.modern-process-timeline {
    position: relative;
    padding: 2rem 0;
}

.modern-process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #E0E0E0, var(--secondary-color));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    margin-right: 3rem;
    margin-left: 0;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E0E0E0, var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 3rem;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.timeline-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-content ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-content ul li::before {
    content: '✓';
    color: #E0E0E0;
    font-weight: 700;
}

@media (max-width: 968px) {
    .modern-process-timeline::before {
        left: 40px;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
    }

    .timeline-item .timeline-content {
        margin-left: 0;
        margin-top: 2rem;
        width: calc(100% - 120px);
        margin-left: 120px;
        text-align: left !important;
    }

    .hero-main-title {
        font-size: 2.8rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .hero-features {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .modern-solutions-grid {
        grid-template-columns: 1fr;
    }

    .modern-project-hero {
        padding: 7rem 0 5rem;
    }
}

/* ===== MODERN MISSION & VISION PAGES ===== */
.mission-section {
    padding: 8rem 0;
    overflow: hidden;
}

/* Arkaplanı tek parça yap */
.unified-page-wrapper {
    background-color: #1a1a1a;
    /* İstediğin rengi buraya yaz */
    background-image: linear-gradient(216deg, rgba(77, 77, 77, 0.05) 0%, rgba(77, 77, 77, 0.05) 25%, rgba(42, 42, 42, 0.05) 25%, rgba(42, 42, 42, 0.05) 38%, rgba(223, 223, 223, 0.05) 38%, rgba(223, 223, 223, 0.05) 75%, rgba(36, 36, 36, 0.05) 75%, rgba(36, 36, 36, 0.05) 100%), linear-gradient(44deg, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0.05) 34%, rgba(212, 212, 212, 0.05) 34%, rgba(212, 212, 212, 0.05) 57%, rgba(25, 25, 25, 0.05) 57%, rgba(25, 25, 25, 0.05) 89%, rgba(135, 135, 135, 0.05) 89%, rgba(135, 135, 135, 0.05) 100%), linear-gradient(241deg, rgba(55, 55, 55, 0.05) 0%, rgba(55, 55, 55, 0.05) 14%, rgba(209, 209, 209, 0.05) 14%, rgba(209, 209, 209, 0.05) 60%, rgba(245, 245, 245, 0.05) 60%, rgba(245, 245, 245, 0.05) 69%, rgba(164, 164, 164, 0.05) 69%, rgba(164, 164, 164, 0.05) 100%), linear-gradient(249deg, rgba(248, 248, 248, 0.05) 0%, rgba(248, 248, 248, 0.05) 32%, rgba(148, 148, 148, 0.05) 32%, rgba(148, 148, 148, 0.05) 35%, rgba(202, 202, 202, 0.05) 35%, rgba(202, 202, 202, 0.05) 51%, rgba(181, 181, 181, 0.05) 51%, rgba(181, 181, 181, 0.05) 100%), linear-gradient(92deg, hsl(214, 0%, 11%), hsl(214, 0%, 11%));
    background-repeat: repeat;
    width: 100%;
}

/* Bölümlerin kendi arka planlarını öldür */
.unified-page-wrapper section {
    background: transparent !important;
    margin: 0 !important;
    padding-top: 80px;
    padding-bottom: 80px;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ff6600" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23ff6600" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    animation: slideInLeft 0.8s ease;
}

.mission-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.mission-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a7a8aa;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.mission-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mission-point {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease calc(0.6s + var(--delay, 0s)) both;
}

.mission-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.point-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.point-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.4;
}

.image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    animation: fadeInRight 0.8s ease 0.6s both;
}

.image-container img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.image-container:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.overlay-content p {
    font-size: 0.9rem;
    opacity: 1;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.vision-section {
    padding: 8rem 0;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ff6600" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

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

.vision-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease;
}

.vision-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #a7a8aa;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

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

.vision-goal {
    background-image: repeating-linear-gradient(293deg, hsla(29, 0%, 74%, 0.12) 0px, transparent 7px, hsla(29, 0%, 74%, 0.12) 12px, transparent 19px, hsla(29, 0%, 74%, 0.12) 24px, transparent 31px, hsla(29, 0%, 74%, 0.12) 36px), repeating-linear-gradient(43deg, hsla(29, 0%, 74%, 0.12) 0px, transparent 7px, hsla(29, 0%, 74%, 0.12) 12px, transparent 19px, hsla(29, 0%, 74%, 0.12) 24px, transparent 31px, hsla(29, 0%, 74%, 0.12) 36px), repeating-linear-gradient(0deg, hsla(29, 0%, 74%, 0.12) 0px, transparent 7px, hsla(29, 0%, 74%, 0.12) 12px, transparent 19px, hsla(29, 0%, 74%, 0.12) 24px, transparent 31px, hsla(29, 0%, 74%, 0.12) 36px), linear-gradient(90deg, rgb(253, 253, 253), rgb(253, 253, 253));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease calc(0.4s + var(--delay, 0s)) both;
}

.vision-goal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-dark));
}

.vision-goal:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.goal-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.goal-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.goal-content p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.goal-progress {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-dark));
    border-radius: 10px;
    transition: width 1s ease;
    animation: progressFill 2s ease 1s both;
}

.progress-text {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

/* ===== GOALS SECTION ===== */
.goals-section {
    padding: 6rem 0;
    background-image: repeating-linear-gradient(148deg, hsla(54, 0%, 87%, 0.12) 0px, hsla(54, 0%, 87%, 0.12) 1px, transparent 1px, transparent 4px, hsla(54, 0%, 87%, 0.12) 4px, hsla(54, 0%, 87%, 0.12) 5px, transparent 5px, transparent 7px, hsla(54, 0%, 87%, 0.12) 7px, hsla(54, 0%, 87%, 0.12) 8px), repeating-linear-gradient(119deg, hsla(54, 0%, 87%, 0.12) 0px, hsla(54, 0%, 87%, 0.12) 1px, transparent 1px, transparent 4px, hsla(54, 0%, 87%, 0.12) 4px, hsla(54, 0%, 87%, 0.12) 5px, transparent 5px, transparent 7px, hsla(54, 0%, 87%, 0.12) 7px, hsla(54, 0%, 87%, 0.12) 8px), repeating-linear-gradient(0deg, hsla(54, 0%, 87%, 0.15) 0px, hsla(54, 0%, 87%, 0.15) 0px, transparent 0px, transparent 1px, hsla(54, 0%, 87%, 0.15) 1px, hsla(54, 0%, 87%, 0.15) 4px, transparent 4px, transparent 5px, hsla(54, 0%, 87%, 0.15) 5px, hsla(54, 0%, 87%, 0.15) 8px), repeating-linear-gradient(90deg, hsla(54, 0%, 87%, 0.15) 0px, hsla(54, 0%, 87%, 0.15) 0px, transparent 0px, transparent 1px, hsla(54, 0%, 87%, 0.15) 1px, hsla(54, 0%, 87%, 0.15) 4px, transparent 4px, transparent 5px, hsla(54, 0%, 87%, 0.15) 5px, hsla(54, 0%, 87%, 0.15) 8px), linear-gradient(90deg, rgb(251, 251, 251), rgb(251, 251, 251));
}

.goals-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.goals-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #E0E0E0, var(--accent-color));
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 80px;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E0E0E0, var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    box-shadow: var(--shadow);
}

.timeline-content {
    background-image: linear-gradient(135deg, rgba(159, 159, 159, 0.46) 0%, rgba(159, 159, 159, 0.46) 14.286%, rgba(165, 165, 165, 0.46) 14.286%, rgba(165, 165, 165, 0.46) 28.572%, rgba(171, 171, 171, 0.46) 28.572%, rgba(171, 171, 171, 0.46) 42.858%, rgba(178, 178, 178, 0.46) 42.858%, rgba(178, 178, 178, 0.46) 57.144%, rgba(184, 184, 184, 0.46) 57.144%, rgba(184, 184, 184, 0.46) 71.43%, rgba(190, 190, 190, 0.46) 71.43%, rgba(190, 190, 190, 0.46) 85.716%, rgba(196, 196, 196, 0.46) 85.716%, rgba(196, 196, 196, 0.46) 100.002%), linear-gradient(45deg, rgb(252, 252, 252) 0%, rgb(252, 252, 252) 14.286%, rgb(246, 246, 246) 14.286%, rgb(246, 246, 246) 28.572%, rgb(241, 241, 241) 28.572%, rgb(241, 241, 241) 42.858%, rgb(235, 235, 235) 42.858%, rgb(235, 235, 235) 57.144%, rgb(229, 229, 229) 57.144%, rgb(229, 229, 229) 71.43%, rgb(224, 224, 224) 71.43%, rgb(224, 224, 224) 85.716%, rgb(218, 218, 218) 85.716%, rgb(218, 218, 218) 100.002%);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.timeline-title {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.timeline-date {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===== DOWNLOAD SECTION ===== */
.download-section {
    padding: 6rem 0;
    background-color: var(--light-gray);
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-title {
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.download-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1.1rem;
}

.download-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.download-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.download-feature i {
    color: var(--accent-color);
    font-size: 1rem;
}

.download-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.download-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* ===== RESPONSIVE DESIGN FOR PRODUCT PAGES ===== */
@media (max-width: 768px) {
    .overview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .specs-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .filter-content {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-tabs {
        justify-content: center;
    }

    .page-header-modern {
        padding: 3rem 0 2.5rem;
    }

    .page-header-modern-content {
        gap: 2rem;
    }

    .page-title-modern {
        font-size: 2rem;
    }

    .page-subtitle-modern {
        font-size: 1rem;
    }

    .filter-section-modern {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .filter-tabs-modern {
        justify-content: flex-start;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .view-options {
        align-self: flex-end;
    }

    .color-grid.modern-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .download-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

@media (max-width: 480px) {

    .specifications-table th,
    .specifications-table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .step-item {
        padding: 1.5rem;
    }

    .filter-tabs {
        flex-direction: column;
    }

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

    .page-header-modern {
        padding: 2.5rem 0 2rem;
    }

    .page-title-modern {
        font-size: 1.75rem;
    }

    .page-subtitle-modern {
        font-size: 0.9375rem;
    }

    .filter-section-modern {
        padding: 1.25rem;
    }

    .filter-tab-modern {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .color-grid.modern-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1.25rem;
    }

    .color-swatch-wrapper {
        height: 160px;
    }

    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .pagination-btn {
        min-width: 42px;
        height: 42px;
        font-size: 0.875rem;
    }

    .catalog-content {
        padding: 1rem;
    }

    .download-actions {
        align-items: stretch;
    }

    .mission-content,
    .vision-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-points {
        grid-template-columns: 1fr;
    }

    .goals-timeline::before {
        left: 20px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-marker {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
    text-align: center;
}

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

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

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.p-1 {
    padding: 0.5rem;
}

.p-2 {
    padding: 1rem;
}

.p-3 {
    padding: 1.5rem;
}

.p-4 {
    padding: 2rem;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.d-flex {
    display: flex;
}

.d-grid {
    display: grid;
}

.w-100 {
    width: 100%;
}

.h-100 {
    height: 100%;
}

.rounded {
    border-radius: 6px;
}

.rounded-lg {
    border-radius: 10px;
}

.rounded-xl {
    border-radius: 15px;
}

.shadow {
    box-shadow: var(--shadow);
}

.shadow-lg {
    box-shadow: var(--shadow-hover);
}

/* ===== TEMPORARY HIDE: Documents, Careers, References & Blog ===== */
/* These links are hidden site-wide until they're ready to launch */
.dropdown-menu a[href$="documents.php"],
.dropdown-menu a[href$="careers.php"],
.dropdown-menu a[href$="references/completed-projects.php"],
.dropdown-menu a[href$="references/partners.php"],
.dropdown-menu a[href$="blog.php"],
.dropdown-menu a[href$="blog/innovations.php"],
.dropdown-menu a[href$="blog/useful-info.php"],
a[href$="/pages/documents.php"],
a[href$="/pages/careers.php"],
a[href$="/pages/references/completed-projects.php"],
a[href$="/pages/references/partners.php"],
a[href$="/pages/blog.php"],
a[href$="/pages/blog/innovations.php"],
a[href$="/pages/blog/useful-info.php"],
a[href$="documents.php"],
a[href$="careers.php"],
a[href$="references/completed-projects.php"],
a[href$="references/partners.php"],
a[href$="blog.php"],
a[href$="blog/innovations.php"],
a[href$="blog/useful-info.php"] {
    display: none !important;
}

/* Hide entire dropdown menu items for References and Blog */
.nav-item.dropdown:has(.dropdown-menu a[href*="references"]),
.nav-item.dropdown:has(.dropdown-menu a[href*="blog"]),
.nav-item:has(a[href*="references"]),
.nav-item:has(a[href*="blog"]) {
    display: none !important;
}

/* ===== MODERN CONTACT PAGE - THEME COLORS ONLY ===== */
.contact-header {
    background-image: radial-gradient(circle at center center, transparent, rgb(33, 33, 33)), repeating-linear-gradient(135deg, rgb(33, 33, 33) 0px, rgb(33, 33, 33) 2px, transparent 2px, transparent 10px, rgb(33, 33, 33) 10px, rgb(33, 33, 33) 11px, transparent 11px, transparent 21px), repeating-linear-gradient(45deg, rgb(47, 47, 47) 0px, rgb(47, 47, 47) 4px, transparent 4px, transparent 8px), linear-gradient(90deg, rgb(33, 33, 33), rgb(33, 33, 33));
    color: var(--text-dark);
    padding: 6rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.contact-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contactPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="%23FF6600" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contactPattern)"/></svg>');
    opacity: 0.3;
}

.contact-header .page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.header-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #E0E0E0;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center !important;
}

.header-badge>i,
.header-badge>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-header .page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #E0E0E0;
    text-shadow: none;
}

.contact-header .page-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease calc(var(--delay, 0s) * 0.1s) both;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-dark));
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.card-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.location-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.phone-link,
.email-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: var(--primary-dark);
}

.work-hours {
    display: block;
    margin-bottom: 0.5rem;
}

.work-hours.closed {
    color: var(--text-light);
    font-weight: 500;
}

.card-action {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: default;
    text-align: center !important;
    width: auto;
    min-width: fit-content;
}

.card-action>i,
.card-action>span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.status-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-action:not(.status-open):not(.status-closed):hover {
    background: var(--accent-color);
    color: var(--text-dark);
    transform: translateX(5px);
}

.status-indicator {
    font-weight: 600;
    transition: color 0.3s ease;
}

.status-time {
    display: block;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    opacity: 0.8;
    font-weight: 400;
}

/* Açık Durum Stilleri */
.card-action.status-open {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.card-action.status-open .status-indicator {
    color: #22c55e;
}

.card-action.status-open #status-icon {
    color: #22c55e;
}

.card-action.status-open:hover {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.4);
}

/* Kapalı Durum Stilleri */
.card-action.status-closed {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

.card-action.status-closed .status-indicator {
    color: #ef4444;
}

.card-action.status-closed #status-icon {
    color: #ef4444;
}

.card-action.status-closed:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
}

/* Status Icon Animasyonu */
#status-icon {
    transition: all 0.3s ease;
}

.card-action.status-open #status-icon {
    animation: pulse-green 2s infinite;
}

.card-action.status-closed #status-icon {
    animation: pulse-red 2s infinite;
}

@keyframes pulse-green {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

@keyframes pulse-red {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.contact-form-map {
    padding: 6rem 0;
    background: transparent;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-badge,
.map-badge {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center !important;
}

.form-badge>i,
.form-badge>span,
.map-badge>i,
.map-badge>span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-title,
.map-title {
    font-size: 2rem;
    font-weight: 700;
    /* color: var(--secondary-color); */
    margin-bottom: 1rem;
}

.form-subtitle,
.map-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.modern-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.form-label i {
    color: var(--accent-color);
    font-size: 0.8rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
}

.input-focus-line,
.textarea-focus-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.form-input:focus+.input-focus-line,
.form-textarea:focus+.textarea-focus-line {
    width: 100%;
}

.select-wrapper {
    position: relative;
}

.form-select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.05);
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #ffffff;
}

.form-select option {
    background: #2a2a2a;
    /* Because options cannot have backdrop-filter easily in all browsers, we use a dark distinct color */
    color: #ffffff;
}

.form-select:focus {
    outline: none;
    border-color: var(--accent-color);
    background: var(--card-bg);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.select-arrow {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
}

.modern-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.modern-checkbox input[type="checkbox"] {
    display: none;
}

.modern-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--light-gray);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.modern-checkbox input[type="checkbox"]:checked+.checkmark {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.modern-checkbox input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-text a {
    color: var(--accent-color);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

.modern-submit {
    position: relative;
    overflow: hidden;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-dark));
    color: var(--text-dark);
    border: none;
}

.modern-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.submit-loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-submit.loading .submit-loading {
    opacity: 1;
}

.modern-submit.loading span {
    opacity: 0;
}

.map-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map {
    width: 100%;
    height: 300px;
    background: var(--light-gray);
    border-radius: 15px;
}

.map-overlay {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.map-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

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

.map-btn {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem;
    text-align: center !important;
}

.map-btn * {
    text-align: center !important;
}

.map-btn>i,
.map-btn>span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    text-align: center !important;
}

.map-btn span {
    text-align: center !important;
    display: inline-block !important;
    margin: 0;
    padding: 0;
}

.map-btn:hover {
    transform: translateY(-2px);
}

/* ===== RESPONSIVE CONTACT PAGE ===== */
@media (max-width: 768px) {
    .contact-header .page-title {
        font-size: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .map-actions {
        flex-direction: column;
    }

    .map-btn {
        min-width: auto;
    }
}

/* ===== MODERN ABOUT PAGE STYLES ===== */

/* Page Header Badge */
.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    animation: fadeInUp 0.6s ease-out;
}

.page-header-badge i {
    font-size: 1rem;
}

.breadcrumb-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.breadcrumb-modern a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-modern a:hover {
    color: #E0E0E0;
}

.breadcrumb-separator {
    color: lightgray;
}

.breadcrumb-current {
    color: white;
    font-weight: 500;
}

/* Statistics Section */
.about-stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    margin-top: -2rem;
    position: relative;
    z-index: 2;
}

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

.stat-item-modern {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.stat-item-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E0E0E0, var(--primary-dark));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item-modern:hover::before {
    transform: scaleX(1);
}

.stat-item-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
    border-color: #E0E0E0;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.stat-item-modern:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Company Story Modern */
.company-story-modern {
    padding: 6rem 0;
    background: var(--card-bg);
}

.story-content-modern {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.story-text-modern {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.story-intro-modern {
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 20px;
    border-left: 4px solid #E0E0E0;
}

.story-intro-modern h3 {
    font-size: 1.8rem;
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.story-intro-modern p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.story-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-feature-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.story-feature-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    border-color: #E0E0E0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.feature-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.story-image-modern {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--card-bg);
    padding: 2rem;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.story-highlight-card {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.story-highlight-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-highlight-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Values Section Modern */
.values-section-modern {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

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

.value-card-modern {
    background: var(--card-bg);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-card-modern:hover::before {
    opacity: 1;
}

.value-card-modern:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
    border-color: #E0E0E0;
}

.value-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
    font-size: 2.2rem;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.value-card-modern:hover .value-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.value-title-modern {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.value-description-modern {
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 6rem 0;
    background: var(--card-bg);
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-item:hover {
    background: var(--card-bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(10px);
    border-color: #E0E0E0;
}

.why-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.why-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.why-choose-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visual-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #E0E0E0, var(--primary-dark));
    border-radius: 20px;
    color: white;
    text-align: center;
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
}

.visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
}

.visual-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.visual-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.visual-card p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Responsive Design for About Page */
@media (max-width: 968px) {
    .story-content-modern {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

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

@media (max-width: 640px) {
    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item-modern {
        padding: 2rem 1.5rem;
    }

    .story-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .why-item {
        flex-direction: column;
        text-align: center;
    }

    .value-card-modern {
        padding: 2.5rem 2rem;
    }
}

/* ===== ABOUT HERO SECTION ===== */
.about-hero {
    position: relative;
    height: 300px;
    align-items: center;

    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.bgabout {
    background-image: linear-gradient(200deg, rgba(213, 213, 213, 0.01) 0%, rgba(213, 213, 213, 0.01) 14.286%, rgba(140, 140, 140, 0.01) 14.286%, rgba(140, 140, 140, 0.01) 28.572%, rgba(52, 52, 52, 0.01) 28.572%, rgba(52, 52, 52, 0.01) 42.858%, rgba(38, 38, 38, 0.01) 42.858%, rgba(38, 38, 38, 0.01) 57.144%, rgba(159, 159, 159, 0.01) 57.144%, rgba(159, 159, 159, 0.01) 71.42999999999999%, rgba(71, 71, 71, 0.01) 71.43%, rgba(71, 71, 71, 0.01) 85.71600000000001%, rgba(88, 88, 88, 0.01) 85.716%, rgba(88, 88, 88, 0.01) 100.002%), linear-gradient(337deg, rgba(25, 25, 25, 0.01) 0%, rgba(25, 25, 25, 0.01) 12.5%, rgba(150, 150, 150, 0.01) 12.5%, rgba(150, 150, 150, 0.01) 25%, rgba(84, 84, 84, 0.01) 25%, rgba(84, 84, 84, 0.01) 37.5%, rgba(85, 85, 85, 0.01) 37.5%, rgba(85, 85, 85, 0.01) 50%, rgba(188, 188, 188, 0.01) 50%, rgba(188, 188, 188, 0.01) 62.5%, rgba(80, 80, 80, 0.01) 62.5%, rgba(80, 80, 80, 0.01) 75%, rgba(73, 73, 73, 0.01) 75%, rgba(73, 73, 73, 0.01) 87.5%, rgba(219, 219, 219, 0.01) 87.5%, rgba(219, 219, 219, 0.01) 100%), linear-gradient(203deg, rgba(233, 233, 233, 0.01) 0%, rgba(233, 233, 233, 0.01) 25%, rgba(114, 114, 114, 0.01) 25%, rgba(114, 114, 114, 0.01) 50%, rgba(164, 164, 164, 0.01) 50%, rgba(164, 164, 164, 0.01) 75%, rgba(228, 228, 228, 0.01) 75%, rgba(228, 228, 228, 0.01) 100%), linear-gradient(317deg, rgba(139, 139, 139, 0.02) 0%, rgba(139, 139, 139, 0.02) 16.667%, rgba(44, 44, 44, 0.02) 16.667%, rgba(44, 44, 44, 0.02) 33.334%, rgba(166, 166, 166, 0.02) 33.334%, rgba(166, 166, 166, 0.02) 50.001000000000005%, rgba(2, 2, 2, 0.02) 50.001%, rgba(2, 2, 2, 0.02) 66.668%, rgba(23, 23, 23, 0.02) 66.668%, rgba(23, 23, 23, 0.02) 83.33500000000001%, rgba(21, 21, 21, 0.02) 83.335%, rgba(21, 21, 21, 0.02) 100.002%), linear-gradient(328deg, rgba(3, 3, 3, 0.03) 0%, rgba(3, 3, 3, 0.03) 12.5%, rgba(116, 116, 116, 0.03) 12.5%, rgba(116, 116, 116, 0.03) 25%, rgba(214, 214, 214, 0.03) 25%, rgba(214, 214, 214, 0.03) 37.5%, rgba(217, 217, 217, 0.03) 37.5%, rgba(217, 217, 217, 0.03) 50%, rgba(68, 68, 68, 0.03) 50%, rgba(68, 68, 68, 0.03) 62.5%, rgba(118, 118, 118, 0.03) 62.5%, rgba(118, 118, 118, 0.03) 75%, rgba(200, 200, 200, 0.03) 75%, rgba(200, 200, 200, 0.03) 87.5%, rgba(198, 198, 198, 0.03) 87.5%, rgba(198, 198, 198, 0.03) 100%), linear-gradient(97deg, rgba(195, 195, 195, 0.03) 0%, rgba(195, 195, 195, 0.03) 16.667%, rgba(177, 177, 177, 0.03) 16.667%, rgba(177, 177, 177, 0.03) 33.334%, rgba(170, 170, 170, 0.03) 33.334%, rgba(170, 170, 170, 0.03) 50.001000000000005%, rgba(158, 158, 158, 0.03) 50.001%, rgba(158, 158, 158, 0.03) 66.668%, rgba(121, 121, 121, 0.03) 66.668%, rgba(121, 121, 121, 0.03) 83.33500000000001%, rgba(146, 146, 146, 0.03) 83.335%, rgba(146, 146, 146, 0.03) 100.002%), linear-gradient(268deg, rgba(103, 103, 103, 0.03) 0%, rgba(103, 103, 103, 0.03) 25%, rgba(112, 112, 112, 0.03) 25%, rgba(112, 112, 112, 0.03) 50%, rgba(4, 4, 4, 0.03) 50%, rgba(4, 4, 4, 0.03) 75%, rgba(227, 227, 227, 0.03) 75%, rgba(227, 227, 227, 0.03) 100%), linear-gradient(90deg, hsl(98, 0%, 0%), hsl(98, 0%, 0%));
    


}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    z-index: 1;
}


/* Glass droplets effect */
.about-hero .glass-droplet {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    pointer-events: none;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.about-hero .glass-droplet:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.about-hero .glass-droplet:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 70%;
    animation-delay: 2s;
}

.about-hero .glass-droplet:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 15%;
    animation-delay: 4s;
}

.about-hero .glass-droplet:nth-child(4) {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.about-hero .glass-droplet:nth-child(5) {
    width: 90px;
    height: 90px;
    top: 10%;
    right: 40%;
    animation-delay: 3s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
}

/* Hakkımızda Sayfası Özel Arkaplanı */
.bgabout {
    width: 100%;
    position: relative;
    /* Senin verdiğin özel gradient kodu */
    background-image: linear-gradient(216deg, rgba(77, 77, 77, 0.05) 0%, rgba(77, 77, 77, 0.05) 25%, rgba(42, 42, 42, 0.05) 25%, rgba(42, 42, 42, 0.05) 38%, rgba(223, 223, 223, 0.05) 38%, rgba(223, 223, 223, 0.05) 75%, rgba(36, 36, 36, 0.05) 75%, rgba(36, 36, 36, 0.05) 100%),
        linear-gradient(44deg, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0.05) 34%, rgba(212, 212, 212, 0.05) 34%, rgba(212, 212, 212, 0.05) 57%, rgba(25, 25, 25, 0.05) 57%, rgba(25, 25, 25, 0.05) 89%, rgba(135, 135, 135, 0.05) 89%, rgba(135, 135, 135, 0.05) 100%),
        linear-gradient(241deg, rgba(55, 55, 55, 0.05) 0%, rgba(55, 55, 55, 0.05) 14%, rgba(209, 209, 209, 0.05) 14%, rgba(209, 209, 209, 0.05) 60%, rgba(245, 245, 245, 0.05) 60%, rgba(245, 245, 245, 0.05) 69%, rgba(164, 164, 164, 0.05) 69%, rgba(164, 164, 164, 0.05) 100%),
        linear-gradient(249deg, rgba(248, 248, 248, 0.05) 0%, rgba(248, 248, 248, 0.05) 32%, rgba(148, 148, 148, 0.05) 32%, rgba(148, 148, 148, 0.05) 35%, rgba(202, 202, 202, 0.05) 35%, rgba(202, 202, 202, 0.05) 51%, rgba(181, 181, 181, 0.05) 51%, rgba(181, 181, 181, 0.05) 100%),
        linear-gradient(92deg, hsl(214, 0%, 11%), hsl(214, 0%, 11%));
    
    /* Desen sayfa ile birlikte akmaz, sabit kalır */
}

/* İç bölümlerin arkaplanını temizle */
.bgabout section {
    background: transparent !important;
    margin: 0 !important;
    border: none !important;
}

/* Hero ve Simple section arasındaki boşluğu yönet */
.about-hero {
    padding: 100px 0;
}

.about-simple-section {
    padding-bottom: 80px;
}

.about-hero-content {

    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: flex-end;
    height: 100%;
    padding-bottom: 2rem;
}

.about-hero-back {
    color: var(--text-dark);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);

}

.about-hero-back:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-5px);
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .about-hero {
        height: 250px;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-content {
        padding: 0 1.5rem;
    }
}

/* ===== SIMPLE ABOUT PAGE STYLES ===== */
.about-simple-section {
    position: relative;
    padding: 4rem 0;
    background-image: linear-gradient(216deg, rgba(77, 77, 77, 0.05) 0%, rgba(77, 77, 77, 0.05) 25%, rgba(42, 42, 42, 0.05) 25%, rgba(42, 42, 42, 0.05) 38%, rgba(223, 223, 223, 0.05) 38%, rgba(223, 223, 223, 0.05) 75%, rgba(36, 36, 36, 0.05) 75%, rgba(36, 36, 36, 0.05) 100%), linear-gradient(44deg, rgba(128, 128, 128, 0.05) 0%, rgba(128, 128, 128, 0.05) 34%, rgba(212, 212, 212, 0.05) 34%, rgba(212, 212, 212, 0.05) 57%, rgba(25, 25, 25, 0.05) 57%, rgba(25, 25, 25, 0.05) 89%, rgba(135, 135, 135, 0.05) 89%, rgba(135, 135, 135, 0.05) 100%), linear-gradient(241deg, rgba(55, 55, 55, 0.05) 0%, rgba(55, 55, 55, 0.05) 14%, rgba(209, 209, 209, 0.05) 14%, rgba(209, 209, 209, 0.05) 60%, rgba(245, 245, 245, 0.05) 60%, rgba(245, 245, 245, 0.05) 69%, rgba(164, 164, 164, 0.05) 69%, rgba(164, 164, 164, 0.05) 100%), linear-gradient(249deg, rgba(248, 248, 248, 0.05) 0%, rgba(248, 248, 248, 0.05) 32%, rgba(148, 148, 148, 0.05) 32%, rgba(148, 148, 148, 0.05) 35%, rgba(202, 202, 202, 0.05) 35%, rgba(202, 202, 202, 0.05) 51%, rgba(181, 181, 181, 0.05) 51%, rgba(181, 181, 181, 0.05) 100%), linear-gradient(92deg, hsl(214, 0%, 11%), hsl(214, 0%, 11%));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-simple-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    pointer-events: none;
    z-index: 0;
}

.about-simple-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: transparent;
    z-index: 1;
}

.about-simple-section .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

.breadcrumb-simple {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.breadcrumb-simple a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-simple a:hover {
    color: #E0E0E0;
}


.about-simple-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.about-image-simple {
    position: relative;
}

.about-image-simple img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.about-text-simple {
    font-size: 1.1rem;
    line-height: 1.9;
    color: white;
}

.about-text-simple p {
    color: white;
    margin-bottom: 1.5rem;
}

.drop-cap {
    font-size: 1.2rem;
}

.drop-cap::first-letter {
    float: left;
    font-size: 4.5rem;
    line-height: 0.9;
    padding-right: 0.5rem;
    padding-top: 0.2rem;
    font-weight: 700;
    color: #E0E0E0;
    font-family: 'Baron', serif;
}

.about-text-simple strong {
    color: var(--black);
    font-weight: 600;
}

@media (max-width: 968px) {
    .about-simple-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-simple {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ===== PRODUCT PAGES STYLES ===== */
/* Product Hero Section */
.product-hero-section {
    margin-top: 70px;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.product-hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.product-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.product-hero-description {
    font-size: 1.25rem;
    color: #666;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Lato', sans-serif;
}

/* Product Info Cards Section */
.product-info-section {
    padding: 80px 0;
    background: #F4F4F4;
}

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

.product-info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product-info-card:hover {
    transform: translateY(-5px);
}

.product-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--navajo-white), #FFF0DB);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.product-info-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.product-info-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Product Technical Specifications */
.product-specs-section {
    padding: 80px 0;
    background: white;
}

.product-specs-title {
    text-align: center;
    margin-bottom: 3rem;
}

.product-specs-wrapper {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.product-specs-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.product-specs-header {
    background: linear-gradient(135deg, var(--navajo-white), #FFF0DB);
    color: white;
}

.product-specs-header th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.product-specs-row {
    border-bottom: 1px solid #E0E0E0;
}

.product-specs-row:last-child {
    border-bottom: none;
}

.product-specs-cell {
    padding: 1.25rem 1.5rem;
    font-family: 'Lato', sans-serif;
}

.product-specs-cell:first-child {
    font-weight: 600;
    color: #1A1A1A;
}

.product-specs-cell:not(:first-child) {
    color: #666;
}

.product-specs-row:hover {
    background-color: #F9F9F9;
}

/* Product Application Areas */
.product-apps-section {
    padding: 80px 0;
    background: #F4F4F4;
}

.product-apps-title {
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-app-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-app-icon {
    font-size: 3rem;
    color: var(--navajo-white);
    margin-bottom: 1.5rem;
}

.product-app-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.product-app-text {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Product Gallery */
.product-gallery-section {
    padding: 80px 0;
    background: white;
    overflow: hidden;
}

.product-gallery-title {
    text-align: center;
    margin-bottom: 3rem;
}

.product-gallery-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 15px;
}

.product-gallery-track {
    display: flex;
    gap: 1.5rem;
    animation: product-gallery-scroll 30s linear infinite;
}

.product-gallery-item {
    flex: 0 0 400px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85) contrast(1.2) saturate(1.1);
    transition: filter 0.3s ease;
}

.product-gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
    color: white;
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

.product-gallery-item:hover img {
    filter: brightness(0.95) contrast(1.3) saturate(1.2);
}

.product-gallery-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

@keyframes product-gallery-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 5 - 1.5rem * 5));
    }
}

/* Product Pages Responsive */
@media (max-width: 768px) {
    .product-hero-title {
        font-size: 2.5rem;
    }

    .product-hero-description {
        font-size: 1.1rem;
    }

    .product-info-grid {
        grid-template-columns: 1fr;
    }

    .product-apps-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-item {
        flex: 0 0 300px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .product-hero-section {
        padding: 60px 0;
    }

    .product-hero-title {
        font-size: 2rem;
    }

    .product-hero-description {
        font-size: 1rem;
    }

    .product-info-section,
    .product-specs-section,
    .product-apps-section,
    .product-gallery-section {
        padding: 60px 0;
    }

    .product-info-card,
    .product-app-card {
        padding: 2rem;
    }

    .product-gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE OPTIMIZATIONS ===== */

/* Base mobile styles (320px and up) */
@media (max-width: 480px) {

    /* Typography scaling */
    html {
        font-size: 14px;
    }

    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Container adjustments */
    .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    /* Header mobile */
    .header {
        padding: 0.75rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(28, 28, 28, 0.95);
        backdrop-filter: blur(15px);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo img {
        max-width: 120px;
        height: auto;
    }

    /* Mobile menu button */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu-btn span {
        width: 24px;
        height: 2px;
        background: #ffffff;
        transition: all 0.3s ease;
    }

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

    /* Product Pages Responsive */
    .product-hero-title {
        font-size: 2.2rem;
    }

    .product-info-grid,
    .product-apps-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery-item {
        flex: 0 0 280px;
        height: 220px;
    }
}


/* ===== COMPREHENSIVE MOBILE RESPONSIVE OPTIMIZATIONS ===== */

/* Base mobile styles (320px and up) */
@media (max-width: 480px) {

    /* Typography scaling */
    html {
        font-size: 14px;
    }

    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.3;
        margin-bottom: 0.875rem;
    }

    h3 {
        font-size: clamp(1.25rem, 6vw, 1.75rem);
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }

    p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    /* Container adjustments */
    .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    /* Mobile Navigation Logic moved to the end of file for priority */
    .btn i {

        font-size: 1rem;
    }

    /* Hero section mobile */
    .hero-modern {
        padding: 3rem 0 2rem;
        min-height: auto;
    }

    .hero-modern-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
        margin-bottom: 1.5rem;
        text-align: center;
    }

    .hero-modern-content {
        text-align: center;
    }

    .hero-modern-actions {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-modern-visual {
        margin-top: 2rem;
    }

    .hero-visual-card {
        max-width: 100%;
    }

    .hero-visual-card img {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    /* Footer mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    /* Forms mobile */
    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-input,
    .form-textarea,
    .form-select {
        width: 100%;
        padding: 14px 16px;
        font-size: 16px;
        /* Prevents zoom on iOS */
        border-radius: 8px;
        -webkit-appearance: none;
        appearance: none;
    }

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

    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
        display: block;
    }

    /* Search overlay mobile */
    .search-overlay {
        padding: 1rem;
    }

    .search-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
        padding: 14px 16px;
    }

    /* Contact info cards mobile */
    .contact-info-card {

        margin-bottom: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Cards mobile */
    .card,
    .info-card,
    .product-card {
        margin-bottom: 1.5rem;
    }

    /* Grid adjustments */
    .grid,
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Images mobile */
    img {
        width: 100%;
        height: auto;
    }

    /* Loading screen mobile */
    .loader {
        width: 50px;
        height: 50px;
    }

    .loading-text {
        font-size: 1rem;
    }

    /* Tables mobile */
    table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    /* Maps mobile */
    .map-container,
    .map,
    gmp-map {
        height: 300px !important;
        width: 100% !important;
    }

    /* Cards mobile */
    .card,
    .info-card,
    .product-card,
    .blog-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Sections mobile */
    section {
        padding: 3rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }

    .section-subtitle {
        font-size: 1rem;
        margin-top: 0.5rem;
    }

    /* Breadcrumb mobile */
    .breadcrumb,
    .breadcrumb-simple {
        font-size: 0.875rem;
        flex-wrap: wrap;
    }

    /* Social links mobile */
    .social-links {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Scroll to top button mobile */
    .scroll-to-top {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
    }
}

/* Small mobile devices (320px - 375px) */
@media (max-width: 375px) {
    html {
        font-size: 13px;
    }

    .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    .btn {
        padding: 12px 18px;
        font-size: 0.95rem;
    }
}

/* Tablet portrait (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    /* Header tablet */
    .header {
        padding: 0.875rem 0;
    }

    .nav-logo img {
        max-width: 140px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Grid adjustments */
    .grid-2,
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    /* Hero tablet */
    .hero-modern {
        padding: 4rem 0 3rem;
    }

    .hero-modern-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-modern-actions {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .btn {
        width: auto;
        min-width: 200px;
    }

    /* Footer tablet */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Forms tablet */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Cards tablet */
    .card,
    .info-card,
    .product-card {
        padding: 2rem;
    }

    /* Contact info tablet */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet landscape and small desktop (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    /* Navigation tablet landscape */
    .mobile-menu-btn {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: transparent;
        padding: 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

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

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

    /* Hero tablet landscape */
    .hero-modern .container { width: 100% !important; max-width: 1440px !important; margin-left: auto !important; margin-right: auto !important; padding-left: 30px !important; padding-right: 30px !important; display: block !important; position: relative !important; }

    .hero-modern-visual {
        order: -1;
    }

    /* Footer tablet landscape */
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Forms tablet landscape */
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact info tablet landscape */
    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Landscape orientation optimizations */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-modern {
        min-height: auto;
        padding: 3rem 0 2rem;
    }

    .hero-modern-title {
        font-size: 2rem;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {
    img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {

    .nav-menu,
    .footer,
    .btn,
    button {
        display: none !important;
    }

    body {
        background-image: radial-gradient(circle at 54% 50%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 8%, transparent 8%, transparent 92%), radial-gradient(circle at 14% 71%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 8%, transparent 8%, transparent 92%), radial-gradient(circle at 42% 48%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 6%, transparent 6%, transparent 94%), radial-gradient(circle at 97% 84%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 6%, transparent 6%, transparent 94%), radial-gradient(circle at 74% 70%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 6%, transparent 6%, transparent 94%), radial-gradient(circle at 65% 42%, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.03) 6%, transparent 6%, transparent 94%), radial-gradient(circle at 59% 88%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 4%, transparent 4%, transparent 96%), radial-gradient(circle at 10% 69%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 4%, transparent 4%, transparent 96%), radial-gradient(circle at 41% 72%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 4%, transparent 4%, transparent 96%), radial-gradient(circle at 59% 78%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.04) 4%, transparent 4%, transparent 96%), linear-gradient(90deg, rgb(65, 65, 65), rgb(230, 230, 230));
        font-size: 12pt;
        line-height: 1.5;
    }

    a {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor { width: 10px; height: 10px; background: #ffffff; border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1000000; mix-blend-mode: difference; transition: transform 0.1s ease-out; display: block !important; opacity: 1 !important; visibility: visible !important; }

.cursor-follower { width: 40px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 50%; position: fixed; top: -15px; left: -15px; pointer-events: none; z-index: 9999998 !important; transition: transform 0.25s ease-out, background 0.3s, border-color 0.3s, width 0.3s, height 0.3s; display: block !important; opacity: 1 !important; visibility: visible !important; }

.cursor-follower.active {
    width: 50px;
    height: 50px;
    background: rgba(var(--gold-rgb), 0.15);
    border-color: var(--primary-hover);
    border-width: 2px;
}

@media (max-width: 1024px) {

    .custom-cursor,
    .cursor-follower { width: 40px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 50%; position: fixed; top: -15px; left: -15px; pointer-events: none; z-index: 9999998 !important; transition: transform 0.25s ease-out, background 0.3s, border-color 0.3s, width 0.3s, height 0.3s; display: block !important; opacity: 1 !important; visibility: visible !important; }
}

/* ===== 3D TILT EFFECT REMOVED ===== */

/* ===== TYPOGRAPHY REVEAL STRUCTURE ===== */
.split-line {
    overflow: hidden;
    line-height: 1.2;
}

.split-char {
    display: inline-block;
    will-change: transform;
}

/* ===== MAGNETIC BUTTONS AREA ===== */
.btn,
.whatsapp-float,
.nav-link,
.logo {
    position: relative;
    display: inline-flex;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== ANIMATED MESH GRADIENT ===== */
.mesh-gradient-bg { width: 100vw; height: 100vh; position: fixed; top: 0; left: 0; z-index: -1; overflow: hidden; pointer-events: none; }

@keyframes meshFlow {
    0% {
        transform: scale(1) translate(0, 0);
    }

    50% {
        transform: scale(1.1) translate(20px, -20px);
    }

    100% {
        transform: scale(1) translate(-20px, 10px);
    }
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: rgba(37, 211, 102, 1);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.45);
}

.whatsapp-tooltip {
    position: absolute;
    left: 75px;
    background: var(--navbar-solid);
    backdrop-filter: blur(12px);
    padding: 10px 18px;
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(15px);
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid var(--border);
    pointer-events: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* ===== TRANSFORMATION SECTION (BEFORE/AFTER) ===== */
.transformation-section {
    padding: 140px 0;
    background: transparent;
    position: relative;
    z-index: 10;
}

.before-after-wrapper {
    max-width: 1100px;
    margin: 60px auto 0;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.before-after-container {
    width: 100%;
    height: 600px;
    position: relative;
    user-select: none;
    cursor: none;
    /* We'll use a custom cursor or the handle */
    overflow: hidden;
}

.image-after,
.image-before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-after img,
.image-before img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.image-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0);
    /* Horizontal clipping */
    will-change: clip-path;
}

.label-before,
.label-after {
    position: absolute;
    top: 30px;
    padding: 10px 22px;
    background: var(--navbar-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 12px;
    z-index: 3;
    pointer-events: none;
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.label-before {
    left: 30px;
}

.label-after {
    right: 30px;
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--navajo-white);
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6),
        0 0 40px rgba(255, 255, 255, 0.3);
}

.handle-circle {
    width: 64px;
    height: 64px;
    background: var(--btn-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--btn-text);
    font-size: 18px;
    box-shadow: 0 0 40px rgba(224, 224, 224, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid var(--bg-card);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.before-after-container:hover .handle-circle {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .before-after-container {
        height: 450px;
    }

    .label-before,
    .label-after {
        top: 20px;
        font-size: 10px;
        padding: 6px 14px;
    }

    .handle-circle {
        width: 50px;
        height: 50px;
        font-size: 14px;
    }
}

@media (min-width: 1025px) {

    html,
    body,
    a,
    button,
    .btn,
    .nav-link,
    .whatsapp-float,
    .product-link,
    [role="button"] {
        cursor: none !important;
    }
}

/* Fix Typography Overflow */
.split-line {
    color: #00401A;
    display: block;
    overflow: visible !important;
    white-space: normal;
    position: relative;
    padding-bottom: 5px;
}

.split-char {
    color: #2C3E50;
    display: inline-block;
    will-change: transform;
    opacity: 1;
}

.hero-modern-title,
.section-title {
    overflow: visible !important;
}

/* ===== LUXURY PAGE UTILITIES ===== */
.unified-page-body {
    background: var(--bg-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
    padding-top: 100px;
    position: relative;
    overflow-x: hidden;
}

.unified-page-body main,
.unified-page-body .page-wrapper,
.unified-page-body .product-container {
    flex: 1;
    width: 100%;
}

footer {
    margin-top: auto;
    /* Sticky footer push */
}

/* LUXURY TREE TIMELINE */
.luxury-tree {
    position: relative;
    max-width: 1100px;
    /* Centered and tightened */
    margin: 100px auto;
    padding: 60px 20px;
}

.tree-line {
    position: absolute;
    left: calc(50% - 1px);
    top: 150px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom,
            transparent,
            var(--text-dark) 15%,
            var(--text-dark) 85%,
            transparent);
    opacity: 0.2;
    transform-origin: top;
    height: calc(100% - 150px);
    z-index: 1;
}

.tree-item {
    position: relative;
    width: 100%;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
}

.tree-content {
    width: 45%;
    /* Precise branch width */
    position: relative;
    padding: 0 40px;
    /* Tighter gap from trunk */
    box-sizing: border-box;
}

.tree-item:nth-child(odd) .tree-content {
    margin-right: 50%;
    text-align: center;
}

.tree-item:nth-child(even) .tree-content {
    margin-left: 50%;
    text-align: center;
}

.tree-node {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 14px;
    background: #E0E0E0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 25px #E0E0E0;
    transition: transform 0.3s ease;
}

.tree-reveal {
    opacity: 0;
    transform: translateY(30px);
}

.tree-node::before {
    content: '';
    position: absolute;
    width: 41px;
    height: 2px;
    background: #E0E0E0;
    top: 50%;
    z-index: -1;
    opacity: 0.6;
}

.tree-item:nth-child(odd) .tree-node::before {
    right: 100%;
}

.tree-item:nth-child(even) .tree-node::before {
    left: 100%;
}

@media (max-width: 768px) {
    .tree-line {
        left: 20px;
        top: 100px;
        height: calc(100% - 100px);
    }

    .tree-item {
        padding-left: 50px;
        margin-bottom: 40px;
    }

    .tree-content {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 20px !important;
        text-align: left !important;
    }

    .tree-node {
        left: 20px !important;
    }

    .tree-node::before {
        width: 30px;
    }
}

.page-hero {
    height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 40px;
}

.luxury-title {
    font-size: clamp(3rem, 10vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-dark);
    margin: 0;
}

.luxury-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
}

.luxury-glass-card:hover {
    border-color: #E0E0E0;
    transform: translateY(-10px);
}

.luxury-icon {
    font-size: 3rem;
    color: #E0E0E0;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.05));
}

.card-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.card-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-primary);
}

.luxury-list li {
    color: var(--text-primary) !important;
    margin-bottom: 15px;
}

.stats-board {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin: 100px 0;
    padding: 80px 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.contact-card-compact {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.contact-card-compact:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px);
}

.contact-icon-small {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--navajo-white);
    flex-shrink: 0;
}

.section-spacer {
    margin-top: 100px;
    margin-bottom: 50px;
}

.luxury-stat-item h2 {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -3px;
}

.luxury-stat-item h2.counter {
    color: var(--text-dark) !important;
}

.luxury-stat-item p {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary) !important;
    opacity: 1 !important;
}

.luxury-stat-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

@media (max-width: 768px) {
    .luxury-title {
        font-size: 3.5rem;
    }

    .luxury-glass-card {
        padding: 40px 30px;
        background: var(--bg-card);
    }
}

/* LUXURY PRODUCT SYSTEM */
.luxury-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.luxury-product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 35px;
    padding: 30px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}

.luxury-product-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.luxury-product-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
    margin-bottom: 25px;
}

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

.luxury-product-card:hover .luxury-product-img img {
    transform: scale(1.1);
}

.luxury-product-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.luxury-product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--navajo-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* PRODUCT DETAIL: SPLIT LAYOUT */
.split-product-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
}

.product-gallery-side {
    position: sticky;
    top: 150px;
}

.glass-detail-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 60px 50px;
}

.luxury-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.luxury-spec-label {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.luxury-spec-value {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
}

@media (max-width: 1024px) {
    .split-product-container {
        grid-template-columns: 1fr !important;
    }

    .product-gallery-side {
        position: static !important;
    }

    /* ===== FINAL MOBILE NAVIGATION FIX (FORCED PRIORITY v4) ===== */
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0;
        right: 0;
        width: 100%;
        height: auto !important;
        z-index: 2000 !important;
        background: var(--header-bg) !important;
        backdrop-filter: blur(25px) !important;
        box-shadow: var(--shadow);
        padding: 15px 0 !important;
        border-bottom: 1px solid var(--border-color) !important;
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .nav-logo {
        display: block !important;
        z-index: 2501 !important;
    }

    .nav-logo img {
        max-width: 120px !important;
    }

    .nav-actions {
        display: flex !important;
        align-items: center !important;
        z-index: 2501 !important;
    }

    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 0 !important;
    }

    .mobile-menu-btn span {
        width: 28px !important;
        height: 2px !important;
        background-color: var(--text-primary) !important;
        display: block !important;
        transition: all 0.4s ease !important;
        border-radius: 2px !important;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0 !important;
        transform: translateX(-10px) !important;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
    }

    .nav-menu {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: rgba(10, 10, 10, 0.7) !important;
        backdrop-filter: blur(8px) !important;
        z-index: 1500 !important;
        padding: 120px 40px 60px !important;
        display: flex !important;
        flex-direction: column !important;
        transform: translateX(100%) !important;
        transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        overflow-y: auto !important;
    }

    .nav-menu.active {
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-link {
        font-size: 1.6rem !important;
        font-weight: 800 !important;
        padding: 20px 0 !important;
        color: var(--text-dark) !important;
        border-bottom: 1px solid var(--border-color) !important;
        text-transform: uppercase !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .dropdown-menu,
    .submenu {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding-left: 20px !important;
    }

    .dropdown.active>.dropdown-menu,
    .dropdown-submenu.active>.submenu {
        max-height: 2000px !important;
        padding: 10px 0 10px 20px !important;
    }

    .dropdown-menu li a,
    .submenu li a {
        font-size: 1.2rem !important;
        color: rgba(255, 255, 255, 0.6) !important;
        padding: 12px 0 !important;
        display: block !important;
        cursor: pointer !important;
    }

    .nav-link,
    .nav-link i {
        cursor: pointer !important;
    }
}

/* ===== GLOBALIZATION & SEARCH HUB UPDATES ===== */

/* Search Trigger Button */
.search-trigger {
    background: var(--bg-hover);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-trigger:hover {
    background: #E0E0E0;
    border-color: #E0E0E0;
    color: #000;
    transform: translateY(-2px);
}

/* Language Switcher */
.lang-switcher {
    position: relative;
    z-index: 1000;
}

.lang-current {
    background: var(--bg-hover);
    border: 1px solid var(--border);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

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

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 160px;
    background: var(--dropdown-bg);
    backdrop-filter: blur(8px);
    border: 1px solid var(--dropdown-border);
    border-radius: 15px;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.lang-dropdown a {
    display: block;
    padding: 10px 15px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none !important;
}

.lang-dropdown a:hover {
    background: var(--dropdown-hover);
    color: #E0E0E0;
}

/* Search Hub Overlay */
.search-hub-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--header-bg);
    backdrop-filter: blur(8px);
    z-index: 9999;
    padding: 100px 40px;
    display: flex;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.search-hub-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-close {
    position: absolute;
    top: 40px;
    right: 40px;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.search-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.search-hub-content {
    width: 100%;
    max-width: 900px;
}

.search-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: #E0E0E0;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.2s;
}

.search-hub-overlay.active .search-label {
    opacity: 1;
    transform: translateY(0);
}

.search-input-wrapper {
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.search-hub-overlay.active .search-input-wrapper {
    opacity: 1;
    transform: translateY(0);
}

#search-hub-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--border-color);
    padding: 20px 0;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-dark);
    outline: none;
    transition: all 0.5s ease;
}

#search-hub-input:focus {
    border-bottom-color: #E0E0E0;
}

.search-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: #E0E0E0;
    pointer-events: none;
}

/* RTL (Arabic) Support */
[dir="rtl"] {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .nav-link i,
[dir="rtl"] .dropdown-menu i {
    transform: rotate(180deg);
}

[dir="rtl"] .lang-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .search-icon {
    right: auto;
    left: 0;
}

[dir="rtl"] .hero-modern-title {
    letter-spacing: 0;
    font-family: 'Outfit', sans-serif;
    /* Add Arabic fallback font if available */
}

/* LOOKBOOK GALLERY */
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 30px;
}

.lookbook-item {
    position: relative;
    aspect-ratio: 16/10;
    border-radius: 30px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
}

.lookbook-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.lookbook-item:hover .lookbook-img {
    transform: scale(1.1);
}

.lookbook-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: all 0.5s ease;
}

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

.lookbook-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.lookbook-item:hover .lookbook-title {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .lookbook-grid {
        grid-template-columns: 1fr;
    }
}

/* Global Contrast & Theme Stabilization */
h1, h2, h3, h4, h5, h6, .hero-luxury-title, .section-title {
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

p, span, li, .hero-luxury-subtitle, .boutique-card p {
    color: rgba(255,255,255,0.9) !important;
}

.custom-cursor { width: 10px; height: 10px; background: #ffffff; border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1000000; mix-blend-mode: difference; transition: transform 0.1s ease-out; display: block !important; opacity: 1 !important; visibility: visible !important; }

.cursor-follower { width: 40px; height: 40px; border: 2px solid rgba(255, 255, 255, 0.4); border-radius: 50%; position: fixed; top: -15px; left: -15px; pointer-events: none; z-index: 9999998 !important; transition: transform 0.25s ease-out, background 0.3s, border-color 0.3s, width 0.3s, height 0.3s; display: block !important; opacity: 1 !important; visibility: visible !important; }

/* Button & Card Theme Fixes */
.btn-primary {
    background-color: #ffffff !important;
    color: #2c3e50 !important;
    border: none !important;
}

.btn-primary:hover {
    background-color: #E0E0E0 !important;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.boutique-card { min-width: 0; min-height: 400px; position: relative; overflow: hidden; transform-origin: center center; will-change: transform, opacity; }





.section-title, .hero-luxury-title, .luxury-title { color: #ffffff !important; text-shadow: 0 4px 15px rgba(0,0,0,0.4) !important; }
p, span, li, .card-text { color: rgba(255,255,255,0.95) !important; }



@media (max-width: 992px) { .boutique-section > .container > div { grid-template-columns: 1fr !important; } .boutique-card { min-width: 0; min-height: 400px; position: relative; overflow: hidden; transform-origin: center center; will-change: transform, opacity; } }





.container { 
    width: 100% !important; 
    max-width: 1440px !important; 
    margin-left: auto !important; 
    margin-right: auto !important; 
    padding-left: 50px !important; 
    padding-right: 50px !important; 
    box-sizing: border-box !important;
}
.boutique-section {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}
.boutique-section > .container > div {
    width: 100% !important;
    max-width: 100% !important;
}

.stats-board {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    padding: 60px 30px !important;
}
.luxury-stat-item {
    flex: 1 1 220px !important; /* Increased from 200px to give Premium more room */
    min-width: 0 !important;
    text-align: center !important;
}
.stats-board .counter {
    font-size: clamp(2rem, 4vw, 3.8rem) !important; /* Slightly smaller max to fit the word perfectly */
    font-weight: 900 !important;
    margin-bottom: 10px !important;
    white-space: nowrap !important; /* Forces the word to stay together */
}
.luxury-stat-item p {
    font-size: clamp(0.7rem, 1.2vw, 0.9rem) !important;
    white-space: normal !important;
}


