/*
Theme Name: SC Medya Grubu
Theme URI: https://scmedya.com.tr
Description: SC Medya Grubu icin ozel tasarlanmis, premium, modern, hizli ve SEO uyumlu kurumsal WordPress temasi.
Version: 1.1.0
Author: Antigravity IDE
Author URI: https://github.com/google-deepmind
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sc-medya-grubu
Tags: custom-background, custom-colors, custom-menu, featured-images, responsive-layout, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool.
*/

/* ----------------------------------------------------
   1. GOOGLE FONTS IMPORT
------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* ----------------------------------------------------
   2. DESIGN TOKENS & CSS VARIABLES
------------------------------------------------------- */
:root {
    --primary-gold: #D4AF37;
    --primary-gold-rgb: 212, 175, 55;
    --accent-gold: #C5A880;
    --electric-blue: #00E5FF;
    --electric-blue-rgb: 0, 229, 255;
    --dark-bg: #0A0A0C;
    --dark-card: #141417;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    
    /* Text Colors */
    --text-dark-primary: #F3F4F6;
    --text-dark-secondary: #9CA3AF;
    --text-light-primary: #111827;
    --text-light-secondary: #4B5563;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Spacing & Layout */
    --container-max-width: 1200px;
    --section-padding: clamp(2rem, 4vw, 3.5rem);
    --grid-gap: clamp(1.5rem, 3vw, 2.5rem);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    /* Shadows & Glassmorphism */
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    --glass-bg: rgba(20, 20, 23, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ----------------------------------------------------
   3. RESET & BASE STYLES
------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden; /* Mobil yatay kayma önleme */
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light-primary);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    max-width: 100vw;
}

/* Mobil menü açıkken sayfa kaydırmayı kilitle */
body.nav-open {
    overflow: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold);
}

/* ----------------------------------------------------
   4. TYPOGRAPHY & HEADINGS
------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
}

/* Section Badges */
.section-badge {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    display: block;
}

/* ----------------------------------------------------
   5. LAYOUT UTILITIES
------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

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

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

.grid {
    display: grid;
    gap: var(--grid-gap);
}

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

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

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Flex Alignments */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* ----------------------------------------------------
   6. PREMIUM BUTTONS & HOVER EFFECTS
------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #000000;
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--primary-gold-rgb), 0.2);
}

.btn-secondary {
    border: 1px solid var(--text-dark-secondary);
    color: var(--text-dark-primary);
}

.btn-secondary:hover {
    border-color: var(--white);
    color: #000000;
    background-color: var(--white);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--accent-gold);
    color: var(--text-light-primary);
}

.btn-outline:hover {
    background-color: var(--accent-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--primary-gold);
}

.btn-text svg {
    transition: transform 0.3s ease;
}

.btn-text:hover svg {
    transform: translateX(5px);
}

/* ----------------------------------------------------
   7. HEADER & NAVIGATION
------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 12, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-smooth);
}

.site-header.scrolled {
    background: rgba(10, 10, 12, 0.9);
    padding: 0.8rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    height: 80px;
    transition: var(--transition-smooth);
}

.site-header.scrolled .header-container {
    height: 70px;
}

.logo {
    max-width: 70%;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.logo img, .logo svg {
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain;
}

.nav-menu {
    display: none;
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
        align-items: center;
        gap: 2.5rem;
        margin-left: 3rem;
    }
    
    .nav-link {
        font-family: var(--font-heading);
        font-weight: 500;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-dark-secondary);
        white-space: nowrap;
    }
    
    .nav-link:hover, .nav-link.active {
        color: var(--primary-gold);
    }
}

.header-actions {
    display: none;
}

@media (min-width: 1024px) {
    .header-actions {
        display: block;
        margin-left: 3rem;
    }
    
    .header-actions .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--accent-gold);
        color: var(--text-dark-primary);
    }
    
    .header-actions .btn:hover {
        background-color: var(--primary-gold);
        border-color: var(--primary-gold);
        color: #000000;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: block;
    cursor: pointer;
    z-index: 1020;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

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

.menu-toggle svg {
    width: 30px;
    height: 30px;
    stroke: var(--text-dark-primary);
}

/* Mobile Nav Overlay — Modern scale + blur fade-in prevents overflow-x scroll */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1010;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

