/* ============================================
   DJ WEBSITE - PREMIUM DESIGN SYSTEM
   ============================================ */

/* === DESIGN TOKENS === */
:root {
    /* Colors - Brand Palette: Red, Deep Black, Light Grey */
    /* Primary Brand Red: rgb(245, 9, 0) */
    /* Primary Brand Black: rgb(1, 1, 3) */
    /* Primary Brand Grey: rgb(221, 221, 223) */

    --color-bg-primary: rgb(1, 1, 3);
    --color-bg-secondary: #0a0a0c;
    /* Slightly lighter than brand black */
    --color-bg-tertiary: #141416;
    --color-bg-glass: rgba(1, 1, 3, 0.85);

    --color-text-primary: rgb(221, 221, 223);
    --color-text-secondary: rgba(221, 221, 223, 0.7);
    --color-text-muted: rgba(221, 221, 223, 0.5);

    /* Mapped Accents to Brand Red */
    --color-accent-cyan: rgb(245, 9, 0);
    /* Replaced Cyan with Red */
    --color-accent-magenta: rgb(200, 10, 0);
    /* Darker Red for variety */
    --color-accent-purple: rgb(221, 221, 223);
    /* Used Light Grey as secondary accent */
    --color-accent-orange: rgb(255, 60, 50);
    /* Lighter Red */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, rgb(245, 9, 0) 0%, rgb(180, 5, 0) 100%);
    --gradient-secondary: linear-gradient(135deg, rgb(245, 9, 0) 0%, rgb(221, 221, 223) 100%);
    --gradient-hero: linear-gradient(135deg, rgb(1, 1, 3) 0%, rgb(20, 5, 5) 50%, rgb(40, 2, 0) 100%);

    /* Typography */
    --font-heading: 'Bebas Neue', 'Montserrat', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 2rem;
    /* 32px */
    --font-size-4xl: 2.5rem;
    /* 40px */
    --font-size-5xl: 3rem;
    /* 48px */
    --font-size-6xl: 4rem;
    /* 64px */
    --font-size-7xl: 5rem;
    /* 80px */

    /* Spacing */
    --space-1: 0.5rem;
    /* 8px */
    --space-2: 1rem;
    /* 16px */
    --space-3: 1.5rem;
    /* 24px */
    --space-4: 2rem;
    /* 32px */
    --space-6: 3rem;
    /* 48px */
    --space-8: 4rem;
    /* 64px */
    --space-12: 6rem;
    /* 96px */

    /* Shadows & Glows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);

    --glow-cyan: 0 0 15px rgba(245, 9, 0, 0.4), 0 0 30px rgba(245, 9, 0, 0.2);
    --glow-magenta: 0 0 15px rgba(245, 9, 0, 0.3), 0 0 30px rgba(221, 221, 223, 0.1);
    --glow-purple: 0 0 15px rgba(221, 221, 223, 0.3), 0 0 30px rgba(245, 9, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 1rem;
    /* 16px */
    --radius-xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text-primary);
    background: var(--color-bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

h1 {
    font-size: var(--font-size-6xl);
}

h2 {
    font-size: var(--font-size-5xl);
}

h3 {
    font-size: var(--font-size-4xl);
}

h4 {
    font-size: var(--font-size-3xl);
}

h5 {
    font-size: var(--font-size-2xl);
}

h6 {
    font-size: var(--font-size-xl);
}

a {
    color: var(--color-accent-cyan);
    text-decoration: none;
    transition: all var(--transition-base);
}

a:hover {
    color: var(--color-accent-magenta);
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* === UTILITY CLASSES === */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.container-wide {
    max-width: 100%;
    padding: 0 var(--space-6);
}

.section {
    padding: var(--space-12) 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: var(--space-8);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--color-bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    box-shadow: var(--shadow-lg);
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(10, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-2);
    padding-bottom: var(--space-2);
}

.navbar-logo {
    display: flex;
    align-items: center;
    padding: var(--space-1) 0;
    gap: var(--space-2);
}

.navbar-logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.navbar-logo:hover img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(245, 9, 0, 0.5));
}

.navbar-menu {
    display: flex;
    gap: var(--space-4);
    list-style: none;
}

.navbar-menu a {
    color: var(--color-text-secondary);
    font-weight: 500;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
}

.navbar-menu a:not(.nav-btn-highlight)::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-menu a:not(.nav-btn-highlight):hover::after {
    width: 80%;
}

.navbar-menu a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}



.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: var(--space-1);
}

