/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Color Variables and Theme Settings */
:root {
    --bg-dark: #00071c;
    --bg-darker: #000412;
    --bg-glass: rgba(13, 17, 39, 0.65);
    --bg-glass-hover: rgba(29, 0, 51, 0.45);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-active: rgba(253, 4, 4, 0.3);
    
    --color-primary: #fd0404;      /* Laser Red */
    --color-primary-rgb: 253, 4, 4;
    --color-secondary: #8b01fd;    /* Laser Purple */
    --color-secondary-rgb: 139, 1, 253;
    --color-accent: #7e57c2;       /* Slate Purple */
    
    --text-main: #f3f4f6;          /* Near white */
    --text-muted: #9ca3af;         /* Cool gray */
    --text-dark: #0b0f19;          /* Deep dark */
    
    --font-titles: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
    
    --shadow-glow-red: 0 0 25px rgba(253, 4, 4, 0.35);
    --shadow-glow-purple: 0 0 25px rgba(139, 1, 253, 0.3);
    --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.7);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-darker);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Glowing Ambient Backgrounds */
body::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(139, 1, 253, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(253, 4, 4, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    pointer-events: none;
}

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

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

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

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 7, 28, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(0, 4, 18, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 70px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

header.scrolled .logo img {
    height: 42px;
}

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

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-main);
}

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

.btn-nav {
    background: transparent;
    border: 1px solid var(--color-primary);
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-main);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    z-index: -1;
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    border-color: transparent;
    box-shadow: var(--shadow-glow-red);
}

.btn-nav:hover::before {
    width: 100%;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-main);
    transition: var(--transition-smooth);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(253, 4, 4, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-red), 0 8px 25px rgba(139, 1, 253, 0.3);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-main);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(8px);
}

.btn-secondary:hover {
    background: var(--bg-glass-hover);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-purple);
}

/* Sections */
section {
    padding: 6.5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem auto;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-primary);
    font-weight: 700;
    margin-bottom: 0.8rem;
    display: block;
    text-shadow: 0 0 10px rgba(253, 4, 4, 0.3);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.section-title span {
    background: linear-gradient(135deg, var(--text-main) 30%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Glass Card */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-active);
    transform: translateY(-5px);
    background: rgba(18, 24, 54, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 4, 18, 0.7) 0%, var(--bg-dark) 90%),
                linear-gradient(90deg, rgba(0, 7, 28, 0.85) 0%, rgba(0, 4, 18, 0.4) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(139, 1, 253, 0.2);
}

.hero-text {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.hero-contact-info {
    margin-top: 3.5rem;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(253, 4, 4, 0.1);
    border: 1px solid rgba(253, 4, 4, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.hero-contact-details span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.hero-contact-details a {
    font-family: var(--font-titles);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Features Grid */
.features {
    position: relative;
    z-index: 3;
    margin-top: -80px;
    padding: 0 0 5rem 0;
}

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

.feature-card {
    padding: 2.5rem 2rem;
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(253, 4, 4, 0.1) 0%, rgba(139, 1, 253, 0.1) 100%);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem auto;
    color: var(--color-primary);
    font-size: 1.8rem;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    transform: rotateY(180deg);
    color: #fff;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    box-shadow: var(--shadow-glow-red);
}

.feature-title {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Event Types Grid */
.event-types {
    background-color: var(--bg-darker);
}

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

.event-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
    cursor: pointer;
}

.event-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.event-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 4, 18, 0.95) 0%, rgba(0, 4, 18, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.5rem;
    z-index: 2;
    transition: var(--transition-smooth);
}

.event-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-glow-red);
}

.event-card:hover .event-card-icon {
    transform: translateY(0);
    opacity: 1;
}

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

.event-card-title {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}

.event-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    transform: translateY(15px);
    transition: var(--transition-smooth);
}

.event-card:hover .event-card-desc {
    transform: translateY(0);
}

/* About / Presentation Section */
.about-section {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
    align-items: center;
}

.about-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-img-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
}

.about-img-wrapper.large {
    grid-row: span 2;
    height: 480px;
}

