/* =========================================================
   Nova Barbershop — Dark Luxury (Kömür & Altın) Stil Dosyası
   ========================================================= */

:root {
    --bg: #0a0a0d;
    --bg-soft: #0f0f13;
    --card: #131318;
    --card-hover: #191920;
    --border: rgba(212, 175, 55, 0.14);

    --gold: #d4af37;
    --gold-light: #f5d77f;
    --gold-deep: #aa820a;
    --gold-gradient: linear-gradient(135deg, #f5d77f, #d4af37, #aa820a);

    --whatsapp: #25D366;
    --whatsapp-deep: #1ea855;

    --text: #f2ede1;
    --text-muted: #a6a1a1;
    --text-dim: #706a68;

    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --radius: 14px;
    --radius-sm: 10px;
    --container: 1180px;
    --nav-height: 84px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

h1, h2, h3, .section-title {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--text);
    margin: 0 0 16px;
}

.section-title { font-size: clamp(28px, 4vw, 42px); }
.section-sub {
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 0 48px;
    font-size: 15.5px;
}

.section {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}
.section--tight { padding: 80px 0; }

/* =========================================================
   BUTONLAR & ÖZEL IŞIK SÜZMESİ (SPECULAR SHIMMER)
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: 0.03em;
    border: 1px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                background 0.3s ease, 
                border-color 0.3s ease;
}

/* Diagonal Işık Süzmesi Animasyonu (AI standart animasyonlarından farklı özel efekt) */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -130%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: skewX(-25deg);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}
.btn:hover::before {
    transform: translateX(340%) skewX(-25deg);
}

.btn:active {
    transform: translateY(1px) scale(0.97) !important;
}

.btn:focus-visible, a:focus-visible, button:focus-visible, .tab:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 3px;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #100b03;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.28), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}
.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 34px rgba(212, 175, 55, 0.45), 0 0 24px rgba(245, 215, 127, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    border: 1px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.12);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #1ea855);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    width: 100%;
}
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-call {
    background: rgba(212, 175, 55, 0.08);
    border-color: var(--gold);
    color: var(--gold-light);
    width: 100%;
}
.btn-call:hover {
    background: rgba(212, 175, 55, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25);
}

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--nav-height);
    z-index: 500;
    display: flex;
    align-items: center;
    background: rgba(10, 10, 13, 0.55);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10, 10, 13, 0.86);
    border-bottom-color: var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.brand {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--text);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}
