/* ==========================================================================
   Holidays Rajasthan - Royal Heritage & Professional Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

:root {
    /* Royal Rajasthan Heritage Color Palette */
    --bg-dark-primary: #1e130c;
    /* Deep Warm Espresso Charcoal */
    --bg-dark-secondary: #2c1a0f;
    /* Shifting Dark Espresso */
    --bg-light-primary: #FAF8F5;
    /* Warm Ivory */
    --bg-light-secondary: #FFFFFF;
    /* Clean White */

    --accent-pink: #FFD4A8;
    /* Light Saffron Peach */
    --accent-red: #ff9400;
    /* Brand Saffron Orange */
    --accent-gold: #ff9400;
    /* Brand Accent Orange */
    --accent-gold-light: #FFE5CC;
    /* Warm beige / Orange Tint */
    --accent-gold-dark: #E07E00;
    /* Rich deep saffron */
    --success-green: #0E9F6E;
    /* Booking success emerald green */
    --whatsapp-green: #25D366;
    /* WhatsApp official green */

    --text-dark: #2A211D;
    /* Charcoal text with warm tint */
    --text-light: #FCFAF5;
    /* Readability ivory text */
    --text-muted: #736764;
    /* Muted warm gray text */
    --text-muted-light: #DFD7D5;
    /* Light muted warm gray */

    /* Layout Constants */
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
    --border-color-actual: #EFE6D9;
    /* Warm sand border */
    --border-color-dark: #cc7600;
    /* Saffron dark border */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Dynamic Shadows */
    --shadow-sm: 0 4px 10px -1px rgba(30, 19, 12, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(30, 19, 12, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(30, 19, 12, 0.12);
    --shadow-gold: 0 10px 30px -5px rgba(255, 148, 0, 0.25);
    --shadow-glow: 0 0 25px rgba(255, 148, 0, 0.15);

    /* Transition times */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Base & Reset Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 0;
}

/* Padding offset on mobile for the fixed native app bottom bar */
@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
}

.font-heading {
    font-family: var(--font-heading);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

ul,
ol {
    list-style: none;
}

/* Common Section Styles */
section {
    padding: 80px 0;
    position: relative;
}

/* Sections have clean solid backgrounds */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Section Header Utility */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-header .tag {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-red);
    display: inline-block;
    margin-bottom: 12px;
    border-bottom: 2px solid var(--accent-pink);
    padding-bottom: 4px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

/* Dark Section styling override */
.section-dark {
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

.section-dark .section-header p {
    color: var(--text-muted-light);
}

.section-dark .section-header .tag {
    color: var(--accent-gold);
    border-color: var(--accent-gold);
}

/* ==========================================================================
   Navigation Bar (Header) & Dropdown Custom System
   ========================================================================== */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #000000;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    background-color: #000000;
    padding: 2px 0;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    color: var(--accent-gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.logo-text span {
    color: var(--accent-gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Dropdown Menu Item wrappers */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
}

.nav-link {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-gold);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--accent-gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--accent-gold);
}

/* Submenu layout overlay */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-dark-primary);
    border: 1px solid var(--border-color-dark);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    min-width: 240px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(0.98);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1010;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 500;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.dropdown-item:last-child {
    border-bottom: none;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--accent-gold);
    padding-left: 24px;
}

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-light);
    background: none;
    border: none;
    cursor: pointer;
}

/* ==========================================================================
   Buttons UI System
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--accent-gold);
    color: var(--bg-dark-primary);
}

.btn-primary:hover {
    background-color: var(--accent-gold-dark);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
}

.btn-secondary:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-primary);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--bg-dark-secondary);
    color: var(--text-light);
    border: 1px solid var(--border-color-dark);
}

.btn-dark:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.btn-success {
    background-color: var(--success-green);
    color: white;
}

.btn-success:hover {
    background-color: #0c875c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(14, 159, 110, 0.3);
}

/* WhatsApp Pricing Shortcuts */
.btn-whatsapp-price {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--whatsapp-green);
    color: white;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp-price:hover {
    background-color: #1ebe57;
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
}

/* ==========================================================================
   Hero Section with Sliding BG Loop & Reduced Height & High Opacity Visibility
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 80vh;
    max-height: 700px;
    padding: 60px 0 80px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-item {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 1;
}

/* Reduced gradient overlays from 0.85 to 0.50 opacity to increase image clarity */
.slide-item:nth-child(1) {
    background-image: linear-gradient(180deg, rgba(30, 19, 12, 0.55) 0%, rgba(30, 19, 12, 0.50) 100%), url('../../images/khatu-shyam.png');
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-tag {
    background-color: rgba(212, 175, 55, 0.25);
    color: var(--text-light);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid var(--accent-gold);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
    color: var(--accent-gold);
    display: block;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    max-width: 580px;
}

/* Quick Inquiry / Booking Widget Panel */
.hero-booking-card {
    background-color: rgba(88, 15, 18, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--border-color-dark);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(212, 175, 55, 0.1);
    animation: fadeInRight 0.8s ease;
}

.booking-card-header {
    margin-bottom: 20px;
    text-align: center;
}

.booking-card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.booking-card-header p {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}

/* Light form overrides */
.form-light .form-control {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-color-actual);
    color: var(--text-dark);
}

.form-light .form-control:focus {
    background-color: var(--bg-light-secondary);
    border-color: var(--accent-red);
    box-shadow: 0 0 10px rgba(165, 28, 36, 0.15);
}

.form-light .form-label {
    color: var(--text-muted);
}

select.form-control option {
    background-color: var(--bg-dark-secondary);
    color: var(--text-light);
}

.form-light select.form-control option {
    background-color: var(--bg-light-secondary);
    color: var(--text-dark);
}

/* ==========================================================================
   Milestones Counter Strip (White background)
   ========================================================================== */
.stats-strip {
    background-color: var(--bg-light-secondary);
    border-bottom: 1px solid var(--border-color-actual);
    padding: 30px 0;
}

.stats-strip-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
}

.stats-strip-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.stats-strip-icon {
    font-size: 2rem;
    color: var(--accent-red);
}

