/* Kolayza Barber - Main Stylesheet */
/* Extracted from index.html for multi-page structure */

:root {
    --bg-0: #f6f7fa;
    --bg-1: #ffffff;
    --text-1: #0f172a;
    --text-2: #475569;
    --line: #e8ebf0;
    --brand: #111827;
    --focus: #2563eb;

    /* Shadow scale */
    --shadow-sm: 0 2px 8px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.08);
    --shadow-lg: 0 12px 40px rgba(17,23,42,.08);
    --shadow: var(--shadow-lg);

    /* Border radius scale */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --radius: 14px;

    /* Z-index scale */
    --z-nav: 50;
    --z-drawer: 60;
    --z-sticky: 70;
    --z-modal: 100;

    /* Typography scale */
    --step--1: clamp(0.92rem, 0.86rem + 0.3vw, 1rem);
    --step-0: clamp(1rem, 0.96rem + 0.5vw, 1.06rem);
    --step-1: clamp(1.15rem, 1.08rem + 0.7vw, 1.25rem);
    --step-2: clamp(1.35rem, 1.24rem + 1.1vw, 1.55rem);
    --step-3: clamp(1.75rem, 1.55rem + 1.8vw, 2.25rem);

    /* Animation */
    --easeOut: cubic-bezier(.16,1,.3,1);

    /* Status colors */
    --online: #16a34a;
    --onlineGlow: rgba(22,163,74,.18);
}

* {
    box-sizing: border-box
}

/* Skip Link - Accessibility */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    font-size: var(--step--1);
    font-weight: 500;
    text-decoration: none;
    z-index: calc(var(--z-modal) + 1);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

html, body {
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    background: var(--bg-0);
    color: var(--text-1);
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none
}

a:focus-visible, button:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 2px;
    border-radius: 10px
}

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

.container {
    width: min(1120px, 92vw);
    margin-inline: auto;
    padding-inline: max(4vw,12px)
}

/* NAV - Luxury Edition */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.97));
    backdrop-filter: blur(16px) saturate(150%);
    -webkit-backdrop-filter: blur(16px) saturate(150%);
    border-bottom: 1px solid rgba(17,24,39,.08);
    box-shadow:
        0 4px 16px rgba(0,0,0,.04),
        0 1px 2px rgba(0,0,0,.02),
        inset 0 1px 0 rgba(255,255,255,.8);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform .3s var(--easeOut);
}

.brand:hover {
    transform: translateY(-1px);
}

.logo {
    display: grid;
    place-items: center;
    padding: 8px;
    background: linear-gradient(135deg, rgba(17,24,39,.04), rgba(17,24,39,.02));
    border-radius: 12px;
    border: 1px solid rgba(17,24,39,.06);
    box-shadow:
        0 4px 12px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.5);
    transition: all .3s var(--easeOut);
}

.logo:hover {
    box-shadow:
        0 6px 20px rgba(0,0,0,.1),
        inset 0 1px 0 rgba(255,255,255,.6);
    border-color: rgba(17,24,39,.1);
}

/* Luxury Barber Pole Icon */
.pole {
    position: relative;
    width: 20px;
    height: 32px;
    border-radius: 10px;
    background: repeating-linear-gradient(
        45deg,
        #d21f3c 0 10px,
        #ffffff 10px 20px,
        #1d4ed8 20px 30px,
        #ffffff 30px 40px
    );
    animation: stripesFlow 2s linear infinite;
    box-shadow:
        inset 0 0 0 1.5px rgba(17,24,39,.15),
        inset 0 2px 4px rgba(0,0,0,.1),
        0 2px 8px rgba(0,0,0,.08);
    filter: brightness(1.05) contrast(1.1);
}

.pole::before, .pole::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 7px;
    border-radius: 4px;
    background: linear-gradient(135deg, #b8c2d0, #8b97aa);
    box-shadow:
        0 2px 6px rgba(0,0,0,.15),
        inset 0 1px 0 rgba(255,255,255,.4);
}

