/* ==========================================================================
    Edwin Barbershop & Beauty Salon Premium CSS Design
    ========================================================================== */

/* --- Design Tokens / Variables --- */
:root {
    --color-bg-dark: #050506;
    --color-bg-card: #0c0c0e;
    --color-bg-nav: rgba(5, 5, 6, 0.55);
    
    --color-primary: #C5A880; /* Elegant Champagne Gold */
    --color-primary-dark: #A68658;
    --color-primary-light: #E2D3BE;
    --color-gold-gradient: linear-gradient(135deg, #F0E6D3 0%, #C5A880 40%, #8B734B 100%);
    --color-gold-metal: linear-gradient(135deg, #E2D3BE 0%, #C5A880 45%, #A68658 100%);
    --color-gold-glow: rgba(197, 168, 128, 0.3);
    --color-gold-glow-strong: rgba(197, 168, 128, 0.55);
    
    --color-glass-bg: rgba(12, 12, 14, 0.55);
    --color-glass-border: rgba(197, 168, 128, 0.12);
    --color-glass-border-hover: rgba(197, 168, 128, 0.4);
    
    --color-text-main: #E5E5E7;
    --color-text-muted: #9E9EAF;
    --color-text-white: #FFFFFF;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    
    --border-gold: 1px solid var(--color-glass-border);
    --border-gold-hover: 1px solid var(--color-glass-border-hover);
    
    --glow-shadow:
        0 1px 0 rgba(255, 255, 255, 0.04) inset,
        0 8px 24px rgba(0, 0, 0, 0.45),
        0 24px 48px rgba(0, 0, 0, 0.3);
    --shadow-card-hover:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 16px 40px rgba(0, 0, 0, 0.55),
        0 0 48px rgba(197, 168, 128, 0.1);
    --blur-strength: 16px;
    --section-pad: clamp(4.5rem, 8vw, 7.5rem);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg-dark);
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--color-bg-dark);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

/* --- Common Components --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.gold-text {
    color: var(--color-primary);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Section Header Styles */
.section-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(197, 168, 128, 0.2);
}

.section-subtitle::before {
    content: '';
    width: 18px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary));
    box-shadow: 0 0 6px rgba(197, 168, 128, 0.4);
}

.text-center .section-subtitle {
    justify-content: center;
}

.services-header .section-subtitle {
    justify-content: center;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text-white);
    margin-bottom: 2rem;
}

.text-center {
    text-align: center;
}

/* Ambient section backgrounds — glass has something to blur */
.section-atmosphere {
    position: relative;
    isolation: isolate;
}

.section-atmosphere::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 20% 0%, rgba(197, 168, 128, 0.07) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 80%, rgba(166, 134, 88, 0.05) 0%, transparent 50%);
}

.section-atmosphere::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.016;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section-atmosphere > .container {
    position: relative;
    z-index: 1;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border-radius: 0;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        opacity 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: -1;
    opacity: 0.7;
    pointer-events: none;
}

.btn:hover::before {
    animation: shimmer-sweep 1.4s ease-in-out infinite;
}

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

.btn-primary {
    background: var(--color-gold-metal);
    color: #0a0a0b;
    border: 1px solid rgba(226, 211, 190, 0.5);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.35) inset,
        0 4px 16px rgba(197, 168, 128, 0.25);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 1px rgba(197, 168, 128, 0.2),
        0 8px 28px rgba(197, 168, 128, 0.25);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(197, 168, 128, 0.06);
    box-shadow: 0 0 24px rgba(197, 168, 128, 0.12);
    transform: translateY(-2px);
}

.btn-secondary::before {
    background: linear-gradient(
        90deg,
        rgba(197, 168, 128, 0) 0%,
        rgba(197, 168, 128, 0.25) 50%,
        rgba(197, 168, 128, 0) 100%
    );
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 0.9rem;
}