.navbar-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-accent-cyan);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.7);
    /* Dark overlay for text readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
    text-align: center;
    max-width: 900px;
    padding: var(--space-4);
}

.hero-title {
    font-size: var(--font-size-7xl);
    margin-bottom: var(--space-3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease-out;
}

.hero-tagline {
    font-size: var(--font-size-2xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: var(--space-2) var(--space-6);
    font-size: var(--font-size-lg);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, rgb(255, 30, 20) 0%, rgb(180, 0, 0) 100%);
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(245, 9, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 9, 0, 0.5), var(--shadow-lg);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    /* Maximize contrast */
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid rgba(245, 9, 0, 0.6);
    box-shadow: 0 4px 15px rgba(200, 10, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 60, 50, 0.1) 0%, rgba(180, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgb(245, 9, 0) 0%, rgb(150, 0, 0) 100%);
    border-color: rgba(255, 100, 90, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 9, 0, 0.5), 0 0 40px rgba(245, 9, 0, 0.3);
    color: #ffffff;
    /* Maximize contrast */
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary::before {
    background: var(--gradient-secondary);
}

.btn-secondary:hover::before {
    opacity: 1;
}

/* === SOCIAL MEDIA SECTION === */
.social-section {
    background: var(--color-bg-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--space-6);
    flex-wrap: wrap;
    margin-top: var(--space-6);
    padding: var(--space-4);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    color: var(--color-text-secondary);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    /* Removed masking/borders */
}

/* Remove all pseudo-elements used for borders/glows previously */
.social-link::before,
.social-link::after {
    display: none;
}