.brand span { color: var(--gold); font-weight: 600; }
.nav-links { display: flex; gap: 2vw; list-style: none; margin: 0; padding: 0; }
.nav-links a {
    font-size: 13.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.2s ease;
    position: relative;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.custom-dropdown { position: relative; }
.dropdown-toggle {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text);
    padding: 8px 14px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 13px;
    font-weight: 500;
}
.dropdown-toggle:hover { background: rgba(255,255,255,0.1); border-color: var(--gold); }
.dropdown-toggle i { font-size: 10px; margin-left: 2px; color: var(--gold); }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(10, 10, 13, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 8px 0;
    list-style: none;
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    margin: 0;
}
.custom-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { margin: 0; padding: 0; }
.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-muted);
    font-size: 13.5px;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.dropdown-menu li a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--gold);
}
.nav-cta { padding: 11px 22px; font-size: 13px; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--gold); display: block; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media video, .hero-media img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(0deg, #0a0a0d 4%, rgba(10,10,13,0.55) 42%, rgba(10,10,13,0.35) 65%),
        linear-gradient(180deg, rgba(10,10,13,0.6) 0%, rgba(10,10,13,0.05) 30%);
}
.hero-content { padding: 0 0 110px; max-width: 720px; }
.hero-content .eyebrow {
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}
.hero-title {
    font-size: clamp(38px, 6.2vw, 68px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.22s both;
}
.hero-title em {
    font-style: normal;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-desc {
    color: var(--text-muted);
    font-size: 16.5px;
    max-width: 480px;
    margin-bottom: 34px;
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.36s both;
}
.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: heroReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}
@keyframes heroReveal {
    0% { opacity: 0; transform: translateY(28px); }
    100% { opacity: 1; transform: translateY(0); }
}
.hero-scroll-hint {
    position: absolute; right: 32px; bottom: 32px;
    writing-mode: vertical-rl;
    color: var(--text-dim);
    font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
    display: flex; align-items: center; gap: 10px;
}
.hero-scroll-hint::after {
    content: ''; width: 1px; height: 46px; background: var(--gold);
    animation: scrollline 2.4s ease-in-out infinite;
}
@keyframes scrollline { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }

/* =========================================================
   HİZMETLER & RANDEVU BUTONLARI (PREMIUM KART DİZAYNI)
   ========================================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
    .services-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px 22px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease, 
                background 0.4s ease;
}
.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    padding: 1px;
    background: linear-gradient(135deg, rgba(245, 215, 127, 0.5), transparent 50%, rgba(212, 175, 55, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.5);
    background: var(--card-hover);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.75), 0 0 30px rgba(212, 175, 55, 0.14);
}
.service-card:hover::before {
    opacity: 1;
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 14px;
}
.service-header-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.service-duration-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    padding: 3px 10px;
    border-radius: 999px;
    width: fit-content;
    border: 1px solid rgba(212, 175, 55, 0.2);
}
.service-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.service-price-pill {
    font-family: var(--font-display);
    color: var(--gold-light);
    font-size: 19px;
    font-weight: 800;
    white-space: nowrap;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.28);
    padding: 6px 13px;
    border-radius: 999px;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.35);
}
.service-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.service-card-footer {
    padding-top: 16px;
    border-top: 1px dashed rgba(212, 175, 55, 0.16);
}
.service-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 20px;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.24);
    border-radius: 999px;
    color: var(--gold-light);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    pointer-events: none;
}
.service-btn:hover::before {
    transform: translateX(320%) skewX(-25deg);
}
.service-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-light);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-btn:hover {
    background: var(--gold-gradient);
    color: #120d04;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
}
.service-btn:hover .service-btn-icon {
    background: rgba(18, 13, 4, 0.2);
    color: #120d04;
    transform: translateX(4px);
}
.service-btn:active {
    transform: scale(0.97);
}

/* =========================================================
   EKİP (TEAM)
   ========================================================= */
.team-tabs { display: flex; gap: 12px; margin-bottom: 42px; flex-wrap: wrap; }
.tab {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.tab:hover {
    color: var(--text);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
    background: var(--card-hover);
}
.tab.active {
    background: var(--gold-gradient);
    color: #120d04;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 6px 22px rgba(212, 175, 55, 0.38);
    transform: scale(1.02);
}

.team-panel { display: none; grid-template-columns: 300px 1fr; gap: 46px; align-items: center; }
.team-panel.active { display: grid; }
.team-photo { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--border); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-role { font-family: var(--font-body); font-weight: 700; color: var(--gold); font-size: 12.5px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px; }
.team-name { font-family: var(--font-display); font-size: 32px; font-weight: 800; margin-bottom: 18px; }
.team-bio { color: var(--text-muted); font-size: 15px; margin-bottom: 22px; }
.team-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.badge {
    font-size: 12px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

@media (max-width: 760px) {
    .team-panel { grid-template-columns: 1fr; }
    .team-photo { max-width: 260px; margin: 0 auto; }
}

/* =========================================================
   GALERİ / PORTFOLYO
   ========================================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.35s ease, 
                box-shadow 0.35s ease;
}
.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: 0 14px 32px rgba(0,0,0,0.6), 0 0 24px rgba(212, 175, 55, 0.2);
}
.gallery-item img {
    width: 100%; height: 100%; object-fit: cover; object-position: center 25%;
    image-rendering: -webkit-optimize-contrast;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.08); filter: brightness(0.55); }
.gallery-zoom {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    color: var(--gold-light);
}
.gallery-item:hover .gallery-zoom { opacity: 1; }
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-dim);
    padding: 60px 20px;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
}

/* =========================================================
   LUXURY FULLSCREEN LIGHTBOX MODAL
   ========================================================= */
.lightbox {
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(6, 6, 8, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: none;
    flex-direction: column;
    align-items: center; justify-content: space-between;
    padding: 20px 24px;
    animation: lbFadeIn 0.3s ease forwards;
}
.lightbox.open { display: flex; }

@keyframes lbFadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.lightbox-header {
    width: 100%; max-width: 1100px;
    display: flex; align-items: center; justify-content: space-between;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    z-index: 10;
}
.lb-brand {
    font-size: 13px; font-weight: 800; letter-spacing: 0.12em;
    color: var(--gold-light); display: flex; align-items: center; gap: 8px;
}
.lightbox-counter {
    font-size: 13px; font-weight: 700; color: var(--text-dim);
    background: rgba(255, 255, 255, 0.06); border: 1px solid var(--border);
    padding: 4px 14px; border-radius: 999px; letter-spacing: 0.08em;
}
.lightbox-close {
    background: rgba(255, 255, 255, 0.08); border: 1px solid var(--border);
    color: var(--text); border-radius: 50%; width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s ease;
}
.lightbox-close:hover {
    background: var(--gold); color: #0a0a0d; transform: rotate(90deg) scale(1.05);
}

.lightbox-content {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    flex: 1; max-width: 100%; margin: 16px 0; gap: 16px; position: relative;
}
.lightbox-img-wrap {
    max-width: min(88vw, 880px); max-height: 72vh;
    display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
    max-width: 100%; max-height: 72vh;
    object-fit: contain;
    border-radius: var(--radius);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 40px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.4);
}
.lightbox-footer {
    display: flex; justify-content: center; width: 100%;
}
.lb-action-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 24px; background: #25d366; color: #ffffff;
    font-size: 13.5px; font-weight: 700; border-radius: 999px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}
.lb-action-btn:hover {
    transform: translateY(-2px); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
}

.lightbox-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(10, 10, 13, 0.7); border: 1px solid var(--border);
    color: var(--gold-light); border-radius: 50%;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.25s ease; z-index: 10;
    backdrop-filter: blur(8px);
}
.lightbox-btn:hover {
    background: var(--gold); color: #0a0a0d; transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 24px rgba(212, 175, 55, 0.4);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* =========================================================
   STANDARTLAR (ABOUT)
   ========================================================= */
.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}
.standard-card {
    padding: 30px 26px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.standard-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.1);
}
.standard-icon { color: var(--gold); margin-bottom: 16px; transition: transform 0.3s ease; }
.standard-card:hover .standard-icon { transform: scale(1.1); }
.standard-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.standard-desc { color: var(--text-muted); font-size: 14px; }

