* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #dc2626;
    --primary-dark: #b91c1c;
    --primary-light: #fee2e2;
    --bg: #f8fafc;
    --surface: #ffffff;
    --border: #e2e8f0;
    --text: #0f172a;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --green: #22c55e;
    --green-light: #f0fdf4;
    --amber: #eab308;
    --amber-light: #fefce8;
    --red: #ef4444;
    --red-light: #fef2f2;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --transition: all 0.2s ease;
}

body {
    font-family: "Inter", sans-serif;
    /* background: var(--bg); */
    background: #000;
    color: var(--text);
    font-size: 14px;
    line-height: 1.5;
}

/* Navbar */
.navbar {
    /* background: var(--surface); */
    background: #000;
    border-bottom: 1px solid var(--border);
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    z-index: 50;
    box-shadow: var(--shadow-sm);
}

.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    width: 18rem;
}

.logo span {
    color: var(--primary);
}

.logo img {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 13px;
    background: var(--bg);
    padding: 6px 12px;
    border-radius: 20px;
}

.nav-user {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-name {
    background: var(--bg);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
}

.logout-btn {
    background: none;
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}


.logout-btn:hover {
    background: var(--bg);
    border-color: var(--text-light);
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 100px;
}

.container-fluid {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 20px 100px;
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.gallery {
    border-radius: var(--radius);
    overflow: hidden;
    background: #f1f5f9;
    position: relative;
    box-shadow: var(--shadow-sm);
    height: 300px !important;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
}

.swiper-slide:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.swiper-slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.swiper-slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.swiper-slide:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.swiper-button-prev,
.swiper-button-next {
    color: white;
    background: rgba(0, 0, 0, 0.3);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 18px;
}

.exclusive-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.venue-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.address {
    display: flex;
    gap: 8px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.short-description {
    background: var(--primary-light);
    padding: 12px 16px;
    border-radius: var(--radius);
    margin: 16px 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    border-left: 4px solid var(--primary);
}

.quick-highlights {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 16px 0;
}

.highlight-chip {
    background: var(--bg);
    border: 1px solid var(--border);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 12px;
    color: var(--text-light);
    transition: var(--transition);
}

.highlight-chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    color: var(--primary);
}

/* Details Tab Bullets */
.bullets-list {
    list-style: none;
    padding: 0;
}

.bullets-list li {
    padding: 12px 16px;
    margin-bottom: 8px;
    /* background: var(--bg); */
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

/* .bullets-list li:hover {
    background: var(--surface);
    border-color: var(--primary);
    transform: translateX(4px);
} */

.bullets-list li::before {
    content: "•";
    color: #000;
    font-size: 20px;
    font-weight: bold;
}

.meta-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.chip {
    background: #f1f5f9;
    color: var(--text-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg);
    border-color: var(--text-light);
}

.info-box {
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.info-box strong {
    color: var(--text);
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 4px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    /* color: var(--text-light); */
    color: #fff;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius) var(--radius) 0 0;
}

.tab-btn:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 3px 3px 0 0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Details Tab Styles */
.details-container {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.details-section {
    margin-bottom: 40px;
}

.details-section:last-child {
    margin-bottom: 0;
}

.details-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.details-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 16px;
}

.details-text.highlight {
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    background: var(--primary-light);
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 24px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.highlight-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.highlight-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}

.highlight-label {
    font-weight: 600;
    color: var(--text);
}

.policies-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.policy-icon {
    font-size: 24px;
    min-width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.policy-content {
    flex: 1;
}

.policy-content strong {
    display: block;
    margin-bottom: 4px;
    color: var(--text);
}

.policy-content p {
    color: var(--text-light);
    font-size: 13px;
    line-height: 1.6;
}









.map-container {
    margin-bottom: 16px;
}

.map-container iframe {
    border-radius: var(--radius);
    width: 100%;
    height: 300px;
}

.address-detail {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.address-detail p {
    color: var(--text-light);
    font-size: 14px;
}

/* Booking Sections */
.booking-section {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.booking-section.disabled {
    opacity: 0.7;
    pointer-events: none;
    background: #f1f5f9;
}

.section-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    background: white;
    transition: var(--transition);
}

.section-header:hover {
    background: #f8fafc;
}

.section-header.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.section-header.disabled:hover {
    background: white;
}

.section-number {
    width: 32px;
    height: 32px;
    background: var(--text-muted);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}

.section-header.completed .section-number {
    background: var(--green);
}

.section-header.active .section-number {
    background: var(--primary);
}

.section-title {
    font-size: 18px;
    font-weight: 600;
    flex: 1;
}

.section-status {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 16px;
    background: var(--bg);
    color: var(--text-light);
}

.section-header.completed .section-status {
    background: var(--green-light);
    color: var(--green);
}

.chevron {
    color: var(--text-light);
    transition: transform 0.3s;
    font-size: 20px;
}

.section-header.open .chevron {
    transform: rotate(180deg);
}

.section-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: white;
}

.section-content.open {
    max-height: 2000px;
}

.content-inner {
    padding: 1.5rem 1rem;
    border-top: 1px solid var(--border);
}

/* Booking Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.booking-card {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition);
    background: white;
    position: relative;
    overflow: hidden;
}

.booking-card:hover:not(.disabled) {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.booking-card.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.booking-card.selected::before {
    content: "✓";
    position: absolute;
    top: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.card-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.card-subtitle {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.card-price {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary);
}

.card-info {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Calendar Controls */
.calendar-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    flex-wrap: wrap;
    background: #f8fafc;
    padding: 16px;
    border-radius: var(--radius);
}

.nav-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.nav-btn:hover:not(:disabled) {
    background: var(--bg);
    border-color: var(--primary);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.today-btn {
    background: white;
    border: 1px solid var(--border);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.today-btn:hover {
    background: var(--bg);
    border-color: var(--primary);
}

.date-range {
    color: var(--text);
    font-size: 14px;
    font-weight: 600;
    margin-left: 10px;
}

.legend {
    display: flex;
    gap: 20px;
    margin-left: auto;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.available {
    background: var(--green);
}

.dot.filling {
    background: var(--amber);
}

.dot.booked {
    background: var(--red);
}

.dot.na {
    background: var(--text-muted);
}

/* Calendar Table */
.table-wrapper {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
}

th {
    background: #f8fafc;
    padding: 15px 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 5;
}

.date-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    display: block;
    margin-bottom: 4px;
}

td {
    border-right: 1px solid #f1f5f9;
    padding: 6px;
}

td:last-child {
    border-right: none;
}

.time-col {
    background: #f8fafc;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    white-space: nowrap;
    position: sticky;
    left: 0;
    z-index: 3;
    border-right: 1px solid var(--border);
}

.slot {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 4px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    border: 1px solid transparent;
    min-width: 80px;
    transition: var(--transition);
}

.slot.available {
    background: var(--green-light);
    border-color: #bbf7d0;
}

.slot.available:hover {
    background: #dcfce7;
    transform: scale(0.98);
}

.slot.selected {
    background: var(--primary-light);
    border-color: var(--primary);
    font-weight: 600;
}

.slot.filling {
    background: var(--amber-light);
    border-color: #fde68a;
}

.slot.booked {
    background: var(--red-light);
    border-color: #fecaca;
    cursor: not-allowed;
    opacity: 0.7;
}

.slot.na {
    background: #f8fafc;
    border-color: #f1f5f9;
    cursor: not-allowed;
    color: var(--text-muted);
}

.slot-price {
    font-weight: 700;
    font-size: 12px;
}

/* Bottom Bar */
.bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface);
    /* background: #000; */
    border-top: 1px solid var(--border);
    padding: 8px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.03);
    z-index: 100;
}

.total-section {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.total-amount {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
}

.total-meta {
    font-size: 13px;
    /* color: var(--text-light); */
    color: #000;
}

.proceed-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gst-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
}

.proceed-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px 48px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.proceed-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.proceed-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Loading Spinner */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

img {
    width: 100%;
    height: 100%;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .swiper {
        height: 100%;
    }

    .navbar {
        padding: 0 16px;
    }

    .nav-location {
        display: none;
    }

    .legend {
        margin-left: 0;
        width: 100%;
    }

    .bottom-bar {
        flex-direction: column;
        gap: 15px;
        padding: 16px;
    }

    .proceed-section {
        width: 100%;
        flex-direction: column;
    }

    .proceed-btn {
        width: 100%;
    }

    .content-inner {
        padding: 0 16px 16px 16px;
    }

    .details-container {
        padding: 20px;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