/* --- Header / Navigation --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--color-bg-nav);
    backdrop-filter: blur(18px) saturate(1.3);
    -webkit-backdrop-filter: blur(18px) saturate(1.3);
    border-bottom: 1px solid rgba(197, 168, 128, 0.08);
    transition: var(--transition-smooth);
}

.header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(7, 7, 8, 0.92);
    box-shadow:
        0 1px 0 rgba(197, 168, 128, 0.1),
        0 12px 40px rgba(0, 0, 0, 0.55);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

.header.scrolled .header-container {
    height: 70px;
}

/* Logo Design */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    color: var(--color-text-white);
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-subtitle {
    font-size: 0.45rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-primary);
    margin-top: 0.1rem;
}

/* Navigation Links */
.nav {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    box-shadow: 0 0 8px rgba(197, 168, 128, 0.5);
    transition: width 0.35s ease, left 0.35s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
    left: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.phone-link {
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
    padding-left: 1.35rem;
}

.phone-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 10px var(--color-primary);
    transform: translateY(-50%);
    animation: pulse-dot 2.4s ease-in-out infinite;
}

.phone-link:hover {
    color: var(--color-primary);
}

/* Mobile Toggle Button */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    z-index: 102;
}

.mobile-nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-text-white);
    transition: var(--transition-smooth);
}

/* Open Mobile Nav State */
.mobile-nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--color-bg-dark);
    z-index: 101;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    border-left: var(--border-gold);
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem;
}

.mobile-nav.open {
    right: 0;
}

.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-link {
    font-size: 1.1rem;
    font-family: var(--font-heading);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-white);
}

.mobile-link:hover {
    color: var(--color-primary);
    padding-left: 10px;
}

.mobile-actions {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-phone {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -4%;
    left: -4%;
    width: 108%;
    height: 108%;
    background-image: url('images/background.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 1;
    /* Lift dull art: more light, gold, depth — without crushing blacks */
    filter: brightness(1.12) contrast(1.08) saturate(1.12);
    animation: slowZoomHero 28s infinite ease-in-out;
}

/*
 * Phones (incl. iPhone 14 Pro Max and smaller):
 * Height-based cover crops "Э"/"Н" on tall screens.
 * Width-based zoom keeps a cover-like crop of the sides of the photo
 * but always leaves the full "ЭДВИН" word in frame — same on every phone.
 * Banner art is 1717×916 (~1.87:1); logo is ~center 27% of width.
 * 295% of viewport width ≈ max zoom without clipping the word.
 */
@media (max-width: 900px), (max-aspect-ratio: 4/3) {
    .hero-bg {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: 295% auto;
        background-position: center 42%;
        animation: none;
        transform: none;
    }
}

/* Extra-narrow phones — a touch more safety margin on the logo */
@media (max-width: 390px) {
    .hero-bg {
        background-size: 280% auto;
        background-position: center 42%;
    }
}

@keyframes slowZoomHero {
    0%, 100% {
        transform: scale(1.0) translate(0, 0);
    }
    50% {
        transform: scale(1.05) translate(-0.8%, -0.4%);
    }
}

/*
 * Light overlays only — banner art is the main content.
 * Keep center almost clean; soft bottom fade for CTA readability.
 */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        /* Very soft edge vignette — center stays open */
        radial-gradient(
            ellipse 75% 70% at 50% 42%,
            transparent 0%,
            transparent 55%,
            rgba(5, 5, 6, 0.28) 100%
        ),
        /* Bottom band for buttons only */
        linear-gradient(
            to top,
            rgba(5, 5, 6, 0.62) 0%,
            rgba(5, 5, 6, 0.22) 18%,
            transparent 38%
        ),
        /* Thin top fade under fixed header */
        linear-gradient(
            to bottom,
            rgba(5, 5, 6, 0.35) 0%,
            transparent 12%
        );
    z-index: 2;
    pointer-events: none;
}

/* Subtle star dust — edges only */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        radial-gradient(1px 1px at 8% 12%, rgba(255, 255, 255, 0.4), transparent),
        radial-gradient(1px 1px at 92% 15%, rgba(226, 211, 190, 0.35), transparent),
        radial-gradient(1px 1px at 15% 88%, rgba(255, 255, 255, 0.28), transparent),
        radial-gradient(1px 1px at 85% 82%, rgba(197, 168, 128, 0.3), transparent),
        radial-gradient(1.5px 1.5px at 50% 92%, rgba(226, 211, 190, 0.25), transparent);
    -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, transparent 40%, #000 80%);
    mask-image: radial-gradient(ellipse 60% 55% at 50% 42%, transparent 40%, #000 80%);
}

/* Warm ambient orbs — soft gold lift, not mud */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 1;
    pointer-events: none;
    opacity: 0.28;
    mix-blend-mode: screen;
}