/* =========================================================
   İLETİŞİM (CONTACT)
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: start; }
.contact-info-card {
    background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px; margin-bottom: 20px;
}
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.contact-row:last-child { border-bottom: none; }
.contact-row .ico { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-row a:hover { color: var(--gold-light); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.hours-table td { padding: 10px 0; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.hours-table td:last-child { text-align: right; color: var(--text); font-family: var(--font-display); font-weight: 700; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 4/3; }
.map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) invert(0.92) contrast(0.9); }

@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 46px 0; border-top: 1px solid var(--border); }
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-note { color: var(--text-dim); font-size: 13px; }
.footer-credit { color: var(--text-dim); font-size: 13px; }
.novaweb-link { color: var(--gold-light); font-weight: 700; text-decoration: none; transition: color 0.2s ease, text-shadow 0.2s ease; }
.novaweb-link:hover { color: #ffffff; text-shadow: 0 0 10px rgba(245, 215, 127, 0.6); }
.footer-social a { color: var(--gold); margin-left: 16px; }

/* =========================================================
   SABİT EYLEM BUTONLARI (WHATSAPP & INSTAGRAM)
   ========================================================= */
@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(37,211,102,0.35), 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 14px 34px rgba(37,211,102,0.5), 0 0 0 12px rgba(37, 211, 102, 0);
    }
}
@keyframes pulseInsta {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(225,48,108,0.35), 0 0 0 0 rgba(225, 48, 108, 0.5);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 14px 34px rgba(225,48,108,0.5), 0 0 0 12px rgba(225, 48, 108, 0);
    }
}
@keyframes pulseTiktok {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 26px rgba(254, 44, 85, 0.4), 0 0 0 0 rgba(37, 244, 238, 0.5);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 14px 34px rgba(254, 44, 85, 0.6), 0 0 0 12px rgba(37, 244, 238, 0);
    }
}
.sticky-whatsapp {
    animation: pulseGlow 3.2s infinite ease-in-out;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease !important;
}
.sticky-whatsapp:hover {
    animation: none;
    transform: scale(1.12) translateY(-4px) !important;
    background: #128C7E !important;
    box-shadow: 0 16px 38px rgba(37,211,102,0.6) !important;
}
.sticky-instagram {
    animation: pulseInsta 3.2s infinite ease-in-out 1.6s;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease !important;
}
.sticky-instagram:hover {
    animation: none;
    background: #C13584 !important;
    transform: scale(1.12) translateY(-4px) !important;
    box-shadow: 0 16px 38px rgba(225,48,108,0.6) !important;
}
.sticky-tiktok {
    animation: pulseTiktok 3.2s infinite ease-in-out 0.8s;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background 0.3s ease !important;
}
.sticky-tiktok:hover {
    animation: none;
    background: #010101 !important;
    transform: scale(1.12) translateY(-4px) !important;
    box-shadow: 0 16px 38px rgba(254, 44, 85, 0.7), 0 0 18px rgba(37, 244, 238, 0.5) !important;
}

