/* ==========================================================================
   ANJALI ROADLINES - PREMIUM LOGISTICS & TRANSPORTATION DESIGN SYSTEM
   ========================================================================== */

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

:root {
    /* Color Palette */
    --primary: #0B132B;       /* Deep Space Navy */
    --primary-light: #1C2541; /* Premium Dark Blue */
    --secondary: #3A506B;     /* Cool Slate Blue */
    --accent: #F5A623;        /* Warm Gold / Golden Amber */
    --accent-rgb: 245, 166, 35;
    --accent-dark: #D07B0A;   /* Deep Gold */
    --success: #10B981;       /* Emerald Success */
    --danger: #EF4444;        /* Crimson Red */
    --info: #3B82F6;          /* Info Blue */
    --warning: #F59E0B;       /* Amber Warning */
    
    /* Neutral Colors */
    --bg-dark: #070B19;       /* Deepest Indigo Navy */
    --bg-light: #F8FAFC;      /* Premium White / Light Slate */
    --card-light: #FFFFFF;    /* Clean White */
    --card-dark: #111A35;     /* Navy Card Background */
    --text-dark: #0F172A;     /* Slate 900 */
    --text-muted-dark: #64748B; /* Slate 500 */
    --text-light: #F8FAFC;    /* Slate 50 */
    --text-muted-light: #94A3B8; /* Slate 400 */
    
    /* Layout & Styling Tokens */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --border-radius: 12px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 30px 60px -15px rgba(0, 0, 0, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(28, 37, 65, 0.7);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 5px;
    border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Selection */
::selection {
    background-color: var(--accent);
    color: var(--primary);
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */

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

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

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

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

.section-header {
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 20px;
}

.section-title.dark-text {
    color: var(--text-dark);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
    gap: 8px;
}

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

.btn-primary:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(245, 166, 35, 0.4);
}

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

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-accent-outline:hover {
    background-color: var(--accent);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(245, 166, 35, 0.3);
}

.btn-block {
    width: 100%;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--border-radius);
    padding: 30px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.header.sticky {
    background: rgba(7, 11, 25, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #FFFFFF 0%, #D8E2DC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

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

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted-light);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-light);
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
}

/* Hamburger Menu Icon */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: var(--transition-smooth);
}

/* Mobile Nav Overlay */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--primary);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 100px 40px 40px 40px;
        gap: 24px;
        box-shadow: var(--shadow-premium);
        transition: var(--transition-smooth);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-menu .nav-cta {
        width: 100%;
        margin-top: 20px;
    }
    
    .nav-menu .nav-cta .btn {
        width: 100%;
    }

    /* Animation for Mobile Toggle */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background-color: var(--bg-dark);
    overflow: hidden;
}

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

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(7, 11, 25, 0.95) 40%, rgba(7, 11, 25, 0.7) 100%),
                linear-gradient(to top, rgba(7, 11, 25, 1) 0%, rgba(7, 11, 25, 0) 40%);
    z-index: 2;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 166, 35, 0.15);
    border: 1px solid rgba(245, 166, 35, 0.3);
    color: var(--accent);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted-light);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 50px;
}

@media (max-width: 480px) {
    .hero-actions .btn {
        width: 100%;
    }
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
}

.trust-icon {
    color: var(--accent);
    font-size: 1rem;
}

/* ==========================================================================
   ROUTE SECTION
   ========================================================================== */

.route-section {
    background-color: var(--bg-dark);
    position: relative;
}

.route-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.route-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.route-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: var(--transition-fast);
}

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

.route-card:hover::before {
    opacity: 1;
}

.route-label {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
    letter-spacing: 1px;
}

.route-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
    color: var(--accent);
}

.route-arrow {
    font-size: 1.5rem;
    animation: bounceVertical 2s infinite;
}

@keyframes bounceVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.route-arrow.reverse {
    animation: bounceVerticalReverse 2s infinite;
}

@keyframes bounceVerticalReverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.route-badge {
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.2);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.route-desc-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(28, 37, 65, 0.4);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: var(--border-radius-sm);
}

.route-desc-box p {
    font-size: 1.05rem;
    color: var(--text-muted-light);
}

/* ==========================================================================
   ABOUT US SECTION
   ========================================================================== */

.about {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

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

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

.about-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text {
    color: var(--text-muted-light);
    font-size: 1.05rem;
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

.about-bullet-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.about-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(11, 19, 43, 0.95);
    border: 1px solid var(--accent);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
}

.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent);
}