.stats-strip-info {
    text-align: left;
}

.stats-strip-info h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 2px;
}

.stats-strip-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ==========================================================================
   Modern Left/Right Split layouts
   ========================================================================== */
.split-layout-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 48px;
    align-items: start;
}

.split-details-col {
    position: static;
}

.split-cards-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
}

@media (max-width: 1024px) {
    .split-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split-details-col {
        position: static;
    }

    .split-cards-col {
        position: static;
    }
}

/* ==========================================================================
   About Section & Round Collage Frame
   ========================================================================== */
.about-section {
    background-color: var(--bg-light-primary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.about-collage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.collage-frame-main {
    width: 100%;
    max-width: 520px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    border: 8px solid var(--bg-light-secondary);
    box-shadow: var(--shadow-lg);
    z-index: 2;
    transition: var(--transition-smooth);
}

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

.collage-frame-sub {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid var(--bg-light-secondary);
    box-shadow: var(--shadow-lg);
    position: absolute;
    bottom: -30px;
    right: 20px;
    z-index: 3;
}

.collage-frame-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-badge {
    background-color: var(--accent-pink);
    color: var(--text-light);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: -10px;
    left: 20px;
    z-index: 4;
    text-align: center;
}

.collage-badge h4 {
    font-size: 1.5rem;
    font-weight: 800;
}

.collage-badge p {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background-color: rgba(255, 148, 0, 0.1);
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.about-feature-text {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ==========================================================================
   Step-by-Step Booking Process
   ========================================================================== */
.process-section {
    background-color: var(--bg-light-secondary);
    border-top: 1px solid var(--border-color-actual);
    border-bottom: 1px solid var(--border-color-actual);
}

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

.process-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-color-actual);
    padding: 30px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.process-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--accent-red);
    color: white;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
}

.process-icon {
    font-size: 2.2rem;
    color: var(--accent-pink);
    margin-bottom: 20px;
}

.process-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-section {
    background-color: var(--bg-light-secondary);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

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

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgba(224, 122, 108, 0.12);
    color: var(--accent-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 24px auto;
    transition: var(--transition-fast);
}

.why-card:hover .why-icon {
    background-color: var(--accent-pink);
    color: white;
}

.why-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ==========================================================================
   Tour Packages Component & Filter System
   ========================================================================== */
.tours-section {
    background-color: var(--bg-light-primary);
}

.tour-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-color-actual);
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--accent-red);
    border-color: var(--accent-red);
    color: var(--text-light);
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.tour-card {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-md);
}

.tour-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.tour-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.tour-card:hover .tour-img-wrapper img {
    transform: scale(1.1);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(88, 15, 18, 0.85);
    backdrop-filter: blur(4px);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
}

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

.tour-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.tour-info h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    margin-bottom: 12px;
    line-height: 1.3;
}

.tour-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.tour-price h4 {
    font-size: 1.25rem;
    color: var(--accent-red);
}

.tour-price p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   Fleet / Cab Display Component
   ========================================================================== */
.fleet-section {
    background-color: var(--bg-light-secondary);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* ==========================================================================
   Fleet Horizontal Slider Carousel
   ========================================================================== */
.fleet-slider-container {
    position: relative;
    width: 100%;
    margin-top: 40px;
    display: flex;
    align-items: center;
}

.fleet-slider-viewport {
    overflow: hidden;
    width: 100%;
    padding: 15px 0;
    /* padding to ensure card shadows are not clipped */
}

.fleet-slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Card sizing per screen size */
.fleet-slider-track .cab-card {
    flex: 0 0 100%;
    margin-bottom: 0;
    /* Override bottom margin inside track */
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .fleet-slider-track .cab-card {
        flex: 0 0 calc((100% - 20px) / 2);
    }
}

@media (min-width: 1024px) {
    .fleet-slider-track .cab-card {
        flex: 0 0 calc((100% - 40px) / 3);
    }
}

/* Navigation buttons styling */
.fleet-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-color-actual);
    color: var(--accent-red);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    z-index: 10;
}

.fleet-nav-btn:hover {
    background-color: var(--accent-red);
    color: var(--text-light);
    border-color: var(--accent-red);
    box-shadow: var(--shadow-md);
}

.fleet-nav-btn:disabled,
.fleet-nav-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: var(--bg-light-secondary);
    border-color: var(--border-color-actual);
    color: var(--text-muted);
}

.fleet-prev-btn {
    left: -24px;
}

.fleet-next-btn {
    right: -24px;
}

/* Float slider buttons on mobile nicely */
@media (max-width: 767px) {
    .fleet-prev-btn {
        left: -10px;
    }

    .fleet-next-btn {
        right: -10px;
    }

    .fleet-nav-btn {
        width: 38px;
        height: 38px;
    }
}

/* Dots indicators */
.fleet-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.fleet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color-dark);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
}

.fleet-dot.active {
    background-color: var(--accent-red);
    transform: scale(1.2);
}

.cab-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

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

.cab-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.cab-title-row h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.cab-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-red);
}

.cab-type {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.cab-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    padding: 10px;
}

.cab-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    border-radius: 0;
}

.cab-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color-actual);
    padding-bottom: 16px;
}

.spec-pill {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.cab-pricing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.price-box {
    background-color: var(--bg-light-secondary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color-actual);
}

.price-box label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.price-box span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-red);
}

/* ==========================================================================
   Popular Destinations & Collage
   ========================================================================== */
