/*
 * RANDU.TR — Tema Temel CSS Değişkenleri
 * Her tema bu dosyadaki CSS variable'ları override eder
 * Bu dosya doğrudan yüklenmez, tema dosyaları :root altında tanımlar
 */

/* ============================================= */
/* TEMA DEĞİŞKENLERİNİ KULLANAN ORTAK STİLLER   */
/* ============================================= */

/* Body */
body {
    background: var(--t-bg-body, #0f172a);
    color: var(--t-text-primary, #ffffff);
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed; top: 0; left: 0; height: 4px;
    background: var(--t-gradient);
    width: 0%; z-index: 100003; transition: width 0.1s ease;
}

/* ═══ TOP BAR ═══ */
.barber-top-info {
    background: var(--t-bg-topbar);
    padding: 10px 0; display: none; position: relative;
}
.barber-top-info-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; position: relative; }
.barber-top-left { display: flex; align-items: center; gap: 35px; padding: 0; }
.barber-top-contact { display: flex; align-items: center; gap: 12px; color: #ffffff; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s; position: relative; }
a.barber-top-contact { cursor: pointer; }
a.barber-top-contact:hover { color: var(--t-accent); }
.barber-top-contact[style*="opacity"] { color: rgba(255, 255, 255, 0.5) !important; }
div.barber-top-contact { cursor: default; }
.barber-top-contact i { font-size: 14px; color: var(--t-accent); border: 2px solid var(--t-accent); border-radius: 6px; width: 32px; height: 32px; display: inline-flex; align-items: center; justify-content: center; transition: all 0.3s; }
a.barber-top-contact:hover i { background: var(--t-accent); color: var(--t-bg-topbar); }
.barber-top-contact span { position: relative; z-index: 1; font-weight: 500; }
.barber-top-right { display: flex; gap: 12px; }
.barber-top-social { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #FFFFFF; font-size: 15px; transition: all 0.3s; text-decoration: none; background: var(--t-accent); border: none; }
.barber-top-social:hover { background: #FFFFFF; color: var(--t-accent); transform: scale(1.1); }
@media (min-width: 769px) { .barber-top-info { display: block; } }

/* ═══ HEADER ═══ */
.barber-main-header { background: var(--t-bg-header); position: sticky; top: 0; left: 0; right: 0; width: 100%; z-index: 99999; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.barber-header-container { max-width: 1400px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; min-height: 80px; }

.barber-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; z-index: 100001; position: relative; }
.barber-logo-img { height: 60px; width: auto; max-width: 200px; object-fit: contain; transition: transform 0.3s; }
.barber-logo:hover .barber-logo-img { transform: scale(1.05); }
.barber-logo-placeholder {
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--t-gradient);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; font-weight: 800; color: #fff;
    letter-spacing: -0.5px; flex-shrink: 0;
    box-shadow: 0 4px 12px var(--t-shadow-color, rgba(30, 64, 175, 0.3));
    transition: transform 0.3s;
}
.barber-logo:hover .barber-logo-placeholder { transform: scale(1.05); }
.barber-logo-text { color: var(--t-text-primary); }
.barber-logo-text h1 { font-size: 24px; font-weight: 800; color: var(--t-text-primary); margin: 0; letter-spacing: 0.5px; }
.barber-logo-text p { font-size: 11px; color: var(--t-text-muted); margin: 0; text-transform: uppercase; letter-spacing: 1px; }

/* ═══ NAV ═══ */
.barber-nav { display: flex; gap: 35px; margin: 0; padding: 0; list-style: none; }
.barber-nav-item { color: var(--t-nav-text); text-decoration: none; font-size: 16px; font-weight: 500; padding: 8px 0; position: relative; transition: color 0.3s; }
.barber-nav-item::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--t-gradient); transition: width 0.3s; }
.barber-nav-item:hover { color: var(--t-primary-light); }
.barber-nav-item:hover::after { width: 100%; }
.barber-nav-item.active { color: var(--t-primary-light); }
.barber-nav-item.active::after { width: 100%; }

/* Dropdown */
.barber-nav-dropdown { position: relative; }
.barber-nav-dropdown > .barber-nav-item { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.barber-nav-dropdown > .barber-nav-item .dropdown-icon { font-size: 12px; transition: transform 0.3s; }
.barber-nav-dropdown:hover > .barber-nav-item .dropdown-icon { transform: rotate(180deg); }
.barber-dropdown-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); background: var(--t-dropdown-bg); border: 1px solid var(--t-dropdown-border); border-radius: 8px; min-width: 280px; max-width: 350px; padding: 8px 0; margin-top: 8px; opacity: 0; visibility: hidden; transition: all 0.3s; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); z-index: 1000; max-height: 500px; overflow-y: auto; }
.barber-nav-dropdown:hover .barber-dropdown-menu { opacity: 1; visibility: visible; margin-top: 12px; }
.barber-dropdown-category { padding: 12px 20px 8px; color: var(--t-primary-light); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--t-dropdown-border); margin-bottom: 4px; }
.barber-dropdown-item { display: block; padding: 10px 20px 10px 30px; color: var(--t-dropdown-text); text-decoration: none; font-size: 14px; transition: all 0.3s; border-left: 3px solid transparent; }
.barber-dropdown-item:hover { background: var(--t-dropdown-hover); border-left-color: var(--t-primary-light); color: var(--t-primary-light); padding-left: 35px; }
.barber-dropdown-all { margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--t-dropdown-border); }
.barber-dropdown-all .barber-dropdown-item { font-weight: 600; color: var(--t-primary-light); }

