/* ============================================
   VILLAS VALLE - Custom Styles
   ============================================ */

:root {
    /* Paleta 7: Lago al Atardecer */
    --accent: #3D7C98;
    --accent-light: #5A9BB5;
    --accent-dark: #1B3A4B;

    --gold: var(--accent);
    --gold-light: var(--accent-light);
    --gold-dark: var(--accent-dark);

    --dark: #1B3A4B;
    --dark-soft: #2A4F63;
    --light: #F5F1EB;
    --light-warm: #EDE7DD;
    --text: #1B3A4B;
    --text-light: #4A6575;
    --text-muted: #8A9EA8;
    --white: #ffffff;
    --ivory: #F5F1EB;
    --shadow: 0 4px 20px rgba(27, 58, 75, 0.08);
    --shadow-lg: 0 10px 40px rgba(27, 58, 75, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
* { box-sizing: border-box; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--ivory);
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border: none;
    padding: 12px 32px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 124, 152, 0.35);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 10px 30px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    background: transparent;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNav {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#mainNav.scrolled,
.navbar-solid #mainNav {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.brand-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
}

#mainNav.scrolled .brand-text,
.navbar-solid #mainNav .brand-text {
    color: var(--dark);
}

.brand-accent {
    color: var(--accent-light);
}

#mainNav.scrolled .brand-accent,
.navbar-solid #mainNav .brand-accent {
    color: var(--accent);
}

#mainNav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    font-size: 0.95rem;
    padding: 8px 16px;
    position: relative;
    transition: var(--transition);
}

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

#mainNav .nav-link:hover::after,
#mainNav .nav-link.active::after {
    width: 60%;
}

#mainNav .nav-link:hover {
    color: var(--white);
}

#mainNav.scrolled .nav-link,
.navbar-solid #mainNav .nav-link {
    color: var(--text);
}

#mainNav.scrolled .nav-link:hover,
.navbar-solid #mainNav .nav-link:hover {
    color: var(--gold);
}

#mainNav .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3);
    padding: 6px 10px;
}

#mainNav.scrolled .navbar-toggler,
.navbar-solid #mainNav .navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

#mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.scrolled .navbar-toggler-icon,
.navbar-solid #mainNav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../img/properties/20231106_164701.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 10px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.hero-actions .btn {
    min-width: 180px;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    color: var(--white);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

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

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

.animate-fade-up { animation: fadeUp 0.8s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* ============================================
   SEARCH BAR
   ============================================ */
.search-bar-section {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.search-bar {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow-lg);
}

.search-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

/* ============================================
   SECTIONS
   ============================================ */
.section-padding {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto;
    border-radius: 2px;
}

/* ============================================
   PROPERTY CARDS
   ============================================ */
.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

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

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

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

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.property-price-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-weight: 600;
    z-index: 2;
}

.property-price-tag span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.8;
}

.property-favorite {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.property-favorite:hover {
    color: #e74c3c;
    transform: scale(1.1);
}

.property-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

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

.property-info {
    padding: 24px;
}

.property-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.property-name a:hover {
    color: var(--gold);
}

.property-location {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.property-location i {
    color: var(--gold);
    margin-right: 4px;
}

.property-description {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-features {
    display: flex;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
    flex-wrap: wrap;
}

.property-features span {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-features i {
    color: var(--gold);
    font-size: 0.9rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--light);
}

.about-image-grid {
    position: relative;
}

.about-img-main img {
    border-radius: var(--radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--accent);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    line-height: 1.2;
    margin-top: 4px;
}

.about-text {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.about-feature h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.about-feature p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   AMENITIES SHOWCASE
   ============================================ */
.amenity-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid #eee;
    transition: var(--transition);
}

.amenity-card:hover {
    border-color: var(--accent-light);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.amenity-card i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.amenity-card h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.amenity-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   EXPERIENCES GALLERY (Mosaic)
   ============================================ */
.experiences-gallery {
    background: var(--dark);
}

.experiences-gallery .section-subtitle {
    color: var(--accent-light);
}

.experiences-gallery .section-title {
    color: var(--white);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 280px;
    gap: 12px;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.mosaic-item.mosaic-large {
    grid-column: span 2;
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.mosaic-item:hover img {
    transform: scale(1.08);
}

.mosaic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.mosaic-item:hover .mosaic-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%);
}

.mosaic-overlay h5 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.mosaic-overlay p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .gallery-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 575px) {
    .gallery-mosaic {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .mosaic-item.mosaic-large {
        grid-column: span 1;
    }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.testimonial-stars {
    color: #f5a623;
    margin-bottom: 16px;
    font-size: 0.9rem;
    display: flex;
    gap: 3px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--dark);
    color: var(--white);
}

.contact-section .section-subtitle {
    color: var(--accent-light);
}

.contact-section .section-title {
    color: var(--white);
}

.contact-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-light);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(61, 124, 152, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-item strong {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.contact-info-item p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
}

.contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(61, 124, 152, 0.15);
    color: var(--white);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 180px 0 100px;
    text-align: center;
    position: relative;
    background: url('../img/properties/20231106_164211.jpg') center/cover no-repeat;
}

.page-header-sm {
    padding: 150px 0 60px;
}

.page-header-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.page-header-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

.page-header .breadcrumb {
    margin-top: 20px;
}

.page-header .breadcrumb-item a {
    color: var(--accent-light);
}

.page-header .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FILTERS (uses .search-bar-section + .search-bar from Hero)
   ============================================ */

.results-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ============================================
   PROPERTY DETAIL - GALLERY
   ============================================ */
.property-gallery-section {
    padding-top: 76px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    max-height: 500px;
    overflow: hidden;
}

.gallery-main {
    grid-row: 1 / 3;
}

.gallery-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumb img {
    width: 100%;
    height: 246px;
    object-fit: cover;
    transition: var(--transition);
}

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

.thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
}

/* ============================================
   PROPERTY DETAIL
   ============================================ */
.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.detail-title {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.detail-location {
    color: var(--text-muted);
    font-size: 1rem;
}

.detail-location i {
    color: var(--gold);
}

.detail-price {
    text-align: right;
}

.price-amount {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-dark);
}

.price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.detail-quick-features {
    display: flex;
    gap: 30px;
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.quick-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-feature i {
    font-size: 1.3rem;
    color: var(--gold);
}

.quick-feature span {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--light);
}

.detail-description {
    color: var(--text-light);
    line-height: 1.9;
}

.detail-description p {
    margin-bottom: 16px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius-sm);
}

.amenity-item i {
    color: var(--gold);
    font-size: 1.2rem;
}

.amenity-item span {
    font-size: 0.9rem;
}

.rules-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 12px;
}

