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

:root {
    --color-dark: #0a0a0a;
    --color-gold: #d4af37;
    --color-red: #c41e3a;
    --color-blue: #1e3a8a;
    --color-gray-900: #111827;
    --color-gray-800: #1f2937;
    --color-gray-700: #374151;
    --color-gray-600: #4b5563;
    --color-gray-400: #9ca3af;
    --color-gray-300: #d1d5db;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--color-dark);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--color-gold);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b8962e;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.container-small {
    max-width: 896px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 768px) {
    .container,
    .container-small {
        padding: 0 1rem;
    }
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s;
}

.mobile-menu {
    display: none;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(12px);
    padding: 1rem;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.mobile-nav-link:hover {
    color: var(--color-gold);
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .navbar {
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(12px);
    }

    .nav-content {
        height: 70px;
        justify-content: flex-end;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
        padding: 0.5rem;
        margin-right: -0.5rem;
    }
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.hero-gradient-1 {
    background: var(--color-gold);
    top: -80px;
    left: -80px;
}

.hero-gradient-2 {
    background: var(--color-red);
    bottom: -80px;
    right: -80px;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.15;
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 6rem 1rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, var(--color-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-400);
    margin-bottom: 3rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 6rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--color-gray-400);
}

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Page Container & Header */
.page-container {
    padding-top: 120px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    max-width: 42rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-container {
        padding-top: 100px;
    }

    .page-header {
        margin-bottom: 2rem;
        padding: 1rem 0;
    }

    .page-title {
        font-size: 1.875rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }
}

/* Section Styles */
.section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem;
    }
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-400);
    max-width: 42rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

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

    .section-subtitle {
        font-size: 1rem;
    }
}

/* Halls Section */
.halls-section {
    background: linear-gradient(180deg, var(--color-dark) 0%, var(--color-gray-900) 100%);
}

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

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

.hall-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
}

@media (min-width: 769px) {
    .hall-card:hover {
        transform: scale(1.05);
        border-color: rgba(212, 175, 55, 0.5);
    }
}

.hall-gallery {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--color-gray-900);
}

.hall-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}

.hall-image.active {
    opacity: 1;
}

.gallery-counter {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 0.875rem;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    z-index: 10;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.gallery-prev {
    left: 0.5rem;
}

.gallery-next {
    right: 0.5rem;
}

.gallery-dots {
    position: absolute;
    bottom: 0.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.gallery-dot.active {
    width: 32px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 5px;
}

.hall-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.5s;
}

.hall-card:hover .hall-overlay {
    opacity: 0.1;
}

.hall-content {
    padding: 2rem;
}

@media (max-width: 768px) {
    .hall-content {
        padding: 1.5rem;
    }
}

.hall-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.hall-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.hall-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-square {
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff;
    border-radius: 4px;
}

.icon-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff;
    border-radius: 50%;
}

.icon-diamond {
    width: 24px;
    height: 24px;
    border: 2px solid #ffffff;
    transform: rotate(45deg);
}

.hall-description {
    color: var(--color-gray-400);
    margin-bottom: 1.5rem;
    min-height: 80px;
}

.hall-features {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--color-gray-300);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-check {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

.hall-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.hall-btn:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    background: var(--color-dark);
}

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

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

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s;
}

.service-card.popular {
    border-color: var(--color-gold);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

@media (min-width: 769px) {
    .service-card.popular {
        transform: scale(1.05);
    }

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

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold);
    color: #000000;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-bottom-left-radius: 0.5rem;
}

.service-content {
    padding: 2rem;
}

@media (max-width: 768px) {
    .service-content {
        padding: 1.5rem;
    }

    .service-price {
        font-size: 2rem;
    }

    .service-name {
        font-size: 1.25rem;
    }
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.service-duration {
    color: var(--color-gray-400);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-feature {
    display: flex;
    align-items: flex-start;
    color: var(--color-gray-300);
    margin-bottom: 0.75rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-right: 0.75rem;
    color: #22c55e;
}

.service-card.popular .feature-icon {
    color: var(--color-gold);
}

.service-book-btn {
    display: block;
    width: 100%;
    margin-top: 2rem;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #ca8a04 100%);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    text-align: center;
    transition: all 0.3s;
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-card.popular .service-book-btn {
    background: linear-gradient(135deg, #ffffff 0%, #e5e5e5 100%);
    color: #000000;
}

.service-card.popular .service-book-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .service-book-btn {
        margin-top: 1.5rem;
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}

.services-note {
    margin-top: 4rem;
    text-align: center;
    color: var(--color-gray-400);
}

.services-note p {
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .services-note {
        margin-top: 2rem;
        font-size: 0.875rem;
    }
}

.note-highlight {
    color: var(--color-gold);
    font-weight: 600;
}

/* Restobar Section */
.restobar-section {
    background: linear-gradient(180deg, var(--color-gray-900) 0%, var(--color-dark) 100%);
}

.restobar-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
}

.restobar-text {
    color: var(--color-gray-300);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .restobar-text {
        font-size: 1rem;
    }

    .restobar-btn {
        width: 100%;
        text-align: center;
    }
}

.restobar-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-gold) 0%, #ca8a04 100%);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.restobar-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about-section {
    background: linear-gradient(180deg, var(--color-gray-900) 0%, var(--color-dark) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 64rem;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

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

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

@media (min-width: 769px) {
    .stat-box:hover {
        transform: scale(1.05);
        border-color: rgba(212, 175, 55, 0.5);
    }
}

.stat-box .stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-gray-400);
    margin-bottom: 0.75rem;
}

.stat-box .stat-number {
    font-size: 3.75rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .stat-box .stat-number {
        font-size: 2.5rem;
    }
}

.stat-box .stat-subtitle {
    color: var(--color-gray-300);
}

/* FAQ Section */
.faq-section {
    background: var(--color-dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: border-color 0.3s;
}

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

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--color-gold);
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 400px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--color-gray-300);
    line-height: 1.7;
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, var(--color-dark) 50%, rgba(30, 58, 138, 0.1) 100%);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
}

