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

:root {
    --bg-main: #070708;
    --bg-card: #111113;
    --bg-header: rgba(10, 10, 12, 0.85);
    --text-primary: #ffffff;
    --text-secondary: #9ea0a5;
    --brand-pink: #f70a58;
    --brand-pink-glow: rgba(247, 10, 88, 0.35);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #252528;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-pink);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}
a:hover {
    color: var(--brand-pink);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* PJAX Loading Bar */
#pjax-loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--brand-pink);
    box-shadow: 0 0 10px var(--brand-pink);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Header & Menu System */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: var(--bg-header);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
}

.logo-area {
    width: 170px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-area img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    padding-left: 40px;
}

.main-menu {
    display: flex;
    list-style: none;
    align-items: center;
}

.main-menu > li {
    position: relative;
    padding: 30px 18px;
}

.main-menu > li > a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-menu > li:hover > a {
    color: var(--brand-pink);
}

/* Submenu dropdown */
.main-menu li ul {
    position: absolute;
    top: 90px;
    left: 0;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none;
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
}

.main-menu li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-menu li ul li {
    padding: 0;
}

.main-menu li ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.main-menu li ul li a:hover {
    color: var(--brand-pink);
    background: rgba(255, 255, 255, 0.03);
    padding-left: 24px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switcher {
    display: flex;
    gap: 10px;
}

.lang-switcher a {
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.lang-switcher a.active {
    opacity: 1;
    filter: drop-shadow(0 0 4px var(--brand-pink));
}

.lang-switcher a:hover {
    opacity: 1;
    transform: scale(1.1);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Sidebars Floating Navigation */
.sidebar-social-left {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
}

.sidebar-music-right {
    position: fixed;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 999;
}

.sidebar-social-left a {
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 19, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.sidebar-social-left a:hover {
    color: var(--brand-pink);
    transform: translateX(5px) scale(1.1);
    box-shadow: 0 0 15px var(--brand-pink-glow);
    border-color: var(--brand-pink);
}

/* Right Sidebar: Dynamic slide-out rectangle tabs */
.sidebar-music-right {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1001;
    align-items: flex-end;
}

.sidebar-music-right a {
    height: 40px;
    width: 45px; /* Collapsed view */
    background: rgba(17, 17, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
    border-radius: 6px 0 0 6px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--text-primary);
    box-shadow: -2px 4px 12px rgba(0, 0, 0, 0.4);
    transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), background-color 0.2s, box-shadow 0.2s;
    overflow: hidden;
    text-decoration: none;
    padding-left: 14px;
}

.sidebar-music-right a i {
    font-size: 16px;
    min-width: 20px;
    text-align: center;
    margin-right: 12px;
    transition: transform 0.2s;
}

.sidebar-music-right a span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s 0.05s;
    color: white;
}

.sidebar-music-right a:hover {
    width: 150px; /* Expanded view */
    background: var(--brand-pink);
    border-color: var(--brand-pink);
    box-shadow: -4px 4px 15px rgba(247, 10, 88, 0.4);
    color: white;
}

.sidebar-music-right a:hover span {
    opacity: 1;
}

.sidebar-music-right a:hover i {
    transform: scale(1.1);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 95px; /* Stay above the media player if active */
    width: 55px;
    height: 55px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 8px rgba(37, 211, 102, 0.3);
    transition: var(--transition-smooth);
}

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

/* Main Content Wrapper */
#main-content {
    padding-top: 90px;
    min-height: calc(100vh - 90px);
}

/* Page Section Banners */
.page-banner {
    position: relative;
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(7, 7, 8, 0.3) 0%, var(--bg-main) 100%);
}

.page-banner-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-banner-content h1 {
    font-size: 55px;
    text-transform: uppercase;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

.page-banner-content p {
    font-size: 18px;
    color: var(--brand-pink);
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-top: 10px;
}

/* Core Slider Banner (1900x600px) */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    background: #000;
}

/* Responsive slider heights to preserve image crop */
@media (max-width: 1400px) {
    .hero-slider-container {
        height: 480px;
    }
}
@media (max-width: 992px) {
    .hero-slider-container {
        height: 380px;
    }
    .slide-title {
        font-size: 36px !important;
    }
}
@media (max-width: 768px) {
    .hero-slider-container {
        height: 300px;
    }
    .slide-title {
        font-size: 26px !important;
        margin-bottom: 12px !important;
    }
    .slide-subtitle {
        font-size: 11px !important;
        letter-spacing: 2px !important;
    }
    .slide-content {
        bottom: 10% !important;
        left: 5% !important;
        max-width: 90% !important;
    }
}
@media (max-width: 480px) {
    .hero-slider-container {
        height: 220px;
    }
    .slide-title {
        font-size: 18px !important;
    }
    .slide-content .btn {
        padding: 8px 16px !important;
        font-size: 11px !important;
    }
}

.hero-slider {
    display: flex;
    width: 400%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
    width: 25%;
    height: 100%;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), var(--bg-main));
}

