 *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #dbeafe;
            --accent: #f97316;
            --accent-dark: #ea580c;
            --accent-light: #fff7ed;
            --dark: #0f172a;
            --gray-900: #1e293b;
            --gray-700: #334155;
            --gray-600: #475569;
            --gray-500: #64748b;
            --gray-400: #94a3b8;
            --gray-300: #cbd5e1;
            --gray-200: #e2e8f0;
            --gray-100: #f1f5f9;
            --gray-50: #f8fafc;
            --white: #ffffff;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            --radius: 12px;
            --radius-lg: 16px;
            --radius-xl: 24px;
            --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-700);
            background: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', 'Inter', sans-serif;
            color: var(--dark);
            line-height: 1.2;
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== HEADER ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: var(--transition);
        }

        .header.scrolled {
            box-shadow: var(--shadow-md);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            z-index: 1001;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: linear-gradient(135deg, var(--primary), #7c3aed);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 4px 12px rgba(37,99,235,0.3);
        }

        .logo-icon svg {
            width: 24px;
            height: 24px;
        }

        .logo-text {
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            font-size: 1.3rem;
            color: var(--dark);
        }

        .logo-text span {
            color: var(--primary);
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 4px;
        }

        .nav-links a {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--gray-600);
        }

        .nav-links a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .nav-links a.active {
            color: var(--primary);
            background: var(--primary-light);
        }

        .header-phones {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 2px;
        }

        .header-phones a {
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .header-phones a:hover {
            color: var(--primary);
        }

        .header-phones a svg {
            color: var(--primary);
            width: 16px;
            height: 16px;
        }

        /* Burger */
        .burger {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 32px;
            height: 32px;
            cursor: pointer;
            z-index: 1001;
            background: none;
            border: none;
            padding: 0;
        }

        .burger span {
            display: block;
            width: 24px;
            height: 2.5px;
            background: var(--dark);
            border-radius: 2px;
            transition: var(--transition);
            margin: 0 auto;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .burger.active span:nth-child(2) {
            opacity: 0;
        }

        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* Mobile menu */
        .mobile-menu {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: var(--white);
            z-index: 999;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 8px;
            opacity: 0;
            transition: var(--transition);
        }

        .mobile-menu.active {
            display: flex;
            opacity: 1;
        }

        .mobile-menu a {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--dark);
            padding: 12px 24px;
            border-radius: 12px;
        }

        .mobile-menu a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        /* ===== HERO ===== */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 72px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(37,99,235,0.55) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
            padding: 60px 0;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            padding: 8px 20px;
            border-radius: 50px;
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 24px;
            border: 1px solid rgba(255,255,255,0.2);
        }

        .hero-badge .dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

        .hero-badge .dot.open {
            background: #34d399;
        }

        .hero-badge .dot.closed {
            background: #ef4444;
            animation: pulse-slow 3s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.3); }
        }

        @keyframes pulse-slow {
            0%, 100% { opacity: 0.6; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(0.9); }
        }

        .hero h1 {
            font-size: clamp(2rem, 4.5vw, 3.2rem);
            color: var(--white);
            margin-bottom: 20px;
            font-weight: 800;
            letter-spacing: -0.02em;
        }

        .hero h1 span {
            background: linear-gradient(135deg, #60a5fa, #a78bfa);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: 1.15rem;
            color: rgba(255,255,255,0.85);
            margin-bottom: 36px;
            line-height: 1.7;
            max-width: 550px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Hero buttons - prominent light text with volume */
        .btn-hero-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            background: linear-gradient(135deg, #f59e0b, #d97706);
            color: white;
            border-radius: 14px;
            font-weight: 700;
            font-size: 1.05rem;
            font-family: 'Inter', sans-serif;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(245,158,11,0.4), 0 4px 10px rgba(0,0,0,0.2);
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.01em;
            transition: var(--transition);
        }

        .btn-hero-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(245,158,11,0.5), 0 6px 15px rgba(0,0,0,0.25);
        }

        .btn-hero-primary svg {
            filter: drop-shadow(0 1px 2px rgba(0,0,0,0.3));
        }

        .btn-hero-secondary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 18px 36px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            color: white;
            border: 2px solid rgba(255,255,255,0.4);
            border-radius: 14px;
            font-weight: 700;
            font-size: 1.05rem;
            font-family: 'Inter', sans-serif;
            cursor: pointer;
            text-shadow: 0 1px 3px rgba(0,0,0,0.3);
            letter-spacing: 0.01em;
            transition: var(--transition);
        }

        .btn-hero-secondary:hover {
            background: rgba(255,255,255,0.25);
            border-color: rgba(255,255,255,0.6);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 60px;
            padding-top: 40px;
            border-top: 1px solid rgba(255,255,255,0.15);
        }

        .hero-stat h3 {
            font-size: 1.8rem;
            color: var(--white);
            font-weight: 800;
        }

        .hero-stat p {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.65);
            margin-bottom: 0;
        }

        /* ===== SCHEDULE BADGE IN HERO ===== */
        .hero-schedule {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 50px;
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
            border: 1px solid rgba(255,255,255,0.15);
            width: fit-content;
        }

        .hero-schedule .schedule-status {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 0.9rem;
        }

        .hero-schedule .schedule-status.open {
            color: #34d399;
        }

        .hero-schedule .schedule-status.closed {
            color: #ef4444;
        }

        .hero-schedule .schedule-status .status-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
        }

        .hero-schedule .schedule-status .status-dot.open {
            background: #34d399;
            animation: pulse 2s infinite;
        }

        .hero-schedule .schedule-status .status-dot.closed {
            background: #ef4444;
            animation: pulse-slow 3s infinite;
        }

        .hero-schedule .schedule-time {
            color: rgba(255,255,255,0.7);
            font-size: 0.8rem;
        }

        .hero-schedule .schedule-divider {
            width: 1px;
            height: 16px;
            background: rgba(255,255,255,0.2);
        }

        /* Floating shapes */
        .floating-shapes {
            position: absolute;
            inset: 0;
            z-index: 1;
            pointer-events: none;
            overflow: hidden;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            background: white;
        }

        .shape-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: -100px;
            animation: float1 20s ease-in-out infinite;
        }

        .shape-2 {
            width: 250px;
            height: 250px;
            bottom: 10%;
            right: 20%;
            animation: float2 15s ease-in-out infinite;
        }

        .shape-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 5%;
            animation: float3 18s ease-in-out infinite;
        }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(-30px, 30px) scale(1.05); }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(20px, -20px) scale(0.95); }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-15px, 15px); }
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--primary-light);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--gray-500);
            max-width: 600px;
            margin: 0 auto;
        }

        /* ===== SERVICES ===== */
        .services {
            background: var(--gray-50);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #7c3aed);
            opacity: 0;
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card.featured {
            grid-column: span 2;
            background: linear-gradient(135deg, var(--primary), #7c3aed);
            color: white;
            border: none;
        }

        .service-card.featured h3,
        .service-card.featured p {
            color: white;
        }

        .service-card.featured p {
            color: rgba(255,255,255,0.85);
        }

        .service-card.featured .service-icon {
            background: rgba(255,255,255,0.2);
            color: white;
        }

        .service-card.featured .service-badge {
            background: rgba(255,255,255,0.2);
            color: white;
        }

        /* Ritual card - special highlighted clickable card */
        .service-card.ritual {
            background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
            color: white;
            border: 2px solid var(--gray-600);
            /*cursor: pointer;
            position: relative;*/
        }

        .service-card.ritual::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #a78bfa, #7c3aed);
            opacity: 1;
        }

        .service-card.ritual h3,
        .service-card.ritual p {
            color: white;
        }

        .service-card.ritual p {
            color: rgba(255,255,255,0.8);
        }
/*
        .service-card.ritual:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(124,58,237,0.3);
            border-color: #7c3aed;
        }
*/
        .service-card.ritual .service-icon {
            background: rgba(167,139,250,0.2);
            color: #a78bfa;
        }

        .service-card.ritual .service-badge {
            background: rgba(167,139,250,0.25);
            color: #c4b5fd;
        }

        .service-card.ritual .service-tag {
            background: rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8);
        }

        .ritual-view-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 20px;
            padding: 10px 24px;
            background: rgba(167,139,250,0.2);
            color: #c4b5fd;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.9rem;
            transition: var(--transition);
            border: 1px solid rgba(167,139,250,0.3);
        }
