/* General Styles */
body {
    font-family: 'Teko', sans-serif;
    color: #fff;
    background: #171a3b;
    overflow-x: hidden;
}

/* Header Styles */
header {
    padding: 20px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand .logo-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.navbar-nav .nav-link {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
    color: #D10459;
}

.navbar-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #D10459;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    color: #fff;
}

.navbar-brand i {
    color: #ff00ff; /* Match your accent color */
    font-size: 1.5rem;
    vertical-align: middle;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    vertical-align: middle;
}

/* Banner Styles */
/* Video Banner Styles */
.banner {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: #fff;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Keep all your existing banner styles below */
.banner-title {
    font-size: 15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: #D10459;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.banner-subtitle {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0,0,0,0.5);
}

.banner-buttons {
    position: relative;
    z-index: 2;
}

/* Keep all your existing social links and scroll down styles */
.social-links {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.btn-primary {
    background-color: #D10459;
    border-color: #D10459;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 4;
}

.btn-primary:hover {
    color: #D10459;
    background-color: transparent;
    border-color: #D10459;
}

.btn-outline-light {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Links */
.social-links {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-links a {
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #D10459;
    transform: translateX(-5px);
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-down a {
    color: #fff;
    font-size: 24px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

@keyframes clouds {
    0% {
        transform: translate3d(0,0px,0px)
    }

    100% {
        transform: translate3d(-1557px,0px,0px)
    }
}

/* Footer Styles */
.footer {
    background-color: #03051a;
    position: relative;
    z-index: 2;
    overflow: hidden;
    background-position: 0 0;
    padding: 60px 0 20px;
}

.footer:before {
    background: #000;
    zoom: 1;
    filter: alpha(opacity=25);
    -webkit-opacity: .25;
    -moz-opacity: .25;
    opacity: .25;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
}

.footer img.float {
    position: absolute;
    top: 0;
    left: 0;
    width: 4645px;
    height: 355px;
    z-index: 1;
    animation: clouds 25s linear infinite;
    max-width: initial !important;
}

.footer>div {
    z-index: 4;
    position: relative;
}

.footer h1 {
    color: #D10459;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer p {
    color: #fff;
    line-height: 1.1;
    font-size: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #D10459;
    padding-left: 5px;
}

.newsletter-form .form-control {
    background-color: #222;
    border: none;
    color: #fff;
    border-radius: 30px 0 0 30px;
    border: solid 1px #da0d5a;
    font-size: 1.2rem;
}

::placeholder {
    color: #fff !important;
    font-size: 1.2rem;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #222;
    text-align: center;
    color: #666;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .banner-title {
        font-size: 4rem;
    }
    
    .social-links {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .social-links {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        transform: none;
    }
}

@media (max-width: 576px) {
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .banner-buttons .me-3 {
        margin-right: 0 !important;
    }
}

/* Events Section Styles */
.events-section {
    background-color: #171a3b;
    background-image: url(../images/events_bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #D10459;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 15px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #D10459;
    margin-top: 20px;
}

.event-card {
    background-color: #111;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
}

.event-img {
    position: relative;
    overflow: hidden;
}

.event-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.event-card:hover .event-img img {
    transform: scale(1.05);
}

.event-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #aaa;
    font-size: 0.9rem;
}

.event-meta i {
    margin-right: 5px;
    color: #D10459;
}

.event-description {
    color: #aaa;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-outline-light {
    border-color: #D10459;
    color: #D10459;
    align-self: flex-start;
}

.btn-outline-light:hover {
    background-color: #D10459;
    border-color: #D10459;
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .event-img img {
        height: 200px;
    }
}

/* Services Section Styles */
.services-section {
    padding: 100px 0;
    background-color: #03051a !important;
}

.service-card {
    background-color: #000;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #D10459;
    box-shadow: 0 5px 15px rgba(255, 0, 255, 0.3);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,0,255,0.1) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(45deg, #D10459, #9900cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
}

.service-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #aaa;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.service-features {
    list-style: none;
    padding-left: 0;
    position: relative;
    z-index: 2;
}

.service-features li {
    margin-bottom: 8px;
    color: #ddd;
}

.service-features i {
    color: #D10459;
    margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-card {
        margin-bottom: 30px;
    }
}

/* Playlist Section Styles */
.playlist-section {
    background-color: #03051a;
    background-image: url(../images/music_bg_20percent.jpg);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.playlist-section .section-title {
    color: #03051a;
}
.playlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,0,255,0.1) 0%, rgba(0,0,0,0) 50%);
    z-index: 0;
}

.playlist-player {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    height: 100%;
}



/* Enhanced Playlist Styles */
.player-placeholder {
    background: linear-gradient(45deg, #111, #222);
    color: #ff00ff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 20px;
    text-align: center;
}

.player-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.player-placeholder p {
    color: #aaa;
    margin-bottom: 0;
    font-size: 1rem;
}

.text-muted {
    color: #fff!important;
}

.player-controls {
    background-color: #111;
}

.track-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.btn-play {
    color: #ff00ff;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-play:hover {
    color: #fff;
    transform: scale(1.1);
}

.track-list {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.track-item {
    border-color: #fff !important;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.track-item:hover, .track-item.active {
    background-color: rgba(255,0,255,0.1) !important;
}

.track-item.active {
    border-left: 3px solid #ff00ff;
}

.track-item.playing {
    background-color: rgba(255, 0, 255, 0.1) !important;
    border-left: 3px solid #ff00ff;
}

.track-item.playing .btn-play i {
    color: #ff00ff;
}

.track-number {
    color: #ff00ff;
    font-weight: 600;
    width: 30px;
}

.btn-purple {
    background-color: #ff00ff;
    color: #000;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
}

.btn-purple:hover {
    background-color: #cc00cc;
    color: #000;
}

.streaming-platforms h4 {
    color: #03051a;
    font-weight: 400;
    letter-spacing: 1px;
}

.platform-icon {
    color: #03051a;
    font-size: 2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 4;
}

.platform-icon:hover {
    color: #ff00ff;
    transform: scale(1.2);
}

/* Hide YouTube controls when not active */
#yt-player iframe {
    display: none;
    border: none;
}

#yt-player.active iframe {
    display: block;
}

#yt-player.active .player-placeholder {
    display: none;
}

/* Audio Player Styling */
#audio-player {
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    padding: 5px;
    margin-top: 10px;
}

/* Make controls visible on dark background */
#audio-player::-webkit-media-controls-panel {
    background: transparent;
    filter: invert(1) hue-rotate(180deg);
}

