/* Z3U5 DJ Website - Complete Fixed Stylesheet */

/* CSS Custom Properties (CSS Variables) */
:root {
    --primary-color: #00d4ff;
    --secondary-color: #ff0080;
    --dark-bg: #0a0a0a;
    --light-bg: #1a1a1a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    background: var(--dark-bg);
    color: #ffffff;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00d4ff;
    color: var(--primary-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    font-family: 'Orbitron', sans-serif;
    color: #00d4ff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s, opacity 0.3s;
    letter-spacing: 1px;
}

.nav-list a:hover {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 100%);
    text-align: center;
    padding: 100px 20px 50px;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    /* CHANGED: Using solid blue color instead of gradient */
    color: #00d4ff;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.hero-social a {
    color: var(--text-color);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.hero-social a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Sections */
section {
    padding: 80px 20px;
}

section h2 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* CHANGED: Using solid blue color for all section titles */
    color: #00d4ff !important;
}

/* About Section */
.about {
    background: var(--light-bg);
    padding: 80px 0 !important;
    text-align: center !important;
}

.about .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.about p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-with-image {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 50px !important;
    max-width: 1100px !important;
    margin: 0 auto !important;
    text-align: left !important;
}

.about-image {
    flex: 0 0 45% !important;
    max-width: 450px !important;
    text-align: center !important;
}

.about-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
    margin: 0 auto !important;
    border-radius: 20px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

.about-text {
    flex: 1 !important;
    text-align: left !important;
}

/* Music Section */
.music {
    background: var(--dark-bg);
}

/* Tracks Grid */
.tracks-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.track-card {
    background: var(--light-bg);
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0, 212, 255, 0.1);
    padding: 0 !important;
    overflow: hidden !important;
    flex: 0 1 calc(33.333% - 20px) !important;
    max-width: 350px !important;
    min-width: 280px !important;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.track-cover {
    width: 100% !important;
    height: 0 !important;
    padding-bottom: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    margin: 0 !important;
}

.track-cover img {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
    transition: transform 0.3s ease !important;
}

.track-card:hover .track-cover img {
    transform: scale(1.05) !important;
}

.track-card h3 {
    padding: 20px 20px 10px !important;
    margin: 0 !important;
    color: var(--text-color);
}

.track-links {
    padding: 0 20px 20px !important;
    display: flex;
    gap: 1rem;
}

.track-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: color 0.3s, transform 0.3s;
}

.track-links a:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Events Section */
.events {
    background: var(--light-bg);
}

.event-card {
    background: var(--dark-bg);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
    border-radius: 5px;
    transition: transform 0.3s;
}

.event-card:hover {
    transform: translateX(5px);
}

