/* ==============================================
   VACATION RENTALS - LUXURY REDESIGN 2026
   ============================================== */

/* ==============================================
   LUXURY COLOR PALETTE
   ============================================== */
:root {
    --luxury-sand: #F5EFE7;
    --luxury-sage: #E8F0E8;
    --luxury-cream: #FFF9F0;
    --luxury-charcoal: #2C2C2C;
    --luxury-soft-white: #FAFAFA;
}

/* ==============================================
   HERO SECTION - LUXURY REDESIGN
   ============================================== */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.hero .container {
    position: relative;
    z-index: 3;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    color: white;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    line-height: 1.8;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: float 3s ease-in-out infinite;
    z-index: 3;
}

.hero-scroll i {
    font-size: 1.25rem;
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==============================================
   FILTER SECTION - LUXURY REDESIGN
   ============================================== */
.filter-section {
    padding: 4rem 0 3rem;
    background: var(--luxury-soft-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.filter-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-count {
    font-size: 1.5rem;
    color: var(--navy);
    font-weight: 600;
}

.filter-count strong {
    color: var(--accent-turquoise);
}

.filter-tagline {
    font-size: 1rem;
    color: var(--dark-gray);
    font-style: italic;
    letter-spacing: 0.02em;
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: white;
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    color: var(--navy);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-btn:hover {
    border-color: var(--accent-turquoise);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(20, 184, 166, 0.15);
}

.filter-btn.active {
    background: var(--accent-turquoise);
    color: white;
    border-color: var(--accent-turquoise);
}

.filter-btn i {
    font-size: 1.125rem;
}

/* ==============================================
   PROPERTIES SECTION - LUXURY GRID
   ============================================== */
.properties-section {
    padding: 6rem 0;
    background: white;
}

.properties-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

/* ==============================================
   PROPERTY CARDS - LUXURY REDESIGN
   ============================================== */
.property-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.property-card-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.property-image-gallery {
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

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

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

.property-badge-top {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--navy);
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, var(--accent-orange), #E74C3C);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.property-details {
    padding: 3rem 3rem 3rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.property-location-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
}

.property-location-text i {
    color: var(--accent-turquoise);
}

.property-title-large {
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.property-tagline-large {
    font-size: 1.25rem;
    color: var(--dark-gray);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.property-rating {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #FFD700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.rating-count {
    margin-left: 0.5rem;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
}

.property-quick-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--luxury-sand);
    border-radius: var(--radius-md);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--navy);
    font-size: 0.9375rem;
    font-weight: 500;
}

.info-item i {
    color: var(--accent-turquoise);
    font-size: 1.25rem;
}

.property-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--body-text);
    letter-spacing: 0.01em;
}

.property-amenity-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.amenity-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: var(--luxury-sage);
    color: var(--navy);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.amenity-pill:hover {
    background: var(--accent-turquoise);
    color: white;
    border-color: var(--accent-turquoise);
    transform: translateY(-2px);
}

.amenity-pill i {
    font-size: 1rem;
}

/* ==============================================
   PROPERTY HIGHLIGHT BOXES - LUXURY REDESIGN
   ============================================== */
.property-highlight-box {
    background: linear-gradient(135deg, var(--luxury-sand), var(--luxury-cream)) !important;
    color: var(--navy) !important;
    padding: 2rem !important;
    border-radius: var(--radius-lg) !important;
    margin-top: 1.5rem !important;
    border: 2px solid var(--accent-turquoise) !important;
    box-shadow: 0 4px 20px rgba(20, 184, 166, 0.1) !important;
}

.property-highlight-box i {
    color: var(--accent-turquoise) !important;
}

.property-highlight-box strong {
    color: var(--navy) !important;
    font-size: 1.25rem !important;
}

.property-highlight-box span {
    color: var(--dark-gray) !important;
    opacity: 1 !important;
}

.property-highlight-box > div {
    border-top-color: rgba(20, 184, 166, 0.2) !important;
}

/* ==============================================
   PROPERTY ACTIONS - LUXURY BUTTONS
   ============================================== */
.property-actions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

/* ==============================================
   WHY BOOK SECTION - LUXURY REDESIGN
   ============================================== */
.why-book-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--luxury-sand), var(--luxury-cream));
}

.why-book-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--navy);
    margin-bottom: 5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

.why-book-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: var(--radius-lg);
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-book-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(20, 184, 166, 0.15);
}

.why-book-item i {
    font-size: 3rem;
    color: var(--accent-turquoise);
    margin-bottom: 1.5rem;
}

.why-book-item h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.why-book-item p {
    font-size: 1.0625rem;
    color: var(--body-text);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

/* ==============================================
   RESPONSIVE DESIGN - TABLET
   ============================================== */
@media (max-width: 1024px) {
    .property-card-large {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .property-image-gallery {
        min-height: 400px;
    }
    
    .property-details {
        padding: 3rem 2rem;
    }
    
    .filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-buttons {
        width: 100%;
        justify-content: flex-start;
    }
    
    .properties-section {
        padding: 4rem 0;
    }
    
    .properties-list {
        gap: 4rem;
    }
    
    .why-book-section {
        padding: 6rem 0;
    }
    
    .why-book-grid {
        gap: 2.5rem;
    }
}

/* ==============================================
   RESPONSIVE DESIGN - MOBILE
   ============================================== */
@media (max-width: 768px) {
    .hero {
        height: 65vh;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .filter-section {
        padding: 2rem 0;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 140px;
        justify-content: center;
    }
    
    .property-image-gallery {
        min-height: 300px;
    }
    
    .property-details {
        padding: 2rem 1.5rem;
    }
    
    .property-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .property-rating {
        align-self: flex-start;
    }
    
    .property-quick-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1rem;
    }
    
    .property-title-large {
        font-size: 2rem;
    }
    
    .property-tagline-large {
        font-size: 1.125rem;
    }
    
    .property-amenity-list {
        gap: 0.5rem;
    }
    
    .amenity-pill {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }
    
    .property-highlight-box {
        padding: 1.5rem !important;
    }
    
    .booking-links {
        flex-direction: column;
    }
    
    .booking-links .btn {
        width: 100%;
        justify-content: center;
    }
    
    .properties-section {
        padding: 3rem 0;
    }
    
    .properties-list {
        gap: 3rem;
    }
    
    .why-book-section {
        padding: 4rem 0;
    }
    
    .why-book-title {
        margin-bottom: 3rem;
        font-size: 2.5rem;
    }
    
    .why-book-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-book-item {
        padding: 2rem 1.5rem;
    }
}