/* ========================================
   Мистецький Арсенал - Премиум Стили
   ======================================== */

/* === CSS Variables === */
:root {
    /* Золоті та класичні кольори */
    --gold: #D4AF37;
    --gold-light: #F4E4B0;
    --gold-dark: #B8941F;
    --black: #1a1a1a;
    --white: #ffffff;
    --burgundy: #8B0000;
    --burgundy-dark: #6B0000;
    --grey-dark: #2d2d2d;
    --grey-medium: #4a4a4a;
    --grey-light: #f5f5f5;
    
    /* Градієнти */
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4B0 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(139,0,0,0.8) 100%);
    
    /* Шрифти */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Тіні */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);
    --shadow-gold: 0 8px 32px rgba(212,175,55,0.3);
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--grey-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    margin-bottom: 1rem;
    color: var(--grey-medium);
}

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

a:hover {
    color: var(--gold-dark);
}

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

/* === Container === */
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    max-width: 100%;
    padding: 0;
}

/* === Section Styling === */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--grey-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Золотий розділювач */
.divider-gold {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    margin: 20px auto;
    border-radius: 2px;
    box-shadow: var(--shadow-gold);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26,26,26,0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(212,175,55,0.3);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(26,26,26,0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
}

.logo-icon {
    font-size: 2rem;
}

.logo-text {
    line-height: 1.2;
}

.logo-accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
}

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

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

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

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn.btn-primary {
    background: var(--gradient-gold);
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.4);
    border-color: transparent;
}

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

.btn.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn.btn-white {
    background: var(--white);
    color: var(--black);
}

.btn.btn-white:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn.btn-primary-nav {
    padding: 10px 20px;
    font-size: 0.875rem;
    color: var(--gold);
    background: transparent;
    border: none;
}
.btn.btn-primary-nav:hover {
    border: none;
    color: var(--gold-dark);
    background: transparent;
}

.btn.btn-large {
    padding: 16px 40px;
    font-size: 1.125rem;
}

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

/* === Hero Section === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--black);
    background-image: 
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="%23D4AF37" opacity="0.05"/></svg>'),
        linear-gradient(135deg, rgba(26,26,26,0.98) 0%, rgba(139,0,0,0.85) 100%);
    background-size: 100px 100px, cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(26,26,26,0.8) 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(212,175,55,0.03) 50px, rgba(212,175,55,0.03) 51px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    padding: 40px 20px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(212,175,55,0.1);
    border: 1px solid var(--gold);
    border-radius: 30px;
    color: var(--gold);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.gold-gradient {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 50px 0;
    flex-wrap: wrap;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

/* === USP Section === */
.usp-section {
    background: var(--grey-light);
    position: relative;
}

.usp-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, var(--white), transparent);
}

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

.usp-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.usp-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

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

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.usp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.usp-text {
    color: var(--grey-medium);
    line-height: 1.7;
}

/* === Spaces Section === */
.spaces-section {
    background: var(--white);
}

.spaces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.space-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid transparent;
}

.space-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.space-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.space-card:hover .space-image img {
    transform: scale(1.1);
}

.space-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.space-card:hover .space-overlay {
    opacity: 1;
}

.space-content {
    padding: 30px;
}

.space-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.space-stats-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.space-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: var(--grey-light);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--grey-dark);
    font-weight: 600;
}

.space-stat i {
    color: var(--gold);
}

.space-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 6px 12px;
    background: rgba(212,175,55,0.1);
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    border: 1px solid var(--gold);
}

/* === Event Types Section === */
.event-types-section {
    background: var(--grey-light);
}

.event-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.event-type-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.event-type-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.event-type-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 15px;
    transition: var(--transition);
}

.event-type-item:hover i {
    transform: scale(1.1);
}

.event-type-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--grey-dark);
}

/* === Advantages Section === */
.advantages-section {
    background: var(--white);
}

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

.advantage-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid var(--grey-light);
    position: relative;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--gold);
}

.advantage-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(212,175,55,0.1);
    line-height: 1;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
}

.advantage-text {
    color: var(--grey-medium);
    line-height: 1.7;
}

/* === Gallery Section === */
.gallery-section {
    background: var(--grey-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 230px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2.5rem;
    color: var(--gold);
}
.gallery-flex {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.gallery-flex .gallery-item {
  height: 350px;
  background:#fff;
}
/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    background:#fff;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 8px 40px rgba(212,175,55,0.3);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(212,175,55,0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.lightbox-close {
    top: 20px;
    right: 20px;
    border-radius: 50%;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 4px;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--gold);
    color: var(--black);
}

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

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

