/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 4px;
    color: var(--text-primary);
    animation: loaderPulse 1s ease-in-out infinite;
}

.loader-text span {
    color: #d4af37;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Barber Pole - 3D Realistic */
.barber-pole {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 48px;
    filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.6));
    position: relative;
}

/* Decorative ball on top */
.pole-ball {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #e8e0d0, #c4b48a 40%, #8a7a56 80%, #5c4f35);
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.4),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2),
        inset 0 2px 3px rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
    margin-bottom: -3px;
}

.pole-cap {
    width: 44px;
    height: 14px;
    position: relative;
    z-index: 1;
}

.pole-cap.top {
    border-radius: 6px 6px 2px 2px;
    background: linear-gradient(to bottom, #d4c9a8, #c4b48a 30%, #a89968 60%, #8a7a56);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3),
        inset 0 -1px 2px rgba(0, 0, 0, 0.15);
}

.pole-cap.bottom {
    border-radius: 2px 2px 6px 6px;
    background: linear-gradient(to bottom, #a89968, #8a7a56 40%, #6b5d3e 80%, #5c4f35);
    box-shadow:
        0 3px 6px rgba(0, 0, 0, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.pole-cylinder {
    width: 36px;
    height: 130px;
    overflow: hidden;
    background: #f0eee8;
    position: relative;
    border-radius: 2px;
    box-shadow:
        inset 6px 0 8px -4px rgba(0, 0, 0, 0.25),
        inset -6px 0 8px -4px rgba(0, 0, 0, 0.25),
        2px 0 4px rgba(0, 0, 0, 0.2),
        -2px 0 4px rgba(0, 0, 0, 0.2);
}

.pole-stripes {
    position: absolute;
    top: -200%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: repeating-linear-gradient(
        -45deg,
        #c8102e 0px,
        #d4243a 4px,
        #c8102e 8px,
        #f0eee8 8px,
        #f5f3ef 12px,
        #f0eee8 16px,
        #1a56db 16px,
        #2563eb 20px,
        #1a56db 24px,
        #f0eee8 24px,
        #f5f3ef 28px,
        #f0eee8 32px
    );
    animation: poleRotate 1s linear infinite;
}

/* Glossy highlight overlay for 3D cylinder effect */
.pole-gloss {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.05) 15%,
        rgba(255, 255, 255, 0) 30%,
        rgba(255, 255, 255, 0.35) 42%,
        rgba(255, 255, 255, 0.1) 55%,
        rgba(0, 0, 0, 0) 65%,
        rgba(0, 0, 0, 0.12) 85%,
        rgba(0, 0, 0, 0.2) 100%
    );
    pointer-events: none;
    z-index: 1;
    border-radius: 2px;
}

/* Base/pedestal */
.pole-base {
    width: 52px;
    height: 8px;
    background: linear-gradient(to bottom, #8a7a56, #6b5d3e 50%, #5c4f35);
    border-radius: 2px 2px 4px 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
}

/* Floor shadow */
.pole-shadow {
    width: 60px;
    height: 10px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
    margin-top: -2px;
    border-radius: 50%;
}

@keyframes poleRotate {
    from { transform: translateY(0); }
    to { transform: translateY(22.63px); }
}

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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --gold: #d4af37;
    --gold-light: #e6c65a;
    --gold-dark: #b8941f;
    --text-primary: #f5f5f5;
    --text-secondary: #999999;
    --text-muted: #666666;
    --border: #2a2a2a;
    --radius: 12px;
    --radius-sm: 8px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

/* ===== TOP BAR ===== */
.top-bar {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    color: var(--text-secondary);
    overflow: hidden;
}

.top-bar-marquee {
    padding: 10px 0;
    overflow: hidden;
    width: 100%;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.top-bar-track {
    display: flex;
    width: max-content;
    animation: topBarTicker 24s linear infinite;
}

.top-bar-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    white-space: nowrap;
    position: relative;
}

.top-bar-item+.top-bar-item::before {
    content: '•';
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold-dark);
}

.top-bar-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

@keyframes topBarTicker {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(10, 10, 10, 0.97);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-primary);
}

.logo span {
    color: var(--gold);
}

.nav {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav a:hover,
.nav a.active {
    color: var(--gold);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 86px;
    height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-flag::before {
    content: '🇬🇧';
}

.lang-code {
    line-height: 1;
}

.lang-toggle:hover {
    color: var(--gold);
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.08);
}

.lang-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.lang-toggle.is-serbian {
    color: var(--gold);
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.lang-toggle.is-serbian .lang-flag::before {
    content: '🇷🇸';
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--gold);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-outline {
    background: transparent;
    color: var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: #fff;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.88)),
        url('proba.png') center/cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" patternUnits="userSpaceOnUse" width="20" height="20"><circle cx="10" cy="10" r="0.5" fill="rgba(212,175,55,0.12)"/></pattern></defs><rect fill="url(%23g)" width="100" height="100"/></svg>');
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 40px 20px;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 6px;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-title-main {
    color: var(--text-primary);
    display: block;
    font-size: clamp(42px, 8.2vw, 96px);
    letter-spacing: clamp(1px, 0.35vw, 5px);
    line-height: 0.95;
    max-width: 100%;
}

.hero-title-accent {
    color: var(--gold);
    display: block;
    font-size: clamp(34px, 6.4vw, 78px);
    letter-spacing: clamp(2px, 0.45vw, 7px);
    line-height: 0.95;
    max-width: 100%;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btns .btn {
    min-width: 220px;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

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

.section-subtitle {
    font-size: 13px;
    letter-spacing: 4px;
    color: var(--gold);
    text-align: center;
    margin-bottom: 12px;
    font-weight: 500;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 48px);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    line-height: 1.2;
}

.section-title.left {
    text-align: left;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    display: block;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    filter: saturate(1.05) contrast(1.04);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: #fff;
    padding: 24px;
    border-radius: var(--radius);
    text-align: center;
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    color: var(--gold);
    flex-shrink: 0;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
    border: 1px solid var(--border);
    aspect-ratio: 1;
    background: var(--bg-card);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.35);
    z-index: 1;
    transition: background 0.4s ease;
    pointer-events: none;
}

.gallery-item:hover::before {
    background: rgba(10, 10, 10, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.55s ease, filter 0.55s ease;
}

.gallery-caption {
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 16px 14px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.gallery-caption span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.08);
}

.gallery-item:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

/* ===== TEAM ===== */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.35);
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    overflow: hidden;
    border: 3px solid var(--gold);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.team-card:hover .team-photo img {
    transform: scale(1.08);
}

.team-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    margin-bottom: 4px;
}

.team-role {
    color: var(--gold);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.team-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
}

.stars {
    color: var(--gold);
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== BOOKING ===== */
.booking-section {
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a, #1a1a1a);
}

.booking-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
}

.booking-content {
    position: relative;
    z-index: 1;
}

.booking-text {
    color: var(--text-secondary);
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.booking-actions {
    display: flex;
    justify-content: center;
}

/* ===== CONTACT ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.14);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 14px;
}

.map-placeholder {
    width: 100%;
    height: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.7;
    max-width: 300px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a {
    display: block;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 13px;
}

.footer-credit {
    margin-top: 6px;
    color: var(--gold-dark);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Floating Call Button */
.fixed-call-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--gold-light);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 1200;
    box-shadow: 0 10px 28px rgba(212, 175, 55, 0.38);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(16px) scale(0.92);
    transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease, box-shadow 0.2s ease, background 0.2s ease;
    animation: callPulse 1.8s ease-in-out infinite;
}

.fixed-call-btn.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.fixed-call-btn:hover {
    background: var(--gold-light);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 34px rgba(212, 175, 55, 0.48);
}

.fixed-call-btn:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

@keyframes callPulse {
    0%, 100% {
        box-shadow: 0 10px 28px rgba(212, 175, 55, 0.32);
    }
    50% {
        box-shadow: 0 10px 36px rgba(212, 175, 55, 0.56);
    }
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid children */
.services-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.services-grid .animate-on-scroll:nth-child(5) {
    transition-delay: 0.4s;
}

.services-grid .animate-on-scroll:nth-child(6) {
    transition-delay: 0.5s;
}

.services-grid .animate-on-scroll:nth-child(7) {
    transition-delay: 0.6s;
}

.gallery-grid .animate-on-scroll {
    transition-delay: var(--delay, 0s);
}

.team-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.team-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.15s;
}

.team-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

.testimonials-grid .animate-on-scroll:nth-child(1) {
    transition-delay: 0s;
}

.testimonials-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.15s;
}

