/* ==========================================================================
   Serigraf Print - Ultra-Premium Industrial Modern Theme Architecture
   Developer: XBT Yazılım Hizmetleri - www.xbtsoftware.gen.tr
   ========================================================================== */

:root {
    --bg-dark: #05070c;
    --bg-surface: #0b0e17;
    --bg-card: #101422;
    --bg-card-hover: #181d30;
    --bg-glass: rgba(16, 20, 34, 0.88);
    
    --border-color: rgba(255, 255, 255, 0.09);
    --border-hover: rgba(255, 107, 0, 0.5);
    --border-glow: rgba(255, 107, 0, 0.4);
    
    --accent-orange: #FF6B00;
    --accent-orange-hover: #ff8226;
    --accent-amber: #FFA000;
    --accent-glow: rgba(255, 107, 0, 0.45);
    
    --accent-cyan: #00F2FE;
    --accent-cyan-glow: rgba(0, 242, 254, 0.35);

    --text-primary: #ffffff;
    --text-secondary: #9da6c0;
    --text-muted: #626c85;
    
    --font-primary: 'Plus Jakarta Sans', -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 50px;
    
    --shadow-card: 0 20px 50px rgba(0, 0, 0, 0.65);
    --shadow-glow: 0 15px 40px rgba(255, 107, 0, 0.38);
    
    --header-height: 80px;
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Master Reset & Base Styling */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(255, 107, 0, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(0, 242, 254, 0.06) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(255, 160, 0, 0.04) 0%, transparent 65%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 15px;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.025em;
    word-break: break-word;
}

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

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography Gradient Text */
.gradient-text-orange {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-cyan {
    background: linear-gradient(135deg, #ffffff 20%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Visual Showcase Card Container */
.visual-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.visual-showcase-card:hover {
    transform: translateY(-10px) scale(1.01);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(255, 107, 0, 0.35);
}

.visual-card-image-box {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #070912;
}

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

.visual-showcase-card:hover .visual-card-image-box img {
    transform: scale(1.08);
}

.visual-badge-floating {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(7, 9, 18, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--accent-amber);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* Cyber Badges */
.badge-cyber {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 107, 0, 0.1);
    border: 1px solid rgba(255, 107, 0, 0.35);
    border-radius: var(--radius-pill);
    color: var(--accent-amber);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B00 0%, #FFA000 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 14px 35px rgba(255, 107, 0, 0.55);
    transform: translateY(-3px);
}

.btn-glow {
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    background: rgba(255, 107, 0, 0.1);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: 0.88rem;
}

:root {
    --header-height: 90px;
}

.glassmorphism-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: var(--header-bg, rgba(5, 7, 12, 0.94));
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo img {
    height: 58px !important;
    max-height: 64px !important;
    width: auto !important;
    max-width: 280px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

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

.logo-icon-box {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(255,107,0,0.25) 0%, rgba(255,160,0,0.08) 100%);
    border: 1px solid rgba(255,107,0,0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-orange);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Navigation Menu */
.desktop-nav .menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.desktop-nav .menu a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.94rem;
    transition: var(--transition);
    padding: 8px 0;
    position: relative;
}

.desktop-nav .menu a:hover,
.desktop-nav .menu a.active {
    color: #ffffff;
}

.desktop-nav .menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-amber));
    border-radius: 2px;
}

/* Language Selector Pill */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    padding: 4px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.lang-switcher a {
    padding: 4px 10px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: var(--transition);
}

/* CONTACT PAGE RESPONSIVE GRID LAYOUTS */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
    width: 100%;
}

.form-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    width: 100%;
}

.contact-form-card {
    background: rgba(19, 23, 36, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    width: 100%;
}

.contact-map-card {
    background: rgba(19, 23, 36, 0.9);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    width: 100%;
}

.contact-map-iframe-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    height: 380px;
    width: 100%;
}

/* ANIMATED ULTRA-LUXURY WHATSAPP FLOATING WIDGET */
.whatsapp-widget-container {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-float-button {
    position: relative;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.whatsapp-float-button::before,
.whatsapp-float-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.65);
    animation: waRadarPulse 2.4s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

.whatsapp-float-button::after {
    animation-delay: 1.2s;
}

@keyframes waRadarPulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.85;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
    }
}

.whatsapp-float-button:hover {
    transform: scale(1.12) rotate(6deg);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.7);
    border-color: #ffffff;
}

.whatsapp-tooltip-pill {
    background: rgba(16, 20, 34, 0.95);
    border: 1px solid rgba(37, 211, 102, 0.45);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.7);
    backdrop-filter: blur(12px);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
}