.about-badge-txt {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   SERVICES SECTION
   ========================================================================== */

.services {
    background-color: var(--bg-dark);
}

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

.service-card {
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(245, 166, 35, 0.3);
    box-shadow: var(--shadow-premium);
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(245, 166, 35, 0.15);
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.service-card:hover .service-icon-box {
    background: var(--accent);
    color: var(--primary);
}

.service-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-muted-light);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-btn {
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.service-card:hover .service-btn {
    gap: 12px;
}

/* ==========================================================================
   ONLINE BOOKING SYSTEM
   ========================================================================== */

.booking-section {
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

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

.booking-form-box {
    background: rgba(28, 37, 65, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 480px) {
    .booking-form-box {
        padding: 24px;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.col-span-2 {
    grid-column: span 2;
}

@media (max-width: 600px) {
    .form-group.col-span-2 {
        grid-column: span 1;
    }
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    background-color: var(--bg-dark);
    border: 1px solid var(--glass-border);
    color: var(--text-light);
    padding: 14px 18px;
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.booking-info-box {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card {
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
}

.info-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.info-icon {
    color: var(--accent);
    margin-top: 3px;
    font-size: 1.1rem;
}

.info-text-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.info-text-desc {
    font-size: 0.85rem;
    color: var(--text-muted-light);
}

/* ==========================================================================
   SUCCESS DIALOG / MODAL
   ========================================================================== */

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 25, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    padding: 20px;
}

.modal-backdrop.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background-color: var(--card-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    max-width: 550px;
    width: 100%;
    padding: 40px;
    box-shadow: var(--shadow-premium);
    position: relative;
    transform: scale(0.9);
    transition: transform var(--transition-smooth);
    text-align: center;
}

.modal-backdrop.active .modal-card {
    transform: scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    color: var(--text-muted-light);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--text-light);
}

.modal-icon-success {
    width: 80px;
    height: 80px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    font-size: 3rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.modal-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.modal-text {
    font-size: 1rem;
    color: var(--text-muted-light);
    margin-bottom: 24px;
}

.modal-details-card {
    background-color: var(--primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.modal-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
}

.modal-detail-row:last-child {
    border-bottom: none;
}

.modal-detail-label {
    color: var(--text-muted-light);
    font-weight: 500;
}

.modal-detail-value {
    color: var(--text-light);
    font-weight: 600;
}

.modal-detail-value.highlight {
    color: var(--accent);
}

/* ==========================================================================
   TRACKING & SHIPMENT TRACKING
   ========================================================================== */

.tracking-section {
    background-color: var(--bg-dark);
}

.tracking-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 600px) {
    .tracking-card {
        padding: 30px 20px;
    }
}

.tracking-form {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    .tracking-form {
        flex-direction: column;
    }
}

.tracking-form input {
    flex-grow: 1;
}

/* Tracking Display */
.tracking-display {
    display: none;
    margin-top: 30px;
}

.tracking-display.active {
    display: block;
}

.tracking-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 12px;
}

.tracking-info-id {
    font-size: 1.1rem;
    font-weight: 700;
}

.tracking-info-id span {
    color: var(--accent);
}

.tracking-info-status {
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.tracking-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 0 40px;
    padding-bottom: 30px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--primary);
    z-index: 1;
}

.timeline-progress-bar {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    z-index: 2;
    transition: width 1s ease;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100px;
}

.step-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    border: 3px solid var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted-light);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    margin-bottom: 12px;
}

.step-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted-light);
    text-align: center;
    white-space: nowrap;
}

/* Timeline States */
.timeline-step.completed .step-node {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--primary);
}

.timeline-step.completed .step-label {
    color: var(--text-light);
}

.timeline-step.active .step-node {
    background-color: var(--primary-light);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: 0 0 0 6px rgba(245, 166, 35, 0.2);
    animation: pulseGlow 2s infinite alternate;
}

.timeline-step.active .step-label {
    color: var(--accent);
    font-weight: 700;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 0 0px rgba(245, 166, 35, 0.3); }
    100% { box-shadow: 0 0 0 8px rgba(245, 166, 35, 0.1); }
}

