/* ==========================================================================
   SpinCity Productionz - Midnight Club Theme CSS
   ========================================================================== */

:root {
    --font-base: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Midnight & Neon Orchid Palette */
    --color-bg: #05070f;              /* Deep black-blue */
    --color-bg-sec: #090c17;          /* Secondary dark section */
    --color-card-bg: rgba(14, 20, 38, 0.55);
    
    /* Neon Accents */
    --color-indigo: #6366f1;
    --color-pink: #d946ef;
    --color-cyan: #06b6d4;
    --color-violet: #8b5cf6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--color-indigo) 0%, var(--color-pink) 100%);
    --gradient-accent: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-violet) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(217, 70, 239, 0.15) 100%);
    
    /* Text */
    --color-text-title: #ffffff;
    --color-text-body: #94a3b8;
    --color-text-muted: #64748b;
    
    /* Borders & Shadow Glows */
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
    --border-glass-hover: 1px solid rgba(217, 70, 239, 0.35);
    --shadow-glass: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-neon-pink: 0 0 25px rgba(217, 70, 239, 0.25);
    
    --transition-speed: 0.35s;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base Styles
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-base);
    font-size: 15.5px;
    color: var(--color-text-body);
    background-color: var(--color-bg);
    line-height: 1.75em;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-title);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    color: var(--color-pink);
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-smooth);
}

a:hover {
    color: var(--color-indigo);
    text-shadow: 0 0 10px rgba(217, 70, 239, 0.3);
}

/* Glow Blobs */
.glow-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.16;
    z-index: 0;
    pointer-events: none;
    animation: drift 20s infinite alternate ease-in-out;
}

.glow-1 {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--color-indigo) 0%, var(--color-pink) 100%);
}

.glow-2 {
    top: 800px;
    right: -250px;
    background: radial-gradient(circle, var(--color-pink) 0%, var(--color-cyan) 100%);
    animation-delay: -5s;
    animation-duration: 25s;
}

.glow-3 {
    bottom: 500px;
    left: -300px;
    background: radial-gradient(circle, var(--color-cyan) 0%, var(--color-violet) 100%);
    animation-delay: -10s;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.1); }
}

.container {
    width: 90%;
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.glass-panel {
    background: var(--color-card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: var(--border-glass);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    transition: border var(--transition-speed) var(--transition-smooth),
                box-shadow var(--transition-speed) var(--transition-smooth);
}

.glass-panel:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

/* Subtitle Badges */
.subtitle-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.25);
}

/* Titles style */
h2.section-title {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-line {
    height: 3px;
    width: 80px;
    background: var(--gradient-primary);
    margin-bottom: 25px;
    border-radius: 5px;
}

.gradient-line-center {
    height: 3px;
    width: 80px;
    background: var(--gradient-primary);
    margin: 0 auto 30px;
    border-radius: 5px;
}

/* Button Styles */
.primary-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14.5px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(217, 70, 239, 0.3);
    transition: transform 0.2s var(--transition-smooth), box-shadow 0.2s var(--transition-smooth);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(217, 70, 239, 0.5), var(--shadow-neon-pink);
}

.secondary-btn {
    display: inline-block;
    padding: 14px 28px;
    background: rgba(255, 255, 255, 0.05);
    border: var(--border-glass);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14.5px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s, transform 0.2s var(--transition-smooth);
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Header & Sticky Navigation
   ========================================================================== */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(5, 7, 15, 0);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.4s var(--transition-smooth), 
                backdrop-filter 0.4s var(--transition-smooth);
}

#main-header.scrolled {
    background-color: rgba(5, 7, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    transition: padding 0.4s var(--transition-smooth);
}

#main-header.scrolled .header-container {
    padding: 12px 0;
}

#logo {
    max-height: 48px;
    width: auto;
    transition: max-height 0.4s var(--transition-smooth);
}

#main-header.scrolled #logo {
    max-height: 38px;
}

#top-menu-nav {
    display: flex;
    align-items: center;
}

#top-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

#top-menu a {
    color: #e2e8f0;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: 0.2px;
}

#top-menu a:hover,
#top-menu a.active {
    color: var(--color-pink);
}

.nav-contact-btn {
    background: var(--gradient-primary);
    padding: 10px 22px !important;
    border-radius: 50px;
    color: #ffffff !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.2);
}

.nav-contact-btn:hover {
    box-shadow: 0 6px 20px rgba(217, 70, 239, 0.4);
    transform: translateY(-1px);
}

