/* index/static/index/css/components.css */

:root {
    --primary-blue: #1c2562;
    --primary-orange: #f47424;
}

/* Global Font Settings */
* {
    font-family: 'Roboto', sans-serif;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

.navbar-brand {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
}

/* Header Styles */
.navbar-custom {
    background-color: var(--primary-blue);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: white !important;
}

/* Search Container */
.search-container {
    background: white;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 500px;
    flex-grow: 1;
    margin: 0 20px;
}

.search-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 4px 8px;
    font-size: 14px;
}

.search-input:focus {
    background-color: #f8f9fa;
    border-radius: 4px;
}

.search-divider {
    width: 1px;
    height: 24px;
    background: #ddd;
    margin: 0 12px;
}

.search-btn {
    background: var(--primary-orange);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #e6671f;
    transform: scale(1.05);
}

/* Navigation Links */
.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 8px;
    padding: 8px 16px !important;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: rgba(255,255,255,0.1);
    color: white !important;
}

/* Buttons */
.btn-host {
    background: var(--primary-orange);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    margin-right: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-host:hover {
    background: #e6671f;
    color: white;
    transform: translateY(-1px);
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
}

/* User Menu */
.user-menu {
    background: white;
    border-radius: 25px;
    padding: 4px;
    display: flex;
    align-items: center;
    color: var(--primary-blue);
    border: 1px solid #ddd;
    transition: all 0.3s ease;
}

.user-menu:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Remove dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-left: 8px;
}

/* Mobile Styles */
.mobile-search {
    display: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mobile-search:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 991px) {
    .search-container {
        display: none;
    }
    
    .mobile-search {
        display: block;
    }
    
    .navbar-collapse {
        background: var(--primary-blue);
        margin-top: 10px;
        border-radius: 10px;
        padding: 15px;
    }
    
    .btn-host {
        margin-bottom: 10px;
        display: inline-block;
    }
}

/* Dropdown Customization */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 8px;
}

.dropdown-item {
    padding: 8px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary-blue);
}

.dropdown-item i {
    width: 16px;
    color: var(--primary-orange);
}

/* Modal Customization */
.modal-content {
    border-radius: 12px;
    border: none;
}

.modal-header {
    background: var(--primary-blue);
    color: white;
    border-radius: 12px 12px 0 0;
}

.modal-header .btn-close {
    filter: invert(1);
}

.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(244, 116, 36, 0.25);
}

.btn-primary {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    border-radius: 25px;
    font-weight: 600;
    padding: 12px;
}

.btn-primary:hover {
    background: #e6671f;
    border-color: #e6671f;
}

/* Footer Styles */
.footer-custom {
    background: var(--primary-blue);
    color: white;
    margin-top: auto;
}

.footer-heading {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange);
    text-decoration: none;
}

