/* === MUSIC SUB-SITE STYLES ===                                  */
/* ═══════════════════════════════════════════════════════════════ */

/* --- Hero Content --- */
.music-hero-content {
    text-align: center;
    z-index: 3;
    position: relative;
}

.music-hero-tag {
    display: inline-block;
    background: rgba(255, 87, 34, 0.2);
    color: var(--theme-color);
    border: 1px solid rgba(255, 87, 34, 0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.music-hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.music-hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.music-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: var(--theme-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
}

.music-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 87, 34, 0.5);
    background: var(--theme-hover);
}

/* --- Section Headers --- */
.music-section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.music-section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.music-section-header p {
    font-size: 1.05rem;
    color: var(--text-sec);
}

/* --- Music Services Module --- */
.music-services {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.music-service-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 3rem;
}

.music-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-sec);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.music-tab-btn:hover {
    color: var(--text-main);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.06);
}

.music-tab-btn.active {
    background: var(--theme-color);
    color: white;
    border-color: var(--theme-color);
    box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

/* Service Panels */
.music-service-panels {
    max-width: 1100px;
    margin: 0 auto;
}

.music-service-panel {
    display: none;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    padding: 2.5rem; /* New: Symmetrical outer padding */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    animation: panelFadeIn 0.4s ease;
}

.music-service-panel.active {
    display: flex;
}

@keyframes panelFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.panel-visual {
    flex: 0 0 45%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.panel-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.2, 1);
}

.music-service-panel:hover .panel-visual img {
    transform: scale(1.05);
}

.panel-info {
    flex: 1;
    padding: 0;
}

.panel-info h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.panel-desc {
    color: var(--text-sec);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.panel-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 0.8rem 1rem;
    background: var(--light-gray);
    border-radius: 12px;
}

.meta-item i {
    color: var(--theme-color);
    font-size: 1.1rem;
    margin-top: 2px;
}

.meta-item strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-sec);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.meta-item span {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* CTA Button */
.music-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--theme-color);
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

.music-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 87, 34, 0.4);
    background: var(--theme-hover);
}

.music-cta-btn-outline {
    background: transparent;
    color: var(--theme-color);
    border: 2px solid var(--theme-color);
    box-shadow: none;
}

.music-cta-btn-outline:hover {
    background: var(--theme-color);
    color: white;
}

/* --- Pricing Table --- */
.music-pricing-table {
    max-width: 1100px;
    margin: 4rem auto 0;
    text-align: center;
}

.music-pricing-table h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.pricing-card-highlight {
    border-color: var(--theme-color);
    box-shadow: 0 10px 30px rgba(255, 87, 34, 0.15);
}

.pricing-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--theme-color);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-icon {
    font-size: 2rem;
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.pricing-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.pricing-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--theme-color);
    margin-bottom: 1.2rem;
}

.pricing-value span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-sec);
    margin-left: 4px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.4rem 0;
    font-size: 0.9rem;
    color: var(--text-sec);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.pricing-features li::before {
    content: '✓ ';
    color: var(--theme-color);
    font-weight: 700;
}

.pricing-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-sec);
}

/* --- Band Services --- */
.music-band {
    padding: 6rem 5%;
    background: white;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto 3rem;
}

.band-block {
    background: var(--light-gray);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.band-block:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transform: translateY(-3px);
}

.band-block-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 87, 34, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--theme-color);
    margin-bottom: 1.5rem;
}