.whatsapp-widget-container:hover .whatsapp-tooltip-pill {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 📱 FLAWLESS RESPONSIVE MEDIA QUERIES FOR MOBILE & TABLET (< 992px & < 768px) */
@media (max-width: 992px) {
    :root { --header-height: 66px; }
    
    .container { padding: 0 16px; }
    
    .desktop-nav { display: none !important; }
    .mobile-toggle { display: block !important; }
    
    .contact-main-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    .contact-form-card {
        padding: 24px 18px !important;
    }
    
    .contact-map-iframe-box {
        height: 320px !important;
    }

    .whatsapp-widget-container { bottom: 20px; right: 20px; }
    .whatsapp-float-button { width: 56px; height: 56px; }
    .whatsapp-tooltip-pill { display: none !important; }
}

@media (max-width: 768px) {
    .form-row-2col {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        margin-bottom: 16px !important;
    }

    .header-right .lang-switcher {
        display: flex !important;
    }

    .hide-mobile {
        display: none !important;
    }
}

/* ==========================================================================
   MASTER FRONT-END MULTI-COLOR THEME ENGINE (LIGHT, BLUE, PURPLE, GREEN, RED, DARK)
   ========================================================================== */

/* 1. AYDINLIK KURUMSAL BEYAZ (LIGHT SAAS MODE) */
html[data-site-theme="light"],
body[data-site-theme="light"] {
    --bg-dark: #f8fafc !important;
    --bg-surface: #ffffff !important;
    --bg-card: #ffffff !important;
    --bg-card-hover: #f1f5f9 !important;
    --bg-glass: rgba(255, 255, 255, 0.98) !important;
    --header-bg: rgba(255, 255, 255, 0.98) !important;
    --border-color: #cbd5e1 !important;
    --border-hover: #ff6b00 !important;
    --text-primary: #0f172a !important;
    --text-secondary: #334155 !important;
    --text-muted: #64748b !important;
    background-color: #f8fafc !important;
    background-image: none !important;
    color: #0f172a !important;
}

html[data-site-theme="light"] .glassmorphism-nav,
html[data-site-theme="light"] header.site-header {
    background: rgba(255, 255, 255, 0.98) !important;
    border-bottom: 1px solid #cbd5e1 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
}

html[data-site-theme="light"] .desktop-nav .menu li a {
    color: #0f172a !important;
    font-weight: 700 !important;
}

html[data-site-theme="light"] .desktop-nav .menu li a:hover,
html[data-site-theme="light"] .desktop-nav .menu li a.active {
    color: #ff6b00 !important;
}

/* Force light background on all hero sections including inline styled sections */
html[data-site-theme="light"] .page-hero,
html[data-site-theme="light"] .hero-section,
html[data-site-theme="light"] .inner-hero,
html[data-site-theme="light"] section[class*="hero"],
html[data-site-theme="light"] section[style*="radial-gradient"],
html[data-site-theme="light"] section[style*="#07080d"],
html[data-site-theme="light"] section[style*="#05070c"],
html[data-site-theme="light"] section[style*="#0b0e17"],
html[data-site-theme="light"] section[style*="#070b19"] {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%) !important;
    border-bottom: 1px solid #cbd5e1 !important;
}

html[data-site-theme="light"] input:not([type="submit"]):not([type="button"]),
html[data-site-theme="light"] textarea,
html[data-site-theme="light"] select {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.03) !important;
    font-weight: 700 !important;
}

html[data-site-theme="light"] input::placeholder,
html[data-site-theme="light"] textarea::placeholder {
    color: #64748b !important;
    opacity: 1 !important;
    -webkit-text-fill-color: #64748b !important;
}

html[data-site-theme="light"] .card,
html[data-site-theme="light"] .card-futuristic,
html[data-site-theme="light"] .feature-card,
html[data-site-theme="light"] .service-card,
html[data-site-theme="light"] .portfolio-card,
html[data-site-theme="light"] .blog-card,
html[data-site-theme="light"] .visual-showcase-card,
html[data-site-theme="light"] .contact-form-card,
html[data-site-theme="light"] .contact-map-card,
html[data-site-theme="light"] div[class*="card"] {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06) !important;
}

/* Force solid bold text on section titles and gradient titles (No hollow transparent text!) */
html[data-site-theme="light"] .section-title,
html[data-site-theme="light"] .section-title h1,
html[data-site-theme="light"] .section-title h2,
html[data-site-theme="light"] .section-header h2,
html[data-site-theme="light"] .gradient-text-orange,
html[data-site-theme="light"] .gradient-text-cyan,
html[data-site-theme="light"] h1[style*="-webkit-text-fill-color"],
html[data-site-theme="light"] h2[style*="-webkit-text-fill-color"] {
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
    -webkit-text-fill-color: #0f172a !important;
    -webkit-text-stroke: 0px transparent !important;
    color: #0f172a !important;
    font-weight: 800 !important;
}

