/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    padding-top: 76px;
    background-color: #f8f9fa;
}

a {
    text-decoration: none;
    color: #0d6efd;
    transition: all 0.3s ease;
}

a:hover {
    color: #0a58ca;
}

.btn {
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

.btn-light {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-lg {
    border-radius: 1rem !important;
}

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.8rem;
    padding: 0;
    margin-right: 2rem;
    position: relative;
}

.logo-text {
    color: #0d6efd;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
}

.logo-text-secondary {
    color: #212529;
    font-weight: 300;
}

.navbar-brand::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd 0%, transparent 100%);
    opacity: 0.5;
}

.navbar-brand:hover .logo-text {
    text-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
}

.navbar .navbar-nav {
    margin-left: 1rem;
}

.navbar .navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
    color: #495057;
    position: relative;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    width: 30px;
}

.navbar .nav-link.active {
    color: #0d6efd;
}

.navbar-toggler {
    padding: 0.5rem;
    font-size: 1.25rem;
    color: #0d6efd;
    background-color: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Dropdown Animation */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    padding: 1rem 0;
}

.dropdown-item {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }
    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    animation-name: slideIn;
}

/* Hero Section */
.hero-section {
    min-height: 600px;
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    position: relative;
    margin-top: 0;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.hero-shapes::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.hero-title {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease;
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    font-size: 1.25rem;
}

.hero-buttons {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

/* Hero Search Box */
.search-box {
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
    animation: fadeInRight 1s ease 0.6s;
    animation-fill-mode: both;
    border-radius: 1rem;
}

.search-box:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.search-box .form-control, 
.search-box .form-select {
    border: 1px solid #e9ecef;
    height: 58px;
    border-radius: 0.5rem;
}

.search-box .form-floating label {
    padding: 1rem 0.75rem;
}

.search-box .form-floating>.form-control:focus~label,
.search-box .form-floating>.form-control:not(:placeholder-shown)~label,
.search-box .form-floating>.form-select~label {
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}

.search-btn {
    font-weight: 600;
    transition: all 0.3s ease;
    height: 58px;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

/* Page Header */
.page-header {
    background-color: #f8f9fa;
    padding: 100px 0 40px;
    margin-bottom: 30px;
}

/* Villa Cards */
.villa-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: none;
}

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

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

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

.villa-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.villa-card .card-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.villa-card .card-location i {
    color: #0d6efd;
    margin-right: 0.25rem;
}

.villa-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature i {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.feature span {
    font-weight: 600;
    font-size: 1rem;
}

.feature small {
    font-size: 0.8rem;
    color: #6c757d;
}

.price-section {
    margin-top: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0d6efd;
}

.per-night {
    font-size: 0.9rem;
    color: #6c757d;
}

.discount-badge, .featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #dc3545;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.featured-badge {
    background-color: #0d6efd;
}

@media (max-width: 767px) {
    .villa-card .card-img-top {
        height: 180px;
    }
    
    .villa-card .card-body {
        padding: 1rem;
    }
    
    .villa-card .card-title {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
}

.villa-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.villa-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(13, 110, 253, 0.9);
    color: white;
    padding: 8px 15px;
    border-radius: 50rem;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.villa-price small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.villa-card:hover .villa-price {
    background: #0d6efd;
    transform: scale(1.05);
}

.villa-card .card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.villa-card .card-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background-color: #e9f2ff;
    border-radius: 0.75rem;
    padding: 12px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.villa-card .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.villa-card .feature-item i {
    color: #0d6efd;
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.villa-card .feature-item span {
    font-weight: 600;
    color: #495057;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.villa-card .feature-item small {
    font-weight: 400;
    color: #6c757d;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* Hover effect for feature items */
.villa-card .feature-item:hover i {
    transform: scale(1.2);
}

/* Testimonials */
.testimonial-avatar img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: #1a1a2e !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.1) 0%, rgba(26, 26, 46, 0) 70%);
    z-index: 0;
}

.footer-brand {
    font-size: 1.8rem;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, transparent);
}

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

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

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #0d6efd;
    font-size: 1.2rem;
    line-height: 1;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 20px;
}

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

.footer-contact li {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
}

.footer-contact li i {
    color: #0d6efd;
    margin-right: 10px;
    margin-top: 5px;
}

.footer-contact li span {
    color: #b0b0b0;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0d6efd;
    color: #ffffff;
    transform: translateY(-3px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.copyright {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-bottom-links a {
    color: #b0b0b0;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
}

/* Offcanvas Menu */
.offcanvas {
    max-width: 300px;
}

.offcanvas-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1.5rem;
}

.offcanvas .nav-link {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f8f9fa;
    font-weight: 500;
    color: #495057;
}

.offcanvas .nav-link.active {
    color: #0d6efd;
    background-color: #f8f9fa;
}

.offcanvas .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background-color: #f8f9fa;
    padding: 0;
}

.offcanvas .dropdown-item {
    padding: 0.75rem 2.5rem;
}

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

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

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    
    .search-box {
        margin-top: 30px;
        animation: fadeInUp 1s ease 0.6s;
    }
    
    .hero-buttons .btn {
        margin-bottom: 10px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 76px;
        left: 0;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        width: 100%;
        height: auto;
        background-color: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-collapse.collapsing {
        height: auto;
        transition: left 0.3s ease;
        left: -100%;
    }
    
    .navbar-collapse.show {
        left: 0;
        transition: left 0.3s ease;
    }
    
    .navbar-nav {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    .navbar .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #f8f9fa;
    }
    
    .navbar .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar .dropdown-menu {
        border: none;
        background-color: #f8f9fa;
        padding: 0;
        margin-top: 0.5rem;
        box-shadow: none;
    }
    
    .navbar .dropdown-item {
        padding: 0.75rem 1.5rem;
    }
    
    /* Add Reservation Button to Mobile Menu */
    .navbar-collapse .d-flex {
        flex-direction: column;
        width: 100%;
    }
    
    .navbar-collapse .dropdown {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .navbar-collapse .btn-outline-secondary {
        width: 100%;
        text-align: left;
    }
    
    .navbar-collapse .btn-primary {
        width: 100%;
        margin-top: 10px;
    }
    
    .navbar-brand {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-bottom: 50px;
    }
    
    .search-box {
        padding: 1.5rem !important;
    }
    
    .btn {
        padding: 0.5rem 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }
    
    .villa-card .card-features {
        padding: 10px;
    }
    
    .villa-card .feature-item i {
        font-size: 1rem;
    }
    
    .villa-card .feature-item span {
        font-size: 0.9rem;
    }
}

/* Navbar Modern Styles */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Hamburger Menu Animation */
.hamburger-button {
    position: relative;
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.hamburger-icon {
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #0d6efd;
    transition: all 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #0d6efd;
    transition: all 0.3s ease;
}

.hamburger-icon::before {
    transform: translateY(-8px);
}

.hamburger-icon::after {
    transform: translateY(8px);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon::before {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-icon::after {
    transform: rotate(-45deg);
}

/* Search Styles */
.search-input {
    padding-right: 40px;
    border-radius: 50rem;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
    border-color: #0d6efd;
}

.btn-icon {
    width: 36px;
    height: 36px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #495057;
    transition: all 0.3s ease;
}

.btn-icon:hover {
    background-color: #e9ecef;
    color: #0d6efd;
}

.search-btn-desktop {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #6c757d;
}

.search-btn-desktop:hover {
    background: transparent;
    color: #0d6efd;
}

.mobile-search-container {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* Improved Search Styles */
.nav-search-wrapper {
    position: relative;
    width: 250px;
    transition: all 0.3s ease;
}

.nav-search-wrapper:focus-within {
    width: 300px;
}

.nav-search {
    position: relative;
}

.nav-search .search-input {
    padding-right: 40px;
    border-radius: 50rem;
    border: 1px solid #e9ecef;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    width: 100%;
    background-color: #f8f9fa;
}



.nav-search .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    border: none;
    background: transparent;
    color: #6c757d;
    padding: 0 15px;
    transition: all 0.3s ease;
}



/* Social Media Section Styles */
.social-media-links {
    display: flex;
    gap: 15px;
}

.social-media-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-media-link:hover {
    background-color: #ffffff;
    color: #0d6efd;
    transform: translateY(-3px);
}

/* Payment and Trust Logos */
.payment-trust-logos {
    margin-top: 2rem;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 1rem;
}

.payment-logos img {
    filter: grayscale(100%) brightness(1.8);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.payment-logos img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@media (max-width: 768px) {
    .social-media-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .payment-logos {
        gap: 15px;
    }
    
    .payment-logos img {
        height: 25px;
    }
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Background Colors */
.bg-light {
    background-color: #f8f9fa !important;
}

.bg-white {
    background-color: #ffffff !important;
}

.bg-soft-blue {
    background-color: #e9f2ff !important;
}

.bg-soft-beige {
    background-color: #f9f7f2 !important;
}

/* Destination Cards */
.destination-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

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

.destination-image {
    position: relative;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.destination-card:hover .destination-overlay {
    opacity: 1;
}

.destination-overlay .btn {
    padding: 10px 25px;
    font-weight: 600;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.destination-card:hover .destination-overlay .btn {
    transform: translateY(0);
}

.destination-info {
    padding: 20px;
    background-color: #fff;
}

.destination-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #212529;
}

.destination-count {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Testimonial Cards */
.testimonial-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.testimonial-card .card-body {
    padding: 25px;
    position: relative;
}

.testimonial-card .card-body::before {
    content: '\201C';
    font-family: Georgia, serif;
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 5rem;
    color: rgba(13, 110, 253, 0.1);
    line-height: 1;
    z-index: 0;
}

.testimonial-card .card-text {
    position: relative;
    z-index: 1;
}

.testimonial-card .text-warning i {
    margin-right: 2px;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .destination-image img {
        height: 200px;
    }
    
    .destination-title {
        font-size: 1.1rem;
    }
    
    .testimonial-card .card-body {
        padding: 20px;
    }
}

/* Feature Cards Enhancement */
.feature-card {
    padding: 2.5rem;
    border-radius: 1rem;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.feature-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Testimonial Cards Enhancement */
.testimonial-card {
    padding: 2.5rem;
    border-radius: 1.5rem;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0d6efd, #0a58ca);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.testimonial-quote {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(13, 110, 253, 0.1);
    font-size: 3rem;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
    color: #ffc107;
    font-size: 1.1rem;
}

.testimonial-text {
    color: #495057;
    font-style: italic;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.6;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.testimonial-avatar {
    margin-right: 15px;
}

.testimonial-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
    color: #212529;
}

.testimonial-location {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Testimonial Animation */
@keyframes testimonialPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

.testimonial-card:hover {
    animation: testimonialPulse 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-quote {
        font-size: 2.5rem;
    }
    
    .testimonial-avatar img {
        width: 50px;
        height: 50px;
    }
}

/* Daha Sade Search Header */
.search-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 3.5rem 0;
    margin-bottom: 3rem;
    border-bottom: none;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.search-header .container {
    position: relative;
    z-index: 1;
}

.search-header h1 {
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
}

.search-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.search-query-text {
    font-weight: 600;
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
}

/* Breadcrumb Styles */
 .breadcrumb {
    background-color: transparent;
    margin-bottom: 0;
    padding: 0.5rem 0;
}

 .breadcrumb-item {
    font-size: 0.9rem;
    font-weight: 500;
}

 .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.2s ease;
}

 .breadcrumb-item a:hover {
    color: #fff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.6);
}

 .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
    font-size: 1.1rem;
    line-height: 1;
    padding: 0 0.5rem;
}

/* Arama Filtresi Özeti - Daha Sade Versiyon */
.search-filters-summary {
    margin-top: 1.5rem;
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.filter-badge {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.2rem 0.7rem;
    border-radius: 50px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.filter-badge i {
    margin-left: 5px;
    font-size: 0.75rem;
    opacity: 0.7;
}

.filter-badge:hover {
    background-color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
}

.filter-badge:hover i {
    opacity: 1;
}

.search-filters-summary .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    padding: 0.25rem 0.7rem;
    background-color: transparent;
}

.search-filters-summary .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .search-header {
        padding: 3rem 0;
    }
    
    .search-header h1 {
        font-size: 2rem;
    }
    
    .search-header p {
        font-size: 1rem;
    }
    
    .filter-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Search Results Container - No Background */
.search-results-container {
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    border: none;
}

/* Enhanced Card Features */
.card-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    background-color: #e9f2ff;
    border-radius: 0.75rem;
    padding: 12px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(13, 110, 253, 0.1);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-item i {
    color: #0d6efd;
    font-size: 1.2rem;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

.feature-item span {
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item small {
    font-weight: 400;
    color: #6c757d;
    font-size: 0.75rem;
    margin-top: 2px;
}

.feature-item:hover i {
    transform: scale(1.2);
}

/* Modern Search Filters */
.search-filters {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 2.5rem;
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.search-filters:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.search-filters h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #212529;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
    position: relative;
}

.search-filters h4::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #0d6efd;
}

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

.filter-group-title {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #212529;
    display: flex;
    align-items: center;
}

.filter-group-title i {
    margin-right: 8px;
    color: #0d6efd;
}

.price-inputs {
    display: flex;
    gap: 15px;
}

.price-inputs .form-control {
    border-radius: 0.75rem;
    border: 1px solid #ced4da;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

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

.filter-check {
    margin-bottom: 0.75rem;
}

.filter-check .form-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.15rem;
    border: 1px solid #ced4da;
    transition: all 0.2s ease;
}

.filter-check .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.filter-check .form-check-label {
    font-size: 0.95rem;
    color: #495057;
    padding-left: 0.5rem;
}

/* Update Filter Buttons to be stacked */
.filter-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 2rem;
}

.filter-buttons .btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-buttons .btn-outline-secondary {
    border: 1px solid #ced4da;
    color: #6c757d;
    border-radius: 2rem;
}

.filter-buttons .btn-outline-secondary:hover {
    background-color: #f8f9fa;
    color: #495057;
    border-color: #ced4da;
}

/* Minimal Search Sort Wrapper */
.search-sort-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f0f0;
}

.search-results-count {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 500;
}

.search-results-count span {
    font-weight: 700;
    color: #0d6efd;
    margin: 0 0.3rem;
}

.search-sort-control {
    display: flex;
    align-items: center;
}

.search-sort-wrapper label {
    font-weight: 600;
    color: #495057;
    margin-right: 10px;
    font-size: 0.95rem;
}

.search-sort-wrapper select {
    width: auto;
    border: 1px solid #e9ecef;
    background-color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    color: #212529;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23212529' class='bi bi-chevron-down' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 12px;
}

.search-sort-wrapper select:focus {
    outline: none;
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
}

@media (max-width: 767px) {
    .search-sort-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .search-sort-control {
        width: 100%;
    }
    
    .search-sort-wrapper select {
        width: 100%;
    }
}

/* Modern Pagination */
.pagination {
    margin-top: 3rem;
    justify-content: center;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 0.75rem;
}

.pagination .page-link {
    border: none;
    padding: 0.75rem 1.25rem;
    color: #495057;
    font-weight: 600;
    border-radius: 0.75rem;
    background-color: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    color: #0d6efd;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 110, 253, 0.3);
}

.pagination .page-item.disabled .page-link {
    color: #adb5bd;
    background-color: #f8f9fa;
    box-shadow: none;
}

/* Enhanced No Results Message */
.no-results-message {
    text-align: center;
    padding: 5rem 2rem;
    background-color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.no-results-message i {
    font-size: 4rem;
    color: #0d6efd;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.no-results-message h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #212529;
    font-size: 1.8rem;
}

.no-results-message p {
    color: #6c757d;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.no-results-message .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.no-results-message .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Modern Footer - Enhanced Structure */
.footer {
    background-color: #1a1a2e;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, rgba(26, 26, 46, 0) 70%);
    z-index: 0;
}

.footer::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(26, 26, 46, 0) 70%);
    z-index: 0;
}

/* Footer Main Section */
.footer-main {
    padding: 4rem 0 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-brand-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.footer-logo::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #0d6efd, transparent);
}

.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #0d6efd;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

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

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-3px);
}

/* Payment Section */
.footer-payment {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    z-index: 1;
}

.payment-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.payment-methods {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.payment-methods img {
    filter: grayscale(100%) brightness(2);
    transition: all 0.3s ease;
    opacity: 0.7;
    height: 28px;
}

.payment-methods img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: #fff;
}

/* Footer CTA Button */
.footer-cta {
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.footer-cta .btn {
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
    border: none;
}

.footer-cta .btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
}

/* Responsive Adjustments */
@media (max-width: 767px) {
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .payment-methods img {
        height: 24px;
    }
    
    .footer-cta .btn {
        padding: 0.7rem 2rem;
        font-size: 1rem;
    }
}

/* Banner CTA Button */
.banner-cta {
    font-weight: 600;
    padding: 0.8rem 2.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.banner-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .banner-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* Villa Features Styling */
.villa-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.feature i {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.feature-value {
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.feature-name {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1;
}

/* Backward compatibility for old card-features class */
.card-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.feature-item i {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
}

.feature-item small {
    display: block;
    font-size: 0.75rem;
    color: #6c757d;
    font-weight: 400;
}

/* Villa Detail Header */
.villa-detail-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    padding: 3.5rem 0;
    margin-bottom: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.villa-title {
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    letter-spacing: -0.5px;
}

.villa-location {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.villa-location i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.8);
}

/* Villa Gallery */
.villa-gallery {
    margin-bottom: 2rem;
}

.main-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.main-image:hover img {
    transform: scale(1.02);
}

.gallery-controls {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.main-image:hover .gallery-controls {
    opacity: 1;
}

.gallery-prev, .gallery-next {
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.gallery-prev:hover, .gallery-next:hover {
    background-color: white;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.gallery-prev i, .gallery-next i {
    color: #0d6efd;
    font-size: 1rem;
}

.thumbnails {
    margin-top: 15px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #0d6efd #f0f0f0;
    padding: 10px 0
}

.thumbnails::-webkit-scrollbar {
    height: 6px;
}

.thumbnails::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}

.thumbnails::-webkit-scrollbar-thumb {
    background-color: #0d6efd;
    border-radius: 10px;
}

.thumbnail {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    height: 80px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

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

.thumbnail.active {
    border-color: #0d6efd;
    box-shadow: 0 0 0 2px rgba(13, 110, 253, 0.3);
}

/* Responsive Adjustments for Gallery */
@media (max-width: 991px) {
    .main-image {
        height: 350px;
    }
}

@media (max-width: 767px) {
    .main-image {
        height: 300px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .gallery-prev, .gallery-next {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 576px) {
    .main-image {
        height: 250px;
    }
    
    .thumbnail {
        height: 50px;
    }
    
    .gallery-prev, .gallery-next {
        width: 30px;
        height: 30px;
    }
    
    .gallery-prev i, .gallery-next i {
        font-size: 0.8rem;
    }
}

/* Reviews Styles */
.villa-reviews h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #212529;
    position: relative;
    padding-bottom: 0.8rem;
}

.villa-reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, transparent);
}

.reviews-summary {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.overall-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-value {
    font-size: 3rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

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

.rating-count {
    color: #6c757d;
    font-size: 0.9rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

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

.rating-category {
    width: 100px;
    font-size: 0.9rem;
    color: #495057;
}

.progress {
    flex: 1;
    height: 8px;
    border-radius: 4px;
}

.rating-value-small {
    font-weight: 600;
    color: #212529;
    width: 30px;
    text-align: right;
}

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

.review-item {
    background-color: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.review-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

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

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-name {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #212529;
}

.review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-rating {
    display: flex;
    align-items: center;
    color: #ffc107;
    font-size: 0.9rem;
}

.review-rating span {
    margin-left: 0.5rem;
    color: #212529;
    font-weight: 600;
}

.review-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive Adjustments for Reviews */
@media (max-width: 768px) {
    .review-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .review-rating {
        align-self: flex-start;
    }
    
    .rating-category {
        width: 80px;
    }
}

/* Villa Description */
.villa-description h2,
.villa-features-section h2,
.villa-capacity h2,
.villa-location-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #212529;
    position: relative;
    padding-bottom: 0.8rem;
}

.villa-description h2::after,
.villa-features-section h2::after,
.villa-capacity h2::after,
.villa-location-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0d6efd, transparent);
}

.villa-description p {
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Villa Features */
.feature-list {
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem 1rem;
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background-color: #e9f2ff;
    transform: translateX(5px);
}

.feature-item i {
    font-size: 1.2rem;
    color: #0d6efd;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    font-weight: 500;
    color: #495057;
}

/* Villa Capacity */
.capacity-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
}

.capacity-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    background-color: #e9f2ff;
}

.capacity-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    font-size: 1.5rem;
    border-radius: 50%;
    margin-right: 1rem;
}

.capacity-info {
    display: flex;
    flex-direction: column;
}

.capacity-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.capacity-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.3rem;
}

/* Villa Sidebar */
.villa-sidebar {
    position: sticky;
    top: 100px;
}

.price-card {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.price-amount {
    display: flex;
    align-items: baseline;
}

.amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 0.3rem;
}

.price-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-rating .stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.rating-count {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Hover effect for price card */
.price-card:hover .amount {
    color: #0a58ca;
    transition: color 0.3s ease;
}

.price-card:hover .stars {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.availability-check {
}

.availability-check label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 0.5rem;
}

.availability-check .form-control,
.availability-check .form-select {
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.reservation-buttons {
    margin-bottom: 0.5rem;
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    font-weight: 600;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.price-summary {
    background-color: #f8f9fa;
    border-radius: 1rem;
    padding: 1rem 1.5rem;
}

.summary-item {
    margin-bottom: 1rem;
    color: #495057;
    font-size: 0.95rem;
}

.summary-total {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    font-weight: 700;
    color: #212529;
    font-size: 1.1rem;
}

/* Owner Card */
.owner-card {
    background-color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.owner-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.owner-avatar {
    margin-right: 1rem;
}

.owner-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.owner-info h5 {
    font-weight: 600;
    margin-bottom: 0.2rem;
    color: #212529;
}

.owner-info p {
    color: #6c757d;
    margin-bottom: 0;
}

.owner-contact .btn {
    padding: 0.75rem 1rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.owner-contact .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Gallery Thumbnails */
.gallery-thumbnails {
    margin-top: 1rem;
}

.thumbnail {
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: #0d6efd;
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .villa-sidebar {
        margin-top: 3rem;
        position: static;
    }
    
    .main-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .villa-title {
        font-size: 2rem;
    }
    
    .main-image img {
        height: 300px;
    }
    
    .thumbnail {
        height: 80px;
    }
    
    .capacity-item {
        padding: 1rem;
    }
    
    .capacity-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .capacity-value {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .villa-detail-header {
        padding: 2.5rem 0;
    }
    
    .main-image img {
        height: 250px;
    }
    
    .thumbnail {
        height: 60px;
    }
    
    .price-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .price-rating {
        margin-top: 1rem;
    }
}

/* Enhanced Villa Features Section */
.villa-features-section {
    margin: 2.5rem 0;
}

.villa-features-section h2 {
    margin-bottom: 2rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background-color: #f8f9fa;
    border-radius: 1rem;
    transition: all 0.3s ease;
    border-left: 3px solid #0d6efd;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.feature-item:hover {
    background-color: #e9f2ff;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.1);
}

.feature-item i {
    font-size: 1.5rem;
    color: #0d6efd;
    margin-right: 1.2rem;
    width: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item span {
    font-weight: 600;
    color: #343a40;
    font-size: 1.05rem;
}

/* Feature Icons Specific Styling */
.feature-item i.fa-swimming-pool {
    color: #4dabf7;
}

.feature-item i.fa-wifi {
    color: #15aabf;
}

.feature-item i.fa-snowflake {
    color: #74c0fc;
}

.feature-item i.fa-utensils {
    color: #f06595;
}

.feature-item i.fa-umbrella-beach {
    color: #fcc419;
}

.feature-item i.fa-car {
    color: #495057;
}

.feature-item i.fa-fire {
    color: #ff6b6b;
}

.feature-item i.fa-tv {
    color: #20c997;
}

/* Feature Item Hover Effects */
.feature-item:hover i.fa-swimming-pool {
    color: #339af0;
}

.feature-item:hover i.fa-wifi {
    color: #1098ad;
}

.feature-item:hover i.fa-snowflake {
    color: #4dabf7;
}

.feature-item:hover i.fa-utensils {
    color: #e64980;
}

.feature-item:hover i.fa-umbrella-beach {
    color: #fab005;
}

.feature-item:hover i.fa-car {
    color: #343a40;
}

.feature-item:hover i.fa-fire {
    color: #fa5252;
}

.feature-item:hover i.fa-tv {
    color: #12b886;
}

/* Responsive Adjustments for Features */
@media (max-width: 768px) {
    .feature-list {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1rem 1.2rem;
    }
    
    .feature-item i {
        font-size: 1.3rem;
        margin-right: 1rem;
    }
    
    .feature-item span {
        font-size: 0.95rem;
    }
}

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

/* Enhanced Villa Description */
.villa-description {
    margin: 2.5rem 0;
}

/* Enhanced Villa Description with Gradient Background */
.villa-description-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f2ff 100%);
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #0d6efd;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.villa-description-box::before {
    content: '"';
    position: absolute;
    top: -20px;
    right: 20px;
    font-size: 150px;
    font-family: Georgia, serif;
    color: rgba(13, 110, 253, 0.08);
    line-height: 1;
}

.villa-description-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.villa-description p {
    color: #495057;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.villa-description p:last-child {
    margin-bottom: 0;
}

.villa-description p strong {
    color: #212529;
    font-weight: 600;
}

.villa-description-highlight {
    background-color: rgba(13, 110, 253, 0.05);
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    font-weight: 500;
    color: #0d6efd;
}

/* Responsive Adjustments for Description */
@media (max-width: 768px) {
    .villa-description-box {
        padding: 1.5rem;
    }
    
    .villa-description p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

/* Enhanced Section Headings */
.section-heading {
    position: relative;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    font-weight: 700;
    color: #212529;
    text-align: center;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #74c0fc);
    border-radius: 3px;
}

.section-heading.text-start {
    text-align: left;
}

.section-heading.text-start::after {
    left: 0;
    transform: none;
}

.villa-description h2,
.villa-features-section h2,
.villa-capacity h2,
.villa-reviews h2 {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    font-weight: 700;
    color: #212529;
}

.villa-description h2::after,
.villa-features-section h2::after,
.villa-capacity h2::after,
.villa-reviews h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #0d6efd, #74c0fc);
    border-radius: 3px;
}

/* Responsive adjustments for headings */
@media (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .villa-description h2,
    .villa-features-section h2,
    .villa-capacity h2,
    .villa-reviews h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* Search Input Hover Fix */
.nav-search-wrapper {
    transition: none;
}

.nav-search-wrapper:hover {
    transform: none;
    box-shadow: none;
}

.nav-search {
    transition: none;
}

.nav-search:hover {
    transform: none;
    box-shadow: none;
}

.search-input {
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.search-input:hover {
    transform: none;
}

.search-btn {
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

.search-btn:hover {
    transform: none;
    background-color: transparent;
    color: #0d6efd;
}

/* Date Input Styling */
input[type="date"] {
    cursor: pointer;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}


.price-amount {
    display: flex;
    align-items: baseline;
}

.amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: #6c757d;
    margin-left: 0.3rem;
}

.price-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-rating .stars {
    color: #ffc107;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.rating-count {
    color: #6c757d;
    font-size: 0.85rem;
}

/* Mobile Villa Sidebar */
.mobile-booking-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px;
    z-index: 1000;
    border-top: 1px solid #e9ecef;
}

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

.mobile-price-info {
    display: flex;
    flex-direction: column;
}

.mobile-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1;
}

.mobile-price-period {
    font-size: 0.8rem;
    color: #6c757d;
}

.mobile-booking-bar .btn {
    padding: 10px 20px;
    font-weight: 600;
}

.mobile-sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-sidebar-drawer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.mobile-sidebar-drawer.open {
    transform: translateY(0);
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
}

.mobile-sidebar-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.mobile-sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
}

.mobile-sidebar-content {
    padding: 20px;
}

/* Responsive adjustments for villa sidebar */
@media (max-width: 991px) {
    .villa-sidebar {
        display: none;
    }
    
    .mobile-booking-bar {
        display: block;
    }
    
    .mobile-sidebar-overlay.show {
        display: block;
    }
}

/* Car Rental Styles */
.card-img-top {
    height: 180px;
    object-fit: cover;
}

.card h5.card-title {
    font-size: 1.1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.card .badge {
    font-size: 0.7rem;
    padding: 0.35em 0.65em;
}

.card .d-flex.flex-column.align-items-center i {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.card .d-flex.flex-column.align-items-center small {
    font-size: 0.7rem;
    color: #6c757d;
}

.form-range::-webkit-slider-thumb {
    background-color: #0d6efd;
}

.form-range::-moz-range-thumb {
    background-color: #0d6efd;
}

.form-range::-ms-thumb {
    background-color: #0d6efd;
}

.range-slider .form-range {
    height: 1.5rem;
}

.range-slider .d-flex {
    font-size: 0.8rem;
    color: #6c757d;
}

@media (max-width: 991px) {
    .card-img-top {
        height: 160px;
    }
}

@media (max-width: 767px) {
    .card-img-top {
        height: 140px;
    }
}

/* Car Rental Page Styles */
.car-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.car-card .card-img-top {
    height: 180px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.car-card:hover .card-img-top {
    transform: scale(1.05);
}

.car-card .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.car-card .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #212529;
}

.car-card .badge {
    font-size: 0.7rem;
    font-weight: 500;
    padding: 0.35em 0.65em;
}

.car-card .d-flex.justify-content-between {
    background-color: #f8f9fa;
    border-radius: 0.5rem;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

.car-card .d-flex.flex-column.align-items-center i {
    font-size: 1.1rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.car-card .d-flex.flex-column.align-items-center small {
    font-size: 0.8rem;
    color: #495057;
    font-weight: 500;
}

.car-card .fs-4.fw-bold {
    color: #0d6efd;
}

.car-card .btn-outline-primary {
    border-radius: 2rem;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.car-card .btn-outline-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
}

/* Filter Sidebar */
.card.shadow-sm {
    border-radius: 1rem;
    border: none;
    overflow: hidden;
}

.card.shadow-sm .card-body {
    padding: 1.5rem;
}

.card.shadow-sm h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #212529;
}

.form-check-label {
    font-size: 0.9rem;
    color: #495057;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.range-slider {
    margin-top: 1rem;
}

.range-slider .form-range {
    height: 1.5rem;
}

.range-slider .d-flex {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.btn.btn-primary {
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(13, 110, 253, 0.3);
}

/* Pagination */
.pagination {
    margin-top: 2rem;
}

.pagination .page-link {
    border-radius: 0.5rem;
    margin: 0 0.2rem;
    color: #0d6efd;
    border: 1px solid #dee2e6;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.pagination .page-link:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
    border-radius: 2rem;
    padding: 0.5rem 1.2rem;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .car-card .card-img-top {
        height: 160px;
    }
    
    .car-card .card-title {
        font-size: 1.1rem;
    }
    
    .car-card .d-flex.flex-column.align-items-center i {
        font-size: 1rem;
    }
    
    .car-card .d-flex.flex-column.align-items-center small {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .car-card .card-img-top {
        height: 140px;
    }
    
    .car-card .card-body {
        padding: 1rem;
    }
    
    .car-card .d-flex.justify-content-between {
        padding: 0.5rem;
    }
    
    .card.shadow-sm .card-body {
        padding: 1.25rem;
    }
    
    .pagination .page-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* Car Rental Page Header */
.car-rental-header {
    background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
    color: white;
    padding: 120px 0 60px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.car-rental-header::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.car-rental-header::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    z-index: 0;
}

.car-rental-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.car-rental-header .page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}


@media (max-width: 767px) {
    .car-rental-header {
        padding: 100px 0 40px;
    }
    
    .car-rental-header .page-title {
        font-size: 2rem;
    }
    
    .car-rental-header .page-subtitle {
        font-size: 1rem;
    }
    

}

/* Hotel Card Styles */
.hotel-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hotel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.hotel-card .card-body {
    padding: 1.25rem;
}

.hotel-card .card-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hotel-card .card-location {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0.75rem;
}

.hotel-card .card-location i {
    color: #0d6efd;
    margin-right: 5px;
}

.hotel-stars {
    font-size: 0.9rem;
}

.hotel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.75rem;
}

.feature-badge {
    font-size: 0.75rem;
    background-color: #f8f9fa;
    color: #495057;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
}

.feature-badge i {
    color: #0d6efd;
    margin-right: 4px;
}

.hotel-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-score {
    background-color: #0d6efd;
    color: white;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.rating-text {
    font-weight: 600;
    font-size: 0.85rem;
    color: #212529;
}

.rating-count {
    font-size: 0.8rem;
    color: #6c757d;
}

.price-section {
    display: flex;
    align-items: baseline;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

.per-night {
    font-size: 0.85rem;
    color: #6c757d;
    margin-left: 4px;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #dc3545;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Improved Price Header */
.price-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.car-title {
    flex: 1;
    padding-right: 15px;
}

.model-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

.year-badge {
    display: inline-block;
    background-color: #f8f9fa;
    color: #495057;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

.price-rating-container {
    text-align: right;
}

.price-amount {
    display: flex;
    align-items: baseline;
    justify-content: flex-end;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1;
}

.period {
    font-size: 0.9rem;
    color: #6c757d;
    margin-left: 0.3rem;
}

.price-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-rating .stars {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.rating-count {
    color: #6c757d;
    font-size: 0.8rem;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
    .price-header {
        flex-direction: column;
    }
    
    .car-title {
        margin-bottom: 1rem;
        padding-right: 0;
    }
    
    .price-rating-container {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .price-amount {
        margin-bottom: 0;
    }
    
    .amount {
        font-size: 1.5rem;
    }
}

/* Search Results Count Styling */
.search-results-count {
    display: flex;
    align-items: center;
    height: 100%;
    margin-bottom: 0;
}

.search-results-count span {
    vertical-align: middle;
}

/* For the container that holds the count */
.search-results-header {
    display: flex;
    align-items: center;
}

  