/* ==========================================================================
   LUXESTEP - Global Premium Stylesheet (MakeMyTrip Luxury Inspired)
   Colors: Light Yellow, Black Font, White Background
   ========================================================================== */

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

:root {
    --primary: #FFD23F;          /* Dynamic Light Yellow Gold */
    --primary-light: #FFF9E6;    /* Soft Light Yellow for accents/tags */
    --primary-hover: #EBB000;    /* Darker yellow/gold for hover buttons */
    --bg-white: #FFFFFF;         /* Premium White Background */
    --bg-light: #FAF9F6;         /* Off-white luxury background */
    --font-black: #111111;       /* Deep high-contrast black for text */
    --font-gray: #555555;        /* Premium dark gray for subtexts */
    --font-muted: #888888;       /* Muted gray */
    --border-color: #EAEAEA;     /* Ultra soft divider borders */
    --border-focus: #FFD23F;     /* Yellow focus border */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --font-ui: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-ui);
    background-color: var(--bg-white);
    color: var(--font-black);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

input, select, textarea, button {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

/* ==========================================================================
   Helper Utilities
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--font-black);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--font-gray);
    margin-bottom: 48px;
    max-width: 600px;
}

/* Button UI */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 15px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--font-black);
    box-shadow: 0 4px 14px rgba(255, 210, 63, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 210, 63, 0.4);
}

.btn-secondary {
    background-color: var(--font-black);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1.5px solid var(--font-black);
    color: var(--font-black);
}

.btn-outline:hover {
    background-color: var(--font-black);
    color: var(--bg-white);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: var(--primary-light);
    color: var(--font-black);
    border: 1px solid rgba(255, 210, 63, 0.4);
}

/* ==========================================================================
   Header Component (MakeMyTrip Inspired)
   ========================================================================== */
header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 52px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    color: var(--font-black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text span {
    color: var(--primary);
    background: var(--font-black);
    padding: 2px 8px;
    border-radius: 4px;
}

nav ul {
    display: flex;
    gap: 32px;
}

nav ul li a {
    font-weight: 500;
    font-size: 15px;
    color: var(--font-black);
    padding: 8px 0;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover::after,
nav ul li.active a::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.user-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

.user-badge:hover {
    border-color: var(--primary);
}

.user-badge i {
    font-size: 16px;
    color: var(--primary-hover);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* ==========================================================================
   Hero Section & Search Widget (Core MakeMyTrip Look)
   ========================================================================== */
.hero-section {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--bg-white) 100%);
    padding: 60px 0 100px;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--font-black);
    background-color: var(--primary);
    display: inline-block;
    padding: 4px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--font-black);
}

.hero-title span {
    background: linear-gradient(120deg, var(--font-black) 0%, #333333 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* MakeMyTrip Search Widget Container */
.search-widget {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    padding: 0;
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
    z-index: 10;
}

/* Widget Tab Bar */
.search-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-light);
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    padding: 10px 20px 0;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.search-tabs::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.tab-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 15px 24px 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--font-gray);
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.tab-btn i {
    font-size: 20px;
    color: var(--font-gray);
    transition: var(--transition);
}

.tab-btn:hover {
    color: var(--font-black);
}

.tab-btn:hover i {
    color: var(--font-black);
}

.tab-btn.active {
    color: var(--font-black);
}

.tab-btn.active i {
    color: var(--primary-hover);
    transform: translateY(-2px);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--primary);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

/* Search Form Grid */
.search-form-panel {
    display: none;
    padding: 30px;
}

.search-form-panel.active {
    display: block;
}

.search-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.search-field {
    padding: 18px 24px;
    background-color: var(--bg-white);
    border-right: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-field:last-child {
    border-right: none;
}

.search-field:hover {
    background-color: var(--primary-light);
}

.search-field label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--font-gray);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
    display: block;
}

.search-field input, 
.search-field select {
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    color: var(--font-black);
    width: 100%;
    cursor: pointer;
}

.search-field input::placeholder {
    color: #b1b1b1;
}

/* Floating Search Button */
.search-btn-container {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
}

.search-submit-btn {
    background-color: var(--primary);
    color: var(--font-black);
    font-size: 18px;
    font-weight: 800;
    padding: 14px 60px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 210, 63, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.search-submit-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 210, 63, 0.5);
}