/* =========================================================
   RANDEVU MODALI (LÜKS POPUP)
   ========================================================= */
.modal-overlay {
    position: fixed; inset: 0; z-index: 800;
    background: rgba(6,6,8,0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
    width: 100%; max-width: 440px;
    background: var(--card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(212, 175, 55, 0.15);
    border-radius: var(--radius);
    padding: 36px 32px;
    position: relative;
    transform: translateY(20px) scale(0.96);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal-overlay.open .modal {
    transform: translateY(0) scale(1);
}
.modal-close {
    position: absolute; top: 18px; right: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); cursor: pointer;
    transition: all 0.25s ease;
}
.modal-close:hover { color: var(--gold-light); border-color: var(--gold); transform: rotate(90deg); }
.modal-title { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.modal-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 28px; }
.modal-options { display: flex; flex-direction: column; gap: 16px; }
.modal-option-label { font-size: 11.5px; font-weight: 700; color: var(--gold); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 4px; }

/* =========================================================
   SCROLL ANİMASYONLARI (REVEAL)
   ========================================================= */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================================
   RESPONSIVE MENÜ & MOBİL UYUMLULUK
   ========================================================= */
@media (max-width: 1150px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-links.mobile-open {
        display: flex;
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: rgba(10,10,13,0.98);
        flex-direction: column;
        padding: 26px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }
}

@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .hero-title { font-size: 38px; }
    .hero-title em { display: block; }
    .services-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 24px; }
    .nav-actions { gap: 10px; }
    .nav-cta { display: none; } /* Hide 'Randevu Al' btn in header on small mobile to fit lang and logo */
    .dropdown-toggle { padding: 6px 10px; font-size: 12px; }
    .brand { font-size: 16px; }
    .section { padding: 70px 0; }
    .hero-content { padding-bottom: 90px; }
    .hero-scroll-hint { display: none; }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .gallery-item--featured {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 3 / 4;
    }
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(180deg, transparent 30%, rgba(10,10,13,0.88) 100%);
        padding: 12px;
    }
    .gallery-badge { font-size: 9.5px; padding: 4px 8px; }
    .gallery-zoom-btn {
        transform: translateY(0);
        padding: 6px 12px;
        font-size: 11px;
    }
    .sticky-tiktok { bottom: 148px !important; width: 50px !important; height: 50px !important; font-size: 20px !important; }
    .sticky-instagram { bottom: 86px !important; width: 50px !important; height: 50px !important; font-size: 22px !important; }
    .sticky-whatsapp { bottom: 22px !important; width: 50px !important; height: 50px !important; font-size: 24px !important; }
}
