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

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

:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --success-color: #10b981;
    --text-dark: #1a202c;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-attachment: fixed;
    color: white;
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23ffffff" fill-opacity="0.05" width="100" height="100"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.search-bar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-hover);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.search-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.search-group label {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.search-group input,
.search-group select {
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.search-group input:focus,
.search-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Header & Navigation */
.header {
    background: white;
    box-shadow: var(--shadow);
    z-index: 1000;
}

.header.sticky {
    position: sticky;
    top: 0;
    background: white;
}

.navbar {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-login, .btn-signup, .btn-logout {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
}

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

.btn-login:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.3);
}

.btn-signup {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(102, 126, 234, 0.4);
}

.btn-logout {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5252 100%);
    color: white;
    border: none;
}

.btn-logout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(255, 107, 107, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    border: none;
    background: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 6rem 1rem;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.search-bar {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-hover);
}

.search-bar form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 1rem;
    align-items: end;
}

.search-group {
    display: flex;
    flex-direction: column;
}

.search-bar input,
.search-bar select {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.search-bar input:focus,
.search-bar select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.search-btn {
    padding: 0.75rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Categories Section */
.categories {
    padding: 4rem 1rem;
    background: var(--bg-light);
}

.categories h2,
.featured h2,
.why-choose-us h2,
.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.category-link:hover {
    color: var(--secondary-color);
}

/* Featured Listings */
.featured {
    padding: 4rem 1rem;
    background: white;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.featured-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    height: 200px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1rem;
    background-size: cover;
    background-position: center;
}

.card-badge {
    background: var(--accent-color);
    color: white;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-rating {
    color: #ff9800;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.btn-cta {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    text-align: center;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(102, 126, 234, 0.3);
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Contact Section */
.contact {
    padding: 4rem 1rem;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.info-item p {
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.btn-submit {
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3748 100%);
    color: rgba(255,255,255,0.8);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
    font-weight: bold;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 1rem;
    color: #aaa;
}

/* Trust & Conversion Elements */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin: 2rem 0;
}

.trust-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid #667eea;
    border-radius: 5px;
    color: #667eea;
    font-size: 0.85rem;
    font-weight: bold;
}

.urgency-indicator {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: #ff6b6b;
    color: white;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.testimonials-section {
    margin: 3rem 0;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial {
    background: white;
    border-left: 4px solid #667eea;
    padding: 1.5rem;
    border-radius: 5px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.testimonial-author {
    color: #667eea;
    font-weight: bold;
    margin-top: 1rem;
}

.testimonial-rating {
    color: #ff9800;
    font-size: 0.9rem;
    margin: 0.5rem 0;
}

.testimonial-text {
    color: #666;
    line-height: 1.6;
    margin: 0.5rem 0;
}

/* Authentication Pages */
.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.auth-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    width: 100%;
    max-width: 400px;
}

.auth-card h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.5);
}

.form-group button {
    width: 100%;
    padding: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.form-group button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.auth-link {
    text-align: center;
    margin-top: 1rem;
}

.auth-link a {
    color: var(--primary-color);
    text-decoration: none;
}

.auth-link a:hover {
    text-decoration: underline;
}

.alert {
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 1rem;
}

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

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .nav-menu.active {
        max-height: 300px;
        box-shadow: var(--shadow);
    }

    .nav-menu li {
        padding: 1rem;
        border-bottom: 1px solid var(--border-color);
    }

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

    .hero-content p {
        font-size: 1rem;
    }

    .search-bar form {
        grid-template-columns: 1fr;
    }

    .search-bar input,
    .search-bar select,
    .search-btn {
        width: 100%;
    }

    .categories h2,
    .featured h2,
    .why-choose-us h2,
    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .auth-card {
        margin: 1rem;
    }
}

/* Package Listing Page */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
}

.package-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.package-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 1.5rem;
    transition: all 0.4s ease;
}

.package-card:hover .package-image {
    background-size: 110%;
}

.package-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
}