/* ==========================================================================
   Luxury Category Quick Grid
   ========================================================================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.category-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: var(--font-black);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary);
    transform: rotateY(180deg);
}

.category-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--font-black);
}

.category-card p {
    font-size: 12px;
    color: var(--font-gray);
    line-height: 1.4;
}

/* ==========================================================================
   Featured Showcase
   ========================================================================== */
.products-section {
    background-color: var(--bg-light);
}

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

.category-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image-container {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--font-black);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
}

.product-location {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--font-black);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-location i {
    color: var(--primary-hover);
}

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

.product-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--primary-hover);
    margin-bottom: 10px;
    font-weight: 700;
}

.product-rating span {
    color: var(--font-gray);
    font-weight: 400;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--font-black);
}

.product-desc {
    font-size: 13px;
    color: var(--font-gray);
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.product-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.amenity-tag {
    font-size: 11px;
    background-color: var(--bg-light);
    color: var(--font-black);
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: auto;
}

.product-price {
    display: flex;
    flex-direction: column;
}

.price-num {
    font-size: 22px;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--font-black);
}

.price-unit {
    font-size: 11px;
    color: var(--font-gray);
    text-transform: uppercase;
}

/* ==========================================================================
   Details / Product Page
   ========================================================================== */
.details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 40px 0;
}

.detail-gallery {
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-main {
    height: 480px;
    background-color: var(--bg-light);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.detail-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.detail-title {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 14px;
    color: var(--font-gray);
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.detail-meta i {
    color: var(--primary-hover);
}

.detail-description h3, 
.detail-features h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.detail-description p {
    color: var(--font-gray);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-hover);
    font-size: 16px;
    background-color: var(--primary-light);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Booking Widget Sticky Card */
.booking-sidebar-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.booking-price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}

.booking-price-header .price {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--font-gray);
    margin-bottom: 8px;
    display: block;
}

.booking-form input,
.booking-form textarea,
.booking-form select {
    width: 100%;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.booking-form input:focus,
.booking-form textarea:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
}

/* ==========================================================================
   Auth Forms (Login / Register)
   ========================================================================== */
.auth-wrapper {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-white) 100%);
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.auth-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
    padding: 40px;
}

.auth-header {
    text-align: center;
    margin-bottom: 36px;
}

.auth-header h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 8px;
}

.auth-header p {
    font-size: 14px;
    color: var(--font-gray);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--font-gray);
    margin-bottom: 8px;
    display: block;
}

.auth-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background-color: var(--bg-light);
    transition: var(--transition);
}

.auth-form input:focus {
    border-color: var(--primary);
    background-color: var(--bg-white);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: var(--font-gray);
}

.auth-footer a {
    color: var(--font-black);
    font-weight: 600;
    border-bottom: 1.5px solid var(--primary);
}

/* ==========================================================================
   User / Admin Dashboards
   ========================================================================== */
.dashboard-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 80px);
}

.sidebar {
    background-color: var(--bg-light);
    border-right: 1px solid var(--border-color);
    padding: 30px 20px;
}

.sidebar-profile {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1.5px solid var(--border-color);
}

.sidebar-menu li {
    margin-bottom: 8px;
}

.sidebar-logout {
    margin-top: 30px;
}

.sidebar-logout a {
    color: #721c24 !important;
    background-color: #f8d7da !important;
    border: 1px solid #f5c6cb !important;
}

.sidebar-logout a:hover {
    background-color: #f5c6cb !important;
}

.sidebar-privacy {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-top: 40px;
    font-size: 12px;
    color: var(--font-gray);
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    color: var(--font-gray);
}

.sidebar-menu li a:hover,
.sidebar-menu li.active a {
    background-color: var(--primary-light);
    color: var(--font-black);
}

.sidebar-menu li.active a i {
    color: var(--primary-hover);
}

.dashboard-content {
    padding: 40px;
    background-color: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.stat-info h3 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--font-gray);
    margin-bottom: 8px;
}