@media (max-width: 900px) {
    .tracking-timeline {
        flex-direction: column;
        height: 450px;
        margin: 0 20px;
        padding-bottom: 0;
    }
    
    .tracking-timeline::before {
        top: 0;
        left: 20px;
        width: 4px;
        height: 100%;
    }
    
    .timeline-progress-bar {
        top: 0;
        left: 20px;
        width: 4px;
        height: 0%;
        transition: height 1s ease;
    }
    
    .timeline-step {
        flex-direction: row;
        width: 100%;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;
    }
    
    .step-node {
        margin-bottom: 0;
        margin-left: 0px;
    }
    
    .step-label {
        text-align: left;
        white-space: normal;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */

.why-choose-us {
    background-color: var(--primary);
}

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

.why-card {
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 35px;
    display: flex;
    gap: 20px;
    transition: var(--transition-smooth);
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(245, 166, 35, 0.2);
}

.why-icon-box {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(245, 166, 35, 0.1);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.why-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.why-desc {
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

/* ==========================================================================
   STATS SECTION (TRUST STATISTICS)
   ========================================================================== */

.stats {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

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

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   TESTIMONIALS & REVIEW SYSTEM
   ========================================================================== */

.reviews-section {
    background-color: var(--bg-dark);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: flex-start;
}

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

.reviews-slider-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.reviews-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.review-card {
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.review-card:hover {
    border-color: rgba(245, 166, 35, 0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 12px;
}

.review-user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background-color: var(--primary);
    border: 2px solid var(--accent);
}

.review-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-verified {
    background: rgba(16, 185, 129, 0.15);
    color: var(--success);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

.review-date {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}

.review-stars {
    color: var(--accent);
    font-size: 0.95rem;
    display: flex;
    gap: 4px;
}

.review-msg {
    font-style: italic;
    color: var(--text-muted-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.review-form-box {
    background: rgba(28, 37, 65, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 35px;
    backdrop-filter: blur(8px);
}

/* Star Rating Selector Form */
.rating-selector {
    display: flex;
    gap: 10px;
    margin-top: 5px;
}

.star-option {
    font-size: 1.8rem;
    color: var(--text-muted-light);
    cursor: pointer;
    transition: var(--transition-fast);
}

.star-option:hover, .star-option.selected {
    color: var(--accent);
}

/* ==========================================================================
   SUPPORT & CONTACT SECTIONS
   ========================================================================== */

.support-banner {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--primary);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.support-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.support-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.support-title {
    font-size: 2.2rem;
    font-weight: 800;
}

.support-desc {
    font-size: 1.1rem;
    font-weight: 500;
    max-width: 600px;
}

.support-phone-tag {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background-color: var(--primary);
    color: var(--accent);
    padding: 10px 30px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--shadow-lg);
    margin: 10px 0;
}

.support-actions {
    display: flex;
    gap: 16px;
}

.support-actions .btn-primary {
    background-color: var(--primary);
    color: var(--text-light);
}

.support-actions .btn-primary:hover {
    background-color: var(--primary-light);
    color: var(--accent);
}

/* Contact Section */
.contact-section {
    background-color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

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

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-detail-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 24px;
}

.contact-detail-icon {
    font-size: 1.5rem;
    color: var(--accent);
    background: rgba(245, 166, 35, 0.1);
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: var(--text-muted-light);
}

.contact-form-box {
    background: rgba(28, 37, 65, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
}

/* ==========================================================================
   IMAGE GALLERY & LIGHTBOX
   ========================================================================== */

.gallery-section {
    background-color: var(--bg-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    height: 240px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
    padding: 20px;
    text-align: center;
}

.gallery-icon {
    color: var(--accent);
    font-size: 1.8rem;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform var(--transition-smooth);
}

.gallery-title {
    font-size: 1.05rem;
    font-weight: 700;
    transform: translateY(15px);
    transition: transform var(--transition-smooth) 0.05s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-icon,
.gallery-item:hover .gallery-title {
    transform: translateY(0);
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 25, 0.95);
    z-index: 2500;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-premium);
    object-fit: contain;
}

.lightbox-caption {
    text-align: center;
    color: var(--text-light);
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--text-light);
    font-size: 2rem;
    cursor: pointer;
    background: transparent;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS
   ========================================================================== */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 480px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
}

.float-btn:hover {
    transform: translateY(-5px);
}

.float-btn-phone {
    background-color: var(--info);
}

.float-btn-whatsapp {
    background-color: #25D366; /* Official WhatsApp Green */
}

.float-btn-book {
    background-color: var(--accent);
    color: var(--primary);
}

/* Label Tooltips */
.float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 70px;
    background: var(--primary-light);
    color: var(--text-light);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.float-btn:hover::before {
    opacity: 1;
}

@media (max-width: 768px) {
    .float-btn::before {
        display: none; /* Hide tooltips on mobile */
    }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
    background-color: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px 0;
}

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

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

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-txt {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

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

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 8px;
    width: flex;
    align-self: flex-start;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted-light);
}

.footer-contact-icon {
    color: var(--accent);
    margin-top: 3px;
}

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

.admin-trigger-link {
    font-weight: 600;
    color: var(--accent);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.admin-trigger-link:hover {
    color: var(--text-light);
}

/* ==========================================================================
   SECURE ADMIN DASHBOARD
   ========================================================================== */

.admin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 1800;
    display: none;
    overflow-y: auto;
    padding: 40px 0;
}

.admin-modal.active {
    display: block;
}

.admin-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.admin-title-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.admin-badge {
    background: rgba(245, 166, 35, 0.15);
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
}

.admin-actions-top {
    display: flex;
    gap: 12px;
}

/* Admin Login Panel */
.admin-login-box {
    max-width: 420px;
    margin: 100px auto 0 auto;
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-premium);
    text-align: center;
}

.admin-login-logo {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.admin-login-title {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.admin-login-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    margin-bottom: 24px;
}

.admin-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.admin-error-msg {
    color: var(--danger);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    display: none;
}

/* Admin Dashboard View */
.admin-dashboard-view {
    display: none;
}

.admin-dashboard-view.active {
    display: block;
}

/* Grid Metrics */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-stat-info h5 {
    font-size: 0.85rem;
    color: var(--text-muted-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.admin-stat-value {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-light);
}

.admin-stat-icon {
    font-size: 2rem;
    color: var(--accent);
    background: rgba(245, 166, 35, 0.15);
    width: 56px;
    height: 56px;
    border-radius: var(--border-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Tabs */
.admin-tabs {
    display: flex;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 12px;
    margin-bottom: 30px;
    overflow-x: auto;
}

.admin-tab {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    background: transparent;
    color: var(--text-muted-light);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.admin-tab.active {
    background: var(--accent);
    color: var(--primary);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

/* Bookings List Filtering */
.admin-filters-row {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.admin-search-input {
    flex-grow: 1;
    min-width: 250px;
}

.admin-filter-select {
    width: 200px;
}

/* Premium Table Styles */
.table-container {
    width: 100%;
    overflow-x: auto;
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

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

.admin-table th {
    background-color: rgba(7, 11, 25, 0.5);
    color: var(--text-light);
    font-weight: 600;
    padding: 16px 20px;
    border-bottom: 2px solid var(--glass-border);
    font-family: var(--font-heading);
}

.admin-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted-light);
    vertical-align: middle;
}

.admin-table tr:last-child td {
    border-bottom: none;
}

.admin-table tr:hover td {
    background-color: rgba(255, 255, 255, 0.02);
    color: var(--text-light);
}

.badge-status {
    display: inline-flex;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

.badge-status.pending { background: rgba(245, 158, 11, 0.15); color: var(--warning); }
.badge-status.confirmed { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.badge-status.assigned { background: rgba(59, 130, 246, 0.15); color: var(--info); }
.badge-status.pickedup { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }
.badge-status.intransit { background: rgba(236, 72, 153, 0.15); color: #EC4899; }
.badge-status.delivered { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.badge-status.cancelled { background: rgba(239, 68, 68, 0.15); color: var(--danger); }

.table-actions {
    display: flex;
    gap: 8px;
}

.btn-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.btn-icon-view {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info);
}

.btn-icon-view:hover {
    background: var(--info);
    color: var(--text-light);
}

.btn-icon-status {
    background: rgba(245, 166, 35, 0.1);
    color: var(--accent);
}

.btn-icon-status:hover {
    background: var(--accent);
    color: var(--primary);
}

/* Modals for dashboard actions */
.admin-sub-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 11, 25, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1900;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.admin-sub-modal.active {
    display: flex;
}

.admin-sub-card {
    background-color: var(--card-dark);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    max-width: 600px;
    width: 100%;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    position: relative;
}

/* Review Moderator Section */
.admin-reviews-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.admin-review-item {
    background: var(--primary-light);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-sm);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
}

@media (max-width: 600px) {
    .admin-review-item {
        flex-direction: column;
        gap: 16px;
    }
}

.admin-review-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-review-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 0.8rem;
    color: var(--text-muted-light);
}

.admin-review-actions {
    display: flex;
    gap: 8px;
    align-self: flex-end;
}

.btn-approve {
    background-color: rgba(16, 185, 129, 0.15);
    color: var(--success);
}
.btn-approve:hover {
    background-color: var(--success);
    color: var(--text-light);
}

.btn-reject {
    background-color: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}
.btn-reject:hover {
    background-color: var(--warning);
    color: var(--primary);
}

.btn-delete {
    background-color: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}
.btn-delete:hover {
    background-color: var(--danger);
    color: var(--text-light);
}

/* Notification logs list */
.log-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 500px;
    overflow-y: auto;
    padding-right: 8px;
}

.log-item {
    background-color: var(--primary-light);
    border-left: 4px solid var(--info);
    padding: 14px 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.log-item.success {
    border-left-color: var(--success);
}

.log-item.failed {
    border-left-color: var(--danger);
}

.log-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.log-timestamp {
    font-size: 0.75rem;
    color: var(--text-muted-light);
}