.pole::before {
    top: -8px
}

.pole::after {
    bottom: -8px
}

@keyframes stripesFlow {
    to {
        background-position: 0 40px
    }
}

@media (prefers-reduced-motion: reduce) {
    .pole {
        animation: none
    }
}

.brand h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(1.05rem, 1rem + 0.3vw, 1.15rem);
    line-height: 1.1;
    letter-spacing: 0.01em;
    margin: 0;
    color: var(--text-1);
}

.brand small {
    display: block;
    color: var(--text-2);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: .76rem;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    align-items: center
}

.nav-links a {
    position: relative;
    padding: .4rem .6rem;
    border-radius: 8px;
    color: var(--text-1);
    font-weight: 500;
    font-size: .92rem;
    letter-spacing: 0.015em;
    opacity: .85;
    transition: all .28s var(--easeOut)
}

.nav-links a:hover {
    opacity: 1;
    color: var(--brand);
}

.nav-links a:active {
    opacity: 1;
    color: var(--brand);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: .6rem;
    right: .6rem;
    bottom: 2px;
    height: 2px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .3s var(--easeOut);
    border-radius: 2px;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.nav-links a:active::after {
    transform: scaleX(1);
}

/* Active nav link */
.nav-links a.active {
    opacity: 1;
    color: var(--brand);
}

.nav-links a.active::after {
    transform: scaleX(1);
}

.nav-links .cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: .65rem 1.2rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), #1f2937);
    color: #fff;
    border: 1px solid rgba(17,24,39,.15);
    box-shadow:
        0 4px 12px rgba(17,24,39,.12),
        0 2px 4px rgba(17,24,39,.08),
        inset 0 1px 0 rgba(255,255,255,.1);
    font-weight: 600;
    font-size: .9rem;
    letter-spacing: 0.02em;
    transition: all .25s var(--easeOut)
}

.nav-links .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 12px 28px rgba(17,24,39,.18),
        0 4px 8px rgba(17,24,39,.12),
        inset 0 1px 0 rgba(255,255,255,.15);
    background: linear-gradient(135deg, #1f2937, var(--brand));
    color: #fff;
}

.nav-links .cta-primary:active {
    transform: translateY(-1px);
    box-shadow:
        0 6px 16px rgba(17,24,39,.15),
        0 2px 4px rgba(17,24,39,.1);
}

.nav-links .cta-primary::after {
    display: none;
}

.hamb {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(248,250,252,.9));
    box-shadow:
        0 4px 12px rgba(0,0,0,.06),
        0 1px 2px rgba(0,0,0,.04),
        inset 0 1px 0 rgba(255,255,255,.6);
    align-items: center;
    justify-content: center;
    transition: all .25s var(--easeOut);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hamb:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0,0,0,.1),
        0 2px 4px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.7);
    border-color: rgba(17,24,39,.12);
}

.hamb:active {
    transform: scale(0.95);
    box-shadow:
        0 2px 6px rgba(0,0,0,.06),
        inset 0 1px 0 rgba(255,255,255,.5);
}

.hamb svg {
    stroke: var(--text-1);
    stroke-width: 2.5;
}

.hamb span {
    width: 18px;
    height: 2px;
    background: #1f2937;
    position: relative;
    display: block
}

.hamb span:before, .hamb span:after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: #1f2937
}

.hamb span:before {
    top: -6px
}

.hamb span:after {
    top: 6px
}