.testimonials-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.3s;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .services-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }
}

@media (max-width: 1100px) {
    .header-inner {
        gap: 14px;
    }

    .nav {
        gap: 22px;
    }

    .nav a {
        font-size: 12px;
        letter-spacing: 0.7px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-sm {
        padding: 8px 14px;
    }
}

@media (max-width: 920px) {
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 80px 40px 40px;
        gap: 24px;
        transition: right 0.3s ease;
        border-left: 1px solid var(--border);
        z-index: 1000;
        margin-left: 0;
    }

    .nav.open {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .header-actions {
        margin-left: auto;
        margin-right: 8px;
        gap: 10px;
    }

    .lang-toggle {
        min-width: 78px;
        height: 36px;
        padding: 0 12px;
        font-size: 11px;
    }

    .header-inner .btn-sm {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-track {
        animation-duration: 18s;
    }

    .top-bar-item {
        padding: 0 16px;
        font-size: 12px;
    }

    .services-grid,
    .gallery-grid,
    .team-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-placeholder {
        height: 360px;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        gap: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .hero-content {
        padding: 28px 16px 34px;
    }

    .hero-subtitle {
        margin-bottom: 18px;
        font-size: 12px;
        letter-spacing: 4px;
    }

    .hero-title {
        margin-bottom: 18px;
        gap: 6px;
    }

    .hero-title-main {
        font-size: clamp(34px, 11vw, 62px);
        letter-spacing: 1.5px;
    }

    .hero-title-accent {
        font-size: clamp(28px, 9vw, 50px);
        letter-spacing: 2px;
    }

    .hero-desc {
        font-size: 16px;
        max-width: 90%;
        margin: 0 auto 28px;
        line-height: 1.7;
    }

    .scroll-indicator {
        display: none;
    }

    .experience-badge {
        right: 0;
    }
}

@media (max-width: 480px) {
    .loader-text {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .barber-pole {
        width: 36px;
    }

    .pole-cylinder {
        width: 28px;
        height: 100px;
    }

    .pole-cap {
        width: 34px;
        height: 11px;
    }

    .pole-ball {
        width: 17px;
        height: 17px;
    }

    .pole-base {
        width: 40px;
        height: 6px;
    }

    .pole-shadow {
        width: 46px;
    }

    .top-bar-track {
        animation-duration: 14s;
    }

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        min-width: min(280px, 100%);
    }

    .hero-content {
        padding: 24px 12px 28px;
    }

    .hero-subtitle {
        letter-spacing: 3px;
    }

    .hero-title-main {
        font-size: clamp(30px, 12vw, 44px);
        letter-spacing: 1px;
    }

    .hero-title-accent {
        font-size: clamp(24px, 10vw, 36px);
        letter-spacing: 1.5px;
    }

    .hero-desc {
        font-size: 15px;
        max-width: 100%;
        margin-bottom: 24px;
    }

    .lang-toggle {
        min-width: 72px;
    }

    .map-placeholder {
        height: 320px;
    }

    .fixed-call-btn {
        width: 56px;
        height: 56px;
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-bar-track {
        animation: none;
    }
}