.stat-info .num {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 800;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: var(--primary-light);
    color: var(--font-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Tables styling */
.table-responsive {
    overflow-x: auto;
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.custom-table th, 
.custom-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.custom-table th {
    background-color: var(--bg-light);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--font-gray);
}

.custom-table td {
    font-size: 14px;
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pending {
    background-color: #FFF3CD;
    color: #856404;
}

.status-confirmed {
    background-color: #D4EDDA;
    color: #155724;
}

.status-cancelled {
    background-color: #F8D7DA;
    color: #721C24;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
    background-color: #0E0E0E;
    color: var(--bg-white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-about h3 span {
    color: var(--font-black);
    background-color: var(--primary);
    padding: 2px 8px;
    border-radius: 4px;
}

.footer-about p {
    color: var(--font-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background-color: #222222;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    font-size: 14px;
}

.social-links a:hover {
    background-color: var(--primary);
    color: var(--font-black);
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--bg-white);
}

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

.footer-links li a {
    color: var(--font-muted);
    font-size: 14px;
}

.footer-links li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--font-muted);
}

.category-workspace-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
    .search-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-field {
        border-bottom: 1px solid var(--border-color);
    }
    .search-field:nth-child(2n) {
        border-right: none;
    }
    .search-field:nth-child(3),
    .search-field:nth-child(4) {
        border-bottom: none;
    }
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dashboard-wrapper {
        grid-template-columns: 1fr;
    }
    .sidebar {
        border-right: none;
        border-bottom: 1.5px solid var(--border-color);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 24px 20px;
        gap: 20px;
        background-color: var(--bg-light);
    }
    .sidebar-profile {
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
    }
    .sidebar-profile div:first-child {
        margin: 0 !important;
    }
    .sidebar-menu {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .sidebar-menu li {
        margin-bottom: 0;
    }
    .sidebar-logout {
        margin-top: 0;
    }
    .sidebar-privacy {
        display: none;
    }
}

@media (max-width: 768px) {
    .dashboard-content {
        padding: 24px 16px;
    }
    .dashboard-content .flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .section-title {
        font-size: 28px;
    }
    .hero-title {
        font-size: 38px;
    }
    nav {
        display: none; /* Handle menu with hamburger */
    }
    .mobile-menu-btn {
        display: block;
    }
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .details-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-workspace-layout {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .category-workspace-layout aside.booking-sidebar-card {
        order: 2; /* Filters stack at the bottom */
        margin-top: 20px;
    }
    .category-workspace-layout > div {
        order: 1; /* Products grid stacks at the top */
    }
    .category-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .header-actions .btn {
        display: none !important;
    }
    .header-actions .user-badge {
        padding: 6px 12px;
        font-size: 12px;
        gap: 6px;
    }
    .header-actions .user-badge span {
        max-width: 70px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .booking-sidebar-card {
        position: static;
        margin-top: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .search-grid {
        grid-template-columns: 1fr;
    }
    .search-field {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    .search-field:last-child {
        border-bottom: none;
    }
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Interactive Styles
   ========================================================================== */
.alert {
    padding: 16px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-weight: 500;
    font-size: 14px;
}

.alert-success {
    background-color: #D4EDDA;
    color: #155724;
    border: 1px solid #C3E6CB;
}

.alert-danger {
    background-color: #F8D7DA;
    color: #721C24;
    border: 1px solid #F5C6CB;
}

/* ==========================================================================
   Premium Multi-Page Details, Forms, and Interactive Navigation
   ========================================================================== */

/* Global Details Container Grid */
.details-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .details-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Responsive Inquiry Form Rows */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Glassmorphic Ultra-Premium Mobile Navigation Panel */
#mobile-nav {
    position: absolute;
    top: 100%;
    margin-top: 10px;
    left: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1.5px solid rgba(255, 210, 63, 0.4);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: none;
}

#mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
}

#mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

#mobile-nav ul li a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: var(--font-black);
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid transparent;
}

#mobile-nav ul li a i {
    font-size: 16px;
    color: var(--primary-hover);
    width: 24px;
    text-align: center;
    transition: transform 0.2s ease;
}

#mobile-nav ul li a:hover {
    background: var(--primary-light);
    color: var(--font-black);
    padding-left: 24px;
    border-color: rgba(255, 210, 63, 0.3);
}

#mobile-nav ul li a:hover i {
    transform: scale(1.2);
}

/* Premium Pagination link hover states */
.page-link {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.page-link:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.page-link.active {
    box-shadow: 0 4px 10px rgba(255, 210, 63, 0.3);
}