/* Newsletter Section */
.newsletter-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-heading {
    color: white;
    font-weight: 600;
    font-size: 1.3rem;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.newsletter-form .input-group {
    max-width: 400px;
    margin-left: auto;
}

.newsletter-input {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 25px 0 0 25px;
    padding: 12px 16px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-input:focus {
    border-color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: none;
    color: white;
}

.btn-newsletter {
    background: var(--primary-orange);
    border: 1px solid var(--primary-orange);
    color: white;
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-newsletter:hover {
    background: #e6671f;
    border-color: #e6671f;
    color: white;
    transform: translateY(-1px);
}

/* Social Section */
.social-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.social-heading, .app-heading {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

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

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

.social-link:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.app-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.app-badge {
    height: 40px;
    transition: all 0.3s ease;
}

.app-link:hover .app-badge {
    transform: translateY(-2px);
}

/* Footer Bottom
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
} */

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-settings {
    margin-bottom: 8px;
}

.btn-footer-setting {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.btn-footer-setting:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.footer-legal {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.legal-link:hover {
    color: var(--primary-orange);
}

.legal-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/static/index/images/hero.jpg') center center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 37, 98, 0.3);
    z-index: -1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    left: var(--x);
    top: var(--y);
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite var(--delay);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

/* Hero Content */
.hero-content {
    color: white;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: rgba(244, 116, 36, 0.2);
    border: 1px solid rgba(244, 116, 36, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-highlight {
    background:  yellow;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.typing-text {
    color: white;
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary-orange);
}

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

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: yellow;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 4px;
}

/* Hero CTA Buttons */
.btn-hero-primary {
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 116, 36, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 116, 36, 0.4);
    color: white;
}

.btn-hero-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 26px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: white;
}

/* Hero Search Card */
.hero-search-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 116, 36, 0.05) 0%, rgba(28, 37, 98, 0.05) 100%);
    pointer-events: none;
}

.search-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.search-subtitle {
    color: #666;
    margin-bottom: 0;
}

/* Form Styling */
.form-label {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-label i {
    color: var(--primary-orange);
}

.input-wrapper {
    position: relative;
}

.search-input {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(244, 116, 36, 0.15);
    outline: none;
}

.input-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
}

/* Search Suggestions */
.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 200px;
    overflow-y: auto;
}

.suggestion-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.suggestion-item:hover {
    background-color: #f8f9fa;
}

/* Guests Counter */
.guests-counter {
    display: flex;
    align-items: center;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.guests-counter:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.2rem rgba(244, 116, 36, 0.15);
}

.counter-btn {
    background: none;
    border: none;
    color: var(--primary-orange);
    font-size: 1rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.counter-btn:hover {
    background: rgba(244, 116, 36, 0.1);
}

#guestsInput {
    border: none;
    outline: none;
    width: 40px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 8px;
}

.guests-label {
    color: #666;
    font-size: 0.9rem;
    margin-right: 8px;
}

/* Search Button */
.btn-search-hero {
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
    border: none;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-search-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(244, 116, 36, 0.3);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-search-hero:hover .btn-shine {
    left: 100%;
}

/* Popular Destinations */
.popular-destinations {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.popular-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.destination-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.destination-tag {
    background: rgba(244, 116, 36, 0.1);
    color: var(--primary-orange);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(244, 116, 36, 0.2);
}

.destination-tag:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-1px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.scroll-arrow {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

/* Property Types Component */
.property-types-section {
    background: #f8f9fa;
}

.property-type-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.property-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.property-type-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-type-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.property-type-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.property-type-content {
    color: white;
    text-align: center;
    width: 100%;
}

.property-type-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}

.property-type-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.property-type-count {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Slider Styles for Trending Destinations */
.trending-destinations-section {
    background: #f8f9fa;
}

.destinations-slider-container {
    position: relative;
    overflow: hidden;
}

.slider-controls {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-bottom: 2rem;
}

.slider-btn {
    background: white;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 116, 36, 0.3);
}

.destinations-slider {
    overflow: hidden;
    border-radius: 16px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s ease-in-out;
    gap: 20px;
}

.slider-item {
    flex: 0 0 calc(33.333% - 14px);
    min-width: calc(33.333% - 14px);
}

.destination-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    height: 350px;
}

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

.destination-card.slider-card {
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.destination-card.slider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
}

.destination-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.destination-info {
    margin-top: auto;
}

.destination-name {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.destination-card.slider-card .destination-name {
    font-size: 1.8rem;
    font-weight: 800;
}

.destination-country {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

.destination-stats {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.property-count, .avg-price {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.destination-badge {
    align-self: flex-start;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destination-badge.trending {
    background: rgba(244, 116, 36, 0.9);
    color: white;
}

.destination-badge.hot {
    background: rgba(220, 53, 69, 0.9);
    color: white;
}

.destination-badge.new {
    background: rgba(40, 167, 69, 0.9);
    color: white;
}

/* Listings Locations Component */
.location-card {
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.location-card.large {
    height: 500px;
}

.location-card.medium {
    height: 240px;
}

.location-card.small {
    height: 280px;
}

.location-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.location-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.location-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}

.location-content {
    color: white;
    width: 100%;
}

.location-name {
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: white;
}

.location-card.large .location-name {
    font-size: 2.5rem;
}

.location-card.medium .location-name {
    font-size: 1.8rem;
}

.location-card.small .location-name {
    font-size: 1.5rem;
}

.location-country {
    color: rgba(255,255,255,0.9);
    margin-bottom: 1rem;
}

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

.listings-count {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.location-badge.featured {
    background: var(--primary-orange);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Property Listing Card Styles */
.featured-listings-section {
    background: white;
}

.property-listing-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 100%;
}

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

.property-image-container {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-listing-card.compact .property-image-container {
    height: 200px;
}

.property-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.property-listing-card:hover .property-image {
    transform: scale(1.05);
}

.property-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 3;
}

.property-badges span {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.badge-featured {
    background: linear-gradient(45deg, var(--primary-orange), #ff6b35);
}

.badge-new {
    background: linear-gradient(45deg, #28a745, #20c997);
}

.badge-popular {
    background: linear-gradient(45deg, #007bff, #0056b3);
}

.badge-premium {
    background: linear-gradient(45deg, #6f42c1, #495057);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    font-size: 1.1rem;
    color: #666;
}

.wishlist-btn:hover {
    background: white;
    color: #e74c3c;
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: rgba(255,255,255,0.95);
    padding: 12px 16px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    z-index: 2;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

.property-rating i {
    color: #ffc107;
    font-size: 1rem;
}

.review-count {
    color: #666;
    font-weight: 500;
    font-size: 0.8rem;
}

.property-content {
    padding: 25px;
}

.property-listing-card.compact .property-content {
    padding: 20px;
}

.property-header {
    margin-bottom: 15px;
}

.property-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
    line-height: 1.3;
}

.property-title.compact {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-location i {
    color: var(--primary-orange);
    font-size: 0.9rem;
}

.property-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.property-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.property-features.compact {
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.property-features.compact .feature {
    font-size: 0.8rem;
    color: #666;
    padding: 4px 8px;
    background: #f8f9fa;
    border-radius: 6px;
    font-weight: 500;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 1rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
}

.property-footer.compact {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 15px;
}

.property-price .price {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.property-footer.compact .property-price .price {
    font-size: 1.3rem;
}

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

.btn-schedule, .btn-gallery, .btn-view {
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-schedule {
    background: var(--primary-orange);
    color: white;
}

.btn-schedule:hover {
    background: #e6671f;
    transform: translateY(-1px);
}

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

.btn-gallery:hover {
    background: var(--primary-orange);
    color: white;
}

.btn-view {
    background: var(--primary-blue);
    color: white;
    width: 100%;
    padding: 12px;
}

.btn-view:hover {
    background: #1a1f54;
    transform: translateY(-1px);
}

/* Button Styles */
.btn-outline-primary {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 25px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: white;
}

.btn-primary {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #e6671f;
    border-color: #e6671f;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-stats {
        justify-content: space-around;
        gap: 1rem;
    }
    
    .hero-search-card {
        margin-top: 3rem;
        padding: 1.5rem;
    }
    
    .slider-item {
        flex: 0 0 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
    
    .slider-controls {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-custom .row > div {
        margin-bottom: 2rem;
    }
    
    .newsletter-form .input-group {
        margin-left: 0;
    }
    
    .app-links {
        justify-content: flex-start;
    }
    
    .footer-legal {
        justify-content: flex-start;
        margin-top: 12px;
    }
    
    .social-links {
        justify-content: flex-start;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Hero CTA Buttons Mobile */
    .hero-cta {
        display: flex;
        flex-direction: row;
        gap: 10px;
        justify-content: space-between;
        margin-top: 2rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        flex: 1;
        padding: 12px 16px;
        font-size: 0.9rem;
        text-align: center;
        justify-content: center;
    }
    
    .btn-hero-primary i,
    .btn-hero-secondary i {
        margin-right: 6px;
    }
    
    /* Search Card Mobile Optimization */
    .hero-search-card {
        padding: 1.2rem;
        margin-top: 2rem;
    }
    
    .search-title {
        font-size: 1.4rem;
    }
    
    .search-subtitle {
        font-size: 0.9rem;
    }
    
    /* Guests Counter Mobile - Keep in One Row */
    .guests-counter {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: white;
        border: 2px solid #e9ecef;
        border-radius: 12px;
        padding: 12px 16px;
        transition: all 0.3s ease;
        width: 100%;
    }
    
    .counter-btn {
        background: rgba(244, 116, 36, 0.1);
        border: 1px solid var(--primary-orange);
        color: var(--primary-orange);
        font-size: 1rem;
        cursor: pointer;
        padding: 8px 12px;
        border-radius: 8px;
        transition: all 0.2s ease;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .counter-btn:hover {
        background: var(--primary-orange);
        color: white;
    }
    
    #guestsInput {
        border: none;
        outline: none;
        text-align: center;
        font-weight: 600;
        font-size: 1.1rem;
        background: transparent;
        flex: 1;
        margin: 0 10px;
    }
    
    .guests-label {
        color: #666;
        font-size: 0.9rem;
        font-weight: 500;
    }
    
    .destination-tags {
        justify-content: center;
        gap: 6px;
    }
    
    .destination-tag {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    
    .floating-icon {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .property-type-image {
        height: 220px;
    }
    
    .destination-card {
        height: 280px;
    }
    
    .location-card.large,
    .location-card.medium {
        height: 250px;
    }
    
    .location-card.small {
        height: 220px;
    }
    
    .slider-item {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .slider-track {
        gap: 15px;
    }
    
    .destination-card.slider-card {
        height: 350px;
    }
    
    .property-image-container {
        height: 220px;
    }
    
    .property-listing-card.compact .property-image-container {
        height: 180px;
    }
    
    .property-content {
        padding: 20px;
    }
    
    .property-listing-card.compact .property-content {
        padding: 15px;
    }
    
    .property-features {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .property-actions {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 8px;
        justify-content: space-between;
    }
    
    .btn-schedule, 
    .btn-gallery {
        flex: 1;
        text-align: center;
        padding: 10px 12px;
        font-size: 0.75rem;
    }
    
    .btn-view {
        padding: 10px 12px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 0.25rem;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .hero-search-card {
        padding: 1rem;
    }
    
    .search-title {
        font-size: 1.2rem;
    }
    
    .counter-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    #guestsInput {
        font-size: 1rem;
    }
    
    .guests-label {
        font-size: 0.8rem;
    }
}