#audio-player::-webkit-media-controls-play-button,
#audio-player::-webkit-media-controls-mute-button,
#audio-player::-webkit-media-controls-timeline,
#audio-player::-webkit-media-controls-current-time-display,
#audio-player::-webkit-media-controls-time-remaining-display,
#audio-player::-webkit-media-controls-volume-slider,
#audio-player::-webkit-media-controls-fullscreen-button {
    filter: invert(1);
}

/* For Firefox */
#audio-player {
    --media-control-background: transparent !important;
    --media-control-hover-background: rgba(255, 255, 255, 0.1) !important;
}

/* For Edge/IE */
#audio-player::-ms-fill-lower,
#audio-player::-ms-fill-upper,
#audio-player::-ms-thumb {
    filter: invert(1);
}



/* Responsive adjustments */
@media (max-width: 992px) {
    .playlist-player {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .track-item {
        padding: 0.75rem;
    }
    
    .platform-icon {
        font-size: 1.5rem;
        margin: 0 15px !important;
    }
}

/* Blog Section Styles */
.blog-section {
    background-color: #03051a;
    padding: 100px 0;
    position: relative;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,0,255,0.1) 0%, rgba(0,0,0,0) 50%);
    z-index: 0;
}

.blog-card {
    background-color: #000;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 0, 255, 0.2);
}

.blog-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    border-radius: 5px;
    z-index: 1;
}

.date-day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.date-month {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.blog-category {
    color: #D10459;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-comments {
    color: #aaa;
}

.blog-comments i {
    margin-right: 5px;
}

.blog-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    color: #aaa;
    margin-bottom: 20px;
    flex-grow: 1;
}