/* Drawer - Luxury Mobile Menu */
.drawer {
    position: fixed;
    inset: 0;
    background: rgba(17,24,39,.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    z-index: 60
}

.drawer-panel {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: min(85vw,380px);
    background: linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border-left: 1px solid rgba(17,24,39,.1);
    padding: 1.5rem;
    box-shadow:
        -8px 0 32px rgba(0,0,0,.12),
        -2px 0 8px rgba(0,0,0,.06),
        inset 1px 0 0 rgba(255,255,255,.4);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transform: translateX(100%);
    opacity: 0;
    transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s var(--easeOut)
}

.drawer.open .drawer-panel {
    transform: translateX(0);
    opacity: 1
}

.drawer a {
    padding: .9rem .8rem;
    color: var(--text-1);
    font-weight: 500;
    font-size: .95rem;
    letter-spacing: 0.01em;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all .25s var(--easeOut);
    position: relative;
}

.drawer a:hover {
    background: linear-gradient(135deg, rgba(17,24,39,.04), rgba(17,24,39,.02));
    border-color: rgba(17,24,39,.08);
    transform: translateX(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.drawer a:active {
    background: linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.03));
    border-color: rgba(17,24,39,.1);
    transform: translateX(-2px);
}

.drawer a.active {
    background: linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.03));
    border-color: rgba(17,24,39,.1);
}

.drawer .close {
    align-self: flex-end;
    background: linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.04));
    border: 1px solid rgba(17,24,39,.1);
    border-radius: 10px;
    padding: .6rem .7rem;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: all .25s var(--easeOut);
    color: var(--text-1);
}

.drawer .close:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
    background: linear-gradient(135deg, rgba(17,24,39,.1), rgba(17,24,39,.06));
    border-color: rgba(17,24,39,.15);
}

.drawer .close:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}

/* Hero */
.hero {
    position: relative;
    isolation: isolate;
    min-height: 78svh;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    border-bottom: 1px solid var(--line);
    background: #1a1a1a; /* Fallback while images load */
}

.slides {
    position: absolute;
    inset: 0
}

.slide {
    position: absolute;
    inset: 0;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 1100ms var(--easeOut);
    will-change: opacity
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    /* Subtle scale for luxury feel */
    transform: scale(1.02);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide.active {
    opacity: 1;
}

.slide.active img {
    transform: scale(1.08);
}

/* Enhanced luxury overlay with subtle vignette */
.hero-overlay {
    position: absolute;
    inset: 0;
    /* Luxury gradient overlay for enhanced readability + vignette */
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,.3) 100%),
        radial-gradient(1400px 700px at 22% 0%, rgba(212,175,55,.06), transparent 60%),
        linear-gradient(to bottom, rgba(17,24,39,.2), rgba(0,0,0,.35)),
        linear-gradient(135deg, rgba(0,0,0,.08), rgba(17,24,39,.15));
}

/* Mobile hero photo optimization - better framing */
@media (max-width: 900px) {
    .hero {
        min-height: 75svh; /* Good height to show photos */
    }

    .slide img {
        object-fit: cover; /* Fill screen like desktop */
        object-position: center 40%; /* Show more of top area (where action is) */
    }

    .hero-overlay {
        /* Slightly lighter overlay on mobile so photos are more visible */
        background:
            radial-gradient(ellipse at center, transparent 45%, rgba(0,0,0,.28) 100%),
            radial-gradient(1400px 700px at 22% 0%, rgba(212,175,55,.05), transparent 60%),
            linear-gradient(to bottom, rgba(17,24,39,.18), rgba(0,0,0,.32));
    }
}

/* Very small phones - adjust positioning */
@media (max-width: 600px) {
    .hero {
        min-height: 70svh;
    }

    .slide img {
        object-position: center 35%; /* Show even more of top area on small screens */
    }
}

.hero-inner {
    min-height: inherit;
    display: grid;
    align-content: center;
    padding: 4rem 0;
}

/* Eyebrow - LUXURY PILL BADGE */
.eyebrow {
    --pill-px: .7rem;
    display: inline-flex;
    gap: .7rem;
    align-items: center;
    padding: .52rem var(--pill-px);
    border: 1px solid rgba(212,175,55,.35);
    border-radius: 999px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .76rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, rgba(0,0,0,.75), rgba(17,24,39,.78));
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow:
        0 8px 24px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);
    white-space: nowrap;
    width: fit-content;
    max-width: 100%;
}

.eyebrow .dot {
    width: .44rem;
    height: .44rem;
    background: var(--online);
    border-radius: 50%;
    box-shadow:
        0 0 0 3px var(--onlineGlow),
        0 0 8px rgba(22,163,74,.4)
}

