@font-face {
    font-family: 'Inter';
    src: url('fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-red: #dc2626;
    --dark-red: #991b1b;
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --bg-dark: #000000;
    --bg-darker: #0a0a0a;
    --text-white: #ffffff;
    --text-light: rgba(255, 255, 255, 0.8);
    --text-gold: #d4af37;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: backgroundMove 25s ease infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundMove {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

/* Navigation on service pages */
body.service-page .navbar {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.06) 0%, transparent 50%);
    background-size: 200% 200%;
    animation: backgroundMoveNav 20s ease infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundMoveNav {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.nav-container {
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
    padding: 0 3% !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    position: relative;
    display: inline-block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 2px;
    position: relative;
    text-decoration: none;
    padding: 0.5rem 1rem;
    background: var(--primary-red);
    display: inline-block;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s ease;
}

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

.nav-link:hover::after {
    width: 100%;
}

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

.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-white);
    transition: all 0.3s ease;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.hero-container {
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
    padding: 0 3% !important;
    padding-top: 120px !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    z-index: 2;
}

.hero-badge {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-whatsapp {
    background: var(--gold);
    color: var(--bg-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-whatsapp:hover {
    background: var(--dark-gold);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-primary {
    background: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
    background: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.hero-right {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.hero-overlay-text {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 3;
}

.overlay-number {
    font-family: 'Playfair Display', serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.overlay-text {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: right;
    line-height: 1.8;
    letter-spacing: 1px;
}

/* Atmosphere Section */
.atmosphere {
    padding: 150px 0;
    background: var(--bg-darker);
    text-align: center;
}

.atmosphere-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.atmosphere-label {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.atmosphere-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.atmosphere-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.atmosphere-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Services Section */
.services {
    padding: 150px 0;
    background: var(--bg-dark);
}

.services-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-white);
    font-weight: 700;
    text-transform: uppercase;
}

.services-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(220, 38, 38, 0.5));
}

.service-feature p {
    color: var(--text-white);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.service-card-large {
    position: relative;
    height: 400px;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.service-card-large:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.service-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.service-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.choose-emotions {
    text-align: center;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 3rem;
}

/* Numbers Section */
.numbers {
    padding: 120px 0;
    background: var(--bg-dark);
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.number-card {
    position: relative;
    height: 420px;
    overflow: hidden;
    border: 2px solid rgba(220, 38, 38, 0.3);
    background: #0a0a0a;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.number-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(1.1);
    transition: transform 0.5s ease;
}

.number-title {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: var(--text-white);
    font-weight: 800;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.number-card:hover {
    border-color: var(--primary-red);
    transform: scale(1.02);
}

.number-card:hover .number-image {
    transform: scale(1.05);
}

/* Gallery Section */
.gallery {
    padding: 150px 0;
    background: var(--bg-darker);
}

.gallery-label {
    text-align: center;
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-swiper {
    margin-top: 3rem;
}

.gallery-swiper .swiper-slide {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.4s ease;
}

.gallery-swiper .swiper-slide:hover {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.6);
    transform: scale(1.05);
    border-color: var(--primary-red);
}

.gallery-swiper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-swiper img:hover {
    transform: scale(1.1);
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-red) !important;
}

.swiper-button-next,
.swiper-button-prev {
    width: 48px !important;
    height: 48px !important;
    border-radius: 0 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(4px);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
    color: var(--text-white) !important;
}

/* Contacts Section */
.contacts {
    padding: 150px 0;
    background: var(--bg-dark);
}

.contacts-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-white);
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
}

.contact-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-red);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    width: 40px;
    height: 40px;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid rgba(220, 38, 38, 0.2);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-content p {
    color: var(--text-light);
}

/* Floating Phone Button */
.floating-phone {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.floating-phone:hover {
    background: var(--dark-red);
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.6);
}

.floating-phone img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%; /* Спрятали меню за правый край экрана */
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        width: 100%;
        text-align: center;
        transition: right 0.3s ease; /* Анимация теперь завязана на свойстве right */
        padding: 2rem 0;
        gap: 0;
        border-top: 1px solid rgba(220, 38, 38, 0.2);
    }

    .nav-menu.active {
        right: 0; /* При открытии меню встает ровно по правому краю */
    }

    .nav-menu li {
        padding: 1rem 0;
    }

    .hero,
    .service-hero {
        min-height: 100vh !important;
        min-height: 100dvh !important; /* Dynamic VH for mobile */
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-end !important;
        padding-bottom: 20px !important;
        align-items: flex-start !important;
    }

    .hero-container,
    .service-hero .container {
        width: 100% !important;
        padding: 0 20px !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
        display: block !important;
    }

    .hero-left {
        width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }

    .hero-title {
        font-size: 2.5rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1.2rem !important;
    }

    .hero-badge {
        margin-bottom: 1rem !important;
        font-size: 0.8rem !important;
    }

    .hero-description {
        font-size: 1rem !important;
        max-width: 100% !important;
        margin-bottom: 2rem !important;
        line-height: 1.5 !important;
    }

    .hero-right {
        display: none !important;
    }

    .atmosphere-title {
        font-size: 3rem !important;
    }

    .section-title {
        font-size: 2.5rem !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }

    .contacts-wrapper {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    .overlay-number {
        font-size: 4rem;
    }

    .hero-right {
        justify-content: center;
    }

    .atmosphere-container {
        padding: 0 20px;
    }
}

/* Service Page Styles */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
}

.service-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.65) 100%);
    z-index: 1;
}

