/* ==========================================
   SUU LABEL - Premium Design System & Stylesheet
   ========================================== */

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

:root {
    --bg-light: #ffffff;             /* Pure white background */
    --bg-dark: #f8fafc;              /* Soft sky slate white */
    --bg-dark-alt: #f1f5f9;          /* Slightly darker soft gray/blue */
    --text-light: #0f172a;           /* Dark slate/navy text for general sections */
    --text-muted: #475569;           /* Slate steel gray for descriptions */
    --text-dark: #0f172a;            /* Obsidian navy text */
    --accent-gold: #0ea5e9;          /* Light blue / Cyan (Suu Label Logo) */
    --accent-gold-hover: #0284c7;    /* Deeper light blue */
    --accent-green: #0d9488;         /* Teal / Turquoise for ecological section */
    --border-dark: rgba(15, 23, 42, 0.08); /* Soft borders */
    --glass-nav-bg: rgba(255, 255, 255, 0.85);
    --glass-nav-border: rgba(15, 23, 42, 0.06);
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    letter-spacing: 0.5px;
}

p {
    font-family: 'Outfit', sans-serif;
    font-weight: 300;
    font-size: 1rem;
}

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

/* ==========================================
   Navigation Bar & Top Bar (Glassmorphism Dual-Tone)
   ========================================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--glass-nav-bg);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-nav-border);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Top Info & Social Media Bar */
.top-bar {
    background: rgba(15, 23, 42, 0.025);
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
    padding: 7px 0;
    transition: all 0.3s ease;
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar-info {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-info:hover {
    color: var(--accent-gold);
}

.top-bar-divider {
    font-size: 10px;
    color: rgba(15, 23, 42, 0.2);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
}

.top-bar-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-bar-socials a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.04);
    transition: all 0.3s ease;
}

.top-bar-socials a:hover {
    color: #ffffff;
    background: var(--accent-gold);
    transform: translateY(-1px);
}

.top-bar-socials a svg {
    width: 13px;
    height: 13px;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: padding 0.3s ease;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-dark);
    transition: color 0.5s ease;
}

.logo span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    color: var(--accent-gold);
    margin-left: 2px;
    font-size: 26px;
    letter-spacing: 1px;
}

.logo-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
    position: relative;
    padding: 6px 0;
    transition: color 0.5s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

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

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

.nav-links a.active {
    color: var(--accent-gold);
}

.nav-links a.active::after {
    width: 100%;
}

/* Navigation Dropdown Menu (Kurumsal) */
.nav-links li.nav-dropdown {
    position: relative;
}

.nav-links .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-links .dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 2px;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    z-index: 110;
}

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

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active {
    background: rgba(14, 165, 233, 0.08);
    color: var(--accent-gold);
    padding-left: 26px;
}

/* Button Primary Navigation */
.btn-primary {
    background: var(--text-dark);
    color: var(--bg-light) !important;
    padding: 10px 22px !important;
    border-radius: 40px;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 1.5px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    white-space: nowrap;
}

.btn-primary::after {
    display: none !important;
}

.btn-primary:hover {
    background: var(--accent-gold) !important;
    color: var(--bg-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.2);
}

/* Nav Scrolled State (Light Theme Transition) */
.glass-nav.nav-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border-dark);
    padding: 0;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.glass-nav.nav-scrolled .nav-container {
    padding: 12px 40px;
}

.glass-nav.nav-scrolled .logo {
    color: var(--text-dark);
}

.glass-nav.nav-scrolled .nav-links a {
    color: var(--text-dark);
}

.glass-nav.nav-scrolled .nav-links a:hover {
    color: var(--accent-gold);
}

.glass-nav.nav-scrolled .btn-primary {
    background: var(--accent-gold);
    color: #fff !important;
}

.glass-nav.nav-scrolled .btn-primary:hover {
    background: var(--accent-gold-hover) !important;
    color: #fff !important;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    z-index: 10005;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn:hover {
    background: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.18);
    transform: scale(1.05);
}

.mobile-menu-btn.active {
    position: fixed;
    top: 18px;
    right: 20px;
    background: #0f172a !important;
    border-color: #0f172a !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.3) !important;
}

.mobile-menu-btn span {
    width: 20px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: center;
}

.mobile-menu-btn.active span {
    background-color: #ffffff !important;
}

.glass-nav.nav-scrolled .mobile-menu-btn {
    background: rgba(255, 255, 255, 0.98);
}

