/* ================================
   CSS Variables & Reset
   ================================ */
:root {
    --primary-color: #ffffff;
    --primary-dark: #cccccc;
    --secondary-color: #000000;
    --accent-color: #ffffff;
    --text-light: #ffffff;
    --text-dark: #ffffff;
    --text-muted: #aaaaaa;
    --bg-dark: #000000;
    --bg-light: #0a0a0a;
    --bg-card: #111111;
    --gradient-primary: linear-gradient(135deg, #333333 0%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

/* ================================
   Typography
   ================================ */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* ================================
   Layout
   ================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    z-index: 1;
    background: #000000;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ================================
   Buttons
   ================================ */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: #ffffff;
    color: #000000;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 255, 255, 0.4);
    background: #cccccc;
}

.btn-secondary {
    background: var(--text-light);
    color: var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.btn-full {
    width: 100%;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================
   Navigation
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: var(--text-light);
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: invert(1);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    animation: colorCycle 5s linear infinite;
}

@keyframes colorCycle {
    0%, 100% { color: #ff0000; } /* Red */
    20% { color: #00ff00; } /* Green */
    40% { color: #0088ff; } /* Blue */
    60% { color: #ffffff; } /* White */
    80% { color: #ffbf00; } /* Amber */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    border-radius: 3px;
    transition: var(--transition);
}

/* ================================
   Hero Section with 12 Moving Heads
   ================================ */
.hero {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: transparent;
    overflow: visible;
    z-index: 1;
}

.hero-overlay {
    display: none;
}

/* 12 Moving Heads Stage */
.moving-heads-stage {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* Individual Moving Head Unit */
.moving-head-unit {
    position: absolute;
    width: 60px;
    height: 80px;
    transform-style: preserve-3d;
    transform-origin: center 40px;
    transition: transform 0.3s ease-out;
}

/* Head Fixture (in front of beam) */\n.head-fixture {\n    position: relative;\n    width: 100%;\n    height: 100%;\n    z-index: 10;\n}

.head-body {
    width: 50px;
    height: 60px;
    background: linear-gradient(135deg, #2a2a2a, #111);
    border-radius: 25px 25px 15px 15px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 
        inset 0 3px 10px rgba(255, 255, 255, 0.1),
        0 5px 20px rgba(0, 0, 0, 0.5);
}

.lens {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle at 30% 30%, #444, #111);
    border-radius: 50%;
    border: 2px solid #555;
    box-shadow: 
        inset 0 0 15px rgba(255, 215, 0, 0.4),
        0 0 10px rgba(255, 215, 0, 0.3);
}

/* Light Beam (behind fixture) */
.light-beam {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 500px;
    z-index: -1;
    filter: blur(8px);
    clip-path: polygon(35% 0%, 65% 0%, 100% 100%, 0% 100%);
    animation: beamPulse 3s ease-in-out infinite;
    transition: height 0.3s ease-out, opacity 0.3s ease-out;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

/* Position each of 12 lights across the top */
.moving-head-unit[data-index="0"] { left: 3%; top: 5%; }
.moving-head-unit[data-index="1"] { left: 12%; top: 3%; }
.moving-head-unit[data-index="2"] { left: 21%; top: 6%; }
.moving-head-unit[data-index="3"] { left: 30%; top: 4%; }
.moving-head-unit[data-index="4"] { left: 39%; top: 5%; }
.moving-head-unit[data-index="5"] { left: 48%; top: 3%; }
.moving-head-unit[data-index="6"] { left: 57%; top: 6%; }
.moving-head-unit[data-index="7"] { left: 66%; top: 4%; }
.moving-head-unit[data-index="8"] { left: 75%; top: 5%; }
.moving-head-unit[data-index="9"] { left: 84%; top: 3%; }
.moving-head-unit[data-index="10"] { left: 91%; top: 6%; }
.moving-head-unit[data-index="11"] { left: 96%; top: 4%; }

/* Different directions for each light - random swaying animations */
.moving-head-unit[data-index="0"] { animation: sway0 5s ease-in-out infinite; }
.moving-head-unit[data-index="1"] { animation: sway1 6s ease-in-out infinite; }
.moving-head-unit[data-index="2"] { animation: sway2 4.5s ease-in-out infinite; }
.moving-head-unit[data-index="3"] { animation: sway3 5.5s ease-in-out infinite; }
.moving-head-unit[data-index="4"] { animation: sway4 6.5s ease-in-out infinite; }
.moving-head-unit[data-index="5"] { animation: sway5 4s ease-in-out infinite; }
.moving-head-unit[data-index="6"] { animation: sway6 5.8s ease-in-out infinite; }
.moving-head-unit[data-index="7"] { animation: sway7 4.2s ease-in-out infinite; }
.moving-head-unit[data-index="8"] { animation: sway8 6.2s ease-in-out infinite; }
.moving-head-unit[data-index="9"] { animation: sway9 5.2s ease-in-out infinite; }
.moving-head-unit[data-index="10"] { animation: sway10 4.8s ease-in-out infinite; }
.moving-head-unit[data-index="11"] { animation: sway11 5.6s ease-in-out infinite; }

/* Different beam colors */
.moving-head-unit[data-index="0"] .light-beam { 
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.9) 0%, rgba(255, 215, 0, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="1"] .light-beam { 
    background: linear-gradient(to bottom, rgba(255, 100, 100, 0.9) 0%, rgba(255, 100, 100, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="2"] .light-beam { 
    background: linear-gradient(to bottom, rgba(100, 150, 255, 0.9) 0%, rgba(100, 150, 255, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="3"] .light-beam { 
    background: linear-gradient(to bottom, rgba(255, 100, 255, 0.9) 0%, rgba(255, 100, 255, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="4"] .light-beam { 
    background: linear-gradient(to bottom, rgba(100, 255, 150, 0.9) 0%, rgba(100, 255, 150, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="5"] .light-beam { 
    background: linear-gradient(to bottom, rgba(255, 180, 100, 0.9) 0%, rgba(255, 180, 100, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="6"] .light-beam { 
    background: linear-gradient(to bottom, rgba(100, 255, 255, 0.9) 0%, rgba(100, 255, 255, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="7"] .light-beam { 
    background: linear-gradient(to bottom, rgba(255, 255, 100, 0.9) 0%, rgba(255, 255, 100, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="8"] .light-beam { 
    background: linear-gradient(to bottom, rgba(200, 100, 255, 0.9) 0%, rgba(200, 100, 255, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="9"] .light-beam { 
    background: linear-gradient(to bottom, rgba(255, 150, 150, 0.9) 0%, rgba(255, 150, 150, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="10"] .light-beam { 
    background: linear-gradient(to bottom, rgba(150, 200, 255, 0.9) 0%, rgba(150, 200, 255, 0.1) 70%, transparent 100%);
}
.moving-head-unit[data-index="11"] .light-beam { 
    background: linear-gradient(to bottom, rgba(100, 255, 200, 0.9) 0%, rgba(100, 255, 200, 0.1) 70%, transparent 100%);
}

/* Unique sway animations - each light moves differently */
@keyframes sway0 {
    0%, 100% { transform: rotate(-45deg); }
    50% { transform: rotate(30deg); }
}
@keyframes sway1 {
    0%, 100% { transform: rotate(35deg); }
    50% { transform: rotate(-40deg); }
}
@keyframes sway2 {
    0%, 100% { transform: rotate(-25deg); }
    30% { transform: rotate(45deg); }
    70% { transform: rotate(-15deg); }
}
@keyframes sway3 {
    0%, 100% { transform: rotate(50deg); }
    40% { transform: rotate(-35deg); }
    80% { transform: rotate(20deg); }
}
@keyframes sway4 {
    0%, 100% { transform: rotate(-30deg); }
    25% { transform: rotate(40deg); }
    75% { transform: rotate(-20deg); }
}
@keyframes sway5 {
    0%, 100% { transform: rotate(25deg); }
    50% { transform: rotate(-50deg); }
}
@keyframes sway6 {
    0%, 100% { transform: rotate(-40deg); }
    35% { transform: rotate(25deg); }
    65% { transform: rotate(-10deg); }
}
@keyframes sway7 {
    0%, 100% { transform: rotate(45deg); }
    50% { transform: rotate(-30deg); }
}
@keyframes sway8 {
    0%, 100% { transform: rotate(-20deg); }
    40% { transform: rotate(50deg); }
    80% { transform: rotate(-35deg); }
}
@keyframes sway9 {
    0%, 100% { transform: rotate(30deg); }
    60% { transform: rotate(-45deg); }
}
@keyframes sway10 {
    0%, 100% { transform: rotate(-35deg); }
    50% { transform: rotate(40deg); }
}
@keyframes sway11 {
    0%, 100% { transform: rotate(40deg); }
    30% { transform: rotate(-25deg); }
    70% { transform: rotate(35deg); }
}

/* Ambient lighting effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 100, 100, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(100, 150, 255, 0.05) 0%, transparent 70%);
    animation: ambientShift 15s ease-in-out infinite;
    z-index: 0;
}

@keyframes ambientShift {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 20px;
}

.hero h1 {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(255, 215, 0, 0.5);
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ================================
   Services Section
   ================================ */
.services {
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Services Page Specific */
.services-page {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.services-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card-large {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card-large:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.service-icon-large {
    font-size: 3rem;
    padding: 30px;
    text-align: center;
    background: rgba(255, 215, 0, 0.05);
}

.service-content {
    padding: 25px 30px 30px;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.service-highlights {
    list-style: none;
}

.service-highlights li {
    color: var(--text-light);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Equipment Showcase */
.equipment-showcase {
    margin: 60px 0;
    text-align: center;
}

.equipment-showcase h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.showcase-subtitle {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.equipment-item {
    background: var(--bg-card);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.equipment-item:hover {
    border-color: var(--primary-color);
}

.equipment-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.equipment-item h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 5px;
}

.equipment-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================================
   Gallery Section
   ================================ */
.gallery-preview {
    background: var(--bg-dark);
}

.gallery-grid-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.instagram-embed {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: var(--transition);
}

.instagram-embed:hover {
    border-color: rgba(255, 215, 0, 0.3);
}

.instagram-placeholder {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

.instagram-placeholder p:first-child {
    font-size: 3rem;
    margin-bottom: 10px;
}

.placeholder-title {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 5px;
}

.placeholder-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Gallery Page */
.gallery-page {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-header h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.instagram-header p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.gallery-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-grid-large .instagram-embed {
    min-height: 350px;
}

.gallery-instructions {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.gallery-instructions h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.gallery-instructions ol {
    margin-left: 20px;
    color: var(--text-muted);
}

.gallery-instructions li {
    margin-bottom: 8px;
}

/* ================================
   Pricing Section
   ================================ */
.pricing-preview {
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.pricing-disclaimer {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 40px;
    font-style: italic;
}

/* Pricing Page */
.pricing-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.pricing-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-page {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.included-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.included-icon {
    font-size: 2rem;
}

.included-note p {
    color: var(--text-light);
    margin: 0;
}

/* Add-ons Section */
.add-ons {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.add-ons h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.add-ons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.add-on-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: var(--transition);
    gap: 20px;
}

.add-on-item:hover {
    background: rgba(255, 215, 0, 0.1);
}

.add-on-info {
    flex: 1;
}

.add-on-name {
    color: var(--text-light);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.add-on-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

.add-on-price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    white-space: nowrap;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 100, 0, 0.1) 100%);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.cta-section h2 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.home-cta {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 100, 0, 0.15) 100%);
    text-align: center;
    padding: 80px 0;
}

.home-cta h2 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.home-cta p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* ================================
   Page Hero (for inner pages)
   ================================ */
.page-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.page-hero p {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Calendar Section
   ================================ */
.calendar-page {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto 50px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.calendar-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.calendar-nav:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.available {
    background: #4ade80;
}

.legend-dot.booked {
    background: #f87171;
}

.legend-dot.tentative {
    background: #fbbf24;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
    margin-bottom: 10px;
}

.calendar-day-header {
    text-align: center;
    padding: 10px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 500;
    transition: var(--transition);
    cursor: default;
}

.calendar-day.empty {
    background: transparent;
}

.calendar-day.available {
    background: rgba(74, 222, 128, 0.2);
    border: 1px solid rgba(74, 222, 128, 0.3);
}

.calendar-day.booked {
    background: rgba(248, 113, 113, 0.2);
    border: 1px solid rgba(248, 113, 113, 0.3);
    color: #f87171;
}

.calendar-day.tentative {
    background: rgba(251, 191, 36, 0.2);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: #fbbf24;
}

.calendar-day.today {
    border: 2px solid var(--primary-color);
    font-weight: 700;
}

.calendar-note {
    text-align: center;
    margin-top: 30px;
    color: rgba(255, 255, 255, 0.8);
}

/* Booking Info */
.booking-info {
    margin: 50px 0;
}

.booking-info h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.info-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.info-card h4 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================================
   Contact Section
   ================================ */
.contact-page {
    background: var(--bg-dark);
    padding: 60px 0 80px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.8rem;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-item a,
.contact-item p {
    color: var(--text-muted);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select option {
    background: var(--bg-card);
    color: var(--text-light);
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-muted);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
}

.form-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 15px;
}

/* ================================
   Footer
   ================================ */
.footer {
    background: #000000;
    color: var(--text-light);
    padding: 50px 0 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-tagline {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 10px 0;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ================================
   Responsive Design
   ================================ */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        transition: var(--transition);
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu > li > a::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .calendar-legend {
        gap: 15px;
    }
    
    .moving-head-container {
        transform: translate(-50%, -50%) scale(0.6);
    }
    
    .page-hero,
    .pricing-hero {
        padding: 120px 0 40px;
    }
    
    .page-hero h1,
    .pricing-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-grid-small {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .services-grid,
    .gallery-grid-large,
    .pricing-grid,
    .services-grid-large {
        grid-template-columns: 1fr;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
    
    .moving-head-container {
        transform: translate(-50%, -50%) scale(0.5);
    }
    
    .logo-img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 0.75rem;
    }
    
    .add-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .add-on-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .add-on-price {
        align-self: flex-start;
    }
}

/* ================================
   Upcoming Events Section
   ================================ */
.events-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    position: relative;
    z-index: 1;
}

.events-list {
    max-width: 700px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin-bottom: 15px;
    background: var(--bg-card);
    border-radius: var(--border-radius);
    border-left: 4px solid #ff3333;
    transition: var(--transition);
}

.event-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    padding: 10px;
    background: #ff3333;
    border-radius: 8px;
    color: white;
    font-weight: 700;
}

.event-month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 1.5rem;
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.event-location {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.no-events {
    text-align: center;
    color: var(--text-muted);
    padding: 40px 20px;
    font-style: italic;
}

@media (max-width: 768px) {
    .event-item {
        flex-direction: row;
        gap: 15px;
    }
    
    .event-date {
        min-width: 50px;
        padding: 8px;
    }
    
    .event-day {
        font-size: 1.25rem;
    }
    
    .event-name {
        font-size: 1rem;
    }
}