/* Hide the text label */
.social-link span {
    display: none;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.social-link:hover {
    transform: translateY(-8px) scale(1.1);
    color: #ffffff;
    box-shadow: none;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
    color: rgb(245, 9, 0);
    filter: drop-shadow(0 0 15px rgba(245, 9, 0, 0.6));
    background: transparent;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
}

.social-icon {
    font-size: 3.5rem;
    /* Large, premium icon size */
    width: auto;
    height: auto;
    margin-bottom: 0;
    color: var(--color-text-muted);
}

/* === BOOKING CALENDAR === */
.booking-section {
    background: var(--color-bg-primary);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.calendar-wrapper {
    background: var(--color-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
}

.calendar-month {
    font-size: var(--font-size-2xl);
    font-family: var(--font-heading);
}

.calendar-nav {
    display: flex;
    gap: var(--space-2);
}

.calendar-nav button {
    padding: var(--space-1) var(--space-2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-primary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.calendar-nav button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: var(--space-1);
}

.calendar-day-header {
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    padding: var(--space-1);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.calendar-day:hover:not(.disabled):not(.booked) {
    background: rgba(245, 9, 0, 0.2);
    border-color: var(--color-accent-cyan);
    color: #fff;
    box-shadow: 0 0 10px rgba(245, 9, 0, 0.3);
}

.calendar-day.available {
    color: var(--color-text-primary);
}

.calendar-day.booked {
    color: rgba(255, 255, 255, 0.3);
    background: rgba(40, 40, 40, 0.8);
    /* Darker background for clearer disabled state */
    cursor: not-allowed;
    text-decoration: line-through;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-day.selected {
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: var(--glow-cyan);
}

.calendar-day.disabled {
    color: var(--color-text-muted);
    opacity: 0.3;
    cursor: not-allowed;
}

/* === BOOKING FORM === */
.booking-form {
    background: var(--color-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
}

.form-group {
    margin-bottom: var(--space-3);
}

.form-label {
    display: block;
    margin-bottom: var(--space-1);
    font-weight: 600;
    color: var(--color-text-secondary);
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: var(--space-2);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-size: var(--font-size-base);
    font-family: inherit;
    transition: all var(--transition-base);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-accent-cyan);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

/* Fix for dropdown options on dark background */
.form-select option {
    background-color: #15151d;
    color: #ffffff;
    padding: 10px;
}

/* Fix for time/date picker icons */
::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

/* Custom Time Select Styling */
.time-select-wrapper {
    position: relative;
}

.time-select-wrapper .form-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.time-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    pointer-events: none;
}



/* === GALLERY === */
.gallery-section {
    background: var(--color-bg-secondary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    /* Cinematic standard for videos */
    border-radius: var(--radius-lg);
    border: 1px solid rgba(245, 9, 0, 0.3);
    overflow: hidden;
    cursor: pointer;
    background: #000;
    /* Dark background for videos */
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.gallery-item:hover {
    transform: scale(1.02);
    /* Subtle scale for video focus */
    border-color: rgba(245, 9, 0, 0.8);
    box-shadow: var(--glow-purple);
    z-index: 10;
}

.video-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-base);
}

.gallery-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.play-hint {
    display: none;
    /* Hidden per user request */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 2;
    pointer-events: none;
    /* Let clicks pass through to video */
}

.gallery-item:hover .play-hint {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.5);
}

/* Ensure text overlay sits on top of video */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-3);
    opacity: 1;
    /* Always show overlay gradient for readability */
    transition: opacity var(--transition-base);
    z-index: 3;
    pointer-events: none;
}

/* Text content always visible */
.gallery-overlay h4,
.gallery-overlay p {
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Optional: Slight lift on hover */
.gallery-item:hover .gallery-overlay h4,
.gallery-item:hover .gallery-overlay p {
    transform: translateY(-5px);
}

/* === TESTIMONIALS === */
.testimonials-section {
    background: var(--color-bg-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.testimonial-card {
    background: var(--color-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-4);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-purple);
    box-shadow: var(--glow-purple);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    font-style: italic;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-3);
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
}

.testimonial-name {
    font-weight: 600;
    color: var(--color-text-primary);
}

.testimonial-role {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* === PERFORMED AT === */
.performed-section {
    background: var(--color-bg-secondary);
}

.performed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-6);
    align-items: center;
}

.performed-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
    background: var(--color-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    opacity: 0.6;
    transition: all var(--transition-base);
    min-height: 100px;
}

.performed-logo:hover {
    opacity: 1;
    border-color: var(--color-accent-cyan);
}

.performed-logo img {
    max-height: 60px;
    filter: grayscale(100%) brightness(2);
    transition: filter var(--transition-base);
}

.performed-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

/* === FOOTER === */
.footer {
    background: var(--color-bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: var(--space-8) 0 var(--space-4);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

.footer-section h3 {
    font-size: var(--font-size-xl);
    margin-bottom: var(--space-3);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--color-text-secondary);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-accent-cyan);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-4);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
}

/* === FLOATING BUTTONS === */
.floating-buttons {
    position: fixed;
    bottom: var(--space-4);
    right: var(--space-4);
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-text-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all var(--transition-base);
    animation: float 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 9, 0, 0.5);
    background: linear-gradient(135deg, rgb(255, 50, 40) 0%, rgb(200, 0, 0) 100%);
    color: #ffffff;
    /* Ensure icon is white on hover */
}

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

.floating-btn.whatsapp:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root {
        --font-size-6xl: 3rem;
        --font-size-7xl: 3.5rem;
    }

    .booking-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --font-size-5xl: 2rem;
        --font-size-6xl: 2.5rem;
        --font-size-7xl: 3rem;
    }

    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--space-4);
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-base);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
    }

    .navbar-toggle {
        display: flex;
    }

    .hero-cta {
        flex-direction: column;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .performed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === SCROLL ANIMATIONS === */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === IFRAME STYLING === */
.iframe-container iframe {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.iframe-container iframe::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

:focus-visible {
    outline: 2px solid var(--color-accent-cyan);
    outline-offset: 2px;
}

/* === GALLERY MODAL === */
.modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    background: var(--color-bg-glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--space-2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 10000;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 10001;
}

.modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 20px rgba(245, 9, 0, 0.6);
}

.modal-media {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 85vh;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal-media video,
.modal-media img {
    max-width: 100%;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95vw;
        max-height: 80vh;
        padding: var(--space-1);
    }

    .modal-close {
        top: -10px;
        right: -10px;
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .modal-media {
        max-height: 75vh;
    }

    .modal-media video,
    .modal-media img {
        max-height: 75vh;
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .modal-content {
        max-width: 85vw;
        max-height: 85vh;
    }
}

/* Prevent body scroll when modal is open */
body.modal-open {
    overflow: hidden;
}

/* ============================================
   FORM VALIDATION STYLES
   ============================================ */
.error-message {
    color: var(--color-accent-orange);
    /* Red */
    font-size: var(--font-size-xs);
    margin-top: 4px;
    display: block;
    min-height: 1.2em;
    /* Prevent layout shift */
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.visible {
    opacity: 1;
}

.form-input.invalid,
.form-select.invalid,
.form-textarea.invalid {
    border-color: var(--color-accent-orange) !important;
    box-shadow: 0 0 0 2px rgba(255, 60, 50, 0.2);
}

.form-input.valid,
.form-select.valid,
.form-textarea.valid {
    border-color: #00ca4e !important;
    /* Green */
}