/* Root Variables */
:root {
    /* Primary Colors */
    --primary-color: #1A237E;  /* Deep Royal Blue */
    --secondary-color: #0D1B2A;  /* Midnight Navy */
    
    /* Accent Colors */
    --accent-color: #D4AF37;  /* Champagne Gold */
    --accent-hover: #B38F2E;  /* Darker Champagne Gold */
    
    /* Supporting Colors */
    --light-color: #ECEFF1;  /* Platinum Silver */
    --white-color: #FAFAFA;  /* Cloud White */
    --text-secondary: #90A4AE;  /* Cool Grey */
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1A237E 0%, #0D1B2A 100%);
    --gradient-accent: linear-gradient(135deg, #D4AF37 0%, #B38F2E 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(26, 35, 126, 0.9) 0%, rgba(13, 27, 42, 0.8) 100%);
    
    /* Shadows */
    --box-shadow: 0 5px 15px rgba(13, 27, 42, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(13, 27, 42, 0.15);
    
    /* Transitions */
    --transition: all 0.3s ease;
}

/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    background-color: var(--white-color);
    line-height: 1.6;
}

/* Enhanced Notification Bar */
.notification-bar {
    background: var(--gradient-primary);
    color: var(--white-color);
    padding: 10px 0;
    position: relative;
    z-index: 1000;
    box-shadow: var(--box-shadow);
}

.notification-bar a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.notification-bar a:hover {
    color: var(--gold);
}

/* Enhanced Marquee Styles */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 5px 0;
}

.marquee {
    display: inline-block;
    animation: marquee 20s linear infinite;
    padding-right: 50px;
}

.marquee span {
    display: inline-block;
    padding: 0 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Navigation */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: rgba(250, 250, 250, 0.95) !important;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--box-shadow);
}

.navbar-brand {
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    height: 60px;
    overflow: hidden;
}

.navbar-brand img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: none;
}

/* Specific cropping for SVG logo */
.navbar-brand img[src*="logo.svg"] {
    width: 160px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    filter: none;
}

/* Specific cropping for JPEG logo */
.navbar-brand img[src*="logo.jpeg"] {
    width: 160px;
    height: 60px;
    object-fit: cover;
    object-position: center;
    filter: none;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

.nav-link {
    position: relative;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    color: var(--primary-color) !important;
}

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

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

.nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Social Links */
.social-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    font-size: 1.1rem;
    transition: all 0.3s ease;
    opacity: 0.8;
    color: var(--primary-blue);
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
    color: var(--sky-blue);
}