.destinations-section {
    background-color: var(--bg-light-primary);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.dest-card {
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    border-radius: 0;
}

.dest-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(88, 15, 18, 0.85) 0%, rgba(88, 15, 18, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    color: var(--text-light);
    transition: var(--transition-smooth);
}

.dest-card:hover img {
    transform: scale(1.1);
}

.dest-card:hover .dest-overlay {
    background: linear-gradient(360deg, rgba(88, 15, 18, 0.95) 0%, rgba(88, 15, 18, 0.1) 100%);
}

.dest-overlay h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.dest-overlay p {
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

/* ==========================================================================
   Our Partners
   ========================================================================== */
.partners-section {
    background-color: var(--bg-light-secondary);
    padding: 50px 0;
    border-top: 1px solid var(--border-color-actual);
    border-bottom: 1px solid var(--border-color-actual);
}

.partners-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    opacity: 0.75;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: var(--transition-fast);
}

.partner-logo:hover {
    color: var(--accent-red);
    opacity: 1;
}

.partner-logo i {
    font-size: 1.5rem;
    color: var(--accent-pink);
}

/* ==========================================================================
   Testimonial Slider UI
   ========================================================================== */
.testimonials-section {
    background-color: var(--bg-light-primary);
}

.testimonial-slider-container {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

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

.testimonial-card {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-color-actual);
    padding: 30px 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    text-align: center;
    position: relative;
}

.testimonial-stars {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-pink);
}

.testimonial-details {
    text-align: left;
}

.testimonial-details h5 {
    font-size: 0.95rem;
    font-weight: 700;
}

.testimonial-details p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--accent-gold-light);
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.slider-dot.active {
    background-color: var(--accent-red);
    width: 20px;
    border-radius: var(--radius-full);
}

/* ==========================================================================
   FAQs & Accordion
   ========================================================================== */