.band-block h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.band-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.band-detail-item {
    display: flex;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.band-detail-item strong {
    flex: 0 0 80px;
    font-size: 0.85rem;
    color: var(--text-sec);
}

.band-detail-item span {
    font-size: 0.95rem;
    color: var(--text-main);
}

/* Band Members */
.band-members {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.band-members h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.members-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.member-card {
    text-align: center;
    padding: 1.5rem;
    min-width: 140px;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: all 0.5s ease;
}

.member-card:hover .member-avatar {
    border-color: var(--accent-gold);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.member-card:hover .member-avatar img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.member-card h4 {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.member-card span {
    font-size: 0.85rem;
    color: var(--text-sec);
}

/* --- Equipment --- */
.music-equipment {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.equipment-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme-color);
}

.equipment-icon {
    font-size: 2rem;
    color: var(--theme-color);
    margin-bottom: 1rem;
}

.equipment-card h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-sec);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.equipment-list li::before {
    content: '●';
    color: var(--theme-color);
    margin-right: 0.5rem;
    font-size: 0.6rem;
    vertical-align: middle;
}

/* --- Studio Gallery --- */
.music-gallery {
    padding: 6rem 5%;
    background: white;
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-photo {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.photo-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-photo:hover .photo-label {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.music-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
}

.music-lightbox.active {
    display: flex;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close { top: 20px; right: 20px; }
.lightbox-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 20px; top: 50%; transform: translateY(-50%); }

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* --- Demo Audio Player --- */
.music-demos {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0e 100%);
    color: white;
}

.music-demos .music-section-header h2 { color: white; }
.music-demos .music-section-header p { color: rgba(255, 255, 255, 0.55); }

.demo-playlist {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.demo-track {
    display: grid;
    grid-template-columns: 50px 1fr 60px;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0 1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.demo-track:hover {
    background: rgba(255, 255, 255, 0.1);
}

.demo-track.playing {
    background: rgba(255, 87, 34, 0.15);
    border: 1px solid rgba(255, 87, 34, 0.3);
}

.demo-play-btn {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 42px;
    height: 42px;
    background: rgba(255, 87, 34, 0.2);
    border: none;
    border-radius: 50%;
    color: var(--theme-color);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.demo-track:hover .demo-play-btn,
.demo-track.playing .demo-play-btn {
    background: var(--theme-color);
    color: white;
}

.demo-info {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.demo-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.35rem;
    text-align: left;
}

.demo-tags {
    display: flex;
    justify-content: flex-start;
    gap: 0.4rem;
}

.demo-tag {
    font-size: 0.7rem;
    padding: 0.15rem 0.6rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.5);
}

.demo-duration {
    grid-column: 3;
    grid-row: 1;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    justify-self: end;
    text-align: right;
}

.demo-progress {
    grid-column: 2 / 4;
    grid-row: 2;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-top: 0.8rem;
    overflow: hidden;
}

.demo-progress-bar {
    height: 100%;
    width: 0%;
    background: var(--theme-color);
    border-radius: 3px;
    transition: width 0.3s linear;
}

/* --- Cases & Reviews --- */
.music-cases {
    padding: 6rem 5%;
    background: var(--light-gray);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
}

.case-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.case-badge {
    display: inline-block;
    background: rgba(255, 87, 34, 0.1);
    color: var(--theme-color);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.case-card h4 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.case-card p {
    font-size: 0.9rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.case-status {
    font-size: 0.85rem;
    color: #10b981;
    font-weight: 600;
}

.case-status i {
    margin-right: 0.3rem;
}

/* Reviews */
.reviews-container {
    max-width: 1100px;
    margin: 0 auto;
}

.reviews-container h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.review-card {
    display: flex;
    gap: 1.2rem;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.review-avatar {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--theme-color), #ff9800);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
}

.review-body p {
    font-size: 0.95rem;
    color: var(--text-sec);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author strong {
    display: block;
    font-size: 0.95rem;
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-sec);
}

/* --- Inquiry CTA Section --- */
.music-inquiry-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a0e 100%);
    text-align: center;
}

.inquiry-quick-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.inquiry-action-card {
    flex: 1 1 220px;
    max-width: 280px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    cursor: pointer;
}

.inquiry-action-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    border-color: var(--theme-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

/* Reset contact-link styles when inside an inquiry card to prevent the "pill" look */
.inquiry-action-card .contact-link {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
    color: inherit !important;
    border-radius: 0 !important;
}

.inquiry-action-card .contact-link:hover {
    background: none !important;
    transform: none !important;
}

.inquiry-action-card i {
    font-size: 2rem;
    color: var(--theme-color);
    margin-bottom: 1rem;
    display: block;
}

.inquiry-action-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.inquiry-action-card span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .music-service-panel.active {
        flex-direction: column;
        padding: 2rem; /* Consistent padding for mobile */
    }
    .panel-visual {
        flex: 0 0 auto;
        aspect-ratio: 16/9; /* Wider for mobile headers */
        border-radius: 12px; /* Slightly smaller radius for mobile */
    }
    .panel-visual img {
        min-height: 250px;
    }
    .panel-info {
        padding: 0;
    }
    .band-grid {
        grid-template-columns: 1fr;
    }
    .gallery-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .gallery-masonry {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .band-grid {
        grid-template-columns: 1fr;
    }
    .music-hero-title {
        font-size: 1.8rem;
    }
}