.rule-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.rule-item i {
    color: var(--gold);
    font-size: 1.1rem;
}

.map-placeholder {
    background: var(--light);
    border-radius: var(--radius);
    padding: 60px;
    text-align: center;
    border: 2px dashed #ddd;
}

.map-placeholder i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.map-placeholder p {
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder small {
    color: var(--text-muted);
}

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
    border: 1px solid #eee;
}

.booking-widget-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.booking-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
}

.booking-period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.booking-summary {
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: 8px;
}

.booking-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.booking-note i {
    color: #27ae60;
    margin-right: 4px;
}

.contact-widget {
    background: var(--light);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.contact-widget h5 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-widget p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ============================================
   BOOKING PAGE
   ============================================ */
.booking-form-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 40px;
}

.booking-step {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eee;
}

.booking-step:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.booking-step h5 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.step-number {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.booking-summary-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.summary-property {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.summary-property img {
    width: 120px;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.summary-property-info h5 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.summary-property-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.summary-features {
    display: flex;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.summary-features i {
    color: var(--gold);
}

.summary-details {
    padding: 16px 0;
}

.summary-policies {
    background: var(--light);
    border-radius: var(--radius-sm);
    padding: 20px;
    margin-top: 20px;
}

.summary-policies h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.summary-policies ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-policies li {
    font-size: 0.82rem;
    color: var(--text-light);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-policies i {
    color: #27ae60;
    font-size: 0.9rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.footer-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer-links li {
    padding: 6px 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
}

.contact-info i {
    color: var(--accent-light);
    margin-top: 2px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.copyright {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-legal {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-left: 20px;
    transition: var(--transition);
}

.footer-legal:hover {
    color: var(--accent-light);
}

/* ============================================
   FORMS
   ============================================ */
.form-control,
.form-select {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid #ddd;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(61, 124, 152, 0.12);
}

.form-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-actions .btn {
        min-width: 150px;
    }

    .about-img-secondary {
        display: none;
    }

    .about-experience-badge {
        width: 90px;
        height: 90px;
    }

    .exp-number {
        font-size: 1.6rem;
    }

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

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
    }

    .gallery-thumb img {
        height: 120px;
    }

    .gallery-main img {
        height: 350px;
    }

    .detail-header {
        flex-direction: column;
        gap: 16px;
    }

    .detail-price {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-actions .ms-3 {
        margin-left: 0 !important;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .search-bar {
        padding: 20px;
    }

    .page-header {
        padding: 140px 0 60px;
    }

    .page-header-title {
        font-size: 2rem;
    }

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

    .detail-quick-features {
        gap: 16px;
    }

    .quick-feature {
        width: calc(50% - 8px);
    }

    .booking-form-card {
        padding: 24px;
    }

    .summary-property {
        flex-direction: column;
    }

    .summary-property img {
        width: 100%;
        height: 150px;
    }
}