.about-img-wrapper.large img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-img-wrapper.small {
    height: 230px;
}

.about-img-wrapper.small img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-content .section-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.about-points {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-bottom: 2.5rem;
}

.about-point {
    display: flex;
    gap: 1.2rem;
}

.about-point-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(139, 1, 253, 0.1);
    border: 1px solid rgba(139, 1, 253, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-weight: bold;
    flex-shrink: 0;
}

.about-point-details h4 {
    font-size: 1.15rem;
    margin-bottom: 0.4rem;
}

.about-point-details p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Testimonial Slider */
.testimonials {
    background-color: var(--bg-darker);
}

.slider-container {
    position: relative;
    max-width: 850px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 1rem;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-card {
    text-align: center;
    padding: 3.5rem 3rem;
}

.quote-icon {
    font-size: 3rem;
    color: var(--color-primary);
    opacity: 0.25;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.testimonial-text {
    font-size: 1.35rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.7;
    color: var(--text-main);
}

.testimonial-author {
    font-family: var(--font-titles);
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-glass);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    background: var(--color-primary);
    width: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow-glow-red);
}

/* Call to Action Banner */
.cta-banner {
    padding: 7rem 0;
    background: radial-gradient(circle at 70% 30%, rgba(139, 1, 253, 0.15) 0%, rgba(0, 0, 0, 0) 60%),
                radial-gradient(circle at 10% 80%, rgba(253, 4, 4, 0.1) 0%, rgba(0, 0, 0, 0) 50%),
                var(--bg-dark);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Services Grid & Accordion */
.services-section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.service-page-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 380px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-card);
}

.service-page-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.service-page-card:hover img {
    transform: scale(1.1) rotate(1deg);
}

.service-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 7, 28, 0.2) 0%, rgba(0, 4, 18, 0.95) 85%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2.2rem;
    z-index: 2;
}

.service-page-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: white;
}

.service-page-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Pricing / Packs Table */
.pricing-section {
    background-color: var(--bg-darker);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: stretch;
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3.5rem 2.5rem;
    height: 100%;
}

.price-card.featured {
    border-color: var(--color-primary);
    background: rgba(18, 24, 54, 0.8);
    box-shadow: var(--shadow-glow-red);
}

.price-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--color-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: var(--shadow-glow-red);
}

.price-card-header {
    border-bottom: 1px solid var(--border-glass);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.price-name {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: white;
}

.price-amount {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: var(--font-titles);
    color: var(--text-main);
}

.price-amount span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.price-features li.included {
    color: var(--text-main);
}

.price-features li.not-included {
    opacity: 0.45;
}

.price-features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

.price-features li.not-included::before {
    content: '✗';
    color: var(--text-muted);
}

.price-card.featured .price-features li.included::before {
    color: var(--color-primary);
}

.price-card .btn {
    width: 100%;
}

/* FAQ Accordion */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-header {
    width: 100%;
    padding: 1.8rem 2.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-titles);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.faq-header:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    transition: var(--transition-smooth);
    color: var(--color-secondary);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 2.2rem 2.2rem 2.2rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

/* Open Accordion State */
.faq-item.active {
    border-color: var(--border-glass-active);
    background: rgba(18, 24, 54, 0.6);
}

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

/* Gallery Portfolio & Downloads */
.gallery-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.filter-btn {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-glow-red);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 6rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 4, 18, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 2;
    text-align: center;
}

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

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

.gallery-item-title {
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
    color: white;
    font-weight: 600;
}