/* ==========================================
   Mobile Nav Menu & Backdrop Overlay
   ========================================== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    z-index: 10002;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 75px 24px 50px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -10px 0 40px rgba(15, 23, 42, 0.2);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    z-index: 10000;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
}

.mobile-nav a {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #0f172a;
    display: block;
    padding: 12px 16px;
    border-radius: 12px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    color: #b45309;
    background: rgba(217, 119, 6, 0.08);
    font-weight: 700;
}

/* Mobile Navigation Submenu */
.mobile-dropdown {
    width: 100%;
    text-align: center;
}

.mobile-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
}

.mobile-dropdown.open .mobile-dropdown-toggle {
    color: #b45309;
    background: rgba(217, 119, 6, 0.08);
}

.mobile-dropdown-toggle .mobile-arrow {
    transition: transform 0.3s ease;
}

.mobile-dropdown.open .mobile-dropdown-toggle .mobile-arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    margin-top: 6px;
}

.mobile-dropdown.open .mobile-dropdown-menu {
    display: flex;
}

.mobile-dropdown-menu a {
    font-size: 13px !important;
    letter-spacing: 1.2px !important;
    color: #475569 !important;
    padding: 10px 14px !important;
    border-radius: 8px !important;
    font-weight: 500 !important;
    background: transparent !important;
}

.mobile-dropdown-menu a:hover,
.mobile-dropdown-menu a.active {
    color: #b45309 !important;
    font-weight: 700 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
}

.btn-primary-mobile {
    background: #0f172a !important;
    color: #ffffff !important;
    border-radius: 40px !important;
    padding: 14px 24px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    font-size: 13px !important;
    text-align: center;
    margin-top: 10px !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15) !important;
    width: 100%;
    text-transform: uppercase;
}

.btn-primary-mobile:hover {
    background: #d97706 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
    width: 100%;
}

.mobile-lang-switcher .lang-btn {
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-lang-switcher .lang-btn.active {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.mobile-lang-switcher .lang-sep {
    display: none;
}

/* Mobile Social Icons */
.mobile-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 30px;
    width: 100%;
}

.mobile-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
}

.mobile-socials a:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px);
}

.mobile-socials a svg {
    width: 16px;
    height: 16px;
    display: block;
    stroke: currentColor;
    fill: none;
}

/* Hide AI Chat button when mobile menu is open to prevent overlap */
body.mobile-nav-open #ai-chat-btn,
body.mobile-nav-open #ai-chat-win {
    opacity: 0 !important;
    pointer-events: none !important;
    transform: scale(0.8) !important;
    transition: all 0.3s ease !important;
}

/* ==========================================
   Scroll-Driven Video Hero Section
   ========================================== */
#video-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    overflow: hidden;
}

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

#scroll-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Seamless transition at the bottom to the dark obsidian main content */
.canvas-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, 
                rgba(0, 0, 0, 0) 0%, 
                rgba(0, 0, 0, 0) 70%, 
                var(--bg-dark) 100%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    z-index: 5;
    background: transparent;
    pointer-events: none;
}

.hero-text-wrapper {
    max-width: 700px;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #0284c7;
    margin-bottom: 20px;
    display: block;
    transform: translateY(20px);
    opacity: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 25px;
    transform: translateY(35px);
    opacity: 0;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.6);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    color: #1e293b;
    font-weight: 400;
    max-width: 550px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    transform: translateY(35px);
    opacity: 0;
}

/* Mouse Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeIn 1.2s ease 1.5s forwards;
    z-index: 6;
    pointer-events: auto;
}

.scroll-indicator span {
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0f172a;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.mouse {
    width: 28px;
    height: 46px;
    border: 2.5px solid #0f172a;
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.wheel {
    width: 5px;
    height: 10px;
    background: #0f172a;
    border-radius: 3px;
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes scrollWheel {
    0% { top: 7px; opacity: 1; }
    50% { opacity: 1; }
    100% { top: 26px; opacity: 0; }
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* ==========================================
   Main Content Transition to Dark Theme
   ========================================== */
.main-content {
    background-color: var(--bg-dark);
    position: relative;
    z-index: 10;
}

.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.dark-section-alt {
    background-color: var(--bg-dark-alt);
    color: var(--text-light);
}

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

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Header Typography */
.section-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-gold);
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    padding-left: 30px;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 1px;
    background-color: var(--accent-gold);
}