h2.display {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: clamp(2.2rem, 1.8rem + 2.2vw, 3.2rem);
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 1.1rem 0 1.2rem;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0,0,0,.4);
}

.hero-panel .sub {
    max-width: 62ch;
    color: rgba(255,255,255,.94);
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(1rem, 0.96rem + 0.3vw, 1.1rem);
    font-weight: 300;
    line-height: 1.7;
    letter-spacing: 0.015em;
    text-shadow: 0 1px 10px rgba(0,0,0,.3);
}

.cta {
    display: flex;
    gap: .8rem;
    align-items: center;
    margin-top: 1.3rem;
    flex-wrap: wrap
}

/* Luxury hero CTA spacing */
.hero-panel .cta {
    margin-top: 1.8rem;
    gap: 1rem;
}

/* HERO TEXT FRAME - LUXURY BLACK GLASS */
.hero-panel {
    background: linear-gradient(135deg, rgba(0,0,0,.48), rgba(17,24,39,.52));
    backdrop-filter: blur(10px) saturate(140%);
    -webkit-backdrop-filter: blur(10px) saturate(140%);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 2.5rem 2.8rem 2.75rem;
    box-shadow:
        0 24px 60px rgba(0,0,0,.4),
        0 8px 16px rgba(0,0,0,.24),
        inset 0 1px 0 rgba(255,255,255,.1);
    width: fit-content;
    max-width: min(820px, 94%);
    position: relative;
    color: #fff;
    transition: opacity .4s var(--easeOut), transform .4s var(--easeOut);
}

.hero-panel.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Close button for hero panel */
.hero-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all .25s var(--easeOut);
    z-index: 10;
}

.hero-close:hover {
    background: rgba(255,255,255,.2);
    border-color: rgba(255,255,255,.3);
    transform: scale(1.05);
}

.hero-close:active {
    transform: scale(0.95);
}

.hero-close svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2.5;
}

/* Reopen button - shows when panel is hidden */
.hero-reopen {
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    padding: .75rem 1.5rem;
    background: linear-gradient(135deg, rgba(0,0,0,.75), rgba(17,24,39,.78));
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,.4);
    transition: opacity .3s var(--easeOut), transform .3s var(--easeOut);
    opacity: 0;
    pointer-events: none;
    z-index: 5; /* Below panel when it's open */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.hero-reopen.visible {
    opacity: 1;
    pointer-events: auto;
    z-index: 10; /* Above everything when visible */
}

.hero-reopen:hover {
    background: linear-gradient(135deg, rgba(0,0,0,.85), rgba(17,24,39,.88));
    border-color: rgba(255,255,255,.3);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.5);
}

.hero-reopen:active {
    transform: translateX(-50%) scale(0.98);
}

/* Mobile: Better positioning for reopen button */
@media (max-width: 700px) {
    .hero-reopen {
        top: 1.5rem;
        padding: .65rem 1.2rem;
        font-size: .82rem;
    }
}

/* Subtle gold shimmer border effect */
.hero-panel::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(
        135deg,
        rgba(212,175,55,.25),
        rgba(255,255,255,.08),
        rgba(212,175,55,.15)
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

@media (max-width: 700px) {
    .hero-panel {
        padding: 1.8rem 1.5rem 2rem;
        max-width: 96%;
        border-radius: 20px;
        /* Even more transparent on mobile to show photos */
        background: linear-gradient(135deg, rgba(0,0,0,.38), rgba(17,24,39,.42));
        backdrop-filter: blur(8px) saturate(130%);
        -webkit-backdrop-filter: blur(8px) saturate(130%);
    }

    .hero-panel::before {
        border-radius: 20px;
    }

    /* Make close button smaller on mobile to prevent overflow */
    .hero-close {
        width: 30px;
        height: 30px;
        top: 0.75rem;
        right: 0.75rem;
    }

    .hero-close svg {
        width: 16px;
        height: 16px;
    }

    /* Reduce font size slightly on mobile for better fit */
    .eyebrow {
        font-size: .72rem;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    min-height: 44px;
    padding: .8rem 1.1rem;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.02em;
    transition: transform .22s var(--easeOut), box-shadow .22s var(--easeOut), background .2s var(--easeOut), color .2s var(--easeOut), border-color .2s var(--easeOut)
}

.btn.primary {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #fff;
    box-shadow: var(--shadow);
    font-weight: 600;
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(17,24,39,.14);
    background: #141921
}

.btn.primary:active {
    transform: translateY(-1px)
}

.btn.ghost {
    background: var(--bg-1);
    color: var(--text-1);
    border: 1px solid var(--line)
}

.btn.ghost:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15,23,42,.08)
}