.gallery-item-tag {
    font-size: 0.8rem;
    color: var(--color-primary);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Downloads / Backups List */
.downloads-section {
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

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

.download-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.download-icon {
    width: 55px;
    height: 55px;
    border-radius: 15px;
    background: rgba(139, 1, 253, 0.1);
    border: 1px solid rgba(139, 1, 253, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-details {
    flex-grow: 1;
}

.download-name {
    font-family: var(--font-titles);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: white;
}

.download-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.btn-download {
    color: var(--color-primary);
    font-size: 1.3rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(253, 4, 4, 0.05);
    border: 1px solid rgba(253, 4, 4, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-download:hover {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-glow-red);
}

/* Contact Grid & Form */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
}

.contact-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(253, 4, 4, 0.08);
    border: 1px solid rgba(253, 4, 4, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-info-card:nth-child(2) .contact-card-icon {
    background: rgba(139, 1, 253, 0.08);
    border-color: rgba(139, 1, 253, 0.15);
    color: var(--color-secondary);
}

.contact-card-details span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
}

.contact-card-details h4 {
    font-size: 1.15rem;
    color: white;
    font-weight: 600;
}

.contact-card-details p, .contact-card-details a {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-card-details a:hover {
    color: white;
}

/* Form Styling */
.contact-form-wrapper {
    padding: 3rem;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
    color: white;
}

.form-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: span 2;
}

.form-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    font-weight: 600;
}

.form-control {
    background: rgba(0, 4, 18, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 10px rgba(139, 1, 253, 0.15);
    background: rgba(0, 4, 18, 0.6);
}

textarea.form-control {
    resize: none;
    height: 130px;
}

.contact-form-wrapper .btn {
    margin-top: 1.5rem;
    width: 100%;
}

/* Footer styling */
footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
    padding: 5rem 0 2.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand img {
    height: 48px;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.social-link:hover {
    color: white;
    background: var(--color-secondary);
    border-color: transparent;
    box-shadow: var(--shadow-glow-purple);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.15rem;
    color: white;
    margin-bottom: 1.8rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--color-primary);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    display: block;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-contact-list li {
    display: flex;
    gap: 0.8rem;
}

.footer-contact-list i {
    color: var(--color-primary);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-glass);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 1.8rem;
}

.footer-legal-links a:hover {
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

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

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .about-section {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-images {
        order: -1;
    }
    
    .about-img-wrapper.large {
        height: 380px;
    }
    
    .about-img-wrapper.small {
        height: 180px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: var(--bg-darker);
        flex-direction: column;
        padding: 3rem 1.5rem;
        gap: 2rem;
        transition: var(--transition-smooth);
        z-index: 1000;
        border-top: 1px solid var(--border-glass);
    }
    
    header.scrolled .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .btn-nav-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .btn-nav {
        width: 80%;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-text {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-title {
        font-size: 2.4rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal-links {
        justify-content: center;
        width: 100%;
    }
}

/* Accordion max height logic helper classes */
.faq-content-active {
    max-height: 250px; /* adjusted dynamically via JS, but good fallback */
}


/* ===== Equipo (movido desde index, lo usa equipo.html) ===== */
.team { padding: 90px 0; }
.team .section-header { margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem 1.5rem; max-width: 860px; margin: 0 auto; }
.team-member { text-align: center; }
/* Retrato en vez de circulo: el circulo cortaba el logo de la polera del equipo */
.team-photo {
  width: 200px; height: 266px; margin: 0 auto 1.1rem;
  border-radius: 18px; padding: 4px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 15px; display: block; }
.team-member h4 { font-size: 1.3rem; font-weight: 700; }
@media (max-width: 768px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .team-photo { width: 150px; height: 200px; }
}

/* ===== Referidos (reemplaza al equipo en la portada) ===== */
.referidos { padding: 90px 0; }
.referidos .section-header { margin-bottom: 3rem; }
.referidos-grid {
  display: flex; flex-wrap: wrap;
  justify-content: center;      /* la ultima fila queda centrada, no descolgada */
  gap: 1.2rem;
  max-width: 1040px;
  margin: 0 auto;
}
.referido-item {
  flex: 0 0 auto;
  width: 184px; height: 104px;
  background: #fff;
  border-radius: 14px;
  padding: 0.85rem 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: var(--transition-smooth);
}
.referido-item:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.5); }
.referido-item img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; display: block; }
@media (max-width: 600px) {
  .referidos-grid { gap: 0.8rem; }
  .referido-item { width: 45%; max-width: 160px; height: 86px; padding: 0.7rem; }
}

/* ===== Videos del cliente (cabina y UlisesDJ) ===== */
.a74-video-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--bg-darker);
  aspect-ratio: 9 / 16;
  max-width: 380px;
  margin: 0 auto;
}
.a74-video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Boton de sonido: los videos parten en mute y el sonido se activa con un click */
.a74-sound-btn {
  position: absolute; right: 10px; bottom: 10px; z-index: 3;
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.45rem 0.8rem 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.35); border-radius: 999px;
  background: rgba(0, 0, 0, 0.55); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  color: #fff; font: inherit; font-size: 0.78rem; font-weight: 600; line-height: 1;
  cursor: pointer; transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.a74-sound-btn:hover { background: rgba(0, 0, 0, 0.75); transform: translateY(-1px); }
.a74-sound-btn:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.a74-sound-btn.sonando {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-color: transparent;
}
/* altavoz: mudo muestra la X, al sonar muestra las ondas */
.a74-sound-ico { display: inline-flex; width: 15px; height: 15px; flex: 0 0 15px; }
.a74-sound-ico svg { width: 100%; height: 100%; display: block; }
.a74-sound-ico .a74-ico-on { display: none; }
.a74-sound-btn.sonando .a74-sound-ico .a74-ico-mute { display: none; }
.a74-sound-btn.sonando .a74-sound-ico .a74-ico-on { display: inline; }
@media (max-width: 600px) {
  .a74-sound-btn { right: 8px; bottom: 8px; font-size: 0.72rem; padding: 0.4rem 0.7rem 0.4rem 0.55rem; }
}

/* ===== 3 razones para elegirnos ===== */
.a74-razones-intro {
  font-size: 1.15rem; font-weight: 700; margin: 0.4rem 0 1rem;
  color: var(--text-light, #fff);
}
.a74-razones { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.9rem; }
.a74-razones li {
  position: relative; padding-left: 1.8rem; line-height: 1.6;
  color: var(--text-muted, rgba(255, 255, 255, 0.75));
}
.a74-razones li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}
.a74-razones li strong { color: #fff; }

/* ===== UlisesDJ: texto + video ===== */
.a74-dj-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem; align-items: center; width: 100%;
}
.a74-dj-grid .a74-video-wrapper { max-width: 300px; }
@media (max-width: 860px) {
  .a74-dj-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .a74-dj-grid .a74-video-wrapper { max-width: 260px; }
}

/* ===== Logo animado del header =====
   El PNG va SIEMPRE debajo: si el video no autoplaya o no carga, el logo sigue ahí.
   El video se apila encima con mix-blend-mode screen — el negro del video no tapa
   nada y solo aporta el destello del reveal. */
.logo .logo-stack {
  position: relative; display: block;
  height: 50px; width: 50px;
  transition: var(--transition-smooth);
}
.logo .logo-stack img {
  height: 100%; width: 100%; object-fit: contain; display: block;
}
.logo .logo-stack video.logo-anim {
  position: absolute; inset: 0;
  height: 100%; width: 100%; object-fit: contain;
  mix-blend-mode: screen; pointer-events: none;
}
header.scrolled .logo .logo-stack { height: 42px; width: 42px; }

/* ==========================================================================
   Lugares frecuentes — centros de eventos (pedido de Andrés, 30-08)
   Texto chico y fijo, en columnas. No es grilla de logos: de los centros
   solo tenemos nombres, no imágenes.
   ========================================================================== */
.lugares {
    padding: 5rem 0;
    background-color: var(--bg-darker);
    border-top: 1px solid var(--border-glass);
}

.lugares-grid {
    list-style: none;
    margin: 2.5rem 0 0;
    padding: 0;
    columns: 4;
    column-gap: 2.5rem;
}

.lugar-item {
    break-inside: avoid;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0.42rem 0 0.42rem 1rem;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.lugar-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.95rem;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--color-primary);
    opacity: 0.55;
}

@media (max-width: 1100px) { .lugares-grid { columns: 3; } }
@media (max-width: 768px)  { .lugares-grid { columns: 2; column-gap: 1.5rem; } .lugares { padding: 3.5rem 0; } }
@media (max-width: 460px)  { .lugares-grid { columns: 1; } }

/* ==========================================================================
   Galería por tipo de evento (pedido de Susana en el Word del 23-08:
   "encima de cada cuadro definición del evento y al clickear te muestra
   galería de dicho evento")
   ========================================================================== */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.cat-card {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg-darker);
    box-shadow: var(--shadow-card);
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    transition: var(--transition-smooth);
}

.cat-card:hover,
.cat-card:focus-visible {
    border-color: var(--border-glass-active);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card), var(--shadow-glow-red);
    outline: none;
}

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.cat-card:hover .cat-card-img { transform: scale(1.07); }