.service-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--grey-light);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-gold);
    color: var(--black);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.service-text {
    font-size: 0.875rem;
    color: var(--grey-medium);
    line-height: 1.6;
}

/* === Statistics Section === */
.stats-section {
    background: var(--gradient-dark);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-box {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    border: 2px solid rgba(212,175,55,0.3);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(212,175,55,0.1);
    transform: translateY(-5px);
    border-color: var(--gold);
}

.stat-box .stat-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-box .stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-box .stat-value {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.stat-box .stat-unit {
    font-size: 1.25rem;
    color: var(--gold-light);
    font-weight: 600;
}

.stat-box .stat-description {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* === Process Section === */
.process-section {
    background: var(--grey-light);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--gradient-gold);
    z-index: 0;
}

.process-step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--black);
    box-shadow: var(--shadow-gold);
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 3px solid var(--gold);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--gold);
    box-shadow: var(--shadow-md);
}

.process-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.process-text {
    font-size: 0.875rem;
    color: var(--grey-medium);
    line-height: 1.6;
}

/* === Booking Section === */
.booking-section {
    background: var(--white);
    padding: 100px 0;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking-info {
    position: sticky;
    top: 100px;
}

.booking-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 20px;
}

.booking-subtitle {
    font-size: 1.125rem;
    color: var(--grey-medium);
    margin-bottom: 40px;
}

.booking-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--grey-dark);
    font-weight: 500;
}

.booking-feature i {
    color: var(--gold);
    font-size: 1.25rem;
}

.booking-contacts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.booking-contact-item {
    display: flex;
    gap: 15px;
}

.booking-contact-item i {
    color: var(--gold);
    font-size: 1.5rem;
    width: 30px;
}

.booking-contact-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--black);
}

.booking-contact-item a {
    color: var(--grey-medium);
    text-decoration: none;
}

.booking-contact-item a:hover {
    color: var(--gold);
}

.booking-form-wrapper {
    background: var(--grey-light);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(212,175,55,0.2);
    position: relative;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--grey-dark);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid var(--grey-light);
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--grey-dark);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-group {
    margin-top: 10px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

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

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

.form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.75rem;
    color: var(--black);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--grey-medium);
}

/* === Contact Section === */
.contact-section {
    padding: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.contact-info-wrapper {
    background: var(--gradient-dark);
    padding: 80px 60px;
    display: flex;
    align-items: center;
}

.contact-content {
    width: 100%;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-item-large {
    display: flex;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.contact-details p,
.contact-details a {
    color: rgba(255,255,255,0.9);
    margin-bottom: 5px;
}

.contact-details a:hover {
    color: var(--gold);
}

.contact-details small {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.map-wrapper {
    position: relative;
    height: 100%;
}

#map {
    width: 100%;
    height: 100%;
    min-height: 700px;
}

/* === Footer === */
.footer {
    background: var(--black);
    color: rgba(255,255,255,0.8);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.1fr 1.4fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 0;
}

.footer-title {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links,
.footer-contacts {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contacts a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-contacts a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contacts i {
    color: var(--gold);
    margin-right: 10px;
    width: 20px;
}

.footer-contacts li{
    display: flex;
    align-items: baseline;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid rgba(212,175,55,0.3);
    border-radius: 4px;
    background: rgba(255,255,255,0.05);
    color: var(--white);
    font-family: var(--font-body);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 4px;
    color: var(--black);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212,175,55,0.2);
    border: 2px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212,175,55,0.2);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.875rem;
}

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

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-gold);
    border: none;
    border-radius: 50%;
    color: var(--black);
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(212,175,55,0.4);
    background:  var(--gradient-gold);
    color: var(--black);
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .booking-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .booking-info {
        position: static;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        font-size: 14px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26,26,26,0.98);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateX(-100%);
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .spaces-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .booking-form-wrapper {
        padding: 30px 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-wrapper {
        padding: 60px 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
      padding: 80px 0 40px;
      min-height: 100svh;
    }
    .hero-title{
      margin-bottom: 10px;
    }
    .hero-badge {
      font-size: 0.8rem;
      margin-bottom: 20px;
    }
    .hero-content{
        padding: 10px;
    }
    .hero-subtitle {
        margin-bottom: 15px;
    }
    .hero-stats{
      margin: 15px 0;
    }
    .hero-cta{
      margin-top: 15px;
    }

    .hero-cta .btn-large{
      padding: 14px 20px;
    }
    .usp-grid,
    .event-types-grid,
    .advantages-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-box .stat-value {
        font-size: 2.5rem;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

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

.animate-fade-up {
    animation: fadeInUp 0.6s ease-out;
}

/* === Utility Classes === */
.hidden {
    display: none !important;
}

.visible {
    display: flex !important;
}