.cta-text {
    font-size: 1.25rem;
    color: var(--color-gray-300);
    margin-bottom: 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 700;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn svg {
    width: 24px;
    height: 24px;
}

.cta-btn-primary {
    background: #22c55e;
    color: #ffffff;
}

.cta-btn-primary:hover {
    background: #16a34a;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.cta-btn-telegram {
    background: #0088cc;
    color: #ffffff;
}

.cta-btn-telegram:hover {
    background: #006699;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 136, 204, 0.3);
}

.cta-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(128, 128, 128, 0.5);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 0 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-section {
    flex: 2;
}

.footer-title {
    color: #ffffff;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    color: var(--color-gray-400);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(128, 128, 128, 0.5);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-gray-500);
    font-size: 0.75rem;
    line-height: 1.7;
    max-width: 100%;
    margin: 0 auto 1rem;
}

.footer-link {
    color: var(--color-gray-400);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-gold);
}

.footer-legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-legal-link {
    color: var(--color-gray-400);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s;
}

.footer-legal-link:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.footer-separator {
    color: var(--color-gray-600);
}

/* Messenger Buttons */
.messenger-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.messenger-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s;
    cursor: pointer;
}

.messenger-btn svg {
    width: 28px;
    height: 28px;
}

.telegram-btn {
    background: #0088cc;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
}

.telegram-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.6);
}

.whatsapp-btn {
    background: #25D366;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .messenger-buttons {
        bottom: 1rem;
        right: 1rem;
        gap: 0.75rem;
    }

    .messenger-btn {
        width: 50px;
        height: 50px;
    }

    .messenger-btn svg {
        width: 24px;
        height: 24px;
    }
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
}

/* Responsive Footer */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem 0 2rem;
    }

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

    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

/* Movies Grid (Afisha Page) */
.movies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .movies-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
}

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

.movie-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

@media (min-width: 769px) {
    .movie-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.5);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }
}

.movie-poster {
    aspect-ratio: 2/3;
    overflow: hidden;
    background: var(--color-gray-900);
}

.movie-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.movie-poster-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-600);
}

.poster-placeholder-content {
    text-align: center;
    padding: 1rem;
}

.poster-placeholder-content p {
    margin-top: 1rem;
    font-size: 0.875rem;
}

.movie-content {
    padding: 1.5rem;
}

@media (max-width: 768px) {
    .movie-content {
        padding: 1rem;
    }
}

.movie-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .movie-title {
        font-size: 1rem;
    }
}

.movie-genre {
    font-size: 0.875rem;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
}

.movie-description {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Hall Detail Cards */
.hall-detail-card {
    margin-bottom: 4rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .hall-detail-card {
        margin-bottom: 2rem;
    }
}

.hall-detail-gallery {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: var(--color-gray-900);
}

@media (max-width: 768px) {
    .hall-detail-gallery {
        aspect-ratio: 4/3;
    }
}

.hall-detail-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s;
}

.hall-detail-image.active {
    opacity: 1;
}

.hall-detail-content {
    padding: 3rem;
}

@media (max-width: 768px) {
    .hall-detail-content {
        padding: 1.5rem;
    }
}

.hall-detail-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hall-detail-title {
        font-size: 1.5rem;
    }
}

.hall-detail-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hall-detail-description {
        font-size: 1rem;
    }
}

.hall-detail-features {
    margin-bottom: 2rem;
}

.hall-detail-feature {
    display: flex;
    align-items: center;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }
}

@media (min-width: 769px) {
    .review-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.5);
    }
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: #ffffff;
    font-size: 1.125rem;
}

.review-rating {
    margin-left: auto;
    color: var(--color-gold);
}

.review-text {
    color: var(--color-gray-300);
    line-height: 1.7;
    font-size: 0.875rem;
}

/* Menu Styles */
.menu-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .menu-categories {
        margin-bottom: 2rem;
        gap: 0.5rem;
    }
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

.category-btn.active,
.category-btn:hover {
    background: var(--color-gold);
    color: #000000;
    border-color: var(--color-gold);
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .menu-items {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

@media (min-width: 769px) {
    .menu-item:hover {
        transform: translateY(-3px);
        border-color: rgba(212, 175, 55, 0.5);
    }
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.menu-item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    flex: 1;
}

.menu-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gold);
    white-space: nowrap;
    margin-left: 1rem;
}

.menu-item-description {
    font-size: 0.875rem;
    color: var(--color-gray-400);
    line-height: 1.6;
}