/* Login/Signup Buttons */
.navbar .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.navbar .btn-outline-primary {
    border-width: 2px;
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar .btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.navbar .btn-primary {
    background: var(--accent-color);
    border: none;
    color: var(--midnight-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.navbar .btn-secondary {
    background: var(--slate-gray);
    color: var(--white-color);
    border: none;
}

.navbar .btn-secondary:hover {
    background: var(--charcoal);
    color: var(--white-color);
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding-top: 100px; /* Adjust based on navbar height */
}

.hero-text {
    margin-bottom: 2rem;
    max-width: 800px;
    padding: 0 1rem;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: block;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Poppins', sans-serif;
}

.hero-text h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Search Section Styles */
.search-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.search-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    border: none;
}

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

.search-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: normal;
}

.search-form label i {
    color: #FFD700;
    margin-right: 0.5rem;
}

.search-form .form-control {
    height: 50px;
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-form .form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.search-form .input-group {
    border-radius: 10px;
    overflow: hidden;
}

.search-form .input-group .btn {
    width: 45px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: 2px solid #eee;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-form .input-group .btn:hover {
    background: #FFD700;
    border-color: #FFD700;
    color: #333;
}

.search-form .input-group .form-control {
    border-radius: 0;
    text-align: center;
    font-weight: 600;
    color: #333;
}

.search-form .btn-primary {
    height: 50px;
    background: #FFD700;
    border: none;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.search-form .btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.search-form .btn-primary i {
    margin-right: 0.5rem;
}

/* Navigation Adjustments for Logo */
.navbar-brand img {
    max-height: 45px; /* Ensures image doesn't exceed height */
    width: auto; /* Allows width to adjust proportionally */
    object-fit: contain; /* Ensures logo is fully visible within its space */
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-content {
        justify-content: flex-start; /* Aligns content to top on smaller screens */
        padding-top: 6rem; /* Space to clear navbar */
        padding-bottom: 2rem;
    }

    .hero-text {
        margin-bottom: 1.5rem;
    }

    .hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }

    .search-card {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding-top: 5rem; /* Further adjustment for smaller screens */
        padding-bottom: 1.5rem;
    }

    .hero-text {
        margin-bottom: 1rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }

    .search-section {
        padding: 0.5rem;
    }

    .search-card {
        padding: 1rem;
    }

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

    .search-form .form-control,
    .search-form .btn-primary {
        height: 45px;
    }
}

@media (max-width: 575.98px) { /* Extra small devices / Mobile phones */
    .navbar .container {
        padding-left: 0.25rem; /* Reduce default padding */
        padding-right: 0.25rem;
    }

    .navbar-brand {
        margin-left: 0; /* Remove any default margin */
        padding-left: 0; /* Ensure no padding pushing it out */
    }

    .hero-content {
        padding-top: 4rem;
        padding-bottom: 1rem;
    }

    .hero-text {
        margin-bottom: 0.5rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }

    .search-card {
        padding: 1rem;
        border-radius: 15px;
    }

    .search-form .form-group {
        margin-bottom: 0.75rem;
    }

    .search-form .form-control,
    .search-form .btn-primary {
        height: 38px;
        font-size: 0.85rem;
    }

    .search-form label {
        font-size: 0.8rem;
    }

    .search-form .btn-primary {
        font-size: 0.9rem;
    }
}

/* Additional mobile optimizations for short screens */
@media (max-height: 700px) {
    .hero-content {
        padding-top: 3.5rem;
        padding-bottom: 0.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .search-section {
        padding: 0.1rem;
    }

    .search-card {
        padding: 0.5rem;
    }

    .search-form .form-group {
        margin-bottom: 0.25rem;
    }
}

/* Featured Destinations */
.destination-card {
    transition: transform 0.3s;
    border: none;
    border-radius: 10px;
    overflow: hidden;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    height: 200px;
    object-fit: cover;
}

.destination-card .card-body {
    padding: 1.5rem;
}

/* Logo Styles */
.logo-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue);
    text-decoration: none;
    position: relative;
    padding-left: 2.5rem;
}

.logo-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-blue);
    border-radius: 6px;
    z-index: -1;
}