/* Make header completely transparent when mobile menu is open */
body.nav-open .site-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.mobile-nav a {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark-primary);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
}

.mobile-nav.open a {
    opacity: 1;
    transform: translateY(0);
}

/* Link animasyon gecikmeleri */
.mobile-nav.open a:nth-child(1) { transition-delay: 0.05s; }
.mobile-nav.open a:nth-child(2) { transition-delay: 0.10s; }
.mobile-nav.open a:nth-child(3) { transition-delay: 0.15s; }
.mobile-nav.open a:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav.open a:nth-child(5) { transition-delay: 0.25s; }
.mobile-nav.open a:nth-child(6) { transition-delay: 0.30s; }

.mobile-nav a:hover {
    color: var(--primary-gold);
}

/* Hide duplicate close button to avoid overlap with menuToggle */
.mobile-nav-close {
    display: none !important;
}

/* ----------------------------------------------------
   8. HERO SLIDER SECTION
------------------------------------------------------- */
.hero-slider-section {
    width: 100%;
    margin-top: var(--header-height, 80px); /* dynamic header height */
    background: var(--dark-bg);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 65vh;
    min-height: 520px;
    max-height: 750px;
    overflow: hidden;
}

/* Each slide */
.slider-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 0;
}

.slider-slide-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    gap: 3rem;
    pointer-events: auto;
}

.slider-slide.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 1;
}

.slider-slide.slide-exit {
    opacity: 0;
    transform: translateX(-60px);
    z-index: 0;
}

/* ---- Slide Backgrounds ---- */
.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.slide-bg-1 {
    background:
        radial-gradient(ellipse at 70% 40%, rgba(var(--primary-gold-rgb), 0.28) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(197, 168, 128, 0.15) 0%, transparent 55%),
        linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-card) 50%, #0d0d10 100%);
}

.slide-bg-2 {
    background:
        radial-gradient(ellipse at 30% 30%, rgba(var(--primary-gold-rgb), 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(197, 168, 128, 0.18) 0%, transparent 50%),
        linear-gradient(160deg, #0f0f12 0%, #111115 60%, var(--dark-bg) 100%);
}

.slide-bg-3 {
    background:
        radial-gradient(ellipse at 60% 20%, rgba(var(--primary-gold-rgb), 0.22) 0%, transparent 50%),
        radial-gradient(ellipse at 10% 60%, rgba(197, 168, 128, 0.2) 0%, transparent 55%),
        linear-gradient(120deg, #0c0c0f 0%, #12121a 60%, var(--dark-bg) 100%);
}

/* ---- Grid Overlay ---- */
.slide-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* ---- Floating Particles ---- */
.slide-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.slide-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.35);
    animation: floatParticle 12s infinite ease-in-out;
}

.slide-particles span:nth-child(1) { width: 6px; height: 6px; left: 10%; top: 20%; animation-delay: 0s; animation-duration: 10s; }
.slide-particles span:nth-child(2) { width: 4px; height: 4px; left: 80%; top: 60%; animation-delay: 2s; animation-duration: 14s; }
.slide-particles span:nth-child(3) { width: 8px; height: 8px; left: 50%; top: 80%; animation-delay: 4s; animation-duration: 11s; }
.slide-particles span:nth-child(4) { width: 3px; height: 3px; left: 25%; top: 50%; animation-delay: 1s; animation-duration: 16s; }
.slide-particles span:nth-child(5) { width: 5px; height: 5px; left: 65%; top: 15%; animation-delay: 3s; animation-duration: 13s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
    33%       { transform: translateY(-30px) translateX(15px); opacity: 1; }
    66%       { transform: translateY(20px) translateX(-10px); opacity: 0.6; }
}

/* ---- Slide Content (left side) ---- */
.slide-content {
    position: relative;
    z-index: 2;
    flex: 1 1 50%;
    max-width: 560px;
}

.slide-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 0.35rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.slide-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    line-height: 1.3;
    color: var(--text-dark-primary);
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.gold-text {
    background: linear-gradient(135deg, #D4AF37, #C5A880, #E8C96A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-dark-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

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

.btn-slider-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-slider-outline:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* ---- Slide Visual (right side) ---- */
.slide-visual {
    position: relative;
    z-index: 2;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Slide 1 – SC Logo SVG */
.slide-visual svg {
    filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.15));
    animation: slowSpin 30s linear infinite;
}

@keyframes slowSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Slide 2 – Stats grid */
.slide-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    width: clamp(200px, 28vw, 360px);
}

.stat-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--radius-md);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.stat-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-4px);
}