/* CTA Buttons */
.barber-cta-btn { background: var(--t-gradient); color: white; padding: 12px 28px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; box-shadow: 0 4px 15px var(--t-shadow-color, rgba(30, 64, 175, 0.3)); }
.barber-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px var(--t-shadow-color, rgba(30, 64, 175, 0.4)); }

.barber-header-actions { display: flex; align-items: center; gap: 12px; }
.barber-login-btn { background: transparent; border: 2px solid var(--t-login-border); color: var(--t-nav-text); padding: 10px 20px; border-radius: 8px; text-decoration: none; font-weight: 500; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
.barber-login-btn:hover { background: var(--t-login-hover-bg); border-color: var(--t-primary-light); color: var(--t-primary-light); transform: translateY(-2px); }
.barber-login-btn i { font-size: 14px; }
.barber-login-btn.mobile { display: none; margin: 15px 30px; width: calc(100% - 60px); justify-content: center; border-color: rgba(255, 255, 255, 0.5); color: #fff; background: rgba(255, 255, 255, 0.08); }
.barber-login-btn.mobile:hover { background: rgba(255, 255, 255, 0.15); border-color: #fff; color: #fff; }

/* ═══ MOBILE MENU ═══ */
.barber-mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; z-index: 100001; position: relative; }
.barber-mobile-toggle span { width: 25px; height: 3px; background: var(--t-nav-text); border-radius: 3px; transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.barber-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 7px); }
.barber-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.barber-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.barber-mobile-close { position: absolute; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border: 2px solid rgba(255, 255, 255, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; color: white; font-size: 20px; transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); z-index: 100001; }
.barber-mobile-close:hover { background: rgba(255, 255, 255, 0.2); border-color: var(--t-primary-light-alpha); transform: scale(1.1) rotate(180deg); color: var(--t-primary-light); }

.barber-mobile-menu { position: fixed; top: 0; right: -100%; width: 100%; max-width: 320px; height: 100vh; background: var(--t-mobile-bg); z-index: 100000; transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); box-shadow: -5px 0 25px rgba(0,0,0,0.5); overflow-y: auto; padding: 80px 0 30px; }
.barber-mobile-menu.active { right: 0; }
.barber-mobile-menu .barber-nav-item { display: block; padding: 18px 30px; font-size: 16px; border-bottom: none; color: #fff; }
.barber-mobile-menu .barber-nav-item::after { display: none; }
.barber-mobile-menu .barber-nav-item:hover { background: var(--t-primary-alpha); padding-left: 40px; }

.barber-mobile-dropdown { border-bottom: 1px solid var(--t-primary-light-alpha); }
.barber-mobile-dropdown-trigger { display: flex; align-items: center; justify-content: space-between; padding: 18px 30px; color: white; cursor: pointer; transition: all 0.3s; }
.barber-mobile-dropdown-trigger:hover { background: var(--t-primary-alpha); }
.barber-mobile-dropdown-trigger .dropdown-icon { font-size: 12px; transition: transform 0.3s; }
.barber-mobile-dropdown.active .dropdown-icon { transform: rotate(180deg); }
.barber-mobile-dropdown-content { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background: rgba(0, 0, 0, 0.2); }
.barber-mobile-dropdown.active .barber-mobile-dropdown-content { max-height: 1000px; }
.barber-mobile-category { padding: 12px 30px 8px; color: var(--t-primary-light); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.barber-mobile-dropdown-content .barber-nav-item { padding-left: 50px; font-size: 14px; }
.barber-mobile-dropdown-content .barber-nav-item:hover { padding-left: 60px; }
.barber-mobile-menu .barber-cta-btn { display: inline-flex !important; margin: 20px 30px; justify-content: center; width: calc(100% - 60px); }

.barber-mobile-contacts { padding: 30px; margin-top: 20px; }
.barber-mobile-contact-item { display: flex; align-items: center; gap: 15px; padding: 15px 0; color: white; text-decoration: none; }
.barber-mobile-contact-icon { width: 45px; height: 45px; border-radius: 50%; background: var(--t-gradient); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.barber-mobile-contact-text { flex: 1; }
.barber-mobile-contact-label { font-size: 11px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.barber-mobile-contact-value { font-size: 14px; font-weight: 500; margin-top: 2px; }
.barber-mobile-socials { display: flex; gap: 15px; justify-content: center; margin-top: 20px; }
.barber-mobile-social { width: 45px; height: 45px; border-radius: 50%; border: 2px solid var(--t-primary-light); display: flex; align-items: center; justify-content: center; color: var(--t-primary-light); font-size: 18px; transition: all 0.3s; text-decoration: none; }
.barber-mobile-social:hover { background: var(--t-primary-light); color: white; }

.barber-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); z-index: 99999; opacity: 0; transition: opacity 0.3s; }
.barber-overlay.active { display: block; opacity: 1; }

@media (max-width: 968px) {
    .barber-nav, .barber-header-actions { display: none; }
    .barber-mobile-toggle { display: flex; }
    .barber-header-container { min-height: 70px; padding: 0 15px; }
    .barber-logo-text h1 { font-size: 18px; }
    .barber-logo-img { height: 45px; }
    .barber-mobile-menu { max-width: 85%; }
    .barber-login-btn.mobile { display: inline-flex; }
}
@media (max-width: 480px) {
    .barber-logo-text h1 { font-size: 16px; }
    .barber-logo-img { height: 40px; }
    .barber-header-container { padding: 0 10px; }
}

/* ═══ INDEX PAGE: HERO + CONTENT ═══ */
.contact-wrapper {
    font-family: 'Poppins', sans-serif;
    background: var(--t-bg-body);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    color: var(--t-text-secondary);
}

.animated-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; pointer-events: none; }
.floating-shape { position: absolute; border-radius: 50%; opacity: 0.08; animation: float 25s infinite ease-in-out; }
.shape1 { width: 400px; height: 400px; background: var(--t-shape1); top: 10%; left: 5%; animation-delay: 0s; }
.shape2 { width: 350px; height: 350px; background: var(--t-shape2); top: 60%; left: 65%; animation-delay: 5s; }
.shape3 { width: 450px; height: 450px; background: var(--t-shape3); top: 30%; right: 5%; animation-delay: 10s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -40px) rotate(90deg); }
    50% { transform: translate(-30px, 30px) rotate(180deg); }
    75% { transform: translate(30px, 40px) rotate(270deg); }
}