.hero-orb-1 {
    top: 8%;
    left: 5%;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle, rgba(226, 211, 190, 0.35) 0%, transparent 70%);
    animation: float-orb 12s infinite alternate ease-in-out;
}

.hero-orb-2 {
    bottom: 18%;
    right: 8%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(197, 168, 128, 0.3) 0%, transparent 70%);
    animation: float-orb 16s infinite alternate-reverse ease-in-out;
}

@keyframes float-orb {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-30px) scale(1.1); }
}

.hero-corner {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(197, 168, 128, 0.3);
    z-index: 3;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hero-corner-tl {
    top: 40px;
    left: 40px;
    border-right: none;
    border-bottom: none;
}

.hero-corner-br {
    bottom: 40px;
    right: 40px;
    border-left: none;
    border-top: none;
}

.hero:hover .hero-corner {
    width: 48px;
    height: 48px;
    border-color: var(--color-primary);
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    /* Keep CTAs in lower band — banner branding stays unobstructed */
    height: 82vh;
    padding-bottom: 1rem;
    animation: fadeInUp 1.2s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}

.hero-badge {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    border: var(--border-gold);
    padding: 0.6rem 1.4rem;
    margin-bottom: 2rem;
    background-color: rgba(197, 168, 128, 0.04);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 6.5rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1;
    color: var(--color-text-white);
    margin-bottom: 0.5rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 25px rgba(197, 168, 128, 0.25));
}

.hero-description {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
}

.hero-divider {
    display: flex;
    align-items: center;
    width: 320px;
    margin-bottom: 1.5rem;
}

.divider-line {
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 168, 128, 0) 0%, rgba(197, 168, 128, 0.6) 50%, rgba(197, 168, 128, 0) 100%);
}

.divider-star {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin: 0 1rem;
    animation: pulse 3s infinite;
}

.hero-tagline {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    color: var(--color-primary-light);
    margin-bottom: 3.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.25rem;
    padding: 1.15rem 1.4rem;
    background: rgba(5, 5, 6, 0.62);
    border: 1px solid rgba(197, 168, 128, 0.28);
    backdrop-filter: blur(18px) saturate(1.25);
    -webkit-backdrop-filter: blur(18px) saturate(1.25);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.06) inset,
        0 16px 40px rgba(0, 0, 0, 0.5),
        0 0 36px rgba(197, 168, 128, 0.1);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.scroll-hint-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-primary);
    opacity: 0.6;
}

.scroll-hint-line {
    width: 1px;
    height: 35px;
    background: linear-gradient(to bottom, var(--color-primary) 0%, transparent 100%);
    position: relative;
    overflow: hidden;
}

.scroll-hint-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 15px;
    background-color: var(--color-primary-light);
    animation: scroll-down-anim 2s infinite ease-in-out;
}

@keyframes scroll-down-anim {
    0% { top: -15px; opacity: 0; }
    50% { opacity: 1; }
    100% { top: 35px; opacity: 0; }
}

/* --- Section Dividers --- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2.5rem 0;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    height: 1px;
    width: min(140px, 18vw);
    background: linear-gradient(90deg, transparent, rgba(197, 168, 128, 0.45));
}

.section-divider::after {
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.45), transparent);
}

.divider-ornament {
    color: var(--color-primary);
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    margin: 0;
    opacity: 0.85;
    text-shadow: 0 0 12px rgba(197, 168, 128, 0.35);
}

/* --- Features Section --- */
.features {
    padding: var(--section-pad) 0;
    background-color: var(--color-bg-dark);
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(12, 12, 14, 0.55) 40%,
        rgba(8, 8, 10, 0.7) 100%
    );
    border: 1px solid rgba(197, 168, 128, 0.12);
    backdrop-filter: blur(var(--blur-strength)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--blur-strength)) saturate(1.2);
    padding: 2.5rem 1.75rem;
    text-align: center;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    position: relative;
    box-shadow: var(--glow-shadow);
    overflow: hidden;
}