.stat-num {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.4rem);
    font-weight: 800;
    color: var(--primary-gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* Slide 3 – Ad icon grid */
.slide-ad-icons {
    width: clamp(200px, 28vw, 360px);
}

.ad-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.ad-icon-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-md);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.ad-icon-item:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-3px);
}

.ad-icon-item span {
    font-size: 0.75rem;
    color: var(--text-dark-secondary);
    font-weight: 500;
}

/* ---- Slider Navigation Buttons ---- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(20, 20, 23, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--text-dark-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: clamp(1rem, 3vw, 2.5rem);
}

.slider-next {
    right: clamp(1rem, 3vw, 2.5rem);
}

/* ---- Dot Navigation ---- */
.slider-dots {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.7rem;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.dot.active {
    width: 28px;
    border-radius: 5px;
    background: var(--primary-gold);
}

.dot:hover:not(.active) {
    background: rgba(212, 175, 55, 0.5);
}

/* ---- Progress Bar ---- */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    z-index: 10;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-gold), var(--electric-blue));
    width: 0%;
    transition: width linear;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .slider-btn {
        display: none !important;
    }

    .hero-slider-section {
        margin-top: var(--header-height, 70px);
    }

    .hero-slider {
        aspect-ratio: unset;
        height: 60vh;
        min-height: 380px;
        max-height: 500px;
    }

    .slider-slide {
        padding: 2rem 1.5rem 4rem;
    }

    .slider-slide-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1.5rem;
    }

    .slide-content {
        max-width: 100%;
    }

    .slide-actions {
        justify-content: center;
    }

    .slide-visual {
        display: none;
    }

    .slide-stats,
    .ad-icon-grid {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 55vh;
        min-height: 320px;
    }
    .slider-slide {
        padding: 1.5rem 1rem 2rem;
    }
    .slide-title {
        font-size: 1.45rem !important;
        line-height: 1.25;
        margin-bottom: 0.5rem;
    }
    .slide-desc {
        font-size: 0.85rem !important;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }
    .slide-actions {
        gap: 0.5rem;
    }
    .slide-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    .brand-card {
        padding: 1rem !important;
        aspect-ratio: unset !important;
        height: 100px !important;
    }
    .brand-logo-img {
        max-width: 92% !important;
        max-height: 55px !important;
        min-height: 38px !important;
    }
}



/* ----------------------------------------------------
   9. ABOUT SECTION (Hakkımızda)
------------------------------------------------------- */
.about-section {
    background-color: #F8F9FA;
    padding: var(--section-padding) 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

/* ---- Sol: Metin İçeriği ---- */
.about-content {
    max-width: 520px;
}

.about-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: #C5A880;
    margin-bottom: 1.1rem;
}

.about-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    color: #111827;
    line-height: 1.2;
    margin-bottom: 1.4rem;
    letter-spacing: -0.01em;
}

.about-text {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #4B5563;
    line-height: 1.75;
    margin-bottom: 1.1rem;
}

.about-text:last-of-type {
    margin-bottom: 2rem;
}

/* Outlined gold button */
.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #C5A880;
    border: 1px solid #C5A880;
    padding: 0.65rem 1.4rem;
    border-radius: 6px;
    transition: var(--transition-smooth);
}

.about-btn svg {
    stroke: #C5A880;
    transition: transform 0.3s ease, stroke 0.3s ease;
    flex-shrink: 0;
}