html[data-site-theme="light"] .gradient-text-orange,
html[data-site-theme="light"] span.gradient-text-orange {
    -webkit-text-fill-color: #ff6b00 !important;
    color: #ff6b00 !important;
}

/* Blog & Article Cards in Light Mode */
html[data-site-theme="light"] .article-card,
html[data-site-theme="light"] .blog-detail-card,
html[data-site-theme="light"] div[class*="article"] {
    background: #ffffff !important;
    border: 1px solid #cbd5e1 !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06) !important;
}

html[data-site-theme="light"] .article-card p,
html[data-site-theme="light"] .article-card h1,
html[data-site-theme="light"] .article-card h2,
html[data-site-theme="light"] .article-card h3,
html[data-site-theme="light"] .article-card h4,
html[data-site-theme="light"] .article-card span,
html[data-site-theme="light"] .article-body,
html[data-site-theme="light"] .article-body p,
html[data-site-theme="light"] .article-excerpt-quote,
html[data-site-theme="light"] div[class*="excerpt"] {
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* Outline Buttons & Category Pills */
html[data-site-theme="light"] .btn-outline,
html[data-site-theme="light"] a.btn-outline,
html[data-site-theme="light"] button.btn-outline,
html[data-site-theme="light"] .filter-btn {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #cbd5e1 !important;
    font-weight: 700 !important;
}

html[data-site-theme="light"] .btn-outline:hover,
html[data-site-theme="light"] .filter-btn:hover,
html[data-site-theme="light"] .filter-btn.active {
    background: #ff6b00 !important;
    color: #ffffff !important;
    border-color: #ff6b00 !important;
}

html[data-site-theme="light"] .logo-text,
html[data-site-theme="light"] h1, 
html[data-site-theme="light"] h2, 
html[data-site-theme="light"] h3, 
html[data-site-theme="light"] h4, 
html[data-site-theme="light"] h5, 
html[data-site-theme="light"] h6,
html[data-site-theme="light"] h1[style*="color"],
html[data-site-theme="light"] h2[style*="color"],
html[data-site-theme="light"] h3[style*="color"],
html[data-site-theme="light"] h4[style*="color"] {
    color: #0f172a !important;
}

html[data-site-theme="light"] p, 
html[data-site-theme="light"] p[style*="color"],
html[data-site-theme="light"] span:not(.btn):not(.logo-text):not(.badge-cyber),
html[data-site-theme="light"] li {
    color: #334155 !important;
}

html[data-site-theme="light"] .site-footer {
    background: #ffffff !important;
    border-top: 1px solid #cbd5e1 !important;
}

html[data-site-theme="light"] .site-footer h4 {
    color: #0f172a !important;
    border-bottom-color: #ff6b00 !important;
}

html[data-site-theme="light"] .site-footer ul li a {
    color: #1e293b !important;
    font-weight: 700 !important;
}

html[data-site-theme="light"] .site-footer ul li a:hover {
    color: #ff6b00 !important;
}

html[data-site-theme="light"] .social-icon {
    background: #f1f5f9 !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

/* 2. OKYANUS MAVİ (OCEAN BLUE & ELECTRIC CYAN) */
html[data-site-theme="blue"],
html[data-site-theme="sapphire"],
body[data-site-theme="blue"],
body[data-site-theme="sapphire"] {
    --accent-orange: #00d2ff !important;
    --accent-orange-hover: #33dcff !important;
    --accent-amber: #38bdf8 !important;
    --accent-glow: rgba(0, 210, 255, 0.45) !important;
    --header-bg: rgba(6, 12, 33, 0.96) !important;
    --border-color: rgba(0, 210, 255, 0.3) !important;
    --border-hover: #00d2ff !important;
    --bg-dark: #030714 !important;
    --bg-surface: #070e24 !important;
    --bg-card: #0b173a !important;
    background-color: #030714 !important;
    background-image: radial-gradient(circle at 15% 15%, rgba(0, 210, 255, 0.25) 0%, transparent 50%), radial-gradient(circle at 85% 85%, rgba(59, 130, 246, 0.2) 0%, transparent 50%) !important;
    color: #ffffff !important;
}

html[data-site-theme="blue"] .glassmorphism-nav,
html[data-site-theme="sapphire"] .glassmorphism-nav,
html[data-site-theme="blue"] header.site-header,
html[data-site-theme="sapphire"] header.site-header {
    background: rgba(6, 12, 33, 0.96) !important;
    border-bottom: 1px solid rgba(0, 210, 255, 0.35) !important;
}

html[data-site-theme="blue"] .btn-primary,
html[data-site-theme="sapphire"] .btn-primary,
html[data-site-theme="blue"] .filter-btn.active,
html[data-site-theme="sapphire"] .filter-btn.active {
    background: linear-gradient(135deg, #00d2ff 0%, #0077ff 100%) !important;
    color: #030714 !important;
    font-weight: 800 !important;
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.5) !important;
}

html[data-site-theme="blue"] .desktop-nav .menu li a:hover,
html[data-site-theme="blue"] .desktop-nav .menu li a.active,
html[data-site-theme="sapphire"] .desktop-nav .menu li a:hover,
html[data-site-theme="sapphire"] .desktop-nav .menu li a.active,
html[data-site-theme="blue"] .text-accent,
html[data-site-theme="sapphire"] .text-accent,
html[data-site-theme="blue"] .gradient-text-orange,
html[data-site-theme="sapphire"] .gradient-text-orange {
    color: #00d2ff !important;
    -webkit-text-fill-color: #00d2ff !important;
    background: none !important;
}

html[data-site-theme="blue"] .site-footer,
html[data-site-theme="sapphire"] .site-footer {
    background: #020510 !important;
    border-top: 1px solid rgba(0, 210, 255, 0.3) !important;
}

/* 3. KRALİYET MORU (ROYAL PURPLE & VIOLET) */
html[data-site-theme="purple"],
html[data-site-theme="violet"],
body[data-site-theme="purple"],
body[data-site-theme="violet"] {
    --accent-orange: #a855f7 !important;
    --accent-orange-hover: #c084fc !important;
    --accent-amber: #c084fc !important;
    --accent-glow: rgba(168, 85, 247, 0.45) !important;
    --header-bg: rgba(15, 9, 36, 0.96) !important;
    --border-color: rgba(168, 85, 247, 0.3) !important;
    --border-hover: #a855f7 !important;
    --bg-dark: #080415 !important;
    --bg-surface: #0f0a26 !important;
    --bg-card: #170f3b !important;
    background-color: #080415 !important;
    background-image: radial-gradient(circle at 15% 15%, rgba(168, 85, 247, 0.25) 0%, transparent 50%), radial-gradient(circle at 85% 85%, rgba(236, 72, 153, 0.2) 0%, transparent 50%) !important;
    color: #ffffff !important;
}

html[data-site-theme="purple"] .glassmorphism-nav,
html[data-site-theme="violet"] .glassmorphism-nav,
html[data-site-theme="purple"] header.site-header,
html[data-site-theme="violet"] header.site-header {
    background: rgba(15, 9, 36, 0.96) !important;
    border-bottom: 1px solid rgba(168, 85, 247, 0.35) !important;
}

html[data-site-theme="purple"] .btn-primary,
html[data-site-theme="violet"] .btn-primary,
html[data-site-theme="purple"] .filter-btn.active,
html[data-site-theme="violet"] .filter-btn.active {
    background: linear-gradient(135deg, #a855f7 0%, #6d28d9 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5) !important;
}

html[data-site-theme="purple"] .desktop-nav .menu li a:hover,
html[data-site-theme="purple"] .desktop-nav .menu li a.active,
html[data-site-theme="violet"] .desktop-nav .menu li a:hover,
html[data-site-theme="violet"] .desktop-nav .menu li a.active,
html[data-site-theme="purple"] .text-accent,
html[data-site-theme="violet"] .text-accent,
html[data-site-theme="purple"] .gradient-text-orange,
html[data-site-theme="violet"] .gradient-text-orange {
    color: #c084fc !important;
    -webkit-text-fill-color: #c084fc !important;
    background: none !important;
}

html[data-site-theme="purple"] .site-footer,
html[data-site-theme="violet"] .site-footer {
    background: #05020e !important;
    border-top: 1px solid rgba(168, 85, 247, 0.3) !important;
}

/* 4. ZÜMRÜT YEŞİL (EMERALD GREEN & MINT) */
html[data-site-theme="green"],
html[data-site-theme="emerald"],
body[data-site-theme="green"],
body[data-site-theme="emerald"] {
    --accent-orange: #10b981 !important;
    --accent-orange-hover: #34d399 !important;
    --accent-amber: #6ee7b7 !important;
    --accent-glow: rgba(16, 185, 129, 0.45) !important;
    --header-bg: rgba(5, 28, 19, 0.96) !important;
    --border-color: rgba(16, 185, 129, 0.3) !important;
    --border-hover: #10b981 !important;
    --bg-dark: #020f0a !important;
    --bg-surface: #051f15 !important;
    --bg-card: #092e20 !important;
    background-color: #020f0a !important;
    background-image: radial-gradient(circle at 15% 15%, rgba(16, 185, 129, 0.25) 0%, transparent 50%), radial-gradient(circle at 85% 85%, rgba(52, 211, 153, 0.2) 0%, transparent 50%) !important;
    color: #ffffff !important;
}

html[data-site-theme="green"] .glassmorphism-nav,
html[data-site-theme="emerald"] .glassmorphism-nav,
html[data-site-theme="green"] header.site-header,
html[data-site-theme="emerald"] header.site-header {
    background: rgba(5, 28, 19, 0.96) !important;
    border-bottom: 1px solid rgba(16, 185, 129, 0.35) !important;
}

html[data-site-theme="green"] .btn-primary,
html[data-site-theme="emerald"] .btn-primary,
html[data-site-theme="green"] .filter-btn.active,
html[data-site-theme="emerald"] .filter-btn.active {
    background: linear-gradient(135deg, #10b981 0%, #047857 100%) !important;
    color: #020f0a !important;
    font-weight: 800 !important;
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5) !important;
}

html[data-site-theme="green"] .desktop-nav .menu li a:hover,
html[data-site-theme="green"] .desktop-nav .menu li a.active,
html[data-site-theme="emerald"] .desktop-nav .menu li a:hover,
html[data-site-theme="emerald"] .desktop-nav .menu li a.active,
html[data-site-theme="green"] .text-accent,
html[data-site-theme="emerald"] .text-accent,
html[data-site-theme="green"] .gradient-text-orange,
html[data-site-theme="emerald"] .gradient-text-orange {
    color: #34d399 !important;
    -webkit-text-fill-color: #34d399 !important;
    background: none !important;
}

html[data-site-theme="green"] .site-footer,
html[data-site-theme="emerald"] .site-footer {
    background: #010a06 !important;
    border-top: 1px solid rgba(16, 185, 129, 0.3) !important;
}

/* 5. YAKUT KIRMIZI (RUBY RED & AMBER) */
html[data-site-theme="red"],
html[data-site-theme="ruby"],
body[data-site-theme="red"],
body[data-site-theme="ruby"] {
    --accent-orange: #ef4444 !important;
    --accent-orange-hover: #f87171 !important;
    --accent-amber: #f97316 !important;
    --accent-glow: rgba(239, 68, 68, 0.45) !important;
    --header-bg: rgba(30, 8, 12, 0.96) !important;
    --border-color: rgba(239, 68, 68, 0.3) !important;
    --border-hover: #ef4444 !important;
    --bg-dark: #100305 !important;
    --bg-surface: #1c0609 !important;
    --bg-card: #2a090e !important;
    background-color: #100305 !important;
    background-image: radial-gradient(circle at 15% 15%, rgba(239, 68, 68, 0.25) 0%, transparent 50%), radial-gradient(circle at 85% 85%, rgba(249, 115, 22, 0.2) 0%, transparent 50%) !important;
    color: #ffffff !important;
}

html[data-site-theme="red"] .glassmorphism-nav,
html[data-site-theme="ruby"] .glassmorphism-nav,
html[data-site-theme="red"] header.site-header,
html[data-site-theme="ruby"] header.site-header {
    background: rgba(30, 8, 12, 0.96) !important;
    border-bottom: 1px solid rgba(239, 68, 68, 0.35) !important;
}

html[data-site-theme="red"] .btn-primary,
html[data-site-theme="ruby"] .btn-primary,
html[data-site-theme="red"] .filter-btn.active,
html[data-site-theme="ruby"] .filter-btn.active {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%) !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.5) !important;
}

html[data-site-theme="red"] .desktop-nav .menu li a:hover,
html[data-site-theme="red"] .desktop-nav .menu li a.active,
html[data-site-theme="ruby"] .desktop-nav .menu li a:hover,
html[data-site-theme="ruby"] .desktop-nav .menu li a.active,
html[data-site-theme="red"] .text-accent,
html[data-site-theme="ruby"] .text-accent,
html[data-site-theme="red"] .gradient-text-orange,
html[data-site-theme="ruby"] .gradient-text-orange {
    color: #f87171 !important;
    -webkit-text-fill-color: #f87171 !important;
    background: none !important;
}

html[data-site-theme="red"] .site-footer,
html[data-site-theme="ruby"] .site-footer {
    background: #080103 !important;
    border-top: 1px solid rgba(239, 68, 68, 0.3) !important;
}