.service-hero .container {
    max-width: none !important;
    margin: 0 !important;
    width: 100% !important;
    padding: 0 3% !important;
    padding-top: 120px !important;
    position: relative;
    z-index: 2;
    text-align: center;
}

.service-hero-label {
    font-size: 1rem;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 300;
}

.service-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-white);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    line-height: 1.2;
}

.service-description {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: left !important;
}

.service-description p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-features-list {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: left !important;
}

.service-features-list ul {
    list-style: none;
    padding: 0;
}

.service-features-list li {
    color: var(--text-white);
    font-size: 1.1rem;
    line-height: 2;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-cta {
    text-align: center;
    margin: 4rem 0;
}

.messenger-picker {
    position: relative;
    display: inline-block;
    z-index: 2000;
}

.messenger-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 260px;
}

.trigger-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.messenger-picker.open .trigger-arrow {
    transform: rotate(180deg);
}

.messenger-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(320px, calc(100vw - 40px));
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(10, 10, 10, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 2000;
}

.messenger-picker.open .messenger-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.messenger-option {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.95rem 1rem;
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.messenger-option:hover {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.45);
    background: rgba(212, 175, 55, 0.08);
}

.messenger-option img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    flex-shrink: 0;
}

.messenger-wa:hover {
    border-color: rgba(37, 211, 102, 0.55);
}

.messenger-tg:hover {
    border-color: rgba(34, 158, 217, 0.55);
}

.messenger-max:hover {
    border-color: rgba(122, 92, 255, 0.55);
}