.package-content {
    padding: 1.5rem;
}

.package-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.package-content .location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.package-content .price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Package Detail Page */
.package-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.package-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.package-detail-content {
    padding: 3rem 2rem;
}

.package-detail-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.package-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    font-size: 1.1rem;
    color: var(--text-light);
}

.package-section {
    margin-bottom: 2rem;
}

.package-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.package-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.package-booking {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
    text-align: center;
}

.package-booking .price {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.btn-cta-large {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.back-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.back-link a:hover {
    color: var(--secondary-color);
}

/* Package Form */
.package-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 2rem auto;
}

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

.package-form .form-group {
    margin-bottom: 1.5rem;
}

.package-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.package-form input,
.package-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.package-form input:focus,
.package-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.package-form small {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Pagination */
.btn-pagination {
    display: inline-block;
    padding: 0.75rem 1rem;
    margin: 0.25rem;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-pagination:hover,
.btn-pagination.active {
    background: var(--primary-color);
    color: white;
}

/* Hotels Grid */
.hotels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.hotel-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    cursor: pointer;
}

.hotel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.hotel-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.hotel-rating {
    background: rgba(0, 0, 0, 0.7);
    color: gold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
}

.hotel-content {
    padding: 1.5rem;
}

.hotel-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.hotel-content .location {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.hotel-content .description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Hotel Detail */
.hotel-detail {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hotel-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hotel-detail-content {
    padding: 3rem 2rem;
}

.hotel-detail-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hotel-detail-content .location {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hotel-section {
    margin-bottom: 2rem;
}

.hotel-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.hotel-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.amenity-tag {
    background: #f0f0f0;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

/* Rooms Grid */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

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

.room-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.room-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.room-card-content {
    padding: 1.5rem;
}

.room-card-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.room-card-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.room-price {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.rooms-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.room-item {
    display: flex;
    gap: 2rem;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    align-items: flex-start;
}

.room-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
}

.room-info {
    flex: 1;
}

.room-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.room-info p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.filter-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.vehicle-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.vehicle-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1rem;
}

.vehicle-type {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
}

.vehicle-content {
    padding: 1.5rem;
}

.vehicle-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.vehicle-content .driver {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.vehicle-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.vehicle-meta .price {
    font-weight: bold;
    color: var(--primary-color);
}

/* Booking Form */
.booking-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form .form-group {
    margin-bottom: 1.5rem;
}

.booking-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.booking-form input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(102, 126, 234, 0.3);
}

.booking-form small {
    display: block;
    margin-top: 0.5rem;
    color: #999;
    font-size: 0.85rem;
}

/* Fare Calculator */
.fare-calculator {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.fare-calculator h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.fare-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    color: var(--text-light);
}

.fare-row span:last-child {
    font-weight: bold;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .vehicles-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .booking-card,
    .booking-form {
        margin-bottom: 2rem;
    }
}

/* Bookings List */
.bookings-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.booking-item:hover {
    box-shadow: var(--shadow-hover);
}

.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.booking-header h3 {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.booking-header p {
    margin: 0.3rem 0 0 0;
}

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

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-row span:first-child {
    color: #999;
    font-size: 0.9rem;
}

.detail-row strong {
    color: var(--text-dark);
    font-weight: 600;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    color: white;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
}

.bookings-table {
    font-size: 0.95rem;
}

.bookings-table th {
    background: #f5f5f5;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
    padding: 1rem;
    text-align: left;
}

.bookings-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.bookings-table tr:hover {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    .bookings-table {
        font-size: 0.85rem;
    }

    .bookings-table th,
    .bookings-table td {
        padding: 0.75rem;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }
}

/* Checkout & Payments */
.checkout-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.summary-row span {
    color: #999;
    font-size: 0.95rem;
}

.summary-row strong {
    color: var(--text-dark);
    font-weight: 600;
}

.payment-options {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
}

.payment-options label {
    display: block;
    padding: 0.75rem 0;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-options label:hover {
    color: var(--primary-color);
}

.payment-amount {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f0f0 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
}

.payments-table {
    font-size: 0.95rem;
}

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

.payments-table th {
    background: #f5f5f5;
    border-bottom: 2px solid var(--border-color);
    font-weight: 600;
}

.payments-table tr:hover {
    background: #f9f9f9;
}

@media (max-width: 768px) {
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    .checkout-card {
        padding: 1.5rem;
    }

    .payments-table th,
    .payments-table td {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
}

/* Dashboard Layout */
.dashboard-layout {
    display: flex;
    background: #f5f5f5;
    min-height: 100vh;
}

.dashboard-sidebar {
    width: 250px;
    background: white;
    box-shadow: var(--shadow);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-logo {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.sidebar-nav {
    padding: 1rem 0;
}

.nav-section {
    margin: 1.5rem 0;
}

.nav-label {
    padding: 0.5rem 1.5rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

.nav-item:hover {
    background: #f5f5f5;
    color: var(--primary-color);
}

.nav-item.active {
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: calc(1.5rem - 4px);
}

.nav-item .icon {
    font-size: 1.2rem;
}

.nav-item.logout {
    color: #f44336;
}

.dashboard-main {
    margin-left: 250px;
    flex: 1;
    padding: 2rem;
}

.dashboard-header {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.dashboard-header h1 {
    margin: 0 0 0.5rem 0;
    font-size: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-label {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    text-transform: uppercase;
}

.stat-number {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin: 0.5rem 0;
    font-weight: bold;
}

.stat-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.stat-link:hover {
    text-decoration: underline;
}

/* Quick Actions */
.quick-actions {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.quick-actions h2 {
    margin-top: 0;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s;
    text-align: center;
}

.action-btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.btn-icon {
    font-size: 2rem;
}

.btn-text {
    font-weight: 600;
}

/* List Table */
.list-table {
    border-collapse: collapse;
    overflow: hidden;
}

.list-table thead {
    background: #f5f5f5;
    border-bottom: 2px solid var(--border-color);
}

.list-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.list-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.list-table tr:hover {
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 768px) {
    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        box-shadow: none;
        border-bottom: 1px solid var(--border-color);
    }

    .sidebar-toggle {
        display: block;
    }

    .dashboard-main {
        margin-left: 0;
    }

    .sidebar-nav {
        display: none;
    }

    .dashboard-sidebar.active .sidebar-nav {
        display: block;
    }

    .dashboard-header {
        display: block;
    }

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

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .list-table {
        font-size: 0.85rem;
    }

    .list-table th,
    .list-table td {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .dashboard-main {
        padding: 1rem;
    }

    .dashboard-header {
        padding: 1rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .stat-icon {
        margin: 0 auto;
    }
}

/* Reviews Section */
.reviews-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.reviews-section h2 {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.reviews-section h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.star-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.2s;
    color: #ddd;
}

.star-btn:hover {
    color: #ff9800;
    transform: scale(1.1);
}

.star-btn.selected {
    color: #ff9800;
}

.review-item {
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: bold;
    color: var(--text-dark);
}

.review-rating {
    color: #ff9800;
    margin: 0.5rem 0;
}

.review-date {
    color: #999;
    font-size: 0.9rem;
}

.review-comment {
    color: #666;
    line-height: 1.6;
}

.rating-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.rating-number {
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rating-bar-fill {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.rating-bar-progress {
    height: 100%;
    background: #ff9800;
}

@media (max-width: 768px) {
    .rating-summary {
        flex-direction: column;
    }

    .reviews-section {
        padding: 1.5rem;
    }

    .star-btn {
        font-size: 1.5rem;
    }
}

.btn-cta-secondary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    margin-top: 0.5rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
}

.btn-cta-secondary:hover {
    background: #1ba855;
    transform: translateY(-2px);
}

/* ===== MOBILE-FIRST OPTIMIZATION ===== */

/* Tablet & Small Desktop (768px to 1023px) */
@media (max-width: 1023px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    .featured-grid,
    .category-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .hotels-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile (480px to 767px) */
@media (max-width: 767px) {
    /* ===== Typography Mobile ===== */
    h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    h4, h5, h6 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    /* ===== Navigation Mobile ===== */
    .navbar {
        padding: 0.75rem 0;
    }

    .navbar-content {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hamburger {
        display: flex;
    }

    .hamburger span {
        width: 22px;
        height: 2.5px;
        margin: 4px 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
        list-style: none;
        z-index: 999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }

    .btn-login, .btn-signup, .btn-logout {
        width: 90%;
        margin: 0.5rem auto;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    /* ===== Hero Section Mobile ===== */
    .hero {
        padding: 4rem 1rem;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .search-bar {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 12px;
        width: 100%;
    }

    .search-group {
        width: 100%;
    }

    .search-group label {
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        display: block;
    }

    .search-group input,
    .search-group select {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 8px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
        color: var(--text-dark);
    }

    .search-btn {
        width: 100%;
        padding: 0.875rem !important;
        font-size: 0.95rem;
        margin-top: 0.5rem;
    }

    /* ===== Grid Layouts Mobile ===== */
    .featured-grid,
    .category-grid,
    .features-grid,
    .packages-grid,
    .hotels-grid,
    .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .featured-card,
    .category-card,
    .package-card,
    .hotel-card,
    .vehicle-card {
        border-radius: 12px;
    }

    /* ===== Buttons Mobile ===== */
    .btn-cta,
    .btn-cta-large,
    .btn-submit,
    .btn-primary,
    .btn-secondary,
    .action-btn,
    .category-link {
        width: 100%;
        padding: 0.875rem 1rem !important;
        font-size: 0.95rem;
        display: block;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .btn-cta-secondary {
        width: 100%;
        padding: 0.875rem 1rem;
    }

    /* ===== Card Images Mobile ===== */
    .card-image {
        min-height: 200px;
        object-fit: cover;
    }

    /* ===== Form Inputs Mobile ===== */
    input[type="text"],
    input[type="email"],
    input[type="password"],
    input[type="date"],
    input[type="number"],
    textarea,
    select {
        width: 100%;
        padding: 0.875rem;
        font-size: 1rem;
        border-radius: 8px;
        border: 1px solid var(--border-color);
        font-family: inherit;
    }

    textarea {
        min-height: 120px;
        resize: vertical;
    }

    /* ===== Flexbox Mobile ===== */
    .flex-between,
    .flex-center,
    .flex-column {
        flex-direction: column;
    }

    .flex-between,
    .flex-center {
        align-items: stretch;
        gap: 1rem;
    }

    /* ===== Booking Info Mobile ===== */
    .booking-info {
        flex-direction: column;
        gap: 1rem;
    }

    .booking-section {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    /* ===== Details Mobile ===== */
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .detail-item {
        padding: 1rem;
    }

    /* ===== Testimonials Mobile ===== */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    /* ===== Trust Badges Mobile ===== */
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .trust-badge {
        padding: 1rem;
        text-align: center;
    }

    /* ===== Reviews Mobile ===== */
    .review-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .rating-summary {
        flex-direction: column;
        gap: 1.5rem;
    }

    .reviews-section {
        padding: 1.25rem;
    }

    /* ===== Tables Mobile ===== */
    .list-table {
        font-size: 0.85rem;
    }

    .list-table th,
    .list-table td {
        padding: 0.75rem 0.5rem;
    }

    /* ===== Contact Form Mobile ===== */
    .contact-form {
        padding: 1.5rem;
    }

    /* ===== Package Detail Mobile ===== */
    .package-detail-content {
        padding: 1.5rem 1rem;
    }

    .package-detail-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .package-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .package-info-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* ===== Hotel/Vehicle Detail Mobile ===== */
    .detail-header {
        flex-direction: column;
        gap: 1rem;
    }

    .detail-gallery {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    /* ===== Footer Mobile ===== */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1.5rem;
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .social-links {
        justify-content: center;
    }

    /* ===== Dashboard Mobile ===== */
    .dashboard-container {
        flex-direction: column;
    }

    .dashboard-sidebar {
        width: 100%;
        height: auto;
        position: static;
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
    }

    .dashboard-main {
        margin-left: 0;
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .action-btn {
        padding: 1.5rem 1rem;
        font-size: 0.9rem;
    }

    .btn-icon {
        font-size: 1.5rem;
    }

    /* ===== Spacing Mobile ===== */
    section {
        padding: 2rem 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    /* ===== Hover Effects - Reduce on Mobile ===== */
    @media (hover: none) {
        .card:hover {
            transform: none;
        }

        .btn-cta:hover {
            transform: none;
        }

        .featured-card:hover {
            transform: none;
        }
    }
}

/* Small Mobile (up to 479px) */
@media (max-width: 479px) {
    .container {
        padding: 0 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    h3 {
        font-size: 1rem;
    }

    p {
        font-size: 0.9rem;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .logo {
        font-size: 1.1rem;
    }

    .hero {
        padding: 3rem 0.75rem;
    }

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

    .hero-content p {
        font-size: 0.9rem;
    }

    .search-bar {
        padding: 1rem 0.75rem;
    }

    .search-group input,
    .search-group select {
        padding: 0.75rem 0.5rem;
        font-size: 16px;
    }

    .btn-login, .btn-signup, .btn-logout {
        width: 95%;
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .btn-cta,
    .btn-cta-large,
    .btn-submit {
        padding: 0.75rem 0.75rem !important;
        font-size: 0.9rem;
    }

    .featured-card,
    .category-card,
    .card {
        margin-bottom: 1rem;
    }

    .featured-card,
    .category-card,
    .package-card,
    .hotel-card,
    .vehicle-card {
        border-radius: 10px;
    }

    section {
        padding: 1.5rem 0.75rem;
    }

    .package-detail-content {
        padding: 1.25rem 0.75rem;
    }

    .reviews-section {
        padding: 1rem;
    }

    .contact-form {
        padding: 1.25rem;
    }

    .review-item {
        padding: 1rem;
        margin-bottom: 0.75rem;
    }

    .rating-number {
        font-size: 2.5rem;
    }

    .star-btn {
        font-size: 1.5rem;
    }

    .trust-badge {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section {
        padding-bottom: 1rem;
    }
}

/* ===== HIGH-CONVERSION ELEMENTS ===== */

/* Urgency & Trust Badges */
.urgency-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.5rem 0.25rem;
    animation: pulse 2s infinite;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid var(--primary-color);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0.5rem 0.25rem;
}

.trust-badge-icon {
    font-size: 1.2rem;
}

/* Sticky Booking Button */
.sticky-book-button {
    position: fixed;
    bottom: 100px;
    right: 20px;
    z-index: 900;
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

.sticky-book-button.show {
    display: flex;
    animation: slideInUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-cta-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.sticky-book-now {
    background: var(--gradient-primary);
    color: white;
}

.sticky-enquire {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.sticky-enquire:hover {
    background: var(--primary-color);
    color: white;
}

.sticky-call-btn {
    background: linear-gradient(135deg, #25d366 0%, #1ba855 100%);
    color: white;
}

/* Floating WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 950;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366 0%, #1ba855 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-button-tooltip {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    color: var(--text-dark);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-button:hover .whatsapp-button-tooltip {
    opacity: 1;
    bottom: 80px;
}

/* Urgency Message */
.urgency-message {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    border-left: 4px solid #ff6b6b;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.urgency-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.urgency-text {
    flex: 1;
}

.urgency-text strong {
    color: #ff6b6b;
    display: block;
    font-size: 0.95rem;
}

.urgency-text p {
    margin: 0.25rem 0 0 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Limited Time Banner */
.limited-time-banner {
    background: linear-gradient(135deg, #ffa500 0%, #ff8c00 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: 600;
    animation: blink 1.5s ease-in-out infinite;
}

/* Trust Signals Section */
.trust-signals {
    background: var(--bg-light);
    padding: 2rem 1.25rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.trust-signals h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.trust-signal-item {
    padding: 1.5rem 1rem;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-signal-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-signal-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.trust-signal-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* Secure Payment Badges */
.payment-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    margin: 1.5rem 0;
}

.payment-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-badge-icon {
    font-size: 2rem;
}

.payment-badge-text {
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
}

/* CTA Button Group */
.cta-button-group {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.cta-button-group .btn-primary,
.cta-button-group .btn-secondary {
    flex: 1;
    min-width: 150px;
    padding: 1rem;
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    text-align: center;
}

.cta-button-group .btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.cta-button-group .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.cta-button-group .btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-button-group .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Call Now Button */
.call-now-btn {
    background: linear-gradient(135deg, #25d366 0%, #1ba855 100%);
    color: white;
}

.call-now-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}

/* Mobile Responsive Conversion Elements */
@media (max-width: 767px) {
    .sticky-book-button {
        bottom: 80px;
        right: 10px;
    }

    .sticky-cta-btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 10px;
        right: 10px;
    }

    .whatsapp-button-tooltip {
        bottom: 70px;
    }

    .whatsapp-button:hover .whatsapp-button-tooltip {
        bottom: 75px;
    }

    .trust-signals-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }

    .payment-badges {
        gap: 1rem;
        padding: 1rem;
    }

    .cta-button-group {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cta-button-group .btn-primary,
    .cta-button-group .btn-secondary {
        width: 100%;
    }

    .urgency-message {
        gap: 0.75rem;
        padding: 0.875rem 1rem;
    }

    .trust-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 479px) {
    .sticky-book-button {
        bottom: 70px;
        right: 5px;
    }

    .sticky-cta-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.85rem;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .trust-signals {
        padding: 1.5rem 1rem;
    }

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

    .payment-badges {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ===== ENHANCED NAVIGATION & SEARCH ===== */

/* Search Bar in Header */
.navbar-search {
    flex: 1;
    max-width: 400px;
    margin: 0 1.5rem;
}

.search-form {
    display: flex;
    gap: 0;
}

.search-input {
    flex: 1;
    padding: 0.625rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px 0 0 8px;
    font-size: 0.9rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.search-btn {
    padding: 0.625rem 1rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
}

/* Navigation Dropdowns */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(-180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    min-width: 200px;
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

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

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 1.5rem;
}

/* Mobile Navigation Dropdown Adjustments */
@media (max-width: 767px) {
    .navbar-search {
        display: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        transform: none;
        background: var(--bg-light);
        border: none;
        border-left: 3px solid var(--primary-color);
        box-shadow: none;
        overflow: hidden;
        transition: max-height 0.3s ease, visibility 0.3s ease;
        margin-left: 1rem;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .dropdown-arrow {
        transform: rotate(0deg);
        display: inline-block;
    }

    .nav-dropdown.active .dropdown-arrow {
        transform: rotate(-180deg);
    }

    .dropdown-menu a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Improved Footer Navigation */
.footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
    font-size: 1.1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact a {
    color: var(--primary-color);
}

.footer-contact a:hover {
    color: white;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 1.5rem;
    gap: 2rem;
}

.footer-bottom-left,
.footer-bottom-right {
    flex: 1;
}

.footer-bottom-center {
    flex: 1;
    text-align: center;
}

.footer-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
}

/* Responsive Footer */
@media (max-width: 1023px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

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

    .footer-bottom-left,
    .footer-bottom-center,
    .footer-bottom-right {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-section {
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-section:last-child {
        border-bottom: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-badge {
        font-size: 0.75rem;
    }
}

/* Sticky Header Improvements */
.header.sticky {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header.sticky:active,
.header.sticky:focus-within {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Navbar Content Flex Layout */
.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    flex-shrink: 0;
    white-space: nowrap;
}

.nav-menu {
    flex: 1;
    min-width: auto;
}

/* Enhanced Mobile Search */
@media (max-width: 767px) {
    .navbar-content {
        flex-wrap: nowrap;
    }

    .navbar-search {
        display: none;
    }

    .nav-menu.active {
        position: fixed;
        top: 65px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        max-height: calc(100vh - 65px);
        overflow-y: auto;
    }
}

/* ===== LISTING PAGE FILTERS ===== */

/* Filter Container */
.listing-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    margin: 4rem 0;
}

.filter-sidebar {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.filter-sidebar h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.75rem;
}

.filter-group {
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.filter-group input[type="range"],
.filter-group input[type="text"],
.filter-group input[type="number"],
.filter-group select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.filter-group input[type="range"] {
    padding: 0;
    cursor: pointer;
}

.price-inputs {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.price-inputs input {
    flex: 1;
}

.price-inputs span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.range-value {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-weight: 500;
    cursor: pointer;
    color: var(--text-dark);
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: 2rem;
}

.filter-btn {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn-apply {
    background: var(--gradient-primary);
    color: white;
}

.filter-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.filter-btn-reset {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.filter-btn-reset:hover {
    background: var(--bg-light);
}

/* Filter Results Info */
.filter-results-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.filter-results-count {
    font-weight: 600;
    color: var(--text-dark);
}

.active-filters {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    padding: 0.4rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.filter-tag-remove {
    cursor: pointer;
    font-weight: bold;
}

.filter-tag-remove:hover {
    opacity: 0.8;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 3rem 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    color: var(--text-light);
}

.no-results h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.no-results p {
    margin-bottom: 1.5rem;
}

.no-results .btn-cta {
    display: inline-block;
}

/* Responsive Filter Layout */
@media (max-width: 1023px) {
    .listing-container {
        grid-template-columns: 200px 1fr;
        gap: 1.5rem;
    }

    .filter-sidebar {
        padding: 1rem;
    }

    .filter-sidebar h3 {
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .listing-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .filter-sidebar {
        position: relative;
        top: auto;
        margin-bottom: 2rem;
        padding: 1.25rem;
    }

    .filter-group {
        margin-bottom: 1.5rem;
    }

    .filter-buttons {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .filter-results-info {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

@media (max-width: 479px) {
    .filter-sidebar {
        padding: 1rem;
    }

    .filter-group label {
        font-size: 0.9rem;
    }

    .active-filters {
        justify-content: center;
    }

    .filter-tag {
        font-size: 0.8rem;
    }
}

/* ===== DETAIL PAGE ENHANCEMENTS ===== */

/* Image Gallery */
.image-gallery {
    margin: 2rem 0;
}

.gallery-main {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-md);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnails {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.gallery-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

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

.gallery-thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.2);
}

.gallery-thumbnail:hover {
    transform: scale(1.05);
}

/* Detail Page Sections */
.detail-sections {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.detail-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.detail-section h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.detail-section h2::before {
    font-size: 1.75rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
}

.detail-section li {
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.detail-section li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.exclusion-item::before {
    content: "✕";
    color: #dc3545;
}

/* Day-wise Itinerary */
.itinerary-timeline {
    position: relative;
    padding: 1rem 0;
}

.itinerary-day {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.itinerary-day::before {
    content: "";
    position: absolute;
    left: 19px;
    top: 60px;
    bottom: -60px;
    width: 2px;
    background: var(--border-color);
}

.itinerary-day:last-child::before {
    display: none;
}

.itinerary-day-number {
    min-width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2;
}

.itinerary-day-content {
    flex: 1;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.itinerary-day-content h4 {
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
}

.itinerary-day-content p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Reviews Section Enhanced */
.reviews-container {
    display: grid;
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

.review-rating {
    color: #ffc107;
    font-weight: bold;
    font-size: 1rem;
}

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

.review-text {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.review-helpful {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
}

.review-helpful-btn {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-helpful-btn:hover {
    transform: scale(1.1);
}

/* Sticky Booking Button */
.sticky-booking-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 100;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    font-weight: 600;
    font-size: 0.95rem;
    animation: slideIn 0.3s ease;
    transition: all 0.3s ease;
    display: none;
}

.sticky-booking-btn.show {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sticky-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.5);
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Rating Summary */
.rating-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
}

.rating-score {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.rating-score-value {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.rating-score-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.rating-score-text {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.rating-bar-label {
    min-width: 60px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
}

.rating-bar-fill {
    flex: 1;
    height: 8px;
    background: var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-progress {
    height: 100%;
    background: var(--primary-color);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.rating-bar-count {
    min-width: 40px;
    color: var(--text-light);
    font-size: 0.85rem;
}

/* Responsive Detail Pages */
@media (max-width: 767px) {
    .gallery-main {
        height: 250px;
    }

    .detail-section {
        padding: 1.5rem;
    }

    .itinerary-day {
        gap: 1rem;
    }

    .sticky-booking-btn {
        right: 1rem;
        bottom: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }

    .rating-summary {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
}

@media (max-width: 479px) {
    .gallery-thumbnails {
        gap: 0.5rem;
    }

    .gallery-thumbnail {
        width: 60px;
        height: 60px;
    }

    .detail-section {
        padding: 1rem;
        margin: 1rem 0;
    }

    .sticky-booking-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: none;
    }

    .sticky-booking-btn.show {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .sticky-booking-btn span {
        display: none;
    }
}


/* ===== REVIEW SUBMISSION SYSTEM ===== */

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    margin: 1rem 0;
}

.star-rating-input input {
    display: none;
}

.star-rating-input label {
    cursor: pointer;
    color: #ddd;
    transition: all 0.2s ease;
    user-select: none;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label {
    color: #ffc107;
}

.star-rating-input:has(input:checked) label:hover,
.star-rating-input:has(input:checked) label:hover ~ label {
    color: #ffc107;
}

/* Review Form */
.review-form-container {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid var(--border-color);
}

.review-form-container h3 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.review-form-group {
    margin-bottom: 1.5rem;
}

.review-form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.review-form-group textarea,
.review-form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.review-form-group textarea:focus,
.review-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.review-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.review-form-submit {
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3);
}

.review-form-submit:active {
    transform: translateY(0);
}

.review-success-message {
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    display: none;
}

.review-success-message.show {
    display: block;
}

.review-error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1rem;
    border: 1px solid #f5c6cb;
    display: none;
}

.review-error-message.show {
    display: block;
}

/* Star Rating Display (for existing reviews) */
.star-rating-display {
    display: inline-flex;
    gap: 0.25rem;
    color: #ffc107;
    font-size: 0.95rem;
}

.star-rating-display .empty-star {
    color: #ddd;
}

/* Response to Reviews */
.review-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    align-items: flex-end;
}

@media (max-width: 767px) {
    .review-form-container {
        padding: 1.5rem;
    }

    .star-rating-input {
        font-size: 1.75rem;
    }

    .review-form-row {
        grid-template-columns: 1fr;
    }
}

/* Offers Section */
.offers {
    padding: 3rem 1.5rem;
    background: white;
}

.offers-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 2rem;
    justify-content: space-between;
}

.offer-image {
    flex: 1;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.offer-image:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
    .offers {
        padding: 2rem 1rem;
    }

    .offers-grid {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .offers {
        padding: 1.5rem 0.75rem;
    }

    .offers-grid {
        gap: 1rem;
    }
}