.section-tag.text-green {
    color: var(--accent-green);
}

.section-tag.text-green::before {
    background-color: var(--accent-green);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    max-width: 600px;
    margin-top: 15px;
}

.section-header.text-center .section-subtitle {
    margin: 15px auto 0;
}

.section-header.text-center .section-tag::before {
    display: none;
}
.section-header.text-center .section-tag {
    padding-left: 0;
}

.section-title.center-title {
    position: relative;
}

/* ==========================================
   About Section (Kurumsal)
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    font-weight: 300;
}

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

.stat-item {
    border-left: 1px solid var(--border-dark);
    padding-left: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Luxury Interactive Card */
.about-visual {
    position: relative;
}

.luxury-card {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    padding: 50px 40px;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.luxury-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: var(--accent-gold);
    box-shadow: 0 30px 60px rgba(14, 165, 233, 0.1);
}

.luxury-card-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--accent-gold);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.luxury-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.luxury-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 40px;
}

.luxury-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
}

.luxury-card-footer .arrow-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.luxury-card:hover .luxury-card-footer .arrow-icon {
    transform: translateX(8px);
}

.visual-mesh-deco {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-gold);
    border-radius: 20px;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
    transition: all 0.5s ease;
}

.luxury-card:hover ~ .visual-mesh-deco {
    top: -10px;
    right: -10px;
    opacity: 0.25;
}

/* ==========================================
   Collections Section (Ürün Grupları)
   ========================================== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.collection-card {
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-dark);
    cursor: pointer;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.collection-card:hover .card-bg {
    transform: scale(1.08);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.95) 0%, rgba(10, 10, 12, 0.6) 40%, rgba(10, 10, 12, 0) 100%);
    transition: all 0.5s ease;
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.18);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.collection-card:hover .card-icon {
    background: var(--accent-gold);
    color: var(--bg-dark);
    transform: translateY(-5px);
}

.collection-card h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.collection-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.5;
    opacity: 0.9;
}

.card-features {
    list-style: none;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-features li {
    font-size: 13px;
    color: var(--accent-gold);
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.card-features li::before {
    content: '▪';
    position: absolute;
    left: 0;
    color: var(--accent-gold);
}

.collection-card:hover .card-features {
    max-height: 100px;
    opacity: 1;
    margin-top: 10px;
}

/* ==========================================
   Sustainability Section (Sürdürülebilirlik)
   ========================================== */
.sustainability-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.certifications-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 40px;
}

.cert-card {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    padding: 20px 15px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: var(--accent-green);
    background: rgba(13, 148, 136, 0.05);
}

.cert-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    color: var(--text-dark);
    display: block;
    margin-bottom: 5px;
}

.cert-desc {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sustainability-visual {
    position: relative;
}

.eco-interactive-card {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 60px 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.green-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.1) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
}

.eco-interactive-card h3 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.eco-interactive-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 40px;
}

.eco-metrics {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
}

.eco-metrics .metric {
    flex: 1;
}

.eco-metrics .number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--accent-green);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.eco-metrics .label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

/* ==========================================
   Production Process Section (Üretim Süreci)
   ========================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 70px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 35px;
    left: 40px;
    width: calc(100% - 80px);
    height: 1px;
    background: var(--border-dark);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    border: 1px solid var(--border-dark);
    transition: all 0.4s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
}

.step-num {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    color: var(--accent-gold);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.process-step:hover .step-num {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3);
}

.step-content h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================
   Contact Section (İletişim)
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
}

.contact-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-list li {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-list h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-gold);
    margin-bottom: 5px;
}

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

/* Luxury Input Fields & Forms */
.contact-form-wrapper {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

.form-group label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 2px;
}

.luxury-form input, 
.luxury-form select, 
.luxury-form textarea {
    background: var(--bg-dark);
    border: 1px solid var(--border-dark);
    padding: 16px 20px;
    border-radius: 12px;
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 300;
    transition: all 0.3s ease;
    outline: none;
    width: 100%;
}

.luxury-form input::placeholder,
.luxury-form textarea::placeholder {
    color: #94a3b8;
}

.luxury-form input:focus, 
.luxury-form select:focus, 
.luxury-form textarea:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 15px rgba(14, 165, 233, 0.15);
}

.luxury-form select option {
    background: #ffffff;
    color: var(--text-dark);
}