.read-more {
    color: #D10459;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: #fff;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .blog-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .blog-img {
        height: 220px;
    }
    
    .blog-content {
        padding: 20px;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    background-color: #000;
    background-image: url(../images/parallax-2.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,0,255,0.05) 0%, rgba(0,0,0,0) 50%);
    z-index: 0;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    padding: 0 15px;
}

.testimonial-content {
    background-color: #111;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    text-align: center;
}

.quote-icon {
    color: #D10459;
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #D10459;
}

.author-info {
    text-align: left;
}

.author-name {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.author-title {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 0;
}

/* Partner Logos */
.partners h4 {
    color: #aaa;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.partner-logo {
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 10px;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Slider Navigation */
.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 30px;
    color: #D10459;
    opacity: 1;
}

.slick-prev:before {
    content: '\f104';
}

.slick-next:before {
    content: '\f105';
}

.slick-dots li button:before {
    color: #fff;
    opacity: 0.5;
    font-size: 10px;
}

.slick-dots li.slick-active button:before {
    color: #D10459;
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-content {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .author-img {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
    
    .author-img {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .partner-logo {
        max-width: 120px;
    }
}

/* Gallery Section Styles */
.gallery-section {
    background-color: #03051a;
    padding: 100px 0;
    position: relative;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(255,0,255,0.05) 0%, rgba(0,0,0,0) 50%);
    z-index: 0;
}

.gallery-grid {
    margin: 0 -0.5rem;
}

.gallery-item {
    padding: 0.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 0, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Overrides */
.lightbox .lb-image {
    border: 5px solid #111;
    border-radius: 3px;
}

.lightbox .lb-nav a.lb-prev,
.lightbox .lb-nav a.lb-next {
    opacity: 1;
}

.lightbox .lb-close {
    background: url(../images/close.png) top right no-repeat;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .gallery-item img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .gallery-section {
        padding: 80px 0;
    }
    
    .gallery-item img {
        height: 150px;
    }
}

@media (max-width: 576px) {
    .gallery-item img {
        height: 120px;
    }
}

/* Booking Section Styles */
.booking-section {
    background-color: #171a3b;
    background-image: url(../images/skull-white-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,0,255,0.05) 0%, rgba(0,0,0,0) 50%);
    z-index: 0;
}

.booking-form {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.booking-form .card-header {
    padding: 1.5rem;
    border-bottom: 1px solid #222;
}

.booking-form h3 {
    color: #fff;
    font-weight: 600;
    letter-spacing: 1px;
}

.form-floating {
    position: relative;
    margin-bottom: 1rem;
}

.form-floating label {
    color: #aaa;
    background: transparent;
}

.form-control {
    background-color: #111 !important;
    border: 1px solid #222;
    color: #fff;
    padding: 1rem 0.75rem;
}

.form-control:focus {
    border-color: #D10459;
    box-shadow: 0 0 0 0.25rem rgba(255, 0, 255, 0.25);
}

.form-control:focus + label {
    color: #D10459;
}

.form-check-input {
    background-color: #111;
    border: 1px solid #222;
}

.form-check-input:checked {
    background-color: #D10459;
    border-color: #D10459;
}

.form-check-label {
    color: #aaa;
}

.booking-info {
    color: #fff;
}

.booking-info .section-title {
    font-size: 2.5rem;
    color: #D10459;
}

.booking-info .lead {
    color: #aaa;
    font-size: 1.5rem;
    line-height: 1.1;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #D10459, #9900cc);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.detail-item h5 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.detail-item p {
    color: #aaa;
    margin-bottom: 0;
}

.booking-contact h5 {
    color: #D10459;
    font-weight: 600;
    letter-spacing: 1px;
}

.booking-contact p {
    color: #aaa;
    margin-bottom: 0.5rem;
}

.booking-contact i {
    width: 20px;
    color: #D10459;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .booking-info {
        margin-top: 50px;
    }
    
    .booking-info .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .booking-section {
        padding: 80px 0;
    }
    
    .icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .booking-form .card-body {
        padding: 1.5rem;
    }
    
    .booking-info .section-title {
        font-size: 1.8rem;
    }
}