/* Navigation Dropdowns */
.has-children {
    position: relative;
}

.has-children > a::after {
    content: '▼';
    font-size: 8px;
    margin-left: 6px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s;
}

.has-children:hover > a::after {
    transform: rotate(180deg);
}

.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 210px;
    background: #090c17;
    border: var(--border-glass);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s var(--transition-smooth);
}

.has-children:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.sub-menu li {
    margin-bottom: 4px;
}

.sub-menu li:last-child {
    margin-bottom: 0;
}

.sub-menu a {
    display: block;
    padding: 8px 12px;
    font-size: 13.5px !important;
    font-weight: 400 !important;
    border-radius: 6px;
    color: #cbd5e1 !important;
}

.sub-menu a:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--color-pink) !important;
}

/* Secondary nested sub-menu dropdowns */
.has-sub-children {
    position: relative;
}

.has-sub-children > a::after {
    content: '▶';
    font-size: 7px;
    float: right;
    margin-top: 5px;
}

.sub-menu .sub-sub-menu {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 8px;
}

.has-sub-children:hover .sub-sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 200px 0 150px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(180deg, rgba(5,7,15,0.4) 0%, rgba(5,7,15,0.9) 100%), url('assets/hero-bg.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 25%, rgba(99, 102, 241, 0.15) 0%, rgba(5, 7, 15, 0) 60%);
    pointer-events: none;
}

.hero-content {
    text-align: left;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 50%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-bottom-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.hero-bottom-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* ==========================================================================
   How We Work / Section styles
   ========================================================================== */
.how-we-work-section {
    padding: 100px 0;
    background: var(--color-bg);
}

.intro-text-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    font-size: 17px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.step-card {
    padding: 30px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.step-num {
    font-size: 54px;
    font-family: var(--font-heading);
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.8;
    line-height: 1;
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* ==========================================================================
   Services List (Overview Alternating rows)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--color-bg-sec);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.services-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-overview-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}

.service-overview-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-pink);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: var(--gradient-glow);
    border: var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon-box img {
    max-width: 48px;
    height: auto;
}

.service-overview-card h3 {
    font-size: 19px;
    margin-bottom: 15px;
}

.service-overview-card p {
    font-size: 14px;
    line-height: 1.6;
}

/* Detailed alternating service blocks */
.detail-services-section {
    padding: 100px 0;
}

.service-block-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-block-row:last-child {
    margin-bottom: 0;
}

.service-block-row.reverse .block-text {
    order: 2;
}

.service-block-row.reverse .block-image {
    order: 1;
}

.service-block-row h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.service-block-row p {
    margin-bottom: 25px;
}

.block-image-container {
    border-radius: 24px;
    overflow: hidden;
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
    transition: transform 0.5s var(--transition-smooth);
}

.block-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.block-image-container:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Our Team (Homepage Slider and bio cards)
   ========================================================================== */
.team-section {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-pink);
}

.team-img-wrapper {
    height: 340px;
    overflow: hidden;
    position: relative;
    border-bottom: var(--border-glass);
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s var(--transition-smooth);
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.team-role {
    font-size: 13.5px;
    color: var(--color-pink);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 12px;
}

.team-bio {
    font-size: 13.5px;
    line-height: 1.6;
}

/* ==========================================================================
   Videos Page (Recaps and loops)
   ========================================================================== */
.videos-section {
    padding: 100px 0;
}

.videos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.custom-video-card {
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s var(--transition-smooth);
}

.custom-video-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-pink);
}

.video-element-wrapper {
    position: relative;
    background: #000;
    line-height: 0;
}

.video-element-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-details {
    padding: 20px;
    background: rgba(14, 20, 38, 0.7);
}

.video-details h4 {
    font-size: 17px;
    margin-bottom: 5px;
}

.video-details span {
    font-size: 12px;
    color: var(--color-pink);
    font-weight: 600;
}

/* ==========================================================================
   Gallery Page (Masonry portfolio cards)
   ========================================================================== */
.gallery-section {
    padding: 100px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.gallery-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    height: 300px;
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s var(--transition-smooth);
}

.gallery-card:hover {
    transform: scale(1.02);
    border-color: var(--color-pink);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--transition-smooth);
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(5,7,15,0) 0%, rgba(5,7,15,0.7) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    transition: opacity 0.3s;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    font-size: 16px;
    color: #ffffff;
}

/* ==========================================================================
   Book Now Page (Booking form structure)
   ========================================================================== */