/* Corner L-marks */
.feature-card::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 14px;
    height: 14px;
    border-style: solid;
    border-color: rgba(197, 168, 128, 0.5);
    border-width: 1px 0 0 1px;
    opacity: 0;
    transition: opacity 0.35s ease, width 0.35s ease, height 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 14px;
    height: 14px;
    border-style: solid;
    border-color: rgba(197, 168, 128, 0.5);
    border-width: 0 1px 1px 0;
    opacity: 0;
    transition: opacity 0.35s ease, width 0.35s ease, height 0.35s ease;
    pointer-events: none;
    z-index: 2;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-card-hover);
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
    width: 22px;
    height: 22px;
}

.feature-icon {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 8px rgba(197, 168, 128, 0.2));
}

.feature-card:hover .feature-icon {
    transform: scale(1.12) rotate(4deg);
    color: var(--color-primary-light);
    filter: drop-shadow(0 0 15px rgba(197, 168, 128, 0.45));
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-text-white);
    margin-bottom: 1.1rem;
    letter-spacing: 0.05em;
}

.feature-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-weight: 300;
}

/* --- About Section --- */
.about {
    padding: var(--section-pad) 0;
    background-color: var(--color-bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-bottom: 125%; /* Portrait photo (main.png) */
    overflow: hidden;
    box-shadow: var(--glow-shadow);
    border: 1px solid rgba(197, 168, 128, 0.12);
}

.about-image-border {
    position: absolute;
    top: 16px;
    left: 16px;
    width: calc(100% - 32px);
    height: calc(100% - 32px);
    border: 1px solid rgba(197, 168, 128, 0.55);
    z-index: 4;
    pointer-events: none;
    transition: var(--transition-smooth);
    animation: about-border-breathe 6s ease-in-out infinite;
}

.about-image {
    position: absolute;
    top: -4%;
    left: -4%;
    width: 108%;
    height: 108%;
    z-index: 2;
    background-position: center 20%;
    background-size: cover;
    background-repeat: no-repeat;
    /* Match hero lift — was brightness(94%) and looked dull next to hero */
    filter: brightness(1.12) contrast(1.08) saturate(1.1);
    transform-origin: center 35%;
    animation: about-kenburns 18s ease-in-out infinite alternate;
    transition: filter 0.5s ease;
}

/* Soft gold light sweep over the photo */
.about-image-glow {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(
        120deg,
        transparent 28%,
        rgba(226, 211, 190, 0.12) 48%,
        transparent 68%
    );
    background-size: 200% 200%;
    animation: about-light-sweep 8s ease-in-out infinite;
    mix-blend-mode: soft-light;
    opacity: 0.85;
}

.about-image-wrapper:hover .about-image {
    animation: none;
    transform: scale(1.08);
    filter: brightness(1.16) contrast(1.1) saturate(1.14);
}

.about-image-wrapper:hover .about-image-border {
    transform: translate(-8px, -8px) scale(0.98);
    border-color: var(--color-primary-light);
    box-shadow: 0 0 24px rgba(197, 168, 128, 0.28);
    animation-play-state: paused;
}

.about-image-wrapper:hover .about-image-glow {
    animation-duration: 3.5s;
}

@keyframes about-kenburns {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.06) translate(-1.2%, -0.8%);
    }
    100% {
        transform: scale(1.1) translate(0.8%, -1.5%);
    }
}

@keyframes about-border-breathe {
    0%, 100% {
        opacity: 0.65;
        box-shadow: 0 0 0 rgba(197, 168, 128, 0);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 18px rgba(197, 168, 128, 0.18);
    }
}