/*
        .ritual-view-btn:hover {
            background: rgba(167,139,250,0.35);
            color: white;
        }

        .ritual-view-btn svg {
            transition: transform 0.3s ease;
        }

        .service-card.ritual:hover .ritual-view-btn svg {
            transform: translateX(4px);
        }
*/
        .service-icon {
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .service-icon.blue { background: #dbeafe; color: #1d4ed8; }
        .service-icon.purple { background: #ede9fe; color: #7c3aed; }
        .service-icon.orange { background: #fff7ed; color: #ea580c; }
        .service-icon.green { background: #d1fae5; color: #059669; }
        .service-icon.red { background: #fee2e2; color: #dc2626; }
        .service-icon.cyan { background: #cffafe; color: #0891b2; }

        .service-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .service-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        .service-badge {
            display: inline-block;
            background: var(--accent-light);
            color: var(--accent);
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .service-details {
            margin-top: 16px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .service-tag {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            background: var(--gray-100);
            color: var(--gray-600);
            padding: 4px 10px;
            border-radius: 6px;
            font-size: 0.8rem;
        }

        .service-card.featured .service-tag {
            background: rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.9);
        }

        /* ===== PROMO ===== */
        .promo {
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .promo-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .promo-content h2 {
            color: white;
            font-size: 1.8rem;
            margin-bottom: 12px;
        }

        .promo-content p {
            color: rgba(255,255,255,0.9);
            font-size: 1.1rem;
        }

        .promo-code {
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 20px 32px;
            border-radius: var(--radius-lg);
            text-align: center;
            border: 2px dashed rgba(255,255,255,0.4);
        }

        .promo-code span {
            display: block;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
            margin-bottom: 8px;
        }

        .promo-code strong {
            font-size: 1.5rem;
            color: white;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.05em;
        }

        .promo-shapes .promo-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
        }

        .promo-shapes .pc1 {
            width: 200px;
            height: 200px;
            top: -50px;
            right: 10%;
        }

        .promo-shapes .pc2 {
            width: 120px;
            height: 120px;
            bottom: -30px;
            left: 15%;
        }

        /* ===== DETAILS ===== */
        .details-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .detail-card {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 32px;
            border: 1px solid var(--gray-200);
            transition: var(--transition);
            text-align: center;
        }

        .detail-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .detail-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
        }

        .detail-card h3 {
            font-size: 1.1rem;
            margin-bottom: 12px;
        }

        .detail-card p {
            font-size: 0.9rem;
            color: var(--gray-500);
            line-height: 1.7;
        }

        /* ===== CONTACT ===== */
        .contact {
            background: var(--gray-50);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }

        .contact-info h3 {
            font-size: 1.5rem;
            margin-bottom: 16px;
        }

        .contact-info > p {
            color: var(--gray-500);
            margin-bottom: 32px;
            font-size: 1.05rem;
        }

        .contact-items {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
        }

        .contact-item .icon {
            width: 48px;
            height: 48px;
            min-width: 48px;
            background: var(--primary-light);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
        }

        .contact-item h4 {
            font-size: 0.85rem;
            color: var(--gray-500);
            font-weight: 500;
            margin-bottom: 4px;
        }

        .contact-item p {
            font-weight: 600;
            color: var(--dark);
            font-size: 1rem;
        }

        .contact-item a {
            color: var(--primary);
            font-weight: 600;
        }

        .contact-item a:hover {
            color: var(--primary-dark);
        }

        /* Schedule table */
        .schedule-table {
            margin-top: 24px;
            width: 100%;
            border-collapse: collapse;
        }

        .schedule-table th,
        .schedule-table td {
            padding: 10px 16px;
            text-align: left;
            border-bottom: 1px solid var(--gray-200);
            font-size: 0.9rem;
        }

        .schedule-table th {
            font-weight: 600;
            color: var(--dark);
        }

        .schedule-table td {
            color: var(--gray-600);
        }

        .schedule-table .closed {
            color: var(--gray-400);
        }

        .schedule-table .today {
            background: var(--primary-light);
            border-radius: 8px;
        }

        .schedule-table .today td {
            color: var(--primary);
            font-weight: 600;
        }

        /* Map */
        .map-container {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--gray-200);
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            min-height: 450px;
            border: none;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--dark);
            color: rgba(255,255,255,0.6);
            padding: 64px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 48px;
            padding-bottom: 48px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .footer-brand .logo {
            color: var(--white);
            margin-bottom: 16px;
        }

        .footer-brand .logo-icon {
            background: linear-gradient(135deg, #3b82f6, #7c3aed);
        }

        .footer-brand p {
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
        }

        .footer-socials a {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255,255,255,0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.6);
            transition: var(--transition);
        }

        .footer-socials a:hover {
            background: var(--primary);
            color: var(--white);
        }

        .footer h4 {
            color: var(--white);
            font-size: 0.95rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 0.9rem;
            color: rgba(255,255,255,0.5);
        }

        .footer-links a:hover {
            color: var(--white);
            padding-left: 4px;
        }

        .footer-bottom {
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.85rem;
            flex-wrap: wrap;
            gap: 16px;
        }

        .seo-keywords {
            width: 100%;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.05);
            text-align: center;
        }

        .seo-keywords p {
            font-size: 0.75rem;
            color: rgba(255,255,255,0.3);
            line-height: 1.6;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 32px;
            right: 32px;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: var(--white);
            border: none;
            border-radius: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            z-index: 99;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        /* ===== ANIMATIONS ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== CAROUSEL / LIGHTBOX ===== */
        .carousel-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.95);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .carousel-overlay.active {
            display: flex;
            opacity: 1;
        }

        .carousel-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide {
            position: absolute;
            inset: 0;
            opacity: 0;
            transition: opacity 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            max-height: 85vh;
        }

        /* Carousel slide content overlay */
        .carousel-slide-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 60px 40px 80px;
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
            text-align: center;
            pointer-events: none;
        }

        .carousel-slide-content h3 {
            color: white;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }

        .carousel-slide-content p {
            color: rgba(255,255,255,0.7);
            font-size: 1rem;
        }

        /* Carousel nav arrows */
        .carousel-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 52px;
            height: 52px;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 10;
        }

        .carousel-arrow:hover {
            background: rgba(255,255,255,0.3);
        }

        .carousel-arrow.prev {
            left: 24px;
        }

        .carousel-arrow.next {
            right: 24px;
        }

        /* Carousel close */
        .carousel-close {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 12px;
            color: white;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            z-index: 10;
        }

        .carousel-close:hover {
            background: rgba(255,255,255,0.25);
        }

        /* Carousel counter */
        .carousel-counter {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
            font-weight: 500;
            z-index: 10;
        }

        /* Carousel dots */
        .carousel-dots {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.3);
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .carousel-dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .service-card.featured {
                grid-column: span 2;
            }

            .service-card.ritual {
                grid-column: span 2;
            }

            .details-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .burger {
                display: flex;
            }

            .hero-content {
                padding: 40px 0;
            }

            .hero-stats {
                gap: 24px;
            }

            .hero-stat h3 {
                font-size: 1.4rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .service-card.featured {
                grid-column: span 1;
            }

            .service-card.ritual {
                grid-column: span 1;
            }

            .details-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .promo-inner {
                flex-direction: column;
                text-align: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }

            .section {
                padding: 64px 0;
            }

            .header-phones {
                display: none;
            }

            .map-container iframe {
                min-height: 300px;
            }

            .carousel-arrow {
                width: 40px;
                height: 40px;
            }

            .carousel-arrow.prev {
                left: 12px;
            }

            .carousel-arrow.next {
                right: 12px;
            }

            .carousel-slide-content {
                padding: 40px 20px 60px;
            }

            .carousel-slide-content h3 {
                font-size: 1.2rem;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                justify-content: center;
                padding: 16px 24px;
                font-size: 1rem;
            }

            .hero-schedule {
                font-size: 0.8rem;
                padding: 8px 16px;
                flex-wrap: wrap;
            }

            .hero-schedule .schedule-divider {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                flex-direction: column;
                gap: 16px;
            }
        }