.btn-submit {
    background: var(--accent-gold);
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-submit:hover {
    background: var(--accent-gold-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.25);
}

/* ==========================================
   Footer Section
   ========================================== */
.site-footer {
    background-color: #0b192c; /* Deep navy premium */
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 100px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 70px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 25px;
}

.footer-text {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 30px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-socials a svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.footer-socials a:hover svg {
    transform: scale(1.1);
}

.footer-links-col h4 {
    font-family: 'Outfit', sans-serif;
    color: #ffffff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 1px;
    background-color: var(--accent-gold);
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links-col ul li a {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 300;
}

.footer-links-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 35px;
    display: flex;
    justify-content: center;
    text-align: center;
    color: #475569;
    font-size: 12px;
    line-height: 1.8;
}

/* ==========================================
   GSAP & CSS Animation Utilities
   ========================================== */
/* GSAP handles scroll animations dynamically. No initial opacity 0 conflicts in CSS. */

/* ==========================================
   Responsive Grid & Media Queries
   ========================================== */
@media (max-width: 1024px) {
    .glass-nav.nav-scrolled .nav-container {
        padding: 12px 20px !important;
    }

    .nav-container {
        padding: 14px 20px !important;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .about-grid, 
    .sustainability-layout, 
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .certifications-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    .glass-nav.nav-scrolled .nav-container {
        padding: 10px 16px !important;
    }

    .nav-container {
        padding: 10px 16px !important;
    }

    .container {
        padding: 0 16px !important;
        max-width: 100% !important;
    }

    .section-padding {
        padding: 60px 0;
    }
    
    .hero-overlay {
        padding: 0 5%;
        align-items: center;
        text-align: center;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .certifications-row {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================
   AI Chat Assistant Widget
   ========================================== */
.ai-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Outfit', sans-serif;
}

.ai-chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.ai-chat-button:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.ai-chat-button .pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #0ea5e9;
    opacity: 0.6;
    animation: aiPulse 2s infinite;
    z-index: -1;
}

@keyframes aiPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.ai-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 520px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.55);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: bottom right;
}

.ai-chat-window.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.ai-chat-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.ai-chat-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
    flex-shrink: 0;
}

.ai-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: contain;
    padding: 3px;
    display: block;
}

.ai-avatar::after {
    content: '';
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #22c55e;
    border: 2px solid #0f172a;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.4);
    animation: pulseActive 2s infinite;
    z-index: 2;
}

@keyframes pulseActive {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.ai-chat-header-text h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.ai-chat-header-text span {
    font-size: 11px;
    color: #94a3b8;
}

.ai-chat-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.ai-chat-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.ai-chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(248, 250, 252, 0.7);
}

.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}
.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.ai-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.08);
    border-radius: 3px;
}
.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.15);
}

.ai-msg {
    max-width: 80%;
    padding: 12px 16px;
    font-size: 13.5px;
    line-height: 1.5;
    transition: all 0.2s ease-in-out;
}

.ai-msg.assistant {
    background: #ffffff;
    color: #0f172a;
    align-self: flex-start;
    border-radius: 18px 18px 18px 4px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.ai-msg.user {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    align-self: flex-end;
    border-radius: 18px 18px 4px 18px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.2);
}

.ai-chat-input-area {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    flex-shrink: 0;
}

.ai-chat-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.ai-chat-input {
    width: 100%;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 30px;
    padding: 10px 48px 10px 18px;
    font-size: 13.5px;
    outline: none;
    transition: all 0.3s;
    background: #ffffff;
    box-sizing: border-box;
}

.ai-chat-input:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.ai-chat-send {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #0f172a;
    color: #ffffff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
}

.ai-chat-send:hover {
    background: #0ea5e9;
}

.ai-options-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 5px;
}

.ai-option-btn {
    background: #ffffff;
    border: 1px solid #0ea5e9;
    color: #0ea5e9;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.ai-option-btn:hover {
    background: #0ea5e9;
    color: #ffffff;
}

.ai-whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
}

.ai-whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* --- AI Chatbot Realism & Form Additions --- */
.ai-typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    max-width: 80%;
    margin-bottom: 5px;
}

.ai-typing-dot {
    width: 6px;
    height: 6px;
    background-color: #0ea5e9;
    border-radius: 50%;
    animation: aiBlink 1.4s infinite both;
}

.ai-typing-dot:nth-child(2) { animation-delay: .2s; }
.ai-typing-dot:nth-child(3) { animation-delay: .4s; }

