:root {
    --primary: #1a3c40;
    --primary-dark: #0d292c;
    --accent: #d4af37;
    --accent-light: #e6c567;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --success: #38a169;
    --warning: #dd6b20;
    --danger: #e53e3e;
    --info: #3182ce;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-gray {
    background-color: var(--gray-light);
}

/* Header Styles */
.header {
    background-color: var(--primary-dark);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
}

.logo span {
    color: var(--accent);
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: var(--accent);
}

.auth-buttons .btn {
    margin-left: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(13, 41, 44, 0.9), rgba(13, 41, 44, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.service-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-card ul li i {
    font-size: 1rem;
    margin-right: 10px;
    color: var(--success);
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-selector select {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Admin & User Dashboard Styles */
.admin-container, .user-container {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar, .user-sidebar {
    width: 250px;
    background: var(--primary-dark);
    color: white;
    padding: 20px 0;
}

.admin-content, .user-content {
    flex: 1;
    padding: 30px;
    background: #f8fafc;
}

.sidebar-menu {
    list-style: none;
}

.sidebar-menu li a {
    display: block;
    padding: 12px 20px;
    color: var(--gray-light);
    text-decoration: none;
    transition: background 0.3s, color 0.3s;
}

.sidebar-menu li a:hover, 
.sidebar-menu li a.active {
    background: rgba(255,255,255,0.1);
    color: white;
}

.sidebar-menu li a i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.stat-icon i {
    font-size: 24px;
    color: var(--accent);
}

.stat-info h3 {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 5px;
}

.stat-info p {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.data-table th {
    background: var(--primary);
    color: white;
    text-align: left;
    padding: 12px 15px;
}

.data-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--gray-light);
}

.data-table tr:last-child td {
    border-bottom: none;
}

.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.status-pending {
    background: rgba(221, 107, 32, 0.1);
    color: var(--warning);
}

.status-processing {
    background: rgba(49, 130, 206, 0.1);
    color: var(--info);
}

.status-in_transit {
    background: rgba(56, 161, 105, 0.1);
    color: var(--success);
}

.status-delivered {
    background: rgba(56, 161, 105, 0.2);
    color: var(--success);
}

.status-paid {
    background: rgba(56, 161, 105, 0.2);
    color: var(--success);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav {
        margin: 15px 0;
    }
    
    .auth-buttons {
        margin-top: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-container, .user-container {
        flex-direction: column;
    }
    
    .admin-sidebar, .user-sidebar {
        width: 100%;
    }
 }:root {
    --primary: #1a3c40;
    --primary-dark: #0d292c;
    --accent: #d4af37;
    --accent-light: #e6c567;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #718096;
    --gray-light: #e2e8f0;
    --success: #38a169;
    --warning: #dd6b20;
    --danger: #e53e3e;
    --info: #3182ce;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f7fa;
    color: var(--dark);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.bg-gray {
    background-color: var(--gray-light);
}

/* Header Styles */
.header {
    background-color: var(--primary-dark);
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
    color: var(--accent);
}

.logo span {
    color: var(--accent);
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin: 0 15px;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav ul li a:hover {
    color: var(--accent);
}

.auth-buttons .btn {
    margin-left: 10px;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(13, 41, 44, 0.9), rgba(13, 41, 44, 0.9)), 
                url('../images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero p {
    font-size: 1.5rem;
    max-width: 700px;
    margin: 0 auto 40px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--primary-dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 30px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.service-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.service-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-card ul li i {
    font-size: 1rem;
    margin-right: 10px;
    color: var(--success);
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-light);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.btn:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--accent);
}

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background: var(--accent);
    color: white;
}

.btn-link {
    display: inline-block;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    margin-top: 15px;
}

.btn-link:hover {
    text-decoration: underline;
}

/* Footer Styles */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-col p {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--gray-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--accent);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-info li i {
    margin-right: 10px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.language-selector select {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Booking Page Enhancements */
.booking-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    padding: 30px;
}

.booking-card h3 {
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.booking-sidebar {
    background: var(--primary-dark);
    color: white;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
}

.booking-sidebar h4 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.booking-sidebar ul {
    padding-left: 20px;
}

.booking-sidebar li {
    margin-bottom: 10px;
}

.booking-sidebar p {
    margin-top: 20px;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav {
        margin: 15px 0;
    }
    
    .auth-buttons {
        margin-top: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .admin-container, .user-container {
        flex-direction: column;
    }
    
    .admin-sidebar, .user-sidebar {
        width: 100%;
    }
}
/* ========== 3D Booking System Styles ========== */
.booking-container-3d {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1),
                0 4px 10px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    overflow: hidden;
    margin: 40px auto;
    max-width: 900px;
    transition: all 0.4s ease;
}

.booking-container-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.booking-container-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15),
                0 5px 15px rgba(0, 0, 0, 0.1);
}

.booking-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.booking-header h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.booking-header h2 i {
    margin-right: 10px;
    color: var(--accent);
}

.booking-header p {
    color: var(--gray);
    font-size: 1.1rem;
}

/* 3D Form Styles */
.booking-form-3d {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group-3d {
    flex: 1;
    position: relative;
}

.form-group-3d label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1rem;
}

.form-group-3d label i {
    margin-right: 8px;
    color: var(--accent);
    width: 20px;
    text-align: center;
}

.input-container-3d {
    position: relative;
}

.form-control-3d {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    box-shadow: inset 0 2px 5px rgba(0,0,0,0.05);
}

.form-control-3d:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2),
                inset 0 2px 5px rgba(0,0,0,0.05);
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.4s ease;
}

.form-control-3d:focus ~ .input-focus-border {
    width: 100%;
}

textarea.form-control-3d {
    min-height: 120px;
    resize: vertical;
}

/* 3D Button Styles */
.btn-3d {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: white;
    background: var(--accent);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 0 var(--accent-dark),
                0 8px 15px rgba(0,0,0,0.2);
    overflow: hidden;
}

.btn-3d:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 7px 0 var(--accent-dark),
                0 10px 20px rgba(0,0,0,0.2);
}

.btn-3d:active {
    transform: translateY(3px);
    box-shadow: 0 2px 0 var(--accent-dark),
                0 3px 10px rgba(0,0,0,0.2);
}

.btn-3d i {
    margin-right: 10px;
}

.btn-primary-3d {
    background: var(--accent);
    align-self: center;
    margin-top: 10px;
    padding: 16px 40px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

/* Alert Styles */
.alert-danger-3d {
    background: #ffebee;
    color: #c62828;
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 5px solid #c62828;
    margin-bottom: 25px;
    box-shadow: 0 3px 10px rgba(198, 40, 40, 0.1);
}

.booking-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    color: var(--gray);
    font-size: 0.9rem;
}

.booking-footer i {
    color: var(--accent);
    margin-right: 8px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 25px;
    }
    
    .booking-container-3d {
        padding: 30px 20px;
        margin: 20px auto;
    }
    
    .booking-header h2 {
        font-size: 1.8rem;
    }
    
    .btn-primary-3d {
        width: 100%;
    }
}

/* Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.booking-container-3d:hover .booking-header i {
    animation: float 2s ease-in-out infinite;
} 
/* Tracking Page Enhancements */
.tracking-details {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.tracking-info p {
    margin-bottom: 10px;
    color: var(--dark);
}

.progress-steps {
    margin-top: 30px;
    border-left: 4px solid var(--accent);
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--gray-light);
    border-radius: 50%;
    border: 3px solid white;
    z-index: 2;
}

.step.completed::before {
    background: var(--accent);
}

.step-icon {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.step-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.step-info p {
    margin: 5px 0;
    color: var(--gray);
}

.step-date {
    font-size: 0.85rem;
    color: var(--gray);
}

.tracking-map {
    margin-top: 40px;
    background: var(--gray-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.map-placeholder {
    padding: 30px;
    background: rgba(255,255,255,0.7);
    border: 1px dashed var(--accent);
    border-radius: 8px;
}

.current-location {
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.alert-danger {
    background: rgba(229, 62, 62, 0.1);
    color: var(--danger);
    border: 1px solid var(--danger);
    padding: 15px;
    border-radius: 6px;
    margin-top: 20px;
    text-align: center;
}
:root {
  --gold-primary: #D4AF37;
  --gold-secondary: #F5D98B;
  --gold-light: #FFFAF0;
}

/* Gold Themed Elements */
.btn-gold {
  background: var(--gold-primary);
  color: #000;
  border: none;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: var(--gold-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(212, 175, 55, 0.3);
}

.card-gold {
  border: 1px solid var(--gold-primary);
  box-shadow: 0 2px 15px rgba(212, 175, 55, 0.1);
}

.form-control:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
}

.select2-container--default .select2-results__option--highlighted {
  background-color: var(--gold-light) !important;
  color: #000 !important;
} 
/* Header styles */
.header {
    background: #004225;
    color: white;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    color: white;
    font-size: 1.4rem;
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 8px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.auth-buttons a {
    margin-left: 10px;
    text-decoration: none;
    color: white;
}

.auth-buttons .btn-primary {
    background: white;
    color: #004225;
    padding: 6px 12px;
    border-radius: 4px;
}

.auth-buttons .btn-outline {
    border: 1px solid white;
    padding: 6px 12px;
    border-radius: 4px;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        width: 100%;
        display: none;
        background: #004225;
        padding: 15px 0;
    }

    .nav-wrapper.show {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        align-items: center;
    }

    .auth-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mobile-menu-btn {
        display: block;
    }
}
 
 .booking-success-3d {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.success-icon-3d {
    font-size: 64px;
    color: #28a745;
    animation: pop 0.6s ease-out;
}

.tracking-display {
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    background: #f0f4f8;
    padding: 10px 16px;
    border-radius: 8px;
    display: inline-block;
    color: #333;
}

@keyframes pop {
    0% { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}
