/* Hero Section */
.hero {
    position: relative;
    width: 100%; /* avoid horizontal overflow on mobile */
    height: 100vh;
    max-height: 100vh;
    min-height: 500px;
    overflow: hidden;
    margin: 0;
    padding: 0;
    background-color: #000;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
    will-change: opacity;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

/* Video container */
.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center; /* ensure image is centered */
    display: block;
    margin: 0;
    padding: 0;
}

/* Video styles */
video.hero-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #000;
}

/* Mobile video fixes */
@media (max-width: 768px) {
    video.hero-media {
        width: 100vw;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .video-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
}

/* Mobile Play Button */
.mobile-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.mobile-play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-button {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(2, 245, 196, 0.2);
    border: 2px solid #02f5c4;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 0;
    margin: 0;
}

.play-button i {
    color: #fff;
    font-size: 30px;
    margin-left: 5px;
}

.play-button:hover, .play-button:focus {
    background: rgba(2, 245, 196, 0.4);
    transform: scale(1.05);
    outline: none;
}

.play-button:active {
    transform: scale(0.95);
}

/* Show play button on mobile and touch devices */
@media (hover: none) and (pointer: coarse) {
    .mobile-play-overlay {
        display: flex;
    }
}

/* Hide play button on desktop */
@media (hover: hover) and (pointer: fine) {
    .mobile-play-overlay {
        display: none;
    }
}

/* Touch-friendly interactions */
*, *::before, *::after {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea, [contenteditable] {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

.btn, .nav-link, .dot, .product-dots .p-dot, .product-nav {
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(2, 245, 196, 0.2);
    touch-action: manipulation;
}

/* Mobile Hero Section & Slider Improvements */
@media (max-width: 768px) {
    .hero-slider {
        touch-action: pan-y;
        -webkit-overflow-scrolling: touch;
    }
    
    .slider-dots {
        bottom: 20px;
        padding: 12px 16px;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        border-radius: 25px;
        gap: 12px;
    }
    
    .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        transition: all 0.3s ease;
        touch-action: manipulation;
    }
    
    .dot.active {
        background: var(--primary);
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(2, 245, 196, 0.5);
    }
    
    .dot:hover {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }
    
    /* Product Slider Mobile Improvements */
    .product-slider {
        touch-action: pan-x;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-nav {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        touch-action: manipulation;
    }
    
    .product-nav:hover {
        background: rgba(0, 0, 0, 0.8);
        transform: translateY(-50%) scale(1.1);
    }
    
    .product-nav:active {
        transform: translateY(-50%) scale(0.95);
    }
    
    .product-dots {
        margin-top: 24px;
        gap: 12px;
    }
    
    .product-dots .p-dot {
        width: 12px;
        height: 12px;
        background: rgba(255, 255, 255, 0.3);
        touch-action: manipulation;
    }
    
    .product-dots .p-dot.active {
        background: var(--primary);
        transform: scale(1.2);
        box-shadow: 0 0 8px rgba(2, 245, 196, 0.4);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

/* Stronger black overlay for video slide */
.slide[data-type="video"] .slide-overlay {
    background: rgba(0, 0, 0, 0);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
}

@media (max-width: 768px) {
    .slider-dots {
        bottom: 15px;
        padding: 8px 12px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--primary);
}

/* Base Styles */
:root {
    --primary: #02F5C4;
    --secondary: #6F02F5;
    --dark: #0a0a0a;
    --light: #ffffff;
    --gray: #1a1a1a;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

p {
    margin-bottom: 1rem;
    color: #aaa;
}

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

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(2, 245, 196, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(2, 245, 196, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    margin-left: 15px;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    height: 40px;
}

.logo img {
    height: 100%;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

/* Sections */
.section {
    padding: 100px 5%;
}

/* Section spacing utilities */
.section.no-bottom-gap { padding-bottom: 0; }
.section.no-top-gap { padding-top: 0; }
.section.no-title-gap .section-title { margin-bottom: 20px; }
.section.small-top { padding-top: 20px; }
.section.small-bottom { padding-bottom: 20px; }

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

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--gray);
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    border: 1px solid #222;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    perspective: 1000px;
}

.portfolio-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    transform-style: preserve-3d;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(2, 245, 196, 0.3);
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-item:hover img {
    transform: scale(1.05);
    opacity: 0.9;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-content {
    padding: 20px;
    text-align: center;
}

.portfolio-content h3 {
    color: var(--dark);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.portfolio-item:hover .portfolio-content h3 {
    transform: translateY(0);
    opacity: 1;
}

.btn-small {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.portfolio-item:hover .btn-small {
    transform: translateY(0);
    opacity: 1;
}

.btn-small:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 6px 20px rgba(2, 245, 196, 0.4);
}

/* Mobile-friendly Forms */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--primary);
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        color: #fff;
        font-size: 16px;
        transition: all 0.3s ease;
        -webkit-appearance: none;
        appearance: none;
        touch-action: manipulation;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(2, 245, 196, 0.1);
        background: rgba(255, 255, 255, 0.08);
    }
    
    .form-group textarea {
        min-height: 120px;
        resize: vertical;
    }
    
    .btn-block {
        padding: 18px 24px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 12px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(2, 245, 196, 0.2);
    }
    
    .btn-block:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(2, 245, 196, 0.3);
    }
    
    .btn-block:active {
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 15px;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 2px rgba(2, 245, 196, 0.2);
}

/* Contact Page Styles */
.page-header {
    background: linear-gradient(135deg, rgba(2, 245, 196, 0.1), rgba(111, 2, 245, 0.1));
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.page-header p {
    font-size: 1.2rem;
    color: #aaa;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Container */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

/* Contact Info */
.contact-info {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.contact-info p {
    margin-bottom: 30px;
    color: #bbb;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: var(--dark);
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #fff;
}

.info-content p {
    margin: 0;
    color: #bbb;
    font-size: 0.95rem;
}

.business-hours {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.business-hours p {
    margin: 5px 0;
    display: flex;
    justify-content: space-between;
}

/* Contact Form */
.contact-form {
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2, 245, 196, 0.1);
}

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

.btn-block {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    color: var(--dark);
}

.btn-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Map Section */
.map-section {
    margin: 80px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info,
    .contact-form {
        padding: 20px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* Form Validation Styles */
.form-group.success input,
.form-group.success select,
.form-group.success textarea {
    border-color: #4BB543;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ff3333;
}

.error-message {
    color: #ff3333;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-group.error .error-message {
    display: block;
}

/* Product Slider */
.product-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.product-track-wrapper {
    overflow: hidden;
    width: 100%;
}

.product-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.product-slide {
    flex: 0 0 33.3333%;
}

@media (max-width: 992px) {
    .product-slide { flex: 0 0 50%; }
}

@media (max-width: 640px) {
    .product-slide { flex: 0 0 100%; }
}

.product-card {
    background: var(--gray);
    border: 1px solid #222;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    height: 100%;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 18px;
}

.product-info h3 { margin-bottom: 8px; font-size: 1.2rem; }
.product-info p { margin: 0; color: #bbb; font-size: 0.95rem; }

.product-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(0,0,0,0.5);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    transition: background 0.3s ease, transform 0.2s ease;
}

.product-nav:hover { background: rgba(0,0,0,0.7); transform: translateY(-50%) scale(1.05); }
.product-nav.prev { left: -6px; }
.product-nav.next { right: -6px; }

.product-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.product-dots .p-dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer; transition: transform 0.2s ease, background 0.2s ease;
}

.product-dots .p-dot.active { background: var(--primary); transform: scale(1.15); }

/* Footer */
footer {
    background: #0a0a0a;
    padding: 50px 5% 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #666;
    font-size: 0.9rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: var(--transition);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .logo img {
        max-width: 160px;
    }
}

/* Music About (music.html) */
#music-about .container {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

#music-about .about-card {
    background: radial-gradient(80% 120% at 50% 0%, rgba(2,245,196,0.08), rgba(111,2,245,0.05) 60%, transparent 100%),
                linear-gradient(145deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

#music-about img#music-logo {
    height: 48px;
    width: auto;
    margin-bottom: 12px;
    opacity: 0.95;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

#music-about #music-title {
    margin-bottom: 8px;
}

#music-about #music-desc {
    color: #bbb;
    margin: 0 auto;
    max-width: 720px;
}

@media (max-width: 768px) {
    #music-about .about-card { padding: 24px 18px; }
    #music-about img#music-logo { height: 40px; margin-bottom: 10px; }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(20, 20, 20, 0.98));
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 100px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.3rem;
        font-weight: 500;
        margin: 18px 0;
        color: rgba(255, 255, 255, 0.85);
        transition: all 0.3s ease;
        position: relative;
        padding: 8px 20px;
        border-radius: 8px;
    }
    
    .nav-links a:hover, .nav-links a.active {
        color: var(--primary);
        background: rgba(2, 245, 196, 0.1);
        transform: translateX(-5px);
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after, .nav-links a.active::after {
        width: 100%;
    }
    
    .logo img {
        max-width: 140px;
    }
    
    .hero {
        padding-top: 80px;
        height: auto;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        margin-top: 40px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .btn-outline {
        margin-left: 0;
    }
    
    .services-grid, 
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .section {
        padding: 60px 5%;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .portfolio-item {
        height: 200px;
    }
    
    .contact-form {
        padding: 25px 20px;
    }
    
    .social-links {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}