.btn.ghost:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15,23,42,.08)
}

/* LUXURY HERO BUTTONS */
.hero-panel .btn.primary {
    background: linear-gradient(135deg, #111827, #1f2937);
    border: 1px solid rgba(212,175,55,.3);
    color: #ffffff;
    box-shadow:
        0 8px 20px rgba(0,0,0,.35),
        inset 0 1px 0 rgba(255,255,255,.08);
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: .85rem 1.4rem;
}

.hero-panel .btn.primary:hover {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-color: rgba(212,175,55,.45);
    box-shadow:
        0 12px 28px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.12);
    transform: translateY(-3px);
}

.hero-panel .btn.primary:active {
    background: linear-gradient(135deg, #1f2937, #111827);
    border-color: rgba(212,175,55,.45);
    box-shadow:
        0 12px 28px rgba(0,0,0,.45),
        inset 0 1px 0 rgba(255,255,255,.12);
    transform: translateY(-2px);
}

.hero-panel .btn.ghost {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: .85rem 1.4rem;
}

.hero-panel .btn.ghost:hover {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.3);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    transform: translateY(-3px);
}

.hero-panel .btn.ghost:active {
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.3);
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
    transform: translateY(-2px);
}

.btn.alt {
    background: var(--bg-1);
    color: var(--brand);
    border: 1px solid var(--brand)
}

.btn.alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15,23,42,.08)
}

.btn.alt:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(15,23,42,.08)
}

/* Disabled button state */
.btn:disabled,
.btn[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced focus states for accessibility */
.nav-links a:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 4px;
}

.btn:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 3px;
}

.drawer a:focus-visible {
    background: rgba(17,24,39,.08);
    outline: 2px solid var(--focus);
    outline-offset: 2px;
}

.social-icon:focus-visible {
    outline: 2px solid var(--focus);
    outline-offset: 4px;
}

/* Sections */
section {
    padding: 3.6rem 0;
    border-bottom: 1px solid var(--line)
}

.sec-title {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.6rem
}

.sec-title h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: var(--step-2);
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin: 0
}

.muted {
    color: var(--text-2)
}

.grid {
    display: grid;
    gap: 1.1rem
}

/* 4-column grid for desktop */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

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

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

/* Cards / Embeds */
.card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--bg-1);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform .24s var(--easeOut), box-shadow .24s var(--easeOut)
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15,23,42,.1)
}

.card:active {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(15,23,42,.1)
}

/* Detail Link in Service Cards */
.detail-link {
    margin-top: auto;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brand);
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    transition: gap .25s var(--easeOut), color .2s ease
}

.detail-link svg {
    transition: transform .25s var(--easeOut)
}

.card:hover .detail-link {
    gap: .5rem
}

.card:hover .detail-link svg {
    transform: translateX(3px)
}

/* Maps iframe */
.kr-iframe {
    width: 100%;
    height: 70svh;
    min-height: 540px;
    border: 0;
    display: block;
    background: var(--bg-1);
    border-radius: var(--radius)
}

/* Instagram */
.insta-embed-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px
}

.insta-frame {
    grid-column: span 4;
    background: var(--bg-1);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    padding: 0;
    transition: transform .24s var(--easeOut), box-shadow .24s var(--easeOut)
}