@media (max-width: 768px) {
    .service-hero-title {
        font-size: 2.5rem;
    }

    .service-description,
    .service-features-list {
        padding: 0 20px;
    }

    .messenger-picker,
    .messenger-trigger {
        width: 100%;
    }

    .messenger-trigger {
        min-width: 0;
    }

    .messenger-menu {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .atmosphere-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .overlay-number {
        font-size: 3rem;
    }

    .overlay-text {
        font-size: 0.9rem;
    }

    .service-hero-title {
        font-size: 2rem;
    }
}

/* Gallery Video Styles */
.gallery-video-wrapper {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-video-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-video-wrapper:hover .gallery-video-preview {
    transform: scale(1.1);
}

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(220, 38, 38, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(220, 38, 38, 0.5);
}

.gallery-play-icon svg {
    width: 30px;
    height: 30px;
    color: #ffffff;
    margin-left: 4px;
}

.gallery-video-wrapper:hover .gallery-play-icon {
    background: var(--primary-red);
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.7);
}

/* Responsive video styles */
@media (max-width: 768px) {
    .gallery-video-wrapper {
        height: 250px;
    }

    .gallery-play-icon {
        width: 60px;
        height: 60px;
    }

    .gallery-play-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Mobile and tablet portrait image optimization */
@media (max-width: 1024px) and (orientation: portrait) {

    /* Hero background - cover with focus on top (faces) */
    .hero-background,
    .service-hero-background {
        background-size: cover;
        background-position: top center;
    }

    .hero,
    .service-hero {
        min-height: 100vh;
    }

    /* Service cards - taller for portrait images */
    .service-card-large {
        height: 500px;
    }

    .service-image {
        background-size: cover;
        background-position: top center;
    }

    /* Number cards - taller for portrait images */
    .number-card {
        height: 520px;
    }

    .number-image {
        background-size: cover;
        background-position: top center;
    }
}

/* Wide monitor optimization (1600px+) */
@media (min-width: 1600px) {
    .container {
        max-width: 1500px;
    }

    .nav-container,
    .hero-container,
    .atmosphere-container {
        max-width: 1800px;
        padding: 0 80px;
    }

    .hero-title {
        font-size: 5.5rem;
    }

    .hero-description {
        font-size: 1.25rem;
        max-width: 550px;
    }

    .hero-badge {
        font-size: 1rem;
    }

    .overlay-number {
        font-size: 10rem;
    }

    .overlay-text {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .atmosphere-title {
        font-size: 5.5rem;
    }

    .service-card-large {
        height: 450px;
    }

    .number-card {
        height: 480px;
    }

    .btn {
        padding: 20px 50px;
        font-size: 1.1rem;
    }
}

/* 2K/QHD monitors (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .nav-container,
    .hero-container,
    .atmosphere-container {
        max-width: 1800px;
        padding: 0 80px;
    }

    .hero-title {
        font-size: 6rem;
    }

    .hero-description {
        font-size: 1.35rem;
        max-width: 600px;
    }

    .hero-badge {
        font-size: 1.1rem;
    }

    .overlay-number {
        font-size: 12rem;
    }

    .overlay-text {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 4.5rem;
    }

    .atmosphere-title {
        font-size: 6rem;
    }

    .service-card-large {
        height: 500px;
    }

    .number-card {
        height: 520px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 2.5rem;
    }

    .numbers-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 2.5rem;
    }

    .gallery-swiper img,
    .gallery-video-wrapper {
        height: 400px;
    }

    .navbar {
        padding: 2rem 0;
    }

    .nav-link {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .logo-text {
        font-size: 2.2rem;
    }
}

/* 4K monitors (2560px+) */
@media (min-width: 2560px) {
    .container {
        max-width: 2000px;
    }

    .nav-container,
    .hero-container,
    .atmosphere-container {
        max-width: 2200px;
    }

    .hero-title {
        font-size: 7rem;
    }

    .overlay-number {
        font-size: 14rem;
    }

    .section-title {
        font-size: 5rem;
    }

    .atmosphere-title {
        font-size: 7rem;
    }
}

/* ============================================
   Cookie Banner
   ============================================ */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(10, 10, 10, 0.97);
    border-top: 2px solid rgba(220, 38, 38, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 1rem 0;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.6);
}

#cookie-banner.cookie-banner--visible {
    transform: translateY(0);
    opacity: 1;
}

#cookie-banner.cookie-banner--hiding {
    transform: translateY(100%);
    opacity: 0;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-banner__text {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-banner__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.9;
}

.cookie-banner__link {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(212, 175, 55, 0.4);
    transition: color 0.3s, text-decoration-color 0.3s;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: var(--primary-red);
    text-decoration-color: rgba(220, 38, 38, 0.5);
}

.cookie-banner__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cookie-banner__btn {
    display: inline-block;
    padding: 0.6rem 1.8rem;
    background: var(--primary-red);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    background: var(--dark-red);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(220, 38, 38, 0.4);
}

.cookie-banner__btn:active {
    transform: translateY(0);
}

.cookie-banner__btn--secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.82);
}

.cookie-banner__btn--secondary:hover {
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.footer-policy-link,
.footer-settings-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-policy-link:hover,
.footer-settings-link:hover {
    color: #dc2626;
}

.footer-settings-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
}

@media (max-width: 600px) {
    .cookie-banner__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0.5rem 16px;
    }

    .cookie-banner__actions {
        width: 100%;
        flex-direction: column-reverse;
    }

    .cookie-banner__btn {
        width: 100%;
        text-align: center;
        padding: 0.75rem 1.5rem;
    }
}