.faq-section {
    background-color: var(--bg-light-secondary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-header h4 {
    font-size: 1.05rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-red);
    transition: var(--transition-smooth);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid transparent;
}

.faq-item.active {
    border-color: var(--accent-pink);
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-content {
    max-height: 300px;
    padding: 20px 24px;
    border-top: 1px solid var(--border-color-actual);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background-color: var(--bg-dark-primary);
    color: var(--text-light);
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--accent-gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand .logo-wrapper {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-muted-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    background-color: var(--bg-dark-secondary);
    border: 1px solid var(--border-color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.social-btn:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark-primary);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

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

.footer-links a {
    color: var(--text-muted-light);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.footer-contact-icon {
    color: var(--accent-gold);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-map-container {
    width: 100%;
    height: 160px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border-color-dark);
    margin-top: 12px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color-dark);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

/* ==========================================================================
   Multi-Step Checkout & Checkout Layout
   ========================================================================== */
.booking-page-container {
    max-width: 900px;
    margin: 40px auto;
}

.booking-steps-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps-nav::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 3px;
    background-color: var(--accent-gold-light);
    z-index: 1;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    cursor: not-allowed;
    flex: 1;
}

.step-indicator-active {
    cursor: pointer;
}

.step-circle {
    width: 50px;
    height: 50px;
    background-color: var(--bg-light-secondary);
    border: 3px solid var(--accent-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.step-indicator.active .step-circle {
    border-color: var(--accent-red);
    background-color: var(--accent-red);
    color: var(--text-light);
    box-shadow: 0 10px 20px rgba(165, 28, 36, 0.15);
}

.step-indicator.completed .step-circle {
    border-color: var(--success-green);
    background-color: var(--success-green);
    color: white;
}

.step-label {
    margin-top: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.step-indicator.active .step-label {
    color: var(--accent-red);
}

.step-indicator.completed .step-label {
    color: var(--success-green);
}

.booking-step-panel {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    display: none;
    animation: fadeInUp 0.4s ease;
}

.booking-step-panel.active {
    display: block;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--bg-light-primary);
    padding-bottom: 12px;
}

.panel-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.step-btn-row {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color-actual);
}

/* Radio Cards selector */
.radio-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.radio-card {
    border: 2px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
}

.radio-card:hover {
    border-color: var(--accent-pink);
    transform: translateY(-2px);
}

.radio-card.selected {
    border-color: var(--accent-red);
    background-color: rgba(224, 122, 108, 0.05);
}

.radio-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-card-icon {
    font-size: 2rem;
    color: var(--accent-red);
    margin-bottom: 12px;
}

.radio-card-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.radio-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Receipt styles */
.receipt-wrapper {
    background-color: #FAF6F0;
    border: 2px dashed var(--accent-gold);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 30px;
}

.receipt-header {
    text-align: center;
    border-bottom: 1px solid var(--border-color-actual);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.receipt-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.receipt-logo span {
    color: var(--accent-red);
}

.receipt-success-badge {
    background-color: rgba(14, 159, 110, 0.1);
    color: var(--success-green);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.receipt-details-table {
    width: 100%;
    margin-bottom: 20px;
}

.receipt-details-table td {
    padding: 8px 0;
    font-size: 0.95rem;
}

.receipt-details-table td.label {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.receipt-details-table td.val {
    font-weight: 600;
    text-align: right;
}

.receipt-total {
    border-top: 1px solid var(--border-color-actual);
    padding-top: 16px;
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.2rem;
}

.receipt-total span.price {
    color: var(--accent-red);
}

/* ==========================================================================
   Page Banners (For Sub-pages)
   ========================================================================= */
.page-banner {
    background-image: linear-gradient(180deg, rgba(88, 15, 18, 0.85) 0%, rgba(88, 15, 18, 0.85) 100%), url('https://images.unsplash.com/photo-1599661046289-e31897846e41?q=80&w=1620&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 90px 0 30px 0;
    text-align: center;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.page-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.page-breadcrumbs a:hover {
    color: var(--accent-gold);
}

.breadcrumbs-sep {
    color: var(--text-muted-light);
}

.breadcrumbs-active {
    color: var(--accent-gold);
    font-weight: 500;
}

/* CTA Promo Section (Bottom Banner) */
.promo-section {
    background-image: linear-gradient(135deg, rgba(88, 15, 18, 0.9) 0%, rgba(224, 122, 108, 0.5) 100%), url('https://images.unsplash.com/photo-1605649487212-47bdab064df7?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
    color: var(--text-light);
}

.promo-container {
    max-width: 800px;
    margin: 0 auto;
}

.promo-section h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.promo-section p {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 36px;
}

.promo-btn-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ==========================================================================
   Mobile Native App Sticky Bottom Navigation Bar
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    background-color: var(--bg-dark-primary);
    border-top: 2px solid var(--accent-gold);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    align-items: center;
    justify-content: space-around;
}

.mobile-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    gap: 4px;
}

.mobile-bottom-item i {
    font-size: 1.35rem;
    color: var(--accent-gold);
}

.mobile-bottom-item.active {
    color: var(--accent-gold);
}

.mobile-bottom-item.active i {
    color: var(--text-light);
}

/* Floating WhatsApp Widget (Disabled on mobile to avoid overlapping the bottom bar) */
@media (max-width: 768px) {
    .mobile-bottom-bar {
        display: flex;
    }

    .whatsapp-float {
        display: none !important;
    }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1) rotate(10deg);
}

/* ==========================================================================
   Responsive Media Queries
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-section {
        min-height: auto;
        max-height: none;
        padding: 100px 0 60px 0;
        overflow: visible;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
    }

    .stats-strip-container {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        text-align: center;
    }

    .about-features {
        justify-items: center;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(17, 17, 17, 0.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 3px solid var(--accent-gold);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        z-index: 9999;
        padding: 12px 20px;
        gap: 6px;
        height: auto;
    }

    .nav-menu.active {
        display: flex !important;
        animation: slideDownMenu 0.3s ease forwards;
    }

    @keyframes slideDownMenu {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .main-header.menu-active {
        background-color: #111111 !important;
        box-shadow: none !important;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.8rem;
        color: white !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        cursor: pointer;
        padding: 8px 16px;
        margin-right: 12px;
        z-index: 10001;
    }

    .mobile-menu-btn:focus {
        outline: none !important;
        box-shadow: none !important;
    }

    .nav-menu .nav-link {
        font-size: 1.15rem !important;
        font-weight: 700 !important;
        color: white !important;
        text-align: center;
        padding: 4px 0;
        width: 100%;
        display: block;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--accent-gold) !important;
    }

    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }

    .nav-item-dropdown .dropdown-menu {
        position: static !important;
        display: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background-color: rgba(255, 255, 255, 0.05) !important;
        width: 100% !important;
        min-width: 100% !important;
        text-align: center !important;
        padding: 4px 0 !important;
        margin-top: 5px;
        border-radius: var(--radius-sm);
        transition: none !important;
    }

    .nav-item-dropdown.open .dropdown-menu {
        display: block !important;
    }

    .nav-item-dropdown.open>.nav-link i {
        transform: rotate(180deg);
    }

    .nav-item-dropdown>.nav-link i {
        transition: transform 0.3s;
    }

    .dropdown-item {
        font-size: 0.92rem !important;
        font-weight: 600 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 6px 12px !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    }

    .dropdown-item:last-child {
        border-bottom: none !important;
    }

    .dropdown-item:hover {
        color: var(--accent-gold) !important;
        background-color: rgba(255, 255, 255, 0.02) !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .radio-cards-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .dest-card {
        height: 150px;
    }

    .dest-overlay {
        padding: 12px;
    }

    .dest-overlay h4 {
        font-size: 1rem;
    }

    .dest-overlay p {
        font-size: 0.7rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    /* Trust badges & milestones 2x2 grids on mobile */
    .partners-strip {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .partner-logo {
        font-size: 1rem;
        justify-content: center;
    }

    .partner-logo i {
        font-size: 1.25rem;
    }

    .stats-strip-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-strip-item {
        min-width: 0;
        flex: none;
        gap: 10px;
        justify-content: center;
    }

    .stats-strip-icon {
        font-size: 1.5rem;
    }

    .stats-strip-info h3 {
        font-size: 1.4rem;
    }

    .stats-strip-info p {
        font-size: 0.75rem;
    }

    /* Mobile-First App Style Overrides */
    body {
        padding-bottom: 70px;
    }

    .hero-section {
        padding: 120px 0 40px 0;
    }

    .hero-booking-card {
        padding: 20px 15px;
    }

    .booking-card-header {
        margin-bottom: 15px;
    }

    .booking-card-header h3 {
        font-size: 1.3rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Booking Multi-Step Form Responsive Overrides */
    .booking-steps-nav::after {
        top: 18px;
        left: 20px;
        right: 20px;
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .step-label {
        font-size: 0.65rem;
        text-align: center;
        margin-top: 6px;
    }

    .booking-step-panel {
        padding: 24px 16px;
    }
}

/* ==========================================================================
   Animations System
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==========================================================================
   SVG Logo Scaling
   ========================================================================== */
.logo-svg {
    height: 85px;
    width: auto;
    display: block;
    padding: 5px;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .logo-svg {
        height: 72px;
        /* Restored back to original size */
    }
}

/* ==========================================================================
   3 Easy Steps Booking Section
   ========================================================================== */
.steps-section {
    background-color: var(--bg-light-primary);
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color-actual);
}

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

.step-card {
    background-color: var(--bg-light-secondary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

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

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--accent-red);
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
    margin-top: 10px;
}

.step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Single Page Embedded Booking Form
   ========================================================================== */
.embedded-booking-card {
    background-color: var(--bg-light-primary);
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin-top: 40px;
    border-top: 4px solid var(--accent-red);
}

.embedded-booking-card h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 8px;
    text-align: center;
    font-weight: 700;
}

.embedded-booking-card p {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.embedded-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.embedded-form-full {
    grid-column: span 2;
}

@media (max-width: 768px) {
    .embedded-form-grid {
        grid-template-columns: 1fr;
    }

    .embedded-form-full {
        grid-column: span 1;
    }

    .embedded-booking-card {
        padding: 25px;
    }
}

/* ==========================================================================
   Destinations Split Grid Responsive Class
   ========================================================================== */
.destinations-split-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1024px) {
    .destinations-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ==========================================================================
   Fleet Grid Layout & View All Toggle
   ========================================================================== */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cab-hidden {
    display: none !important;
}

@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Cab Card Outline Buttons side-by-side */
.cab-actions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
    width: 100%;
}

.btn-outline-gold {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold) !important;
    background: transparent;
    font-weight: 700;
    padding: 10px 8px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition-fast);
    text-align: center;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background-color: var(--accent-gold);
    color: var(--text-dark) !important;
}

.btn-outline-whatsapp {
    border: 1px solid var(--whatsapp-green);
    color: var(--whatsapp-green) !important;
    background: transparent;
    font-weight: 700;
    padding: 10px 8px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
    text-align: center;
    cursor: pointer;
}

.btn-outline-whatsapp:hover {
    background-color: var(--whatsapp-green);
    color: white !important;
}

/* Tour Card Footer Layout System to prevent overlaps */
.tour-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.tour-price-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-price-row h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--accent-red);
    margin: 0;
    font-weight: 700;
}

.tour-actions-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
    width: 100%;
}

.tour-actions-row .btn-whatsapp-price,
.tour-actions-row .btn-details {
    width: 100%;
    justify-content: center;
    padding: 10px 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
}

.tour-actions-row .btn-details {
    background-color: var(--accent-red);
    color: white;
    border: 1px solid var(--accent-red);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
}

.tour-actions-row .btn-details:hover {
    background-color: var(--accent-pink);
    border-color: var(--accent-pink);
}

/* ==========================================================================
   Tour Detail Pages CSS & Mobile Responsive Rules
   ========================================================================== */
.tour-featured-image-wrapper {
    margin-bottom: 30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 350px;
    border: 1px solid var(--border-color-actual);
    box-shadow: var(--shadow-sm);
}

.tour-featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tour-details-card {
    background-color: var(--bg-light-secondary);
    padding: 36px;
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.tour-itinerary-card {
    background-color: var(--bg-light-secondary);
    padding: 36px;
    border: 1px solid var(--border-color-actual);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.tour-inclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 15px;
}

@media (max-width: 768px) {
    .tour-featured-image-wrapper {
        height: 220px;
        margin-bottom: 20px;
    }

    .tour-details-card,
    .tour-itinerary-card {
        padding: 20px 16px;
        margin-bottom: 20px;
    }

    .tour-inclusions-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .split-layout-grid {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .promo-btn-group {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 25px;
    }

    .promo-btn-group .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.9rem;
    }

    /* booking.html Mobile Details & Receipt styling */
    .receipt-wrapper {
        padding: 20px 15px !important;
    }

    .receipt-details-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding-bottom: 8px;
        margin-bottom: 8px;
    }

    .receipt-details-table tr:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .receipt-details-table td {
        padding: 2px 0 !important;
        font-size: 0.9rem !important;
    }

    .receipt-details-table td.label {
        width: 100% !important;
        text-align: left !important;
        font-size: 0.8rem !important;
        margin-bottom: 2px;
    }

    .receipt-details-table td.val {
        width: 100% !important;
        text-align: left !important;
        font-size: 0.9rem !important;
    }

    .receipt-total {
        flex-direction: column;
        gap: 6px;
        align-items: flex-start !important;
        font-size: 1.1rem !important;
        padding-top: 12px;
    }

    /* booking.html stepper nav adjustment */
    .booking-steps-nav {
        margin-bottom: 25px;
    }

    .step-label {
        font-size: 0.6rem !important;
    }

    .step-circle {
        width: 32px !important;
        height: 32px !important;
        font-size: 0.8rem !important;
    }

    .booking-steps-nav::after {
        top: 15px !important;
    }
}

/* ==========================================================================
   NEW CUSTOM SYSTEMS (Top-Bar, Horizontal Search Bar & Modern Cab Cards)
   ========================================================================== */

/* Top Bar Styles */
.top-bar {
    background-color: var(--accent-gold);
    /* Saffron Orange #ff9400 */
    color: white;
    font-size: 0.82rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 500;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-left a,
.top-bar-right a,
.top-bar span,
.top-bar-left span,
.top-bar-right span {
    color: white !important;
    transition: opacity var(--transition-fast);
}

.top-bar-left a:hover,
.top-bar-right a:hover {
    opacity: 0.85;
}

.top-divider {
    opacity: 0.4;
    font-weight: 300;
}

.top-wa-channel {
    font-weight: 600;
}

/* Horizontal Hero Layout & Form Styles */
.hero-container-horizontal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    margin-top: 30px;
}

.hero-content-center {
    max-width: 900px;
    padding-top: 32px;
    margin-bottom: 25px;
    animation: fadeInUp 0.8s ease;
}

.hero-content-center h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.25;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.65);
}

.hero-content-center p {
    font-size: 1.15rem;
    color: var(--text-light);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.55);
    margin-bottom: 0;
    line-height: 1.6;
}