.insta-frame:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(15,23,42,.1)
}

.insta-frame:active {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(15,23,42,.1)
}

.insta-frame iframe {
    width: 100%;
    height: 520px;
    border: 0;
    display: block;
    background: #fff
}

@media (max-width: 900px) {
    .insta-frame {
        grid-column: span 6
    }

    .insta-frame iframe {
        height: 520px
    }
}

@media (max-width: 600px) {
    .insta-frame {
        grid-column: span 12
    }

    .insta-frame iframe {
        height: 500px
    }
}

/* Visit / Footer */
.visit-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 1.2rem;
    align-items: stretch
}

.visit-grid iframe {
    border-radius: var(--radius)
}

/* Visit Card Hover */
.visit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}

.visit-card:active {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}

/* General FAQ Cards Hover */
.general-faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}
.general-faq-card:hover strong {
    color: var(--brand);
}

.general-faq-card:active {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}
.general-faq-card:active strong {
    color: var(--brand);
}

/* FOOTER - Luxury Edition */
footer {
    background: linear-gradient(135deg, rgba(17,24,39,.03), rgba(17,24,39,.01));
    border-top: 1px solid rgba(17,24,39,.08);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    margin: 0 0 1.2rem;
    color: var(--text-1);
}

.footer-column p,
.footer-column a {
    font-size: .92rem;
    line-height: 1.8;
    color: var(--text-2);
    margin: 0;
}

.footer-column a {
    display: inline-block;
    position: relative;
    transition: all .25s var(--easeOut);
}

.footer-column a:hover {
    color: var(--brand);
    transform: translateX(3px);
}

.footer-column a:active {
    color: var(--brand);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-social {
    display: flex;
    gap: .8rem;
    margin-top: 1rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.03));
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 10px;
    transition: all .25s var(--easeOut);
    box-shadow: 0 2px 8px rgba(0,0,0,.04);
    padding: 12px;
}

.social-icon:hover {
    background: linear-gradient(135deg, rgba(17,24,39,.1), rgba(17,24,39,.06));
    border-color: rgba(17,24,39,.15);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,.1);
}

.social-icon:active {
    transform: translateY(-1px);
}

.social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
    stroke: var(--text-1);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17,24,39,.12), transparent);
    margin: 2.5rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    font-size: .88rem;
    color: var(--text-2);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.footer-brand .logo {
    transform: scale(0.9);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-2);
    transition: color .25s var(--easeOut);
    position: relative;
}

.footer-legal a:hover {
    color: var(--brand);
}

.footer-legal a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    height: 1px;
    background: var(--brand);
    transform: scaleX(0);
    transition: transform .25s var(--easeOut);
}

.footer-legal a:hover::after {
    transform: scaleX(1);
}

