/* ═══════════════════════════════════════════════════════════════════════════
   BARBERO CRUISE SOUND - Landing Page Styles
   Theme: Disco Retro meets Modern Premium
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS Variables
   ───────────────────────────────────────────────────────────────────────────── */
:root {
    /* Backgrounds */
    --bg-dark: #0a0a0f;
    --bg-card: rgba(20, 20, 30, 0.6);
    --bg-card-hover: rgba(30, 30, 45, 0.8);

    /* Primary - Neon Pink/Magenta (inspired by original) */
    --primary: #ff0a6c;
    --primary-light: #ff3d8a;
    --primary-dark: #cc0856;
    --primary-glow: rgba(255, 10, 108, 0.4);

    /* Secondary - Electric Cyan */
    --secondary: #00f0ff;
    --secondary-glow: rgba(0, 240, 255, 0.3);

    /* Accent - Gold/Amber for 70s vibe */
    --accent: #ffd700;
    --accent-glow: rgba(255, 215, 0, 0.3);

    /* Neutrals */
    --white: #ffffff;
    --gray-100: #e5e5e5;
    --gray-200: #b3b3b3;
    --gray-300: #808080;
    --gray-400: #4d4d4d;
    --gray-500: #2a2a35;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #ff0a6c 0%, #ff6b2b 50%, #ffd700 100%);
    --gradient-disco: linear-gradient(135deg, #ff0a6c 0%, #00f0ff 50%, #9d4edd 100%);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 120px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Reset & Base
   ───────────────────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Main Background
   ───────────────────────────────────────────────────────────────────────────── */
.main-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center, #1a1a2e 0%, #0a0a0f 100%);
}

.main-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20% 30%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 60% 70%, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
    background-size: 300px 300px;
    opacity: 0.5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Navigation
   ───────────────────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-medium);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-cruise {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.logo-sound {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-200);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-200);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--white);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    padding: 12px 24px;
    background: var(--gradient-primary);
    border-radius: 50px;
    font-weight: 600;
    color: var(--white) !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links.active {
        right: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Hero Section
   ───────────────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, var(--primary-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, var(--secondary-glow) 0%, transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 10, 108, 0.15);
    border: 1px solid rgba(255, 10, 108, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    color: var(--gray-100);
    animation: fadeInUp 0.8s ease 0.1s both;
}

.title-highlight {
    display: block;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.word-rotate {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.2em;
    vertical-align: bottom;
}

.word-rotate span {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordRotate 6s infinite;
}

@keyframes wordRotate {

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

    25%,
    40% {
        transform: translateY(-100%);
    }

    50%,
    65% {
        transform: translateY(-200%);
    }

    75%,
    90% {
        transform: translateY(-300%);
    }

    100% {
        transform: translateY(-300%);
    }
}

.title-accent {
    display: block;
    background: var(--gradient-disco);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--gray-200);
    margin-bottom: 40px;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-subtitle strong {
    color: var(--accent);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.5s both;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-medium);
    border: none;
}

.btn svg {
    width: 18px;
    height: 18px;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--gray-400);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gray-300);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   Setup Showcase Section
   ───────────────────────────────────────────────────────────────────────────── */
.setup-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(13, 20, 33, 0) 0%, rgba(20, 27, 45, 0.5) 50%, rgba(13, 20, 33, 0) 100%);
    position: relative;
    overflow: hidden;
}

.setup-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.setup-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.setup-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

.setup-image-container:hover .setup-img {
    transform: scale(1.05);
}

.setup-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 30%, rgba(255, 0, 107, 0.1));
    pointer-events: none;
}

.setup-details .section-title {
    margin: 10px 0 20px;
    text-align: left;
}

.setup-intro {
    font-size: 1.1rem;
    color: var(--gray-200);
    line-height: 1.7;
    margin-bottom: 30px;
}

.tech-specs {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.spec-item {
    padding-left: 20px;
    border-left: 2px solid var(--primary);
}

.spec-item h4 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.spec-item p {
    font-size: 0.9rem;
    color: var(--gray-200);
}

.setup-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(94, 230, 153, 0.1);
    border: 1px solid rgba(94, 230, 153, 0.3);
    border-radius: 100px;
    color: #5ee699;
    font-size: 0.85rem;
    font-weight: 500;
}