.about-btn:hover {
    color: #D4AF37;
    border-color: #D4AF37;
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-1px);
}

.about-btn:hover svg {
    stroke: #D4AF37;
    transform: translateX(4px);
}

/* ---- Sağ: Görsel ---- */
.about-visual {
    position: relative;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-img-wrap:hover img {
    transform: scale(1.04);
}

/* Subtle dark overlay at bottom */
.about-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 12, 0.35) 0%,
        transparent 50%
    );
    pointer-events: none;
}

/* SC Logo badge — top-right corner */
.about-img-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(10, 10, 12, 0.88);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 0.5rem 0.9rem 0.5rem 0.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.about-img-badge svg {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.about-img-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.about-img-badge-text span:first-child {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #FFFFFF;
}

.about-img-badge-text span:last-child {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: #9CA3AF;
}

/* SVG fallback (no image uploaded) */
.about-img-svg {
    background: #141417;
}

.about-img-svg svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* ---- Noktalı dekoratif arka plan (sağ kolon) ---- */
.about-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(circle, rgba(212,175,55,0.35) 1.5px, transparent 1.5px);
    background-size: 14px 14px;
    z-index: 0;
    pointer-events: none;
    border-radius: 50%;
}

/* ---- Responsive ---- */
@media (max-width: 1023px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-content {
        max-width: 100%;
        text-align: center;
    }

    .about-btn {
        margin: 0 auto;
    }

    .about-visual::before {
        display: none;
    }
}

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

    .about-img-badge {
        padding: 0.35rem 0.6rem 0.35rem 0.35rem;
    }

    .about-img-badge svg {
        width: 38px;
        height: 38px;
    }
}

/* ----------------------------------------------------
   10. BRANDS SECTION
------------------------------------------------------- */
.brands {
    background-color: var(--light-bg);
}

.brands-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(1.5rem, 3vw, 2.2rem) auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
    justify-content: center;
}

@media (min-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
}

.brand-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.03);
    aspect-ratio: 3/2;
}

.brand-logo-img {
    width: auto;
    height: auto;
    max-width: 90% !important;
    max-height: 75px !important;
    min-height: 48px !important;
    object-fit: contain !important;
    filter: grayscale(1);
    opacity: 0.8;
    transition: var(--transition-smooth);
}

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

.brand-text-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    text-align: center;
}

.brand-logo-subtitle {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--text-light-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

.brand-logo-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-light-primary);
    letter-spacing: -0.01em;
    transition: var(--transition-fast);
}

.brand-card:hover .brand-logo-title {
    color: var(--primary-gold);
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-gold-rgb), 0.1);
}

.brands-footer {
    text-align: center;
}

/* ----------------------------------------------------
   11. STATS SECTION
------------------------------------------------------- */
.stats {
    background: var(--dark-card);
    padding: calc(var(--section-padding) * 0.7) 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
    text-align: center;
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .stats-item {
        padding: 0.5rem 0 !important;
    }
    
    .stats-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        padding-bottom: 1.5rem !important;
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
    }
    
    .stats-item {
        padding: 0;
    }
    
    .stats-item:not(:last-child) {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.stats-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stats-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark-secondary);
}

.stats-icon {
    display: inline-block;
    margin-bottom: 1rem;
}

.stats-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--accent-gold);
}

/* ----------------------------------------------------
   12. ADVERTISING SECTION
------------------------------------------------------- */
.ads-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(1.5rem, 3vw, 2.2rem) auto;
}

.ads-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

@media (min-width: 768px) {
    .ads-grid {
        grid-template-columns: repeat(3, 2fr); /* Layout will adjust dynamically */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .ad-card {
        flex: 1 1 calc(33.333% - 1.5rem);
        min-width: 250px;
        max-width: 380px;
    }
}

.ad-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ad-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
    border-color: rgba(var(--primary-gold-rgb), 0.2);
}

.ad-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    background: rgba(212, 175, 55, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-gold);
}

.ad-card h3 {
    font-size: 1.25rem;
    color: var(--text-light-primary);
}

.ad-card .btn-text {
    margin-top: auto;
}