@keyframes about-light-sweep {
    0% {
        background-position: 120% 40%;
        opacity: 0.55;
    }
    50% {
        opacity: 1;
    }
    100% {
        background-position: -20% 60%;
        opacity: 0.55;
    }
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-text {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.about-features {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-white);
    padding: 0.65rem 0.85rem;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.about-feature-item:hover {
    border-color: rgba(197, 168, 128, 0.15);
    background: rgba(197, 168, 128, 0.04);
}

/* --- Services Catalog Section --- */
.services {
    padding: var(--section-pad) 0;
    background-color: rgba(12, 12, 14, 0.35);
    position: relative;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3.5rem;
}

.catalog-filters {
    display: flex;
    gap: 0.35rem;
    margin-top: 2.5rem;
    background-color: rgba(5, 5, 6, 0.55);
    padding: 0.35rem;
    border: 1px solid rgba(197, 168, 128, 0.14);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.filter-btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-muted);
    border: none;
    background: transparent;
    transition: var(--transition-fast);
}

.filter-btn:hover {
    color: var(--color-text-white);
}

.filter-btn.active {
    background: var(--color-gold-metal);
    color: #0a0a0b;
    box-shadow: 0 4px 18px rgba(197, 168, 128, 0.3);
}

.filter-btn:focus-visible {
    outline: 1px solid var(--color-primary);
    outline-offset: 2px;
}

/* Services Grid and Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(12, 12, 14, 0.55) 40%,
        rgba(8, 8, 10, 0.72) 100%
    );
    border: 1px solid rgba(197, 168, 128, 0.12);
    backdrop-filter: blur(var(--blur-strength)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--blur-strength)) saturate(1.2);
    padding: 2.25rem 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    box-shadow: var(--glow-shadow);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        #C5A880 40%,
        #E2D3BE 50%,
        #C5A880 60%,
        transparent
    );
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover {
    border-color: rgba(197, 168, 128, 0.4);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-6px);
}

.service-card:hover::after {
    opacity: 1;
}

.service-header-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.2rem;
    gap: 1.5rem;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--color-text-white);
    letter-spacing: 0.02em;
}

.service-price {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    text-shadow: 0 0 12px rgba(197, 168, 128, 0.25);
    letter-spacing: 0.02em;
}

.price-from {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-right: 0.2rem;
}

.service-desc {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    flex-grow: 1;
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(197, 168, 128, 0.1);
    padding-top: 1.35rem;
    margin-top: auto;
}

.service-detail {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    max-width: 60%;
}

.btn-select-service {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 0.2rem;
    transition: var(--transition-fast);
}

.btn-select-service:hover {
    color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    text-shadow: 0 0 12px rgba(197, 168, 128, 0.35);
}

.btn-select-service.selected {
    border-color: transparent;
    background: var(--color-gold-metal);
    color: #0a0a0b;
    padding: 0.35rem 0.85rem;
    box-shadow: 0 4px 14px rgba(197, 168, 128, 0.25);
}

/* --- Reviews Section --- */
.reviews {
    padding: var(--section-pad) 0;
    background-color: var(--color-bg-dark);
    position: relative;
}

.reviews-slider-wrapper {
    max-width: 850px;
    margin: 3.5rem auto 0;
    position: relative;
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.04) 0%,
        rgba(12, 12, 14, 0.6) 50%,
        rgba(8, 8, 10, 0.75) 100%
    );
    border: 1px solid rgba(197, 168, 128, 0.14);
    backdrop-filter: blur(var(--blur-strength)) saturate(1.2);
    -webkit-backdrop-filter: blur(var(--blur-strength)) saturate(1.2);
    padding: 4rem 3.5rem 3rem;
    box-shadow: var(--glow-shadow);
}

.reviews-slider-wrapper::before {
    content: '“';
    position: absolute;
    top: 15px;
    left: 45px;
    font-size: 8.5rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    opacity: 0.12;
    line-height: 1;
    pointer-events: none;
}

.reviews-slider {
    position: relative;
    height: 250px;
    display: flex;
    align-items: center;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.review-slide.active {
    opacity: 1;
    transform: scale(1.0);
    pointer-events: auto;
}

.rating {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.review-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-text-white);
    margin-bottom: 2rem;
    font-style: italic;
}

.review-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--color-text-white);
}

.author-service {
    font-size: 0.75rem;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding: 0 2rem;
}