.event-card h3 {
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.event-card p {
    color: var(--text-muted);
}

/* PROFESSIONAL BOOKING SECTION */
.booking {
    /* CHANGED: Using solid blue background instead of gradient */
    background: #00d4ff;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.3;
}

.booking .container {
    position: relative;
    z-index: 1;
}

.booking h2 {
    text-align: center;
    /* CHANGED: Keeping white color for "BOOK Z3U5" */
    color: #fff;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.booking .section-description {
    text-align: center;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 28px;
    color: #fff;
}

.info-card h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.info-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 15px;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    color: rgba(255, 255, 255, 0.95);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.info-list li i {
    color: #00ff88;
    font-size: 14px;
}

.booking-form-card {
    background: #fff;
    border-radius: 25px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 35px;
    text-align: center;
    /* CHANGED: Using solid blue border instead of gradient color */
    border-bottom: 3px solid #00d4ff;
}

.form-header i {
    font-size: 48px;
    /* CHANGED: Using solid blue color for icon */
    color: #00d4ff;
    margin-bottom: 15px;
}

.form-header h3 {
    color: #fff;
    font-size: 1.8rem;
    margin: 10px 0;
    font-weight: 700;
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.booking-form-card form {
    padding: 35px;
}

.booking-form-card .form-group {
    margin-bottom: 25px;
}

.booking-form-card .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.booking-form-card .form-group label i {
    /* CHANGED: Using solid blue color for label icons */
    color: #00d4ff;
    font-size: 16px;
}

/* FIXED: All inputs have same background and text color */
.booking-form-card input[type="text"],
.booking-form-card input[type="email"],
.booking-form-card input[type="tel"],
.booking-form-card input[type="date"],
.booking-form-card select,
.booking-form-card textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    color: #111827 !important;
    background: #f9fafb !important;
    transition: all 0.3s ease;
    font-family: inherit;
}

.booking-form-card input:focus,
.booking-form-card select:focus,
.booking-form-card textarea:focus {
    outline: none;
    /* CHANGED: Using solid blue border on focus */
    border-color: #00d4ff !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.booking-form-card select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'%3E%3Cpath fill='%2300d4ff' d='M7 10L2 5h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.booking-form-card textarea {
    resize: vertical;
    min-height: 100px;
    line-height: 1.6;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.btn-booking-submit {
    width: 100%;
    padding: 18px 35px;
    /* CHANGED: Using solid blue background instead of gradient */
    background: #00d4ff;
    color: #fff;
    border: none;
    border-radius: 15px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-booking-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.btn-booking-submit:active {
    transform: translateY(0);
}

.btn-booking-submit i {
    font-size: 20px;
}

.btn-booking-submit.loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.form-response {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    animation: slideUp 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.form-response.show {
    display: block;
}

.form-response.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.form-response.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-note {
    text-align: center;
    color: #6b7280;
    font-size: 13px;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note i {
    color: #10b981;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.booking-form-card input::placeholder,
.booking-form-card textarea::placeholder {
    color: #9ca3af !important;
}

.booking-form-card select option {
    background: #fff;
    color: #1a1a1a;
}

/* GALLERY CAROUSEL */
.gallery {
    background: var(--dark-bg);
    padding: 80px 20px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    /* CHANGED: Using solid blue color */
    color: #00d4ff;
}

.gallery-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    background: #000;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 60px 40px 30px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.carousel-slide.active .carousel-caption {
    transform: translateY(0);
}

.carousel-caption h3 {
    font-size: 2rem;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.9;
    line-height: 1.6;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    /* CHANGED: Using solid blue background on hover */
    background: rgba(0, 212, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.dot.active {
    /* CHANGED: Using solid blue background for active dot */
    background: #00d4ff;
    border-color: #fff;
    width: 14px;
    height: 14px;
}

.no-gallery-items {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 60px 20px;
    font-size: 1.1rem;
}

/* Contact Form */
.contact {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%) !important;
}

.contact h2 {
    /* UPDATED: Using same blue color as logo with Orbitron font */
    color: #00d4ff !important;
    font-family: 'Orbitron', sans-serif !important;
    text-align: center;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 2.5rem;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 700px !important;
    margin: 0 auto !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 40px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-form .form-group label i {
    color: #00d4ff;
    font-size: 16px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #00d4ff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.contact-form .btn-submit {
    width: 100%;
    padding: 16px 35px;
    background: #00d4ff;
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Orbitron', sans-serif;
}

.contact-form .btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
    background: #00bfea;
}

.contact-form .btn-submit:active {
    transform: translateY(0);
}

.contact-form .btn-submit i {
    font-size: 18px;
}

.contact-form .btn-submit.loading {
    opacity: 0.8;
    cursor: not-allowed;
    pointer-events: none;
}

.contact-form .form-response {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 12px;
    display: none;
    animation: slideUp 0.3s ease;
    font-weight: 600;
    text-align: center;
}

.contact-form .form-response.show {
    display: block;
}

.contact-form .form-response.success {
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #6ee7b7;
}

.contact-form .form-response.error {
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #fca5a5;
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Blog Grid */
.blog-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.blog-card {
    flex: 0 1 calc(33.333% - 20px) !important;
    max-width: 350px !important;
    min-width: 280px !important;
}

/* Footer */
.footer {
    background: #050505;
    padding: 3rem 20px;
    text-align: center;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* UPDATED: Footer links styling to match logo */
.footer-links {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer a {
    /* CHANGED: Using logo blue color instead of default */
    color: #00d4ff;
    text-decoration: none;
    transition: color 0.3s, opacity 0.3s;
    /* CHANGED: Using Orbitron font for Admin Login link */
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
}

.footer a:hover {
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .booking-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .booking-info {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .info-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 26, 0.98);
        width: 100%;
        padding: 2rem;
        transition: left 0.3s;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        padding: 120px 20px 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    section {
        padding: 60px 20px;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .tracks-grid {
        flex-direction: column;
    }
    
    .track-card,
    .blog-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    
    .about-with-image {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .about-image {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
    
    .about-text {
        text-align: center !important;
    }
    
    .booking {
        padding: 60px 20px;
    }
    
    .booking h2 {
        font-size: 2.2rem;
    }
    
    .booking .section-description {
        font-size: 1rem;
    }
    
    .booking-info {
        grid-template-columns: 1fr;
    }
    
    .info-card:last-child {
        grid-column: 1;
    }
    
    .booking-form-card form {
        padding: 25px;
    }
    
    .form-header {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .btn-booking-submit {
        font-size: 15px;
        padding: 15px 30px;
    }
    
    .gallery-carousel {
        height: 400px;
    }
    
    .carousel-caption {
        padding: 40px 20px 20px;
    }
    
    .carousel-caption h3 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 0.95rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .carousel-prev { left: 10px; }
    .carousel-next { right: 10px; }
    
    .carousel-dots {
        bottom: 15px;
        gap: 8px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
    
    .dot.active {
        width: 12px;
        height: 12px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .logo a {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .booking {
        padding: 50px 15px;
    }
    
    .booking h2 {
        font-size: 1.8rem;
    }
    
    .booking-form-card form {
        padding: 20px;
    }
    
    .form-header {
        padding: 20px;
    }
    
    .form-header i {
        font-size: 36px;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 22px;
    }
    
    .gallery-carousel {
        height: 300px;
        border-radius: 12px;
    }
    
    .carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.85rem;
    }
}

/* Loading Animations */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-booking-submit.loading i {
    animation: spin 1s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide img {
    animation: fadeIn 0.5s ease-in-out;
}