/* ----------------------------------------------------
   13. CONTACT STRIP
------------------------------------------------------- */
.contact-section {
    padding-bottom: var(--section-padding);
}

.contact-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(1.5rem, 3vw, 2.2rem) auto;
}

.contact-strip {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--card-shadow);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 992px) {
    .contact-strip {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1.2rem 2.5rem;
    }
}

.contact-owner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.owner-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--dark-bg);
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid var(--accent-gold);
}

.owner-info h4 {
    font-size: 1.05rem;
    color: var(--text-light-primary);
}

.owner-info span {
    font-size: 0.85rem;
    color: var(--text-light-secondary);
}

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

@media (min-width: 768px) {
    .contact-info-items {
        flex-direction: row;
        justify-content: space-around;
        flex-grow: 1;
        margin: 0 2rem;
    }
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.contact-info-item .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item .icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-light-secondary);
}

.contact-info-item .details {
    display: flex;
    flex-direction: column;
}

.contact-info-item .details label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light-secondary);
}

.contact-info-item .details span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light-primary);
}

.whatsapp-btn {
    background-color: rgba(37, 211, 102, 0.1);
    color: #25D366;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background-color: #25D366;
    color: var(--white);
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

/* ----------------------------------------------------
   14. FOOTER
------------------------------------------------------- */
.site-footer {
    background: var(--dark-bg);
    color: var(--text-dark-secondary);
    padding: 2.25rem 0 1.5rem 0;
    border-top: 1px solid var(--glass-border);
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo img {
    height: 40px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-dark-secondary);
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-copyright {
    font-size: 0.85rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #FFFFFF !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-socials a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
    filter: brightness(1.15);
}

.footer-socials .social-fb {
    background: #1877F2 !important;
}

.footer-socials .social-ig {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
}

.footer-socials .social-x {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}

.footer-socials .social-yt {
    background: #FF0000 !important;
}

.footer-socials svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* ----------------------------------------------------
   15. ANIMATIONS
------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Reveal classes for JavaScript Scroll Animations */
.js-active .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-active .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ----------------------------------------------------
   SCROLL TO TOP BUTTON
------------------------------------------------------- */
#scrollToTop {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 9999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D4AF37 0%, #C5A880 100%);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.35s ease,
                visibility 0.35s ease,
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.3s ease;
}

#scrollToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scrollToTop:hover {
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
    transform: translateY(-3px);
}

#scrollToTop:active {
    transform: translateY(0);
}

#scrollToTop svg {
    width: 20px;
    height: 20px;
    stroke: #0A0A0C;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

/* Mobil'de biraz daha küçük */
@media (max-width: 767px) {
    #scrollToTop {
        width: 44px;
        height: 44px;
        bottom: 1.2rem;
        right: 1.2rem;
    }

    #scrollToTop svg {
        width: 18px;
        height: 18px;
    }
}

/* ----------------------------------------------------
   DYNAMIC GRID & ALIGNMENT UTILITIES
------------------------------------------------------- */
.brands-grid-cols-2 {
    grid-template-columns: repeat(2, 1fr) !important;
}
.brands-grid-cols-3 {
    grid-template-columns: repeat(3, 1fr) !important;
}
.brands-grid-cols-4 {
    grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 1023px) {
    .brands-grid-cols-2, .brands-grid-cols-3, .brands-grid-cols-4 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 640px) {
    .brands-grid-cols-2, .brands-grid-cols-3, .brands-grid-cols-4 {
        grid-template-columns: 1fr !important;
    }
}

/* Logo Alignment Helper Classes */
.logo-align-left {
    margin-right: auto;
    margin-left: 0;
}
.logo-align-center {
    margin-right: auto;
    margin-left: auto;
}
.logo-align-right {
    margin-right: 0;
    margin-left: auto;
}

/* ----------------------------------------------------
   16. BLOG PREVIEW SECTION
   ------------------------------------------------------- */
.blog-preview-section {
    padding: var(--section-padding) 0;
}

.blog-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto clamp(1.5rem, 3vw, 2.2rem) auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--grid-gap);
    margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.01);
}