.slider-btn {
    color: var(--color-primary);
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    color: var(--color-text-white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.dot {
    width: 18px;
    height: 3px;
    border-radius: 1px;
    background-color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background-color: var(--color-primary);
    box-shadow: 0 0 10px rgba(197, 168, 128, 0.5);
    transform: scaleX(1.15);
}

.dot:hover {
    background-color: rgba(197, 168, 128, 0.5);
}

/* --- Contacts Section --- */
.contacts {
    padding: var(--section-pad) 0;
    background-color: var(--color-bg-dark);
    position: relative;
    background-image: radial-gradient(circle at 80% 30%, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: center;
}

.contacts-info {
    display: flex;
    flex-direction: column;
}

.contacts-desc {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
    font-weight: 300;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1rem 1.1rem;
    border: 1px solid rgba(197, 168, 128, 0.08);
    background: rgba(12, 12, 14, 0.35);
    transition: var(--transition-fast);
}

.info-item:hover {
    border-color: rgba(197, 168, 128, 0.22);
    background: rgba(197, 168, 128, 0.04);
}

.info-icon {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border: 1px solid rgba(197, 168, 128, 0.2);
    background: rgba(197, 168, 128, 0.05);
    filter: drop-shadow(0 0 5px rgba(197, 168, 128, 0.15));
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
}

.info-text strong {
    color: var(--color-text-white);
    font-weight: 500;
}

.info-text span, .info-text a {
    color: var(--color-text-muted);
    font-weight: 300;
}

.info-text a:hover {
    color: var(--color-primary);
}

/* Styled Dark Leaflet Map */
.contacts-map-wrapper {
    position: relative;
    height: 450px;
    border: 1px solid rgba(197, 168, 128, 0.18);
    overflow: hidden;
    box-shadow: var(--glow-shadow);
}

.contacts-map-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(197, 168, 128, 0.08);
    margin: 8px;
    z-index: 12;
    pointer-events: none;
}

.map-container {
    width: 100%;
    height: 100%;
    z-index: 10;
    /* Luxury dark map — slightly brighter for consistency with lifted media */
    filter: invert(90%) hue-rotate(180deg) brightness(105%) contrast(95%) sepia(15%);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: 11;
    pointer-events: none;
}

/* --- Footer --- */
.footer {
    background-color: #050506;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(197, 168, 128, 0.15);
    position: relative;
    background-image:
        radial-gradient(ellipse 60% 40% at 50% 0%, rgba(197, 168, 128, 0.05) 0%, transparent 60%);
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 2px;
    background: var(--color-gold-gradient);
    box-shadow: 0 0 14px rgba(197, 168, 128, 0.45);
}

.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        radial-gradient(1px 1px at 15% 30%, rgba(255, 255, 255, 0.35), transparent),
        radial-gradient(1px 1px at 70% 55%, rgba(226, 211, 190, 0.3), transparent),
        radial-gradient(1px 1px at 40% 80%, rgba(197, 168, 128, 0.25), transparent);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}

.footer-logo-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-about {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-weight: 300;
    max-width: 320px;
}

.footer-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-white);
    margin-bottom: 2rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(197, 168, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    background-color: rgba(12, 12, 14, 0.4);
    transition: var(--transition-smooth);
}

.social-link svg {
    transition: var(--transition-fast);
}

.social-link:hover {
    border-color: var(--color-primary);
    color: var(--color-primary-light);
    box-shadow: 0 0 15px var(--color-gold-glow);
    background-color: rgba(197, 168, 128, 0.06);
    transform: translateY(-3px);
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-copy {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    font-weight: 300;
    line-height: 1.5;
}

.footer-copy-sub {
    font-size: 0.7rem;
    opacity: 0.6;
    margin-top: 0.3rem;
    display: inline-block;
}

/* --- Interactive Booking Modal (Multistep Form) --- */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 5, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.booking-modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.booking-modal {
    background: linear-gradient(
        165deg,
        rgba(255, 255, 255, 0.05) 0%,
        rgba(12, 12, 14, 0.9) 35%,
        rgba(8, 8, 10, 0.95) 100%
    );
    border: 1px solid rgba(197, 168, 128, 0.28);
    backdrop-filter: blur(25px) saturate(1.2);
    -webkit-backdrop-filter: blur(25px) saturate(1.2);
    width: 100%;
    max-width: 750px;
    height: auto;
    max-height: 90vh;
    padding: 3.5rem;
    position: relative;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    transition: var(--transition-smooth);
    overflow-y: auto;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 25px 60px rgba(0, 0, 0, 0.75),
        0 0 48px rgba(197, 168, 128, 0.08);
}

.booking-modal-overlay.open .booking-modal {
    transform: translateY(0);
}

.close-modal-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.close-modal-btn:hover {
    color: var(--color-text-white);
    transform: rotate(90deg);
}

.booking-modal-header {
    margin-bottom: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.5rem;
}

.booking-modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
}