.setup-badge svg {
    width: 20px;
    height: 20px;
}

@media (max-width: 992px) {
    .setup-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.stat {
    text-align: left;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-300);
}

/* Hero Visual - Vinyl Player */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.8;
}

.vinyl-player {
    width: 400px;
    height: 400px;
    position: relative;
}

.vinyl {
    width: 350px;
    height: 350px;
    background:
        radial-gradient(circle at center, #111 0%, #111 15%, transparent 15%),
        repeating-radial-gradient(circle at center, #222 0px, #222 1px, #111 2px, #111 20px),
        conic-gradient(from 0deg, #1a1a1a, #333, #1a1a1a, #333, #1a1a1a);
    border-radius: 50%;
    animation: vinylSpin 8s linear infinite;
    box-shadow:
        0 0 60px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.vinyl-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.vinyl-label span:first-child {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.vinyl-label span:last-child {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 2px;
}

.vinyl-arm {
    position: absolute;
    top: 20px;
    right: 0;
    width: 120px;
    height: 8px;
    background: linear-gradient(90deg, #666, #888, #666);
    border-radius: 4px;
    transform-origin: right center;
    transform: rotate(-30deg);
}

.vinyl-arm::after {
    content: '';
    position: absolute;
    left: -10px;
    top: -6px;
    width: 20px;
    height: 20px;
    background: #555;
    border-radius: 50%;
}

@keyframes vinylSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
    font-size: 0.8rem;
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--gray-300);
    border-bottom: 2px solid var(--gray-300);
    transform: rotate(45deg);
}

@keyframes bounce {

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

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

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

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

/* ─────────────────────────────────────────────────────────────────────────────
   Section Styles
   ───────────────────────────────────────────────────────────────────────────── */
section {
    position: relative;
    z-index: 1;
    padding: var(--section-padding) 0;
}

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

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 10, 108, 0.1);
    border: 1px solid rgba(255, 10, 108, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-200);
    max-width: 65ch;
    margin: 0 auto;
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Services Section
   ───────────────────────────────────────────────────────────────────────────── */
.services {
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.5) 50%, transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-medium);
}

.service-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 10, 108, 0.2);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, rgba(255, 10, 108, 0.1), rgba(0, 240, 255, 0.05));
    border-color: rgba(255, 10, 108, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 10, 108, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.service-card p {
    color: var(--gray-200);
    line-height: 1.7;
}

.service-features {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-features li {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray-100);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Decades Section
   ───────────────────────────────────────────────────────────────────────────── */
.decades {
    padding: var(--section-padding) 0;
}

.decades-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.decade-card {
    position: relative;
    height: 480px;
    /* Increased height */
    border-radius: 24px;
    overflow: visible;
    /* Prevent clipping of the singer head */
    cursor: pointer;
    transition: var(--transition-medium);
}

.decade-card:hover {
    transform: translateY(-20px);
}

.decade-bg {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    transition: var(--transition-slow);
    overflow: hidden;
    /* Background itself should be clipped */
    z-index: 1;
}

.decade-card:hover .decade-bg {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.decade-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
    border-radius: 0 0 24px 24px;
    z-index: 5;
}

.decade-number {
    font-family: var(--font-display);
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.decade-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.decade-content p {
    color: var(--gray-200);
    font-size: 0.95rem;
}

.decade-number {
    position: absolute;
    bottom: -20px;
    right: 10px;
    font-size: 8rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    z-index: 5;
    line-height: 1;
}

.decade-singer {
    position: absolute;
    bottom: 0;
    right: -10px;
    width: 110%;
    /* Slightly wider than card */
    height: 125%;
    /* Taller to pop out */
    object-fit: contain;
    object-position: bottom right;
    z-index: 10;
    transform: translateY(0);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.decade-card:hover .decade-singer {
    transform: translateY(-15px) scale(1.05);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Adjustments per decade */
.decade-card[data-decade="70"] .decade-singer {
    right: -25px;
}

.decade-card[data-decade="80"] .decade-singer {
    right: -20px;
    height: 130%;
}

.decade-card[data-decade="90"] .decade-singer {
    right: -10px;
}

/* Keep text layout normal for 70s card */
.decade-card[data-decade="70"] .decade-content {
    position: relative;
    z-index: 5;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Territory Section
   ───────────────────────────────────────────────────────────────────────────── */
.territory {
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.5) 50%, transparent);
}

.territory-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.territory-text .section-tag {
    margin-bottom: 16px;
}

.territory-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.territory-text>p {
    color: var(--gray-200);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

.territory-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.territory-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-weight: 500;
}

.territory-list svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.territory-note {
    padding: 20px;
    background: rgba(255, 10, 108, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 12px 12px 0;
    color: var(--gray-100);
    font-size: 0.95rem;
}

.territory-map {
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background:
        radial-gradient(ellipse at center, rgba(255, 10, 108, 0.1) 0%, transparent 70%),
        linear-gradient(rgba(30, 30, 40, 0.8), rgba(30, 30, 40, 0.9));
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M20 80 Q30 60 50 50 Q70 40 80 20' stroke='%23ff0a6c' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3Cpath d='M10 60 Q40 50 60 40 Q80 30 90 10' stroke='%2300f0ff' stroke-width='0.5' fill='none' opacity='0.3'/%3E%3C/svg%3E") center/contain no-repeat;
    opacity: 0.5;
}

.map-pin {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-pin:hover {
    transform: rotate(-45deg) scale(1.2);
}

.city-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    white-space: nowrap;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 10, 108, 0.3);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0;
    transition: var(--transition-fast);
    pointer-events: none;
}

.map-pin:hover .city-label {
    opacity: 1;
    bottom: -35px;
}

.pin-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 40px;
    height: 40px;
    background: var(--primary-glow);
    border-radius: 50%;
    animation: pinPulse 2s infinite;
}

.pin-1 {
    top: 30%;
    left: 60%;
}

.pin-2 {
    top: 50%;
    left: 40%;
}

.pin-3 {
    top: 70%;
    left: 30%;
}

@keyframes pinPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) rotate(45deg) scale(1.5);
        opacity: 0;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Events Section
   ───────────────────────────────────────────────────────────────────────────── */
.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
}

.event-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(255, 10, 108, 0.2);
    box-shadow: var(--shadow-glow);
}