.book-now-section {
    padding: 100px 0;
}

.book-form-card {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 40px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-family: var(--font-base);
    font-size: 15px;
    transition: border-color 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-pink);
    background: rgba(255, 255, 255, 0.06);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: rgba(255,255,255,0.01);
    border: var(--border-glass);
    border-radius: 12px;
    padding: 20px;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.02);
    transition: all 0.2s;
}

.checkbox-item input[type="checkbox"]:checked {
    background: var(--color-pink);
    border-color: var(--color-pink);
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '✔';
    font-size: 10px;
    color: #ffffff;
}

.checkbox-label {
    font-size: 14.5px;
    color: var(--color-text-body);
}

/* Submit Button & Captcha */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-container label {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.captcha-container input {
    max-width: 100px;
    text-align: center;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--color-bg);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}

.footer-nav {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 30px;
    margin-bottom: 40px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-nav a {
    color: var(--color-text-body);
    font-weight: 500;
    font-size: 14.5px;
}

.footer-nav a:hover {
    color: var(--color-pink);
}

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-title);
}

.footer-logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 25px;
}

.social-follow h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #ffffff;
    border: var(--border-glass);
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s var(--transition-smooth);
}

.social-icon:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.social-icon.tiktok:hover {
    background-color: #000000;
    border-color: #00f2fe;
}

.social-icon.soundcloud:hover {
    background-color: #ff5500;
    border-color: #ff5500;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item .icon {
    color: var(--color-pink);
    display: flex;
    align-items: center;
}

.contact-item a {
    color: var(--color-text-body);
    font-size: 14.5px;
}

.contact-item a:hover {
    color: var(--color-pink);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    font-size: 13.5px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
    .grid-2,
    .service-block-row,
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-block-row.reverse .block-text {
        order: 1;
    }
    
    .service-block-row.reverse .block-image {
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 44px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    #top-menu-nav {
        position: absolute;
        top: 88px;
        left: 0;
        width: 100%;
        background-color: #05070f;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s var(--transition-smooth);
        border-bottom: 2px solid var(--color-pink);
    }
    
    #main-header.scrolled #top-menu-nav {
        top: 68px;
    }
    
    #top-menu-nav.open {
        max-height: 520px;
    }
    
    #top-menu {
        flex-direction: column;
        padding: 25px;
        align-items: stretch;
        gap: 15px;
    }
    
    #top-menu > li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    
    #top-menu > li:last-child {
        border-bottom: none;
    }
    
    .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        margin-top: 10px;
        background: transparent;
        border: none;
        transition: max-height 0.3s ease;
    }
    
    .has-children.active-mobile > .sub-menu {
        max-height: 300px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .social-icons, .contact-item {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .timeline-steps,
    .gallery-grid,
    .checkbox-grid,
    .form-group-row {
        grid-template-columns: 1fr;
    }
    
    .book-form-card {
        padding: 20px;
    }
}




/* ==========================================================================
   Retro Skeuomorphic Stereo Player Styles
   ========================================================================== */

.retro-stereo-container {
    position: fixed;
    top: 96px; /* Below main header */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 820px;
    height: 75px;
    z-index: 999;
    transition: top 0.4s var(--transition-smooth);
}

#main-header.scrolled + .retro-stereo-container {
    top: 75px; /* Adjust to match scrolled header height */
}

.stereo-unit {
    display: flex;
    height: 100%;
    width: 100%;
    background: #0f1220;
    border: 3px solid #2d314e;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.85), inset 0 0 15px rgba(0,0,0,0.9);
    position: relative;
    overflow: hidden;
}