.step-badge.active {
    background: var(--color-gold-metal);
    border-color: var(--color-primary);
    color: #0a0a0b;
    box-shadow: 0 0 14px rgba(197, 168, 128, 0.4);
}

.step-badge.completed {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: transparent;
}

.step-line {
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, rgba(197, 168, 128, 0.15), rgba(197, 168, 128, 0.35));
}

/* Step content transitions */
.modal-step-content {
    display: none;
}

.modal-step-content.active {
    display: flex;
    flex-direction: column;
    animation: fadeIn 0.5s ease;
}

.step-title {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

/* Modal Services selection */
.modal-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-height: 320px;
    overflow-y: auto;
    margin-bottom: 2rem;
    padding-right: 0.5rem;
}

/* Custom Scrollbar for list */
.modal-services-list::-webkit-scrollbar, .booking-modal::-webkit-scrollbar {
    width: 4px;
}

.modal-services-list::-webkit-scrollbar-thumb, .booking-modal::-webkit-scrollbar-thumb {
    background-color: var(--color-primary);
}

.modal-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(5, 5, 6, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-service-item:hover {
    border-color: rgba(197, 168, 128, 0.35);
    background-color: rgba(197, 168, 128, 0.03);
}

.modal-service-item.selected {
    border-color: var(--color-primary);
    background-color: rgba(197, 168, 128, 0.08);
}

.modal-service-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.modal-service-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-white);
}

.modal-service-price {
    font-size: 0.85rem;
    color: var(--color-primary);
    font-weight: 600;
}

.modal-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.modal-service-item.selected .modal-checkbox {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
}

.modal-checkbox svg {
    opacity: 0;
    color: #000;
    transition: var(--transition-fast);
}

.modal-service-item.selected .modal-checkbox svg {
    opacity: 1;
}

/* Booking summary bar bottom */
.booking-summary-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.5rem;
    margin-top: auto;
}

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.summary-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.summary-price {
    font-size: 1.3rem;
    color: var(--color-text-white);
}

.summary-price strong {
    color: var(--color-primary);
}

.btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.12);
    background: transparent;
    color: var(--color-text-muted);
    box-shadow: none;
    transform: none;
}

.btn:disabled:hover {
    transform: none;
    box-shadow: none;
    background: transparent;
    color: var(--color-text-muted);
    border-color: rgba(255, 255, 255, 0.12);
}

.btn:disabled::before {
    display: none;
}

/* Step 2 Calendar & TimeSlots Grid */
.datetime-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.picker-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    font-weight: 500;
}

.calendar-days-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.calendar-day-btn {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-bg-dark);
    padding: 1rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-fast);
}

.calendar-day-btn:hover {
    border-color: rgba(197, 168, 128, 0.4);
}

.calendar-day-btn.selected {
    border-color: var(--color-primary);
    background-color: rgba(197, 168, 128, 0.05);
}

.day-week {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.2rem;
}

.day-num {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-white);
}

.calendar-day-btn.selected .day-num {
    color: var(--color-primary);
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 0.3rem;
}

.time-slot-btn {
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--color-bg-dark);
    padding: 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-white);
    text-align: center;
    transition: var(--transition-fast);
}

.time-slot-btn:hover {
    border-color: rgba(197, 168, 128, 0.4);
}

.time-slot-btn.selected {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: #000;
    font-weight: 600;
}

/* Step 3 Form */
.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-white);
    letter-spacing: 0.05em;
}

.form-input, .form-textarea {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--color-text-white);
    padding: 0.85rem 1rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow:
        0 0 0 1px rgba(197, 168, 128, 0.2),
        0 0 16px rgba(197, 168, 128, 0.12);
    outline: none;
    background-color: rgba(12, 12, 14, 0.9);
}