body.dark-mode .blog-card {
    background: var(--dark-card);
    border-color: rgba(255, 255, 255, 0.04);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(var(--primary-gold-rgb), 0.15);
}

body.dark-mode .blog-card:hover {
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.08);
    border-color: rgba(0, 229, 255, 0.2);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-card-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-gold);
    color: #000;
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    letter-spacing: 0.05em;
    z-index: 2;
}

body.dark-mode .blog-card-category {
    background: var(--electric-blue);
}

.blog-card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

body.dark-mode .blog-card-date {
    color: var(--electric-blue);
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
}

.blog-card-title a {
    color: inherit;
    transition: var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary-gold);
}

body.dark-mode .blog-card-title a:hover {
    color: var(--electric-blue);
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: var(--text-light-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

body.dark-mode .blog-card-excerpt {
    color: var(--text-dark-secondary);
}

.blog-card-link {
    margin-top: auto;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

body.dark-mode .blog-card-link {
    color: var(--electric-blue);
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Theme Toggle Button */
.theme-toggle-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-dark-primary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    margin-right: 1rem;
}

body.light-mode .theme-toggle-btn {
    border-color: rgba(0, 0, 0, 0.1);
    color: #374151;
}

.theme-toggle-btn:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    transform: scale(1.05);
}

body.light-mode .theme-toggle-btn:hover {
    background: rgba(0, 229, 255, 0.08);
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

.theme-toggle-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.theme-toggle-btn .sun-icon {
    display: none;
}

body.light-mode .theme-toggle-btn .moon-icon {
    display: none;
}

body.light-mode .theme-toggle-btn .sun-icon {
    display: block;
}

/* Scroll Down Mouse Indicator */
.scroll-down-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: var(--text-dark-secondary);
    transition: var(--transition-smooth);
}

.scroll-down-indicator:hover {
    color: var(--primary-gold);
}

.scroll-down-text {
    font-size: 0.72rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-down-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid currentColor;
    border-radius: 12px;
    position: relative;
}

.scroll-down-wheel {
    width: 4px;
    height: 8px;
    background: currentColor;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    50% { top: 15px; opacity: 0; }
    100% { top: 6px; opacity: 0; }
}

@media (max-width: 1024px) {
    .scroll-down-indicator {
        display: none;
    }
}

/* Light Mode Layout Variables overrides */
body.light-mode {
    background-color: #F9FAFB;
    color: #111827;
}

body.light-mode .site-header {
    background: rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-mode .site-header.scrolled {
    background: rgba(255, 255, 255, 0.95) !important;
}

body.light-mode .site-header .nav-link {
    color: #374151 !important;
}

body.light-mode .site-header .nav-link:hover,
body.light-mode .site-header .nav-link.active {
    color: var(--primary-gold) !important;
}

body.light-mode .logo-text span {
    color: #111827 !important;
}

body.light-mode .mobile-nav {
    background: rgba(255, 255, 255, 0.98);
}

body.light-mode .mobile-nav a {
    color: #111827;
}

body.light-mode .about-section {
    background-color: #FFFFFF !important;
}

body.light-mode .about-title {
    color: #111827 !important;
}

body.light-mode .about-text {
    color: #4B5563 !important;
}

body.light-mode .brand-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02) !important;
}

body.light-mode .brand-card:hover {
    box-shadow: 0 15px 30px rgba(0, 229, 255, 0.1) !important;
    border-color: var(--electric-blue) !important;
}

body.light-mode .ad-card {
    background: #FFFFFF !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .ad-card h3 {
    color: #111827 !important;
}

body.light-mode .contact-strip {
    background: #FFFFFF !important;
    border-color: rgba(0, 0, 0, 0.06) !important;
}

body.light-mode .owner-info h4 {
    color: #111827 !important;
}

body.light-mode .contact-info-item .icon {
    background: rgba(0, 0, 0, 0.03) !important;
}

body.light-mode .contact-info-item .details span {
    color: #111827 !important;
}

body.light-mode .section.light {
    background-color: #F3F4F6 !important;
    color: #111827 !important;
}