.logo-text::after {
    content: '';
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1rem;
    height: 1rem;
    background-color: var(--sky-blue);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Footer Logo */
footer .logo-text {
    font-size: 1.5rem;
    color: white;
}

footer .logo-text::before {
    background-color: var(--sky-blue);
}

footer .logo-text::after {
    background-color: white;
}

footer img {
    filter: brightness(0) invert(1);
    opacity: 0.9;
    height: 35px;
    width: 90px; /* Smaller width for footer logo */
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
}

/* Crop footer SVG logo */
footer img[src*="logo.svg"] {
    width: 120px; /* Adjust this value to control the crop width */
    height: 30px;
    object-fit: cover;
    object-position: center;
}

/* Enhanced Footer */
footer {
    background: var(--secondary-color);
    color: var(--white-color);
    position: relative;
    overflow: hidden;
    padding: 80px 0 30px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.footer-logo img:hover {
    transform: scale(1.05);
}

.footer-about {
    color: var(--light-color);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-heading {
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-heading:hover::after {
    width: 60px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

.footer-contact li {
    color: var(--light-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.footer-contact li:hover {
    transform: translateX(5px);
}

.footer-contact i {
    color: var(--accent-color);
    margin-right: 15px;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.footer-contact li:hover i {
    transform: scale(1.2);
}

.footer-contact a {
    color: var(--light-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-social {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.footer-social a,
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.footer-social a::before,
.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: scale(0);
    transition: transform 0.3s ease;
    z-index: 0;
}

.footer-social a i,
.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.footer-social a:hover,
.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-social a:hover::before,
.social-link:hover::before {
    transform: scale(1);
}

.footer-social a:hover i,
.social-link:hover i {
    color: var(--secondary-color);
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: var(--accent-color);
}

.footer-bottom p {
    color: var(--light-color);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-bottom a:hover::after {
    transform: scaleX(1);
}

/* Newsletter Form */
.footer-newsletter {
    margin-top: 25px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white-color);
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.footer-newsletter .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.footer-newsletter .btn {
    background: var(--accent-color);
    color: var(--secondary-color);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-newsletter .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.footer-newsletter .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-newsletter .btn:hover::before {
    transform: translateX(0);
}

/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    animation: fadeInUp 0.9s cubic-bezier(.23,1.01,.32,1) 0.2s forwards;
}

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

/* Features Section */
.feature-card {
    background: var(--white-color);
    border: 1px solid var(--slate-gray);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

/* Book Hotels Section */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Blog Section */
.blog-card {
    border: none;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card .card-img-top {
    height: 220px;
    object-fit: cover;
}

.blog-meta {
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
}

/* Contact Section */
.contact-info {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info i {
    color: var(--primary-color);
    width: 25px;
}

.contact-form {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form .form-control {
    padding: 0.8rem;
    border: 1px solid #eee;
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Smooth Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Section Padding */
section {
    /* padding: 80px 0; */
    padding: 0px;
}

/* Section Headers */
section h2 {
    position: relative;
    margin-bottom: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-info,
    .contact-form {
        margin-bottom: 2rem;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Ads and Notifications Section */
.ads-notifications {
    padding: 20px 0; /* Reduced top and bottom padding */
    background-color: #f8f9fa; /* Light background for contrast */
    position: relative;
}

.ads-notifications::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern-light.png'); /* Optional: Add a subtle background pattern */
    opacity: 0.1;
    z-index: 0;
}

.ads-notifications .card {
    position: relative;
    z-index: 1;
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.ads-notifications .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ads-notifications .card-header {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.notification-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #eee; /* Separator for items */
    transition: background-color 0.3s ease;
}

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

.notification-item:hover {
    background-color: #f1f1f1; /* Light hover background */
}

.notification-item i {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin-right: 1rem;
}

.notification-item .notification-content {
    flex-grow: 1;
}

.notification-item .notification-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.notification-item .notification-date {
    font-size: 0.85rem;
    color: #777;
}

.notification-item .notification-badge {
    background-color: #28a745; /* Green for new */
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.ad-banner {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px; /* Spacing between ad banners */
    transition: all 0.3s ease;
    text-align: center;
}

.ad-banner:last-child {
    margin-bottom: 0;
}

.ad-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ad-banner img {
    width: 100%;
    height: 200px; /* Fixed height for ad images */
    object-fit: cover;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.ad-banner:hover img {
    transform: scale(1.03); /* Subtle zoom on hover */
}

.ad-banner .ad-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}

.ad-banner .ad-description {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
    padding: 0 1rem;
}

.ad-banner .btn {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.6rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 25px;
}

/* Responsive adjustments for Ads and Notifications */
@media (max-width: 991px) {
    .ads-notifications {
        padding: 20px 0;
    }
    .ad-banner {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .ads-notifications {
        padding: 15px 0;
    }
    .ads-notifications .card-header {
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    .notification-item {
        padding: 0.8rem 1rem;
    }
    .notification-item i {
        font-size: 1.2rem;
        margin-right: 0.8rem;
    }
    .notification-item .notification-title {
        font-size: 0.9rem;
    }
    .notification-item .notification-date {
        font-size: 0.8rem;
    }
    .ad-banner img {
        height: 180px;
    }
    .ad-banner .ad-title {
        font-size: 1.2rem;
    }
    .ad-banner .ad-description {
        font-size: 0.9rem;
    }
    .ad-banner .btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .ads-notifications {
        padding: 10px 0;
    }
    .ads-notifications .card {
        margin-bottom: 20px; /* Space between notification and ad cards on mobile */
    }
    .ad-banner {
        margin-bottom: 15px;
    }
    .ad-banner img {
        height: 150px;
    }
    .ad-banner .ad-title {
        font-size: 1.1rem;
    }
    .ad-banner .ad-description {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Destination Input Styles */
.destination-input {
    position: relative;
}

.destination-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    animation: fadeIn 0.2s ease;
}

.suggestion-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.suggestion-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-color);
}

/* Scrollbar Styles for Suggestions */
.destination-suggestions::-webkit-scrollbar {
    width: 6px;
}

.destination-suggestions::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.destination-suggestions::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 3px;
}

.destination-suggestions::-webkit-scrollbar-thumb:hover {
    background: var(--accent-hover);
}

/* Animation for Suggestions */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments for Search Section */
@media (max-width: 768px) {
    .search-form .row {
        margin: 0 -10px;
    }
    
    .search-form .col-md-3,
    .search-form .col-md-2,
    .search-form .col-md-1 {
        padding: 0 10px;
    }
    
    .destination-suggestions {
        position: fixed;
        left: 10px;
        right: 10px;
        max-height: 50vh;
    }
}

/* Login and Signup Forms */
.login,
.signup {
    background-color: #f8f9fa;
    min-height: calc(100vh - 200px);
}

.login .card,
.signup .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login .card-body,
.signup .card-body {
    padding: 2rem;
}

.login h4,
.signup h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.login .text-muted,
.signup .text-muted {
    font-size: 0.9rem;
}

.login .form-label,
.signup .form-label {
    font-weight: 500;
    color: #555;
}

.login .form-control,
.signup .form-control {
    padding: 0.75rem 1rem;
    border-radius: 5px;
    border: 1px solid #ddd;
}

.login .form-control:focus,
.signup .form-control:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

.login .form-check-label,
.signup .form-check-label {
    color: #666;
    font-size: 0.9rem;
}

.login .form-check-label a,
.signup .form-check-label a {
    color: #0d6efd;
    text-decoration: none;
}

.login .form-check-label a:hover,
.signup .form-check-label a:hover {
    text-decoration: underline;
}

.login .btn-primary,
.signup .btn-primary {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
}

.login .text-center a,
.signup .text-center a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.login .text-center a:hover,
.signup .text-center a:hover {
    text-decoration: underline;
}

/* Form validation styles */
.form-control.is-invalid {
    border-color: #dc3545;
    padding-right: calc(1.5em + 0.75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: #dc3545;
}

.form-control.is-invalid ~ .invalid-feedback {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login .card-body,
    .signup .card-body {
        padding: 1.5rem;
    }
}

/* Utility class to add top padding for fixed navbar */
.with-navbar-padding {
    padding-top: 80px;
}

/* Highlight for recommended hotel card */
.recommended-hotel {
    border: 3px solid #D4AF37 !important;
    box-shadow: 0 0 20px 2px rgba(212, 175, 55, 0.15) !important;
    position: relative;
}
.recommended-hotel::after {
    content: 'Recommended';
    position: absolute;
    top: 10px;
    right: 10px;
    background: #D4AF37;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
}

/* Modern hero search card styles */
.modern-search-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 24px;
    box-shadow: 0 8px 40px 0 rgba(26, 35, 126, 0.15), 0 1.5px 8px 0 rgba(0,0,0,0.04);
    padding: 2.5rem 2rem 2rem 2rem;
    max-width: 900px;
    width: 100%;
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 3;
}

@media (max-width: 767px) {
    .modern-search-card {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        border-radius: 16px;
    }
}

/* Custom style for guest input in search form */
.guests-input {
    width: 48px;
    min-width: 40px;
    max-width: 60px;
    text-align: center;
    font-size: 1.1rem;
    color: #222;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
    appearance: textfield;
}

/* Hide number input spinner for all browsers */
.guests-input::-webkit-outer-spin-button,
.guests-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.guests-input[type=number] {
    -moz-appearance: textfield;
}

/* Slightly increase width of guest input-group in search form */
.search-section .input-group {
    min-width: 8.5rem;
    max-width: 10rem;
}

/* --- Hotel Results Grid Improvements --- */
.hotel-results-row {
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 0; /* vertical gap */
}
.hotel-results-row > [class^='col-'] {
    display: flex;
}
.hotel-card {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Show a message when no results are found */
.no-results-message {
    display: none;
    text-align: center;
    color: #b00;
    font-size: 1.2rem;
    margin: 2rem 0;
    width: 100%;
}

@media (max-width: 991px) {
    .hotel-results-row {
        gap: 1.5rem 0;
    }
}
@media (max-width: 767px) {
    .hotel-results-row {
        gap: 1rem 0;
    }
}

/* Center single hotel card in results row */
.hotel-results-row.single-result {
  justify-content: center;
}
.hotel-results-row.single-result > .no-results-message {
  display: none !important;
}

/* --- Custom Radio & Checkbox Styles --- */
.form-check-input[type="radio"],
.form-check-input[type="checkbox"] {
  width: 1.25em;
  height: 1.25em;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  background: #fff;
  transition: box-shadow 0.2s, border-color 0.2s;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
  position: relative;
}
.form-check-input[type="checkbox"] {
  border-radius: 6px;
}
.form-check-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.12);
}
.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-hover);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.18);
}
.form-check-input[type="radio"]:checked::after {
  content: '';
  display: block;
  width: 0.55em;
  height: 0.55em;
  border-radius: 50%;
  background: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.form-check-input[type="checkbox"]:checked::after {
  content: '\2713';
  color: var(--primary-color);
  font-size: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}

/* --- Enhanced Button Styles --- */
.btn, .btn-primary, .btn-outline-primary {
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(26, 35, 126, 0.08);
  transition: all 0.2s;
}
.btn-primary {
  background: var(--accent-color);
  border: none;
  color: var(--secondary-color);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-hover);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.18);
  transform: translateY(-2px) scale(1.03);
}
.btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.18);
  transform: translateY(-2px) scale(1.03);
}

/* --- Enhanced Form Field Styles --- */
.form-control {
  border-radius: 12px;
  border: 1.5px solid #e0e0e0;
  background: #faf9f6;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-size: 1.05rem;
}
.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.10);
  background: #fff;
}
.form-label {
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 0.01em;
}

/*--------------------------------------------------------------
# Payment Page
--------------------------------------------------------------*/
.payment {
    background-color: #f4f7f9; /* Lighter, softer background */
}

.payment .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
}

.payment .card-title {
    font-weight: 700;
    color: var(--primary-color);
}

/* Total Due Card */
.total-due-card .card-body {
    padding: 1rem 1.5rem;
}

.total-due-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-due-card small {
    font-size: 0.9rem;
}

/* Payment Options */
.payment-options-list .payment-option-item {
    border: 1px solid #e0e6ed;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.payment-options-list .payment-option-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.12);
}

.payment-options-list .payment-option-item.active {
    border-color: var(--primary-color);
    background-color: #f0f5ff;
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.12);
    transform: translateY(-3px);
}

.payment-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.payment-option-header .icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    width: 40px;
    text-align: center;
}

.payment-option-header h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
}

.payment-option-header small {
    font-size: 0.85rem;
    color: #6c757d;
}

.payment-option-header .fa-chevron-right {
    color: #adb5bd;
    transition: transform 0.2s ease-in-out;
}

.payment-option-item.active .fa-chevron-right {
    transform: translateX(3px);
}

.payment-form-container {
    margin-top: 1.5rem;
    padding: 2rem;
    border-top: 1px solid #e0e6ed;
    background-color: #fafbff;
    border-radius: 0 0 10px 10px;
    margin: 1.5rem -1.25rem -1.25rem -1.25rem; /* Extend to card edges */
}

/* Agreement Text */
.payment-agreement {
    font-size: 0.8rem;
    color: #6c757d;
}
.payment-agreement a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}
.payment-agreement a:hover {
    text-decoration: underline;
} 