.slide-content {
    position: absolute;
    bottom: 15%;
    left: 8%;
    max-width: 600px;
    z-index: 10;
}

.slide-subtitle {
    color: var(--brand-pink);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: 0.5s ease 0.2s;
}

.slide-title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    transform: translateY(30px);
    opacity: 0;
    transition: 0.5s ease 0.4s;
}

.slide.active-slide .slide-subtitle,
.slide.active-slide .slide-title {
    transform: translateY(0);
    opacity: 1;
}

/* Slider Controls */
.slider-dots {
    position: absolute;
    left: 8%;
    bottom: 8%;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 12;
}

.slider-dot {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active-dot {
    color: var(--brand-pink);
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    right: 8%;
    bottom: 8%;
    display: flex;
    gap: 15px;
    z-index: 12;
}

.slider-arrow {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(17, 17, 19, 0.8);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: white;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--brand-pink);
    background: var(--brand-pink);
    color: white;
    box-shadow: 0 0 10px var(--brand-pink-glow);
}

.story-prev, .story-next {
    width: 30px !important;
    height: 30px !important;
    font-size: 10px !important;
    border-radius: 4px !important;
}

/* Instagram Story Box */
.story-container {
    width: 100%;
    padding: 30px 4%;
    background: #09090b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.story-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.story-slider {
    display: flex;
    gap: 20px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.story-item {
    flex: 0 0 calc(8.333% - 17px); /* Holds 12 items */
    min-width: 85px;
    text-align: center;
    cursor: pointer;
}

.story-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(45deg, #f70a58, #ff6c00, #f70a58);
    margin: 0 auto 8px;
    transition: var(--transition-fast);
}

.story-item:hover .story-circle {
    transform: scale(1.05);
}

.story-circle img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #09090b;
}

.story-item span {
    font-size: 11px;
    color: var(--text-secondary);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Section Common Design */
.section {
    padding: 80px 8%;
    position: relative;
}

.section-alt {
    background-color: #0c0c0e;
}

.section-title-wrap {
    margin-bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-subtitle {
    color: var(--brand-pink);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.section-title {
    font-size: 38px;
    text-transform: uppercase;
}

/* Tour & Dates Widget */
.tour-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tour-row {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 20px 30px;
    display: grid;
    grid-template-columns: 150px 1.5fr 1fr 150px;
    align-items: center;
    gap: 20px;
    transition: var(--transition-fast);
}

.tour-row:hover {
    border-color: rgba(247, 10, 88, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.tour-date-box {
    display: flex;
    flex-direction: column;
}

.tour-date-day {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--brand-pink);
    line-height: 1;
}

.tour-date-month {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.tour-info h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.tour-info p {
    color: var(--text-secondary);
    font-size: 14px;
}

.tour-countdown {
    font-family: var(--font-heading);
    font-size: 13px;
    color: var(--text-secondary);
    display: flex;
    gap: 8px;
}

.tour-countdown span {
    color: var(--brand-pink);
    font-weight: 800;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    border-radius: 30px;
    border: 1px solid var(--brand-pink);
    background: transparent;
    color: var(--text-primary);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-fast);
}

.btn:hover {
    background: var(--brand-pink);
    box-shadow: 0 0 15px var(--brand-pink-glow);
    color: white;
}

.btn-solid {
    background: var(--brand-pink);
    color: white;
}

.btn-solid:hover {
    background: transparent;
    color: var(--text-primary);
}

/* Playlist Embed Carousel */
.playlist-carousel-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.playlist-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.playlist-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    padding: 15px;
}

/* Album grid / Carousel (4 items width) */
.album-carousel-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.album-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: var(--transition-smooth);
}

.album-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 10, 88, 0.2);
}