.hero-search-horizontal-bar {
    width: 100%;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 15px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease;
}

.search-horizontal-form {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 0.8fr;
    gap: 20px;
    align-items: center;
}

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

    .hero-search-horizontal-bar {
        padding: 20px;
        margin-top: 10px;
    }
}

.search-col {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 0;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.search-col:nth-child(3) {
    border-right: none;
}

@media (max-width: 991px) {
    .search-col {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        padding-bottom: 12px;
    }
}

.field-icon {
    font-size: 1.4rem;
    color: var(--accent-gold);
}

.field-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.search-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.search-input {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-family: var(--font-body);
}

.search-select {
    width: 100% !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    height: auto !important;
    font-size: 0.95rem;
    color: var(--text-dark) !important;
    font-weight: 700;
    font-family: var(--font-body);
    cursor: pointer;
}

.btn-search-horizontal {
    background-color: var(--accent-gold);
    color: white;
    width: 100%;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(255, 148, 0, 0.2);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-search-horizontal:hover {
    background-color: var(--accent-gold-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* uppercase text in menus */
.nav-link {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Modern Cab Card Styling based on Screenshot */
.cab-card-modern {
    background-color: var(--bg-light-secondary);
    border-radius: 16px;
    /* Rounded corners like screenshot */
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1.5px solid #ff9400;
    /* Orange/Saffron border like screenshot */
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.cab-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: #ff9400;
}

.cab-card-top {
    background-color: #f8f9fa;
    padding: 30px 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 220px;
    /* Increased from 180px */
}

.cab-badge-modern {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #0b1528;
    /* Dark Navy/Black badge */
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.cab-wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    color: #888;
    transition: var(--transition-fast);
}

.cab-wishlist-btn:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}

.cab-img-modern {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cab-img-modern img {
    max-height: 156px;
    /* Increased 30% from 120px */
    width: auto;
    max-width: 95%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.cab-card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.cab-booking-alert {
    color: #4c956c;
    /* Muted forest green from mockup */
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: inline-block;
}

.cab-name-modern {
    font-size: 1.45rem;
    /* Match bold title size */
    font-weight: 800;
    color: #0f172a;
    /* Slate 900 */
    margin-bottom: 0;
}

.cab-price-reviews-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cab-price-modern {
    display: none;
    /* Hide pricing tag to match mockup */
}

.cab-reviews-modern {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;
}

.cab-reviews-modern .stars {
    color: #f59e0b;
    /* Golden stars */
    font-size: 0.85rem;
    display: flex;
    gap: 2px;
}

.cab-reviews-modern .reviews-count {
    font-size: 0.8rem;
    color: #64748b;
    /* slate-500 */
    font-weight: 600;
}

.cab-specs-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 16px 0;
    margin-bottom: 20px;
    gap: 8px;
}

.spec-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.spec-circle-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: #f1f5f9;
    /* Slate 100 circle bg */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    /* Slate 600 icon color */
    font-size: 1.05rem;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
    transition: var(--transition-fast);
}

.spec-circle-item:hover .spec-circle-icon {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold-dark);
    border-color: var(--accent-gold);
}

.spec-circle-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    /* Slate 600 */
}

.cab-actions-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-call-book {
    background-color: #ff9400;
    /* Saffron Orange */
    color: white;
    padding: 12px 6px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 6px rgba(255, 148, 0, 0.15);
}

.btn-call-book:hover {
    background-color: #e07e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 148, 0, 0.25);
    color: white;
}

.btn-wa-book {
    background-color: #287a43;
    /* Dark green from screenshot */
    color: white;
    padding: 12px 6px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    box-shadow: 0 4px 6px rgba(40, 122, 67, 0.15);
}

.btn-wa-book:hover {
    background-color: #1e5c32;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 122, 67, 0.25);
    color: white;
}

/* Responsive adjustments for mobile top-bar & slider */
@media (max-width: 768px) {

    .top-bar-left .social-btn,
    .top-bar-left .top-divider,
    .top-bar-left .top-email {
        display: none !important;
    }

    .top-bar {
        padding: 6px 0;
        font-size: 0.72rem;
    }

    .top-bar-container {
        padding: 0 15px;
    }

    .top-bar-left,
    .top-bar-right {
        gap: 6px;
    }

    .hero-content-center h1 {
        font-size: 1.6rem !important;
        line-height: 1.35 !important;
        margin-bottom: 10px !important;
    }

    .hero-content-center p {
        display: none !important;
    }

    .hero-content-center .hero-btn-group {
        display: none !important;
    }

    .hero-section {
        padding: 130px 0 25px 0 !important;
        min-height: auto !important;
    }

    .hero-search-horizontal-bar {
        padding: 10px 14px !important;
        margin-top: 15px !important;
    }

    .search-col {
        padding: 4px 0 !important;
        gap: 6px !important;
    }

    .search-label {
        font-size: 0.65rem !important;
        margin-bottom: 1px !important;
    }

    .search-input,
    .search-select {
        font-size: 0.82rem !important;
    }

    .btn-search-horizontal {
        padding: 10px 14px !important;
        font-size: 0.9rem !important;
        margin-top: 4px;
    }

    /* About Section Features Mobile Alignment */
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        justify-items: start !important;
        text-align: left !important;
        margin-bottom: 25px !important;
    }

    .about-feature-item {
        justify-content: flex-start !important;
        width: 100% !important;
        gap: 10px !important;
    }

    /* Modern Cab Cards mobile fit and smaller specs icons */
    .spec-circle-icon {
        width: 34px !important;
        height: 34px !important;
        font-size: 0.82rem !important;
        margin-bottom: 4px !important;
    }

    .spec-circle-label {
        font-size: 0.65rem !important;
    }

    .cab-specs-modern {
        gap: 4px !important;
        margin-bottom: 15px !important;
    }

    .cab-card-top {
        height: 150px !important;
        padding: 15px 10px !important;
    }

    .cab-img-modern img {
        max-height: 105px !important;
    }

    .cab-card-details {
        padding: 15px !important;
    }

    .cab-price-reviews-row h3 {
        font-size: 1.2rem !important;
    }

    .cab-badge-modern {
        top: 10px !important;
        left: 10px !important;
        font-size: 0.65rem !important;
        padding: 4px 8px !important;
    }

    .cab-wishlist-btn {
        top: 10px !important;
        right: 10px !important;
        width: 28px !important;
        height: 28px !important;
    }

    /* Testimonials Horizontal Carousel Slider on Mobile */
    .testimonials-grid {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        gap: 15px !important;
        padding: 10px 15px 25px 15px !important;
        scroll-behavior: smooth !important;
        -ms-overflow-style: none !important;
        scrollbar-width: none !important;
    }

    .testimonials-grid::-webkit-scrollbar {
        display: none !important;
    }

    .testimonial-card {
        min-width: 85% !important;
        max-width: 85% !important;
        flex: 0 0 auto !important;
        scroll-snap-align: center !important;
        margin-bottom: 0 !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08) !important;
    }

    /* Collage Frame Main mobile downscaling */
    .collage-frame-main {
        width: 100% !important;
        height: 250px !important;
    }

    /* Subpage page-banner mobile padding & font-size reduction */
    .page-banner {
        padding: 70px 0 15px 0 !important;
    }

    .page-banner h1 {
        font-size: 1.85rem !important;
        margin-bottom: 8px !important;
    }

    .page-breadcrumbs {
        font-size: 0.8rem !important;
    }
}