@keyframes aiBlink {
    0% { opacity: .2; transform: scale(0.8); }
    20% { opacity: 1; transform: scale(1.1); }
    100% { opacity: .2; transform: scale(0.8); }
}

.ai-embedded-form {
    background: #ffffff;
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 16px;
    padding: 20px;
    width: 100%;
    max-width: 320px;
    align-self: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
    animation: aiFormSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes aiFormSlideIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.ai-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ai-form-group label {
    font-size: 11px;
    font-weight: 600;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-form-input {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s;
    background: #f8fafc;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
}

.ai-form-input:focus {
    border-color: #0ea5e9;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.ai-form-select {
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 13px;
    outline: none;
    transition: all 0.3s;
    background: #f8fafc;
    color: #0f172a;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
}

.ai-form-select:focus {
    border-color: #0ea5e9;
    background: #ffffff;
}

.ai-form-submit {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    padding: 10px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(14, 165, 233, 0.2);
}

.ai-form-submit:hover {
    box-shadow: 0 6px 15px rgba(14, 165, 233, 0.3);
    transform: translateY(-1px);
}

.ai-msg.user {
    position: relative;
    padding-bottom: 22px;
}

.ai-msg-status {
    position: absolute;
    bottom: 4px;
    right: 12px;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 3px;
}

.ai-msg.assistant {
    position: relative;
    padding-bottom: 22px;
}

.ai-msg-time {
    position: absolute;
    bottom: 4px;
    left: 12px;
    font-size: 9px;
    color: #94a3b8;
}

@media (max-width: 576px) {
    .ai-chat-widget {
        bottom: 15px;
        right: 15px;
        z-index: 100003;
    }
    
    .ai-chat-window {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        width: 100% !important;
        height: 100% !important;
        border-radius: 0;
        border: none;
        transform: translateY(100%);
        transform-origin: bottom;
    }
    
    .ai-chat-window.active {
        transform: translateY(0);
    }

    .ai-chat-header {
        padding-top: calc(20px + env(safe-area-inset-top, 0px));
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
    }

    .ai-chat-input-area {
        padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 15px;
    }

    .ai-chat-input {
        font-size: 16px !important;
    }
}

/* ==========================================
   Language Switcher & Flag Styling
   ========================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 15px;
    padding: 6px 14px;
    background: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 20px;
}

.lang-btn {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    transition: color 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--accent-gold);
}

.lang-sep {
    font-size: 10px;
    color: rgba(15, 23, 42, 0.15);
    user-select: none;
}

/* Mobile Language Switcher */
.mobile-lang-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-dark);
}

.mobile-lang-switcher .lang-btn {
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Mobile Social Icons */
.mobile-socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.mobile-socials a {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.mobile-socials a:hover {
    color: #ffffff;
    background: var(--accent-gold);
}

.mobile-socials a svg {
    width: 15px;
    height: 15px;
}

@media (max-width: 992px) {
    .top-bar-left {
        display: none !important;
    }
    .top-bar-container {
        justify-content: center !important;
        padding: 0 16px !important;
    }
    .top-bar-right {
        margin: 0 auto !important;
        justify-content: center !important;
        width: 100% !important;
        gap: 12px !important;
    }
}

@media (max-width: 576px) {
    .top-bar {
        padding: 5px 0 !important;
    }
    .top-bar-container {
        padding: 0 10px !important;
    }
    .top-bar-right {
        gap: 6px !important;
    }
    .top-bar-socials {
        gap: 5px !important;
    }
    .top-bar-socials a {
        width: 26px !important;
        height: 26px !important;
    }
    .top-bar-socials a svg {
        width: 12px !important;
        height: 12px !important;
    }
    .lang-switcher {
        margin-left: 4px !important;
        padding: 3px 8px !important;
        gap: 5px !important;
    }
    .lang-btn {
        font-size: 10px !important;
    }
}

/* ==========================================
   Brand Logos Grid Section (Global)
   ========================================== */
.logos-section {
    text-align: center;
    margin-top: 80px;
}

.logos-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 35px;
    display: block;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    max-width: 1000px;
    margin: 0 auto;
}

.logo-card {
    background: var(--bg-light);
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    height: 220px;
    width: calc(25% - 21px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 35px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01);
}

.logo-card img {
    max-width: 100%;
    max-height: 170px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.4s ease;
}

.logo-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(14, 165, 233, 0.06);
}

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