.stereo-side-cabinet {
    width: 15px;
    height: 100%;
    background: linear-gradient(90deg, #3d1b04 0%, #200d02 100%);
    border-right: 1px solid #000;
    flex-shrink: 0;
}

.cabinet-right {
    border-right: none;
    border-left: 1px solid #000;
    background: linear-gradient(270deg, #3d1b04 0%, #200d02 100%);
}

.stereo-faceplate {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: linear-gradient(180deg, #161a30 0%, #0c0e1c 100%);
    position: relative;
}

/* Mechanical Selectors */
.stereo-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.stereo-label {
    font-family: monospace;
    font-size: 8px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
}

.stereo-knobs-row {
    display: flex;
    gap: 5px;
}

.stereo-key-btn {
    background: linear-gradient(180deg, #4b5563 0%, #1f2937 100%);
    border: 1.5px solid #111827;
    border-radius: 4px;
    color: #cbd5e1;
    font-family: monospace;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 8px;
    cursor: pointer;
    box-shadow: 0 2px 2px rgba(0,0,0,0.5);
    transition: all 0.1s;
}

.stereo-key-btn:active {
    transform: translateY(1.5px);
    box-shadow: none;
}

.stereo-key-btn.active {
    background: var(--color-pink);
    border-color: #000000;
    color: #ffffff;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.6);
    text-shadow: 0 0 5px rgba(255,255,255,0.6);
}

/* Cassette Deck */
.stereo-cassette-deck {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 52px;
    background: #090b14;
    border: 2px solid #22273f;
    border-radius: 6px;
    padding: 3px;
    box-shadow: inset 0 0 8px #000;
}

.cassette-door {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cassette-window {
    width: 90px;
    height: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid #1e293b;
    border-radius: 4px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 10px;
    position: relative;
    box-shadow: inset 0 0 5px #000;
}

.tape-reel {
    width: 15px;
    height: 15px;
    border: 2.5px dashed #475569;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.1s linear;
}

.tape-reel::after {
    content: '';
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

/* Spin reels when playing */
.retro-stereo-container.playing .tape-reel {
    animation: spinReels 3.5s linear infinite;
}

@keyframes spinReels {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.deck-label {
    font-family: monospace;
    font-size: 6.5px;
    color: #475569;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* LCD Display Screen */
.stereo-display-screen {
    width: 220px;
    height: 52px;
    background: #021205; /* Retro green screen background */
    border: 2px solid #142e16;
    border-radius: 6px;
    padding: 6px 12px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 10px #000;
}

.tuner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.15) 100%);
    pointer-events: none;
}

.display-lines {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    font-family: monospace;
}

#player-status-text {
    font-size: 10.5px;
    color: #39ff14; /* Neon green fluorescent */
    text-shadow: 0 0 4px rgba(57, 255, 20, 0.6);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.meter-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mono-label {
    font-size: 9px;
    color: #1b5e20;
    font-weight: 700;
}

.vu-meter {
    display: flex;
    gap: 2px;
    flex: 1;
}

.vu-segment {
    height: 6px;
    flex: 1;
    background: #072a0c; /* Unlit segments */
    border-radius: 1px;
}

.vu-segment.lit-green {
    background: #39ff14;
    box-shadow: 0 0 3px rgba(57, 255, 20, 0.8);
}

.vu-segment.lit-orange {
    background: #ffaa00;
    box-shadow: 0 0 3px rgba(255, 170, 0, 0.8);
}

.vu-segment.lit-red {
    background: #ff0055;
    box-shadow: 0 0 3px rgba(255, 0, 85, 0.8);
}

/* Volume Dial & Play Buttons */
.stereo-right-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dial-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.stereo-dial {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4b5563 0%, #1f2937 100%);
    border: 2px solid #111827;
    position: relative;
    box-shadow: 0 2px 4px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: transform 0.15s;
}

.dial-indicator {
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 2.5px;
    height: 7px;
    background: #ff0055;
    border-radius: 1px;
}

.dial-label {
    font-family: monospace;
    font-size: 7.5px;
    color: #64748b;
    font-weight: 700;
}

/* Retro play button */
.stereo-play-btn {
    background: linear-gradient(180deg, #374151 0%, #111827 100%);
    border: 2px solid #000;
    border-radius: 6px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 11px;
    padding: 8px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 5px rgba(0,0,0,0.5);
    transition: all 0.2s;
}

.stereo-play-btn:active {
    transform: translateY(2px);
    box-shadow: none;
}

.play-indicator-led {
    width: 6px;
    height: 6px;
    background: #ef4444; /* red when stopped */
    border-radius: 50%;
    box-shadow: 0 0 5px #ef4444;
}

.retro-stereo-container.playing .play-indicator-led {
    background: #10b981; /* green when playing */
    box-shadow: 0 0 8px #10b981;
}

/* Adjust page content padding top to account for stereo floating well */
body {
    padding-top: 80px;
}

@media (max-width: 820px) {
    .retro-stereo-container {
        position: relative;
        top: 0 !important;
        left: 0;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 0;
    }
    body {
        padding-top: 0;
    }
    .stereo-unit {
        height: auto;
        flex-direction: column;
    }
    .stereo-side-cabinet {
        display: none;
    }
    .stereo-faceplate {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
}