/* ==========================================================================
   Blogs & Insights Design System (Matching User Reference Screenshot)
   ========================================================================== */


/* Dark Header Banner */
.blog-insights-banner {
    background-color: #121316;
    padding: 60px 20px 45px;
    text-align: center;
    color: #FFFFFF;
    border-bottom: 3.5px solid var(--accent-gold);
}

.blog-insights-title {
    font-family: var(--font-heading);
    font-size: 2.7rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.blog-insights-breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
}

.blog-insights-breadcrumbs a {
    color: #FFFFFF;
    text-decoration: none;
}

.blog-insights-breadcrumbs span.sep {
    color: #666666;
}

.blog-insights-breadcrumbs span.active {
    color: var(--accent-gold);
}

/* Category Filters Bar */
.blog-insights-filter-bar {
    padding: 30px 0 10px;
    background-color: #FAF9F6;
}

.blog-insights-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 8px 20px;
    background: #FFFFFF;
    color: var(--text-dark);
    border: 1px solid #E5E5E9;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.86rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: #000000;
    border-color: var(--accent-gold);
}

/* Main Grid Section */
.blog-insights-section {
    padding: 20px 0 90px;
    background-color: #FAF9F6;
}

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

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .blog-insights-title {
        font-size: 2rem;
    }
}