@media (max-width: 992px) {
    .logos-grid {
        gap: 20px;
    }
    .logo-card {
        width: calc(33.333% - 13.333px);
        height: 180px;
    }
}

@media (max-width: 576px) {
    .logos-grid {
        gap: 15px;
    }
    .logo-card {
        width: calc(50% - 7.5px);
        height: 140px;
        padding: 15px;
    }
    .logo-card img {
        max-height: 110px;
    }
}

/* ==========================================
   Global Network Light Luxury Map Section
   ========================================== */
.global-network-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.global-network-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.global-network-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.global-network-header .section-tag {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    background: rgba(14, 165, 233, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(14, 165, 233, 0.2);
}

.global-network-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.25;
    font-weight: 700;
}

.global-network-header p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}

.globe-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.map-card-wrapper {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
    overflow: hidden;
}

#leafletGlobalMap, #leafletGlobalMapIndex {
    width: 100%;
    height: 480px;
    border-radius: 16px;
    z-index: 1;
}

/* Leaflet Custom Marker & Popup Styles */
.leaflet-container {
    font-family: 'Outfit', sans-serif !important;
    background-color: #f8fafc !important;
}

.custom-marker {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-icon {
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(14, 165, 233, 0.35);
    border: 2px solid #0ea5e9;
    z-index: 2;
    position: relative;
}

.marker-icon svg {
    width: 16px;
    height: 16px;
    fill: #0ea5e9;
}

.hq-marker .marker-icon {
    width: 38px;
    height: 38px;
    border-color: #d97706;
    box-shadow: 0 3px 14px rgba(217, 119, 6, 0.45);
}

.hq-marker .marker-icon svg {
    width: 20px;
    height: 20px;
    fill: #d97706;
}

.marker-pulse {
    position: absolute;
    width: 36px;
    height: 36px;
    background-color: rgba(14, 165, 233, 0.25);
    border-radius: 50%;
    animation: leafPulse 2s infinite ease-out;
}

.hq-marker .marker-pulse {
    width: 42px;
    height: 42px;
    background-color: rgba(217, 119, 6, 0.3);
}

@keyframes leafPulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.custom-leaflet-popup .leaflet-popup-content-wrapper {
    background: #ffffff !important;
    border: 1px solid var(--accent-gold);
    border-radius: 14px !important;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.15) !important;
    padding: 6px 10px;
}

.custom-leaflet-popup .leaflet-popup-tip {
    background: #ffffff !important;
}

.map-popup-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 4px;
}

.map-popup-card p {
    font-size: 12px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

.globe-stats-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.globe-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.globe-stat-card {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.02);
    transition: all 0.3s ease;
}

.globe-stat-card:hover {
    border-color: var(--accent-gold);
    background: #f0f9ff;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(14, 165, 233, 0.08);
}

.globe-stat-num {
    font-size: 34px;
    font-weight: 700;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 6px;
    font-family: 'Outfit', sans-serif;
}

.globe-stat-lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.country-badges-title {
    font-size: 13px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    font-weight: 700;
}

.country-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.country-badge {
    background: #ffffff;
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 7px 14px;
    font-size: 12px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.country-badge:hover,
.country-badge.active {
    background: var(--accent-gold);
    color: #ffffff;
    border-color: var(--accent-gold);
    font-weight: 600;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
}

.country-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--accent-gold);
}

.country-badge:hover .dot,
.country-badge.active .dot {
    background-color: #ffffff;
}

@media (max-width: 992px) {
    .global-network-container {
        padding: 0 20px;
    }
    .globe-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .global-network-header h2 {
        font-size: 32px;
    }
}

/* ==========================================
   International Phone Input Wrapper Styling
   ========================================== */
.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
}

.phone-input-wrapper:focus-within {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.1);
}

.phone-country-code {
    border: none;
    background: #fafafa;
    padding: 0 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    border-right: 1px solid var(--border-dark);
    outline: none;
    cursor: pointer;
    transition: background 0.2s ease;
    display: flex;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23475569' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='3 4.5 6 7.5 9 4.5'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.phone-country-code:hover {
    background: #f1f5f9;
}

.phone-number-input {
    flex: 1;
    border: none !important;
    outline: none !important;
    padding: 16px 20px !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 15px !important;
    color: var(--text-dark) !important;
    background: transparent !important;
    width: 100% !important;
    box-shadow: none !important;
}

.phone-number-input::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}