/* Tablet footer - 2 columns */
@media (max-width: 900px) and (min-width: 601px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Mobile-optimized compact footer */
.footer-mobile {
    display: none;
}

.footer-desktop {
    display: grid;
}

/* Mobile footer */
@media (max-width: 600px) {
    footer {
        padding: 2rem 0 1.5rem;
    }

    .footer-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-desktop {
        display: none;
    }

    .footer-mobile-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-mobile-brand strong {
        font-size: 1rem;
        font-weight: 600;
        display: block;
    }

    .footer-mobile-brand small {
        font-size: 0.72rem;
        color: var(--text-2);
        letter-spacing: 0.04em;
        display: block;
    }

    .footer-mobile-brand .logo {
        transform: scale(0.85);
    }

    .footer-mobile-actions {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-mobile-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        padding: 0.6rem 1rem;
        background: linear-gradient(135deg, rgba(17,24,39,.06), rgba(17,24,39,.03));
        border: 1px solid rgba(17,24,39,.08);
        border-radius: 10px;
        font-size: 0.85rem;
        font-weight: 500;
        color: var(--text-1);
        transition: all 0.2s ease;
    }

    .footer-mobile-btn svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        stroke-width: 2;
        fill: none;
    }

    .footer-mobile-btn:active {
        background: linear-gradient(135deg, rgba(17,24,39,.1), rgba(17,24,39,.06));
    }

    .footer-mobile-btn.primary {
        background: linear-gradient(135deg, var(--brand), #1f2937);
        color: #fff;
        border-color: rgba(17,24,39,.2);
    }

    .footer-mobile-btn.primary:active {
        background: linear-gradient(135deg, #1f2937, var(--brand));
    }

    .footer-divider {
        margin: 1.5rem 0;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        gap: 1rem;
        font-size: 0.8rem;
    }

    .footer-copyright {
        opacity: 0.7;
    }

    .footer-legal {
        flex-direction: row;
        gap: 0.5rem;
    }
}

/* Sticky mobile CTA - Luxury Edition */
.sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(env(safe-area-inset-bottom) + 12px);
    z-index: 70;
    display: flex;
    gap: .7rem;
    align-items: center;
    justify-content: center;
    padding: .6rem;
    background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.94));
    border: 1px solid rgba(17,24,39,.08);
    border-radius: 16px;
    box-shadow:
        0 20px 50px rgba(0,0,0,.12),
        0 8px 16px rgba(0,0,0,.08),
        inset 0 1px 0 rgba(255,255,255,.8);
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    transition: transform .28s var(--easeOut), opacity .28s var(--easeOut)
}

.sticky-cta.hidden {
    transform: translateY(140%);
    opacity: 0;
    pointer-events: none
}