.final-summary-card {
    background-color: var(--color-bg-dark);
    border: 1px solid rgba(197, 168, 128, 0.15);
    padding: 1.5rem;
    margin-top: 1rem;
}

.final-summary-card h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    margin-bottom: 0.8rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.summary-details p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.4rem;
}

.summary-details p strong {
    color: var(--color-text-muted);
    font-weight: 400;
}

.summary-details p span {
    color: var(--color-text-white);
    font-weight: 500;
    text-align: right;
    max-width: 70%;
}

/* Success Step screen */
.success-step {
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--color-text-white);
    margin-bottom: 1rem;
}

.success-message {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.success-details-card {
    background-color: var(--color-bg-dark);
    border: var(--border-gold);
    padding: 1.8rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    font-size: 0.9rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 450px;
}

.success-details-card p {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 0.5rem;
}

.success-details-card p strong {
    color: var(--color-text-muted);
    font-weight: 400;
}

.success-details-card p span {
    color: var(--color-text-white);
    font-weight: 600;
}

/* --- Animations Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.15); opacity: 1; filter: drop-shadow(0 0 5px var(--color-primary)); }
    100% { transform: scale(1); opacity: 0.7; }
}

@keyframes scaleIn {
    from { transform: scale(0.6); opacity: 0; }
    to { transform: scale(1.0); opacity: 1; }
}

@keyframes shimmer-sweep {
    0% { left: -100%; }
    100% { left: 150%; }
}

@keyframes pulse-dot {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.25);
    }
}

/* --- Scroll reveal --- */
.reveal:not(.is-visible),
.reveal-left:not(.is-visible),
.reveal-right:not(.is-visible) {
    opacity: 0;
}

.reveal:not(.is-visible) {
    transform: translateY(28px);
}

.reveal-left:not(.is-visible) {
    transform: translateX(-28px);
}

.reveal-right:not(.is-visible) {
    transform: translateX(28px);
}

.reveal-fade:not(.is-visible) {
    opacity: 0;
}

.reveal,
.reveal-fade,
.reveal-left,
.reveal-right {
    transition:
        opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Keep card hover/shadow transitions when reveal is active */
.feature-card.reveal,
.service-card.reveal {
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

/* Stagger delays */
.reveal-delay-1 { transition-delay: 0.07s; }
.reveal-delay-2 { transition-delay: 0.14s; }
.reveal-delay-3 { transition-delay: 0.21s; }
.reveal-delay-4 { transition-delay: 0.28s; }
.reveal-delay-5 { transition-delay: 0.35s; }
.reveal-delay-6 { transition-delay: 0.42s; }

@media (prefers-reduced-motion: reduce) {
    .reveal:not(.is-visible),
    .reveal-fade:not(.is-visible),
    .reveal-left:not(.is-visible),
    .reveal-right:not(.is-visible) {
        opacity: 1;
        transform: none;
    }

    .reveal,
    .reveal-fade,
    .reveal-left,
    .reveal-right,
    .feature-card.reveal,
    .service-card.reveal {
        transition: none;
    }

    .hero-bg {
        animation: none;
    }

    .hero-orb,
    .phone-link::before,
    .btn:hover::before,
    .about-image,
    .about-image-border,
    .about-image-glow {
        animation: none;
    }

    .about-image {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
    }
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .about-image-wrapper {
        padding-bottom: 130%;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contacts-map-wrapper {
        height: 350px;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-logo-col {
        grid-column: span 2;
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav, .header-actions .phone-link, .header-actions .btn {
        display: none;
    }
    
    .mobile-nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-divider {
        width: 200px;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
        letter-spacing: 0.3em;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        gap: 0.85rem;
        padding: 1rem 1.1rem;
    }

    .hero-cta .btn {
        width: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .catalog-filters {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .datetime-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .booking-modal {
        padding: 2.5rem 1.5rem;
    }
    
    .booking-modal-header h3 {
        font-size: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-logo-col {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card {
        padding: 1.8rem;
    }
    
    .service-header-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .reviews-slider {
        height: 350px;
    }
    
    .review-text {
        font-size: 1.25rem;
    }
    
    .booking-summary-bar {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }
    
    .booking-summary-bar .btn {
        width: 100%;
    }
}