.contact-hero {
    position: relative; min-height: 60vh; display: flex;
    align-items: center; justify-content: center; text-align: center;
    color: var(--t-text-primary); z-index: 1; padding: 4rem 2rem 2rem; overflow: hidden;
}
.hero-bg-image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; filter: var(--t-hero-filter, brightness(0.4)); }
.hero-placeholder-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; background: var(--t-gradient-hero); }
.hero-placeholder-bg::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, var(--t-primary-light-30) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--t-secondary-20) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--t-accent-15) 0%, transparent 60%);
}
.hero-content { animation: fadeInUp 1s ease; position: relative; z-index: 2; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

.contact-hero .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; margin-bottom: 1rem;
    background: var(--t-hero-title-gradient);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}
.contact-hero .hero-content p { font-size: clamp(1rem, 2vw, 1.3rem); font-weight: 300; opacity: 0.9; letter-spacing: 0.5px; max-width: 600px; margin: 0 auto 1.5rem auto; }

.contact-main { position: relative; z-index: 1; padding: 2rem 1.5rem 4rem; }
.contact-container { max-width: 1400px; margin: 0 auto; }

.form-card {
    background: var(--t-bg-card); backdrop-filter: blur(20px);
    border-radius: 24px; padding: 2.5rem;
    box-shadow: 0 15px 50px var(--t-card-shadow);
    border: 1px solid var(--t-card-border);
    animation: fadeInLeft 0.8s ease; margin-bottom: 2.5rem;
}
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }

.form-title {
    font-size: clamp(1.8rem, 3vw, 2.3rem); font-weight: 900;
    color: var(--t-text-primary); margin-bottom: 2rem; position: relative; padding-bottom: 1rem;
}
.form-title::after {
    content: ''; position: absolute; bottom: 0; left: 0; width: 60px; height: 4px;
    background: var(--t-gradient); border-radius: 2px;
}

header {
    position: sticky !important; top: 0 !important; z-index: 99999 !important;
    background: var(--t-header-sticky-bg) !important; backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--t-header-border);
}

.contact-hero .cta-button {
    display: inline-flex; align-items: center; gap: 0.8rem; padding: 1.1rem 2rem;
    background: var(--t-gradient);
    color: white; border: none; border-radius: 12px; font-size: 1.1rem;
    font-weight: 700; cursor: pointer; transition: all 0.3s;
    text-decoration: none; box-shadow: 0 10px 30px var(--t-shadow-color);
    margin-top: 1.5rem;
}
.contact-hero .cta-button:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--t-shadow-color); }

/* Swiper */
.hizmetler-bolumu-swiper, .ekip-slider { width: 100%; padding-top: 50px; padding-bottom: 50px; overflow: hidden; position: relative; }
.hizmetler-bolumu-swiper .swiper-slide,
.ekip-slider .swiper-slide { background-position: center; background-size: cover; width: 320px; height: 450px; border-radius: 20px; opacity: 0.4; transition: opacity 0.3s ease; }
.hizmetler-bolumu-swiper .swiper-slide-active,
.ekip-slider .swiper-slide-active { opacity: 1; }
.hizmet-kart-swiper { width: 100%; height: 100%; border-radius: 20px; background-size: cover; background-position: center; background-color: var(--t-bg-card, rgba(30, 41, 59, 0.8)); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); position: relative; overflow: hidden; }
.hizmet-kart-swiper-icerik { position: absolute; bottom: 0; left: 0; width: 100%; padding: 40px 20px 20px; color: #fff; background: linear-gradient(to top, rgba(0,0,0,0.95) 20%, transparent); transform: translateY(100%); opacity: 0; transition: all 0.4s ease; max-height: 65%; overflow: hidden; display: flex; flex-direction: column; box-sizing: border-box; }
.hizmetler-bolumu-swiper .swiper-slide-active .hizmet-kart-swiper-icerik,
.ekip-slider .swiper-slide-active .hizmet-kart-swiper-icerik { transform: translateY(0); opacity: 1; }
.hizmet-kart-swiper-icerik h3 { font-size: 1.8rem; font-weight: 600; margin-bottom: 10px; color: #fff; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; flex-shrink: 0; }
.hizmet-kart-swiper-icerik p { font-size: 0.95rem; line-height: 1.5; margin-bottom: 20px; color: rgba(255, 255, 255, 0.9); overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; flex-shrink: 1; min-height: 0; }
.btn-hizmet-detay { display: inline-block; padding: 10px 20px; background: #fff; color: #111; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; flex-shrink: 0; align-self: flex-start; }
.btn-hizmet-detay:hover { background: var(--t-primary-light); color: #fff; }
.swiper-pagination-bullet { background: #aaa; opacity: 1; }
.swiper-pagination-bullet-active { background: var(--t-primary-light); }

/* Swiper Mobile Responsive */
@media (max-width: 480px) {
    .hizmetler-bolumu-swiper .swiper-slide,
    .ekip-slider .swiper-slide { width: 280px; height: 400px; }
    .hizmet-kart-swiper-icerik { padding: 30px 16px 16px; }
    .hizmet-kart-swiper-icerik h3 { font-size: 1.4rem; margin-bottom: 8px; }
    .hizmet-kart-swiper-icerik p { font-size: 0.85rem; margin-bottom: 12px; -webkit-line-clamp: 2; }
    .btn-hizmet-detay { padding: 8px 16px; font-size: 0.85rem; }
}
@media (max-width: 360px) {
    .hizmetler-bolumu-swiper .swiper-slide,
    .ekip-slider .swiper-slide { width: 260px; height: 380px; }
    .hizmet-kart-swiper-icerik h3 { font-size: 1.2rem; }
}

/* About */
.about-content { display: flex; flex-wrap: wrap; gap: 2rem; align-items: center; }
.about-text { flex: 1; min-width: 300px; }
.about-image { flex: 1; min-width: 300px; display: flex; justify-content: center; perspective: 1500px; }
.about-text p { color: var(--t-text-secondary); line-height: 1.8; font-size: 1.1rem; margin-bottom: 1.5rem; }
.about-3d-card { width: 100%; max-width: 500px; height: 350px; position: relative; transform-style: preserve-3d; transform: rotateY(-20deg) rotateX(5deg); transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.5s ease; box-shadow: -30px 20px 60px var(--t-card-shadow); border-radius: 20px; }
.about-3d-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; pointer-events: none; }
.about-3d-card:hover { box-shadow: 0 40px 80px var(--t-card-shadow); }

@media (max-width: 768px) {
    .about-3d-card img { transform: rotateY(-10deg); box-shadow: -15px 15px 30px var(--t-card-shadow); }
    .contact-hero .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 968px) {
    .contact-hero { min-height: 50vh; padding: 3rem 1.5rem 2rem; }
    .contact-main { padding: 2rem 1.5rem 3rem; }
    .form-card { padding: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════ */
/* LIGHT MODE OVERRIDES — [data-theme-mode="light"]   */
/* ═══════════════════════════════════════════════════ */

/* Card backgrounds & borders */
[data-theme-mode="light"] .form-card {
    background: var(--t-bg-card);
    box-shadow: 0 4px 24px var(--t-card-shadow), 0 1px 3px rgba(0,0,0,0.06);
    border: 1px solid var(--t-card-border);
}

/* Hero text — placeholder (no image) */
[data-theme-mode="light"] .contact-hero {
    color: var(--t-text-primary);
}
[data-theme-mode="light"] .contact-hero .hero-content p {
    opacity: 1;
    color: var(--t-text-secondary);
}

/* Hero text — hero IMAGE present → bright text on darkened image */
[data-theme-mode="light"] .contact-hero .hero-bg-image ~ .hero-content h1 {
    background: none;
    -webkit-text-fill-color: initial;
    color: #ffffff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35), 0 1px 3px rgba(0, 0, 0, 0.2);
    font-weight: 900;
}
[data-theme-mode="light"] .contact-hero .hero-bg-image ~ .hero-content p {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}
[data-theme-mode="light"] .contact-hero .hero-bg-image ~ .hero-content {
    color: rgba(255, 255, 255, 0.9);
}
[data-theme-mode="light"] .contact-hero .hero-bg-image ~ .hero-content .cta-button {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section titles */
[data-theme-mode="light"] .form-title {
    color: var(--t-text-primary);
}

/* Floating shapes — more subtle on light bg */
[data-theme-mode="light"] .floating-shape {
    opacity: 0.05;
}

/* Top bar contact text */
[data-theme-mode="light"] .barber-top-contact {
    color: #ffffff;
}

/* Mobile menu text stays white (dark gradient bg) */

/* About section text */
[data-theme-mode="light"] .about-text p {
    color: var(--t-text-secondary);
}
[data-theme-mode="light"] .about-text strong {
    color: var(--t-text-primary);
}

/* Dropdown */
[data-theme-mode="light"] .barber-dropdown-menu {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Page headers (services, gallery, blog) — dark text on light gradient bg */
[data-theme-mode="light"] .modern-page-header h1,
[data-theme-mode="light"] .page-header h1 {
    color: var(--t-text-primary);
}
[data-theme-mode="light"] .modern-page-header p,
[data-theme-mode="light"] .page-header p {
    color: var(--t-text-secondary);
}
[data-theme-mode="light"] .page-header {
    color: var(--t-text-primary);
}

/* ═══ LIGHT MODE: MOBILE MENU OVERRIDES ═══ */
/* Mobil menü metin rengini tema CSS değişkeniyle kontrol et.
   Dark mobile-bg olan temalar varsayılan #fff kullanır;
   Light mobile-bg olan temalar (minimal gibi) --t-mobile-text ile override eder. */

.barber-mobile-menu .barber-nav-item {
    color: var(--t-mobile-text, #fff);
}
.barber-mobile-dropdown-trigger {
    color: var(--t-mobile-text, white);
}
.barber-mobile-close {
    color: var(--t-mobile-text, white);
    background: var(--t-mobile-close-bg, rgba(255, 255, 255, 0.1));
    border-color: var(--t-mobile-close-border, rgba(255, 255, 255, 0.3));
}
.barber-mobile-close:hover {
    background: var(--t-mobile-close-hover-bg, rgba(255, 255, 255, 0.2));
}
.barber-mobile-dropdown-content {
    background: var(--t-mobile-dropdown-bg, rgba(0, 0, 0, 0.2));
}
.barber-mobile-contact-item {
    color: var(--t-mobile-text, white);
}
.barber-mobile-contact-label {
    color: var(--t-mobile-muted, #94a3b8);
}
.barber-mobile-dropdown {
    border-bottom-color: var(--t-mobile-border, var(--t-primary-light-alpha));
}
.barber-login-btn.mobile {
    border-color: var(--t-mobile-login-border, rgba(255, 255, 255, 0.5));
    color: var(--t-mobile-text, #fff);
    background: var(--t-mobile-login-bg, rgba(255, 255, 255, 0.08));
}
.barber-login-btn.mobile:hover {
    background: var(--t-mobile-login-hover-bg, rgba(255, 255, 255, 0.15));
    border-color: var(--t-mobile-text, #fff);
    color: var(--t-mobile-text, #fff);
}