.sticky-cta .btn {
    flex: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.sticky-cta .btn:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.sticky-cta .btn:active {
    box-shadow: 0 1px 4px rgba(0,0,0,.1);
}

/* Hide "Al" text on mobile for first button */
.sticky-cta .btn-text-mobile {
    display: none;
}

@media (min-width: 601px) {
    .sticky-cta .btn-text-mobile {
        display: inline;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sticky-cta {
        transition: none
    }
}

@media (max-width:600px) {
    .sticky-cta {
        padding: .4rem;
        gap: .5rem;
    }

    .sticky-cta .btn {
        min-height: 42px;
        padding: .7rem .85rem;
        font-size: .82rem;
        font-weight: 600;
        letter-spacing: 0.015em;
    }
}

/* Very small devices - compact sticky CTA */
@media (max-width: 360px) {
    .sticky-cta {
        left: 8px;
        right: 8px;
        padding: .35rem;
        gap: .4rem;
    }

    .sticky-cta .btn {
        min-height: 40px;
        padding: .6rem .7rem;
        font-size: .78rem;
    }
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .6s var(--easeOut), transform .6s var(--easeOut)
}

.reveal.in {
    opacity: 1;
    transform: translateY(0)
}

/* Mobile: Skip reveal/fade animations to prevent blank sections */
@media (max-width: 768px) {
    .reveal,
    .fade-in {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .hero {
        min-height: 75svh;
    }

    .hero-media {
        background: var(--brand);
    }

    .slide img {
        object-position: center center;
    }

    .hero-inner {
        padding: 2rem 0;
        align-content: end;
    }

    .hero-panel {
        padding: 1.2rem 1rem 1.4rem;
    }

    .hero-panel .eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
    }

    h2.display {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .hero-panel .sub {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 0;
    }

    .hero-panel .cta {
        margin-top: 0.8rem;
        gap: 0.5rem;
    }

    .hero-panel .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
}

/* Touch device optimization - disable hover, use tap (:active) only */
@media (hover: none) and (pointer: coarse) {
    /* Disable all hover effects on touch devices */
    .brand:hover,
    .logo:hover,
    .nav-links a:hover,
    .nav-links .cta-primary:hover,
    .hamb:hover,
    .drawer a:hover,
    .drawer .close:hover,
    .hero-close:hover,
    .hero-reopen:hover,
    .btn.primary:hover,
    .btn.ghost:hover,
    .btn.alt:hover,
    .hero-panel .btn.primary:hover,
    .hero-panel .btn.ghost:hover,
    .card:hover,
    .insta-frame:hover,
    .visit-card:hover,
    .general-faq-card:hover,
    .sticky-cta .btn:hover,
    .service-card:hover,
    .protez-info-card:hover,
    .process-step:hover,
    .faq-card:hover,
    .benefit-card:hover,
    .footer-column a:hover,
    .footer-legal a:hover,
    .social-icon:hover {
        /* Reset hover to default state on touch devices */
        transform: none !important;
        box-shadow: inherit;
        background: inherit;
        border-color: inherit;
        opacity: inherit;
        color: inherit;
    }

    /* Keep nav links normal (no transform) */
    .nav-links a:hover,
    .brand:hover,
    .logo:hover,
    .footer-column a:hover,
    .footer-legal a:hover {
        transform: none !important;
    }

    /* Ensure :active states still work on touch */
    .brand:active,
    .logo:active,
    .nav-links a:active,
    .nav-links .cta-primary:active,
    .drawer a:active,
    .drawer .close:active,
    .btn:active,
    .card:active,
    .service-card:active,
    .protez-info-card:active,
    .process-step:active .process-number,
    .faq-card:active,
    .general-faq-card:active,
    .benefit-card:active {
        /* Tap feedback for touch devices */
        opacity: 0.85;
    }

    .hamb:active {
        transform: scale(0.92);
        opacity: 1;
    }

    .hamb:focus,
    .hamb:focus-visible {
        outline: none;
        box-shadow: 0 4px 12px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04), inset 0 1px 0 rgba(255,255,255,.6);
    }
}

.fade-in {
    opacity: 0;
    transition: opacity .7s var(--easeOut)
}

.fade-in.in {
    opacity: 1
}

/* Responsive */
@media (max-width: 980px) {
    .nav-links {
        display: none
    }

    .hamb {
        display: inline-flex
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 68svh
    }

    h2.display {
        font-size: clamp(1.9rem, 1.6rem + 2vw, 2.5rem);
        letter-spacing: 0.005em;
    }

    .hero-panel .sub {
        font-size: clamp(0.96rem, 0.92rem + 0.3vw, 1.05rem);
        font-weight: 300;
    }
}

@media (max-width: 600px) {
    .hero-panel .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-panel .cta {
        margin-top: 1.5rem;
        gap: 0.75rem;
    }
}

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

    .visit-grid .card {
        order: 1
    }

    .visit-grid iframe {
        order: 2;
        min-height: 360px
    }

    #ziyaret .sec-title {
        margin-bottom: 1rem
    }
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    transition: all .4s cubic-bezier(.16,1,.3,1);
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), #374151);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s cubic-bezier(.16,1,.3,1);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover .service-icon {
    box-shadow: 0 8px 24px rgba(17,24,39,.2);
}
.service-card:hover h4 {
    color: var(--brand);
}
.service-card:active {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}
.service-card:active::before {
    transform: scaleX(1);
}
.service-card:active .service-icon {
    box-shadow: 0 8px 24px rgba(17,24,39,.2);
}
.service-card:active h4 {
    color: var(--brand);
}

/* ============================================
   PAGE HEADER (for inner pages)
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--brand), #1f2937);
    color: #fff;
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: var(--step-3);
    margin: 0 0 0.5rem;
}

.page-header p {
    font-size: var(--step-0);
    opacity: 0.9;
    margin: 0;
}

/* ============================================
   PROTEZ SAC SECTION STYLES
   ============================================ */
.protez-info-card {
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.protez-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}

.protez-info-card:active {
    transform: translateY(-4px);
}

.process-step {
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.process-step:hover {
    transform: translateY(-6px);
}

.process-step:hover .process-number {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(17,24,39,.2);
}

.faq-card {
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.faq-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}

.faq-card:hover strong {
    color: var(--brand);
}

.benefit-card {
    transition: all .4s cubic-bezier(.16,1,.3,1);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(17,24,39,.12);
    border-color: rgba(17,24,39,.15);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(17,24,39,.15);
}