.cat-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
    background: linear-gradient(360deg, rgba(0, 4, 18, 0.95) 0%, rgba(0, 4, 18, 0.55) 45%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
}

.cat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 0.9rem;
    box-shadow: var(--shadow-glow-red);
    transform: translateY(18px);
    opacity: 0;
    transition: var(--transition-smooth);
}

.cat-card:hover .cat-card-icon,
.cat-card:focus-visible .cat-card-icon { transform: translateY(0); opacity: 1; }

.cat-card-title {
    display: block;
    font-family: var(--font-titles);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
}

.cat-card-desc {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.45;
    margin-top: 0.6rem;
}

.cat-card-count {
    display: block;
    margin-top: 0.7rem;
    font-size: 0.78rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-primary);
    font-weight: 600;
}

/* ---- Visor de la categoría ---- */
.cat-viewer {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: var(--bg-darker);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;   /* 31-08: sin esto la capa invisible se come todos los clics */
}

.cat-viewer.is-open { opacity: 1; pointer-events: auto; }

.cat-viewer-bar {
    flex: 0 0 auto;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-glass);
    background: rgba(0, 4, 18, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cat-viewer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cat-viewer-title {
    font-family: var(--font-titles);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.cat-viewer-count {
    margin: 0.15rem 0 0;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.cat-viewer-close,
.foto-lb-close,
.foto-lb-nav {
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    background: var(--bg-glass);
    color: var(--text-main);
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.cat-viewer-close:hover,
.foto-lb-close:hover,
.foto-lb-nav:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.cat-viewer-body {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 2.5rem 0 4rem;
}

/* Masonry por columnas: respeta el alto natural de cada foto.
   Es a propósito — estas fotos llevan impresa la marca del evento al
   costado ("TERE & PEDRO") y un recorte cuadrado se la come. */
.foto-masonry {
    columns: 4;
    column-gap: 1.1rem;
}

.foto-item {
    break-inside: avoid;
    margin: 0 0 1.1rem;
    padding: 0;
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg-glass);
    cursor: zoom-in;
    display: block;
    width: 100%;
    transition: var(--transition-fast);
}

.foto-item:hover,
.foto-item:focus-visible {
    border-color: var(--border-glass-active);
    outline: none;
}

.foto-item img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1200px) { .foto-masonry { columns: 3; } }
@media (max-width: 820px)  { .foto-masonry { columns: 2; } }
@media (max-width: 520px)  { .foto-masonry { columns: 1; } .cat-viewer-title { font-size: 1.35rem; } }

/* ---- Lightbox de una foto ---- */
.foto-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(0, 4, 18, 0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 4.5rem 1.25rem 3.5rem;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;   /* 31-08: sin esto la capa invisible se come todos los clics */
}

.foto-lightbox.is-open { opacity: 1; pointer-events: auto; }

.foto-lb-img {
    max-width: min(1100px, calc(100% - 8rem));
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.75);
}

.foto-lb-close { position: absolute; top: 1.25rem; right: 1.25rem; }

.foto-lb-pos {
    position: absolute;
    bottom: 1.1rem;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 640px) {
    .foto-lightbox { padding: 4.5rem 0.75rem 3.5rem; gap: 0.5rem; }
    .foto-lb-img { max-width: calc(100% - 6rem); }
    .foto-lb-close, .foto-lb-nav { width: 40px; height: 40px; }
}

body.no-scroll { overflow: hidden; }