.event-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.event-card p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Contact Section
   ───────────────────────────────────────────────────────────────────────────── */
.contact {
    background: linear-gradient(180deg, transparent, rgba(20, 20, 30, 0.8));
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--bg-card);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 60px;
}

.contact-info .section-tag {
    margin-bottom: 16px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info>p {
    color: var(--gray-200);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: var(--transition-fast);
}

.contact-item:hover {
    background: rgba(255, 10, 108, 0.1);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 10, 108, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-100);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(255, 10, 108, 0.05);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23808080'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 24px;
}

.form-group select option {
    background: var(--bg-dark);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Footer
   ───────────────────────────────────────────────────────────────────────────── */
.footer {
    background: rgba(10, 10, 15, 0.95);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo-cruise,
.footer-brand .logo-sound {
    display: block;
}

.footer-brand p {
    margin-top: 16px;
    color: var(--gray-300);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--gray-300);
    margin-bottom: 12px;
    transition: var(--transition-fast);
}

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

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

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary);
}

.social-icons svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.9rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Bio Section
   ───────────────────────────────────────────────────────────────────────────── */
.bio-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.bio-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    border-radius: 30px;
    background: linear-gradient(145deg, rgba(255, 10, 108, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.bio-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.bio-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-200);
    margin-bottom: 20px;
}

.bio-content p:last-child {
    font-style: italic;
    color: var(--primary);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .bio-content h2 {
        font-size: 2rem;
    }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Responsive Design
   ───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .services-grid,
    .events-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-card.featured {
        grid-column: span 2;
    }

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

    .decade-card {
        height: 300px;
    }

    .territory-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .nav-links {
        display: flex;
        /* Restoration: was 'none' which broke the menu */
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        margin-top: 40px;
    }

    .stat {
        text-align: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 40px;
    }

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

    .services-grid,
    .events-grid {
        grid-template-columns: 1fr;
    }

    .service-card.featured {
        grid-column: span 1;
    }

    .setup-image-container {
        margin-bottom: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand p {
        margin: 16px auto 0;
    }

    .social-icons {
        justify-content: center;
    }
}

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

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

    .contact-wrapper {
        padding: 24px;
        border-radius: 20px;
    }

    .decade-card {
        height: 250px;
    }
}