.album-cover-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

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

.album-card:hover .album-cover-wrap img {
    transform: scale(1.05);
}

.album-hover-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.album-cover-wrap:hover .album-hover-play {
    opacity: 1;
}

.play-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--brand-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    box-shadow: 0 0 15px var(--brand-pink);
    transition: transform 0.2s ease;
}

.play-circle:hover {
    transform: scale(1.1);
}

.album-details {
    padding: 20px;
    text-align: center;
}

.album-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.album-details p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 15px;
}

.album-platforms {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 16px;
}

.album-platforms a {
    color: var(--text-secondary);
}

.album-platforms a:hover {
    color: var(--brand-pink);
    transform: scale(1.15);
}

/* Media Gallery Grid (Lightbox) */
.gallery-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

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

.gallery-card:hover img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-overlay h4 {
    font-size: 16px;
    font-family: var(--font-heading);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 80%;
    max-height: 80%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 36px;
    cursor: pointer;
}

/* Blog/News Grid Carousel */
.blog-carousel-wrap {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.blog-banner-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-banner-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-banner-wrap img {
    transform: scale(1.05);
}

.blog-details {
    padding: 20px;
}

.blog-date {
    font-size: 11px;
    color: var(--brand-pink);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.blog-details h3 {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-details p {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Guest reviews / Guestbook styling */
.reviews-nav-controls button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.reviews-nav-controls button:hover {
    background: var(--brand-pink) !important;
    border-color: var(--brand-pink) !important;
    color: white !important;
    transform: scale(1.05);
}

.reviews-slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}

.reviews-slider {
    display: flex;
    gap: 30px;
}

.review-item {
    flex: 0 0 100%;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    gap: 30px;
    align-items: center;
}

.review-user-img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--brand-pink);
}

.review-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-body {
    flex-grow: 1;
}

.review-stars {
    color: #ffb400;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.review-user-info h4 {
    font-size: 16px;
}

.review-user-info span {
    font-size: 12px;
    color: var(--text-secondary);
}

/* Review Submission Form Modal */
.review-modal-trigger {
    margin-top: 20px;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.modal-window {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    width: 500px;
    max-width: 90%;
    border-radius: 16px;
    padding: 30px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-secondary);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 13px;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 10px 15px;
    background: #17171a;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-pink);
    box-shadow: 0 0 5px var(--brand-pink-glow);
}

/* Interactive Map & Contact Form block */
.footer-map-section {
    position: relative;
    width: 100%;
    height: 500px;
    background: #000;
}

.footer-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0.7;
}

.contact-overlay-wrap {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    background: rgba(17, 17, 19, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    z-index: 10;
}

.contact-overlay-wrap h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Contact Modern Grid Responsiveness */
.contact-modern-grid {
    display: grid !important;
    grid-template-columns: 1.2fr 0.8fr !important;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 991px) {
    .contact-modern-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    .contact-modern-grid > div {
        grid-column: span 1 !important;
    }
}

/* Footer structure */
footer {
    background: #0b0b0c;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 8% 40px;
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-widget h3 {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-pink);
}

.footer-widget p {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-widget ul li a:hover {
    color: var(--brand-pink);
    padding-left: 5px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #17171a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
}

.footer-socials a:hover {
    background: var(--brand-pink);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Sticky Bottom Audio Player (Slide up) */
.media-player-bar {
    position: fixed;
    bottom: -90px; /* Hidden state */
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(17, 17, 19, 0.95);
    backdrop-filter: blur(15px);
    border-top: 2px solid var(--brand-pink);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.6);
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-player-bar.player-active {
    bottom: 0;
}

.player-close-btn {
    position: absolute;
    top: 6px;
    right: 15px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    z-index: 10000;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-close-btn:hover {
    color: #ffffff;
    transform: scale(1.18);
}

.player-info-side {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 25%;
}

.player-thumb {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    overflow: hidden;
}

.player-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.player-meta h4 {
    font-size: 15px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-meta span {
    font-size: 12px;
    color: var(--text-secondary);
}

.player-controls-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 45%;
}

.player-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.player-btn {
    font-size: 18px;
    color: var(--text-secondary);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.player-btn:hover {
    color: var(--brand-pink);
}

.player-btn-main {
    font-size: 26px;
    color: white;
}

.player-progress-bar-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-secondary);
}

.player-progress-track {
    flex-grow: 1;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.player-progress-filled {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: var(--brand-pink);
    border-radius: 2px;
}

.player-vol-side {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 20%;
    justify-content: flex-end;
}

.player-vol-icon {
    font-size: 16px;
    color: var(--text-secondary);
}

.player-vol-slider {
    width: 80px;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.player-vol-filled {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 80%;
    background: var(--brand-pink);
    border-radius: 2px;
}

/* Shop Catalog page CSS */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 10, 88, 0.25);
}

.product-img-wrap {
    width: 100%;
    aspect-ratio: 0.9;
    background: #09090b;
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.03);
}

.product-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--brand-pink);
    font-size: 18px;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Responsive adjust */
@media (max-width: 1200px) {
    .tour-row {
        grid-template-columns: 120px 1fr 120px;
    }
    .tour-countdown {
        display: none;
    }
    .footer-widgets {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    header {
        padding: 0 5%;
    }
    nav {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background: var(--bg-main);
        z-index: 999;
        transition: 0.4s ease;
        padding: 40px;
    }
    nav.nav-open {
        left: 0;
    }
    .main-menu {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    .main-menu > li {
        padding: 15px 0;
        width: 100%;
    }
    .main-menu li ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding-left: 20px;
    }
    .menu-toggle {
        display: block;
    }
    .sidebar-social-left, .sidebar-music-right {
        display: none;
    }
    .album-grid, .blog-grid, .gallery-grid-8, .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .playlist-carousel {
        grid-template-columns: 1fr;
    }
    .tour-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .tour-date-box {
        align-items: center;
    }
    .contact-overlay-wrap {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }
    .footer-map-section {
        height: auto;
    }
}

@media (max-width: 576px) {
    .album-grid, .blog-grid, .gallery-grid-8, .shop-grid {
        grid-template-columns: 1fr;
    }
    .footer-widgets {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Support Chat Drawer (Bottom-Left)
   ========================================================================== */
.support-chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    font-family: var(--font-body);
}

.support-chat-trigger {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--brand-pink);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(247, 10, 88, 0.4);
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.support-chat-trigger:hover {
    transform: scale(1.08);
    background-color: #d1074a;
}

.support-chat-trigger i {
    transition: transform 0.3s ease;
}

.support-chat-trigger.open i {
    transform: rotate(180deg);
}

.support-chat-box {
    position: absolute;
    bottom: 75px;
    left: 0;
    width: 320px;
    background: rgba(18, 18, 20, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 3px solid var(--brand-pink);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.support-chat-box.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.support-chat-header {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-chat-header h4 {
    margin: 0;
    font-size: 15px;
    font-family: var(--font-heading);
    color: white;
    text-transform: uppercase;
}

.support-chat-body {
    padding: 20px;
}

.support-chat-body form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-chat-body label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: -6px;
    font-weight: 600;
}

.support-chat-body input, .support-chat-body textarea {
    width: 100%;
    padding: 10px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: white;
    font-size: 13px;
}

.support-chat-body input:focus, .support-chat-body textarea:focus {
    border-color: var(--brand-pink);
    outline: none;
}