/* Blog Card Structure matching screenshot */
.blog-card {
    background: #FFFFFF;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid #EBEBEF;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.09);
}

.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #EFEFEF;
}

.blog-card-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

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

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

.blog-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-gold);
    color: #000000;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 12px;
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
}

.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    color: #777777;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-meta-date i {
    color: #888888;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
    line-height: 1.38;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--accent-gold);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: #666666;
    line-height: 1.55;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-read-details {
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--accent-gold);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
    margin-top: auto;
}

.blog-read-details:hover {
    color: var(--accent-gold-dark);
    transform: translateX(4px);
}


/* Call To Action Box (Bottom of Blog Page) */
.blog-cta-banner {
    background: linear-gradient(135deg, #1e130c 0%, #2c1a0f 100%);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    color: #FFFFFF;
    margin-top: 60px;
    border-top: 4px solid var(--accent-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-cta-banner i {
    font-size: 2.8rem;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.blog-cta-banner h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.blog-cta-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 600px;
    margin: 0 auto 25px;
}

.blog-cta-btns {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}


/* ================= Single Blog Detail Layout ================= */
.blog-detail-section {
    padding: 50px 0 80px;
    background-color: var(--bg-light-primary);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.blog-detail-content {
    background: #FFFFFF;
    padding: 30px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color-actual);
    box-shadow: var(--shadow-sm);
}

.blog-featured-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 24px;
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border-color-actual);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.blog-detail-meta i {
    color: var(--accent-gold);
}

.blog-article-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #332d29;
}

.blog-article-body h1,
.blog-article-body h2,
.blog-article-body h3 {
    color: var(--text-dark);
    font-weight: 800;
    margin: 30px 0 14px;
    line-height: 1.3;
}

.blog-article-body h2 {
    font-size: 1.55rem;
}

.blog-article-body h3 {
    font-size: 1.3rem;
}

.blog-article-body p {
    margin-bottom: 18px;
}

.blog-article-body ul,
.blog-article-body ol {
    margin: 15px 0 22px 24px;
}

.blog-article-body li {
    margin-bottom: 8px;
}

.quote-box {
    background: #FAF6F0;
    border-left: 4px solid var(--accent-gold);
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.08rem;
    color: #2c1a0f;
    font-weight: 600;
}

.blog-tags-container {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color-actual);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-tags-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.tag-pill {
    background: #F3ECE2;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: var(--radius-full);
}

.back-to-blogs-wrap {
    margin-top: 35px;
    text-align: center;
}

.btn-back-blogs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #124e37;
    color: #FFFFFF;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-back-blogs:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
    box-shadow: var(--shadow-gold);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #FFFFFF;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color-actual);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent-gold-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-title i {
    color: var(--accent-gold);
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.recent-post-thumb {
    width: 65px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.recent-post-info h4 {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 4px;
}

.recent-post-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
}

.recent-post-info h4 a:hover {
    color: var(--accent-gold);
}

.recent-post-date {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.category-widget-list {
    list-style: none;
}

.category-widget-list li {
    margin-bottom: 10px;
}

.category-widget-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    background: #FAF8F5;
    border: 1px solid var(--border-color-actual);
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.category-widget-list a:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
    border-color: var(--accent-gold);
}

.cta-sidebar-box {
    background: linear-gradient(135deg, #124e37 0%, #0d3827 100%);
    color: #FFFFFF;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 30px 20px;
}

.cta-sidebar-box i {
    font-size: 2.2rem;
    color: var(--accent-gold);
    margin-bottom: 12px;
}

.cta-sidebar-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.cta-sidebar-box p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.btn-sidebar-cta {
    display: inline-block;
    width: 100%;
    padding: 12px 20px;
    background: var(--accent-gold);
    color: #FFFFFF;
    font-weight: 800;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-sidebar-cta:hover {
    background: var(--accent-gold-dark);
}

/* Responsive Blog Detail */
@media (max-width: 992px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Admin Panel Comprehensive UI System
   ========================================================================== */
.admin-body {
    background-color: #F8FAFC !important;
    font-family: var(--font-body);
    color: #1E293B;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.admin-sidebar {
    width: 260px;
    background: #121316;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.admin-sidebar-header {
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-header img {
    max-height: 38px;
    width: auto;
}

.admin-sidebar-brand {
    font-weight: 800;
    font-size: 1.05rem;
    color: #FFFFFF;
    line-height: 1.2;
}

.admin-sidebar-brand span {
    display: block;
    font-size: 0.72rem;
    color: var(--accent-gold);
    font-weight: 600;
}

.admin-sidebar-menu {
    padding: 20px 12px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sidebar-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #DFD7D5;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-radius: 8px;
    transition: var(--transition-fast);
}

.sidebar-item:hover,
.sidebar-item.active {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
}

.sidebar-item.btn-sidebar-create {
    background: var(--accent-gold);
    color: #FFFFFF;
    font-weight: 700;
    margin: 5px 0 15px;
    box-shadow: var(--shadow-gold);
}

.sidebar-item.btn-sidebar-create:hover {
    background: var(--accent-gold-dark);
}

.admin-sidebar-footer {
    padding: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-sidebar-logout {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 10px 14px;
    background: #d9534f;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: var(--transition-fast);
}

.btn-sidebar-logout:hover {
    background: #c9302c;
}

/* Main Content Area */
.admin-main-wrapper {
    margin-left: 260px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.admin-top-header {
    background: #FFFFFF;
    padding: 18px 30px;
    border-bottom: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.admin-top-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 4px;
}

.admin-top-header p {
    font-size: 0.84rem;
    color: #64748B;
}

.admin-content-body {
    padding: 30px;
    flex-grow: 1;
}

/* Admin Card & Table Container */
.admin-card-box {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.admin-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F1F5F9;
}

.admin-card-header h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0;
}

/* Form Section Containers */
.admin-form-card {
    background: #FFFFFF;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    padding: 28px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    margin-bottom: 30px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: 2.3fr 1fr;
    gap: 30px;
}

/* Form Controls */
.form-control-admin {
    width: 100%;
    padding: 11px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-size: 0.92rem;
    outline: none;
    transition: var(--transition-fast);
    color: #1E293B;
    background: #FFFFFF;
    box-sizing: border-box;
}

.form-control-admin:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(255, 148, 0, 0.15);
}

/* Toolbar for WordPress-style Rich Editor */
.editor-toolbar {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    background: #F8FAFC;
    padding: 8px;
    border: 1px solid #CBD5E1;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
}

.tool-btn {
    background: #FFFFFF;
    border: 1px solid #CBD5E1;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    cursor: pointer;
    transition: var(--transition-fast);
}

.tool-btn:hover {
    background: var(--accent-gold);
    color: #FFFFFF;
    border-color: var(--accent-gold);
}

.editor-textarea {
    border-radius: 0 0 8px 8px !important;
}

/* SEO Box Panel */
.seo-panel-box {
    background: #F0FDF4;
    border: 1px solid #BBF7D0;
    border-radius: 12px;
    padding: 22px;
    margin-top: 25px;
}

.seo-panel-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #166534;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQs Section Box */
.faqs-panel-box {
    background: #FAF8F5;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 22px;
    margin-top: 25px;
}

.faq-item-row {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 12px;
    position: relative;
}

.btn-remove-faq {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FEE2E2;
    color: #991B1B;
    border: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
}

/* Image Preview */
.live-img-preview {
    width: 100%;
    height: 180px;
    border: 2px dashed #CBD5E1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 12px;
    background: #F8FAFC;
}

.live-img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Data Table */
.admin-table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.9rem;
}

.admin-table th {
    background: #F8FAFC;
    color: #475569;
    font-weight: 700;
    padding: 14px 16px;
    border-bottom: 2px solid #E2E8F0;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.admin-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #F1F5F9;
    vertical-align: middle;
    color: #334155;
}

.admin-table tr:hover td {
    background-color: #F8FAFC;
}

/* Status Badges */
.badge-status {
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    display: inline-block;
}

.badge-published {
    background: #DEF7EC;
    color: #03543F;
}

.badge-draft {
    background: #FEF3C7;
    color: #92400E;
}

/* Table Action Buttons */
.action-btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-act {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.88rem;
    transition: var(--transition-fast);
}

.btn-act-view {
    background: #E0F2FE;
    color: #0369A1;
}

.btn-act-view:hover {
    background: #0284C7;
    color: #FFFFFF;
}

.btn-act-edit {
    background: #FEF3C7;
    color: #B45309;
}

.btn-act-edit:hover {
    background: #D97706;
    color: #FFFFFF;
}

.btn-act-delete {
    background: #FEE2E2;
    color: #B91C1C;
}

.btn-act-delete:hover {
    background: #DC2626;
    color: #FFFFFF;
}

/* Admin Alert Messages */
.alert-admin {
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: #DEF7EC;
    color: #03543F;
    border: 1px solid #BCF0DA;
}

.alert-danger {
    background: #FDE8E8;
    color: #9B1C1C;
    border: 1px solid #FBD5D5;
}

/* Login Page Modern Responsive Styles */
.admin-login-body {
    background: radial-gradient(circle at 50% 20%, #2a1b12 0%, #111215 70%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    font-family: var(--font-body);
    position: relative;
    overflow-x: hidden;
}

.admin-login-body::before {
    content: '';
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.admin-login-wrapper {
    width: 100%;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.admin-login-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 40px 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-top: 5px solid var(--accent-gold-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.admin-login-header {
    text-align: center;
    margin-bottom: 28px;
}

.admin-login-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.admin-login-logo:hover {
    transform: scale(1.05);
}

.admin-login-header h2 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}

.admin-login-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

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

.form-group-admin label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group-admin label i {
    color: var(--accent-red);
}

.password-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-wrap .form-control-admin {
    padding-right: 45px;
}

.toggle-password-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.05rem;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.toggle-password-btn:hover {
    color: var(--text-dark);
}

.btn-admin-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--accent-red) 0%, #801017 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(165, 28, 36, 0.3);
    transition: all 0.25s ease;
    margin-top: 10px;
}

.btn-admin-submit:hover {
    background: linear-gradient(135deg, #b81f28 0%, #680d13 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(165, 28, 36, 0.4);
}

.btn-admin-submit:active {
    transform: translateY(0);
}

.login-footer-info {
    margin-top: 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cred-pill {
    background: #FFFBEB;
    border: 1px dashed #FCD34D;
    color: #92400E;
    font-size: 0.82rem;
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.back-to-site {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}

.back-to-site:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .admin-login-card {
        padding: 30px 20px;
        border-radius: 16px;
    }
    .admin-login-header h2 {
        font-size: 1.45rem;
    }
    .admin-login-logo {
        height: 48px;
    }
}

/* Responsive Admin Layout */
@media (max-width: 992px) {
    .admin-sidebar {
        width: 70px;
    }
    .admin-sidebar-brand span,
    .admin-sidebar-brand,
    .sidebar-item span {
        display: none;
    }
    .admin-main-wrapper {
        margin-left: 70px;
    }
    .admin-form-grid {
        grid-template-columns: 1fr;
    }
}