/* Font Face - Century Gothic */
@font-face {
    font-family: 'Century Gothic';
    src: local('Century Gothic Regular'), local('Century-Gothic-Regular'),
        url('police/CenturyGothic.woff2') format('woff2'),
        url('police/CenturyGothic.woff') format('woff'),
        url('police/CenturyGothic.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #DC143C;
    --primary-dark: #B71C1C;
    --secondary-color: #C9A961;
    --accent-gold: #D4AF37;
    --text-dark: #1A1A1A;
    --text-medium: #4A4A4A;
    --text-light: #7A7A7A;
    --bg-white: #FFFFFF;
    --bg-cream: #FAF8F3;
    --bg-light: #F8F8F8;
    --border-color: #E5E5E5;
    --shadow-sm: rgba(0, 0, 0, 0.04);
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-md: rgba(0, 0, 0, 0.12);
    --shadow-lg: rgba(0, 0, 0, 0.16);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Century Gothic', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 18px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px var(--shadow-md);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
    transition: var(--transition-fast);
}

.cookie-content a:hover {
    color: var(--accent-gold);
}

.cookie-close {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 10px 24px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.cookie-close:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 24px 0;
    border-bottom: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 75px;
    width: auto;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.02);
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 48px;
}

.nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1.2px;
    transition: var(--transition);
    position: relative;
    text-transform: uppercase;
    padding: 8px 0;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav a:hover {
    color: var(--secondary-color);
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.currency-select {
    padding: 10px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-white);
    font-size: 13px;
    cursor: pointer;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.currency-select:hover {
    border-color: var(--secondary-color);
}

.selection-count {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.3px;
}

.lang-btn:hover {
    border-color: var(--secondary-color);
    background: var(--bg-cream);
}

.lang-flag {
    display: none; /* Emojis retirés */
}

.lang-code {
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: inline-block;
}

.lang-arrow {
    width: 10px;
    height: 10px;
    color: var(--text-medium);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.language-selector.active .lang-arrow {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow: hidden;
}

.language-selector.active .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 12px 16px;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    font-size: 13px;
    color: var(--text-dark);
    text-align: left;
    letter-spacing: 0.2px;
}

.lang-option:first-child {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.lang-option:last-child {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.lang-option:hover {
    background: var(--bg-cream);
}

.lang-option.active {
    background: var(--bg-cream);
    color: var(--secondary-color);
    font-weight: 600;
}

.lang-option .lang-flag {
    display: none; /* Emojis retirés */
}

.lang-name {
    flex: 1;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slider img.active {
    opacity: 1;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.75) 0%, rgba(201, 169, 97, 0.35) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    width: 100%;
    max-width: 1200px;
    padding: 80px 20px;
}

.hero-title {
    font-family: 'Century Gothic', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
    letter-spacing: -1.5px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 60px;
    font-weight: 300;
    animation: fadeInUp 1s ease;
    letter-spacing: 0.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Search Box */
.search-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    margin-top: 40px;
    animation: fadeInUp 1.2s ease;
    border: 1px solid var(--border-color);
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 24px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
}

.search-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-medium);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.search-field input,
.search-field select {
    padding: 16px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Century Gothic', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 400;
}

.search-field input:focus,
.search-field select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.search-btn {
    grid-column: span 1;
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.35);
}

/* Villas Section */
.villas-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 4rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -2px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 300;
    line-height: 1.8;
    letter-spacing: 0.2px;
}

/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: var(--bg-white);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 97, 0.25);
}

/* Category Filters */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 12px 28px;
    background: var(--bg-white);
    border: 1.5px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.category-filter-btn:hover,
.category-filter-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 20, 60, 0.25);
}

/* Villas Grid */
.villas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 48px;
}

.villa-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.villa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
    border-color: var(--secondary-color);
}

.villa-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
}

.villa-image img,
.villa-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.villa-card:hover .villa-image img,
.villa-card:hover .villa-image video {
    transform: scale(1.08);
}

.villa-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.favorite-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-dark);
    box-shadow: 0 2px 12px var(--shadow);
    padding: 0;
}

.favorite-btn svg {
    transition: var(--transition);
}

.favorite-btn:hover,
.favorite-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(220, 20, 60, 0.4);
}

.favorite-btn.active svg {
    fill: var(--bg-white);
    stroke: var(--bg-white);
}

.villa-content {
    padding: 36px;
}

.villa-content h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.villa-location {
    color: var(--text-medium);
    font-size: 14px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

.villa-description {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
    letter-spacing: 0.1px;
}

.villa-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.feature {
    background: var(--bg-cream);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12px;
    color: var(--text-dark);
    font-weight: 500;
    border: 1px solid var(--border-color);
    letter-spacing: 0.3px;
}

.view-gallery-btn {
    width: 100%;
    padding: 14px;
    background: transparent;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 24px;
}

.view-gallery-btn:hover {
    background: var(--bg-cream);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-1px);
}

.villa-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.villa-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: 'Century Gothic', sans-serif;
    line-height: 1.2;
}

.price-unit {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-light);
}

.reserve-btn {
    padding: 14px 32px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.reserve-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.35);
}

/* Gallery Modal */
.gallery-modal .modal-content {
    max-width: 90%;
    max-height: 90vh;
    padding: 48px;
}

.gallery-content h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 36px;
    color: var(--text-dark);
    text-align: center;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 12px;
}

.gallery-container img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.gallery-container img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px var(--shadow-md);
    border-color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: var(--bg-white);
    margin: 5% auto;
    padding: 48px;
    border-radius: 16px;
    width: 90%;
    max-width: 640px;
    position: relative;
    animation: slideDown 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    right: 24px;
    top: 24px;
    font-size: 32px;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.close-modal:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.modal-content h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 2.25rem;
    margin-bottom: 36px;
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input {
    padding: 14px 18px;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: 'Century Gothic', sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 400;
}

.form-group input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.1);
}

.submit-reservation-btn {
    padding: 16px 36px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 12px;
}

.submit-reservation-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 20, 60, 0.35);
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: var(--bg-cream);
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
    font-weight: 600;
    letter-spacing: -1px;
}

.about-intro {
    font-size: 1.25rem;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.about-feature {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-md);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 24px;
}

.about-feature h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.about-feature p {
    color: var(--text-medium);
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Section */
/* Magazine Section */
.magazine-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.magazine-header {
    text-align: center;
    margin-bottom: 80px;
}

.magazine-header h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

.magazine-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.magazine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.magazine-article {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.magazine-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px var(--shadow-lg);
}

.magazine-article.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.magazine-article .article-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.magazine-article.featured .article-image {
    height: 400px;
}

.magazine-article .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.magazine-article:hover .article-image img {
    transform: scale(1.1);
}

.magazine-article .article-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.magazine-article .article-category {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.magazine-article .article-content h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.magazine-article.featured .article-content h3 {
    font-size: 2rem;
}

.magazine-article .article-excerpt {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.magazine-article.featured .article-excerpt {
    font-size: 1.125rem;
}

.magazine-article .article-meta {
    display: flex;
    gap: 20px;
    font-size: 0.875rem;
    color: var(--text-light);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.magazine-article .article-date,
.magazine-article .article-read-time {
    display: flex;
    align-items: center;
    gap: 6px;
}

.magazine-article .article-date::before {
    content: '';
    font-size: 0.875rem;
}

.magazine-article .article-read-time::before {
    content: '';
    font-size: 0.875rem;
}

/* Responsive Magazine */
@media (max-width: 1024px) {
    .magazine-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .magazine-article.featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .magazine-section {
        padding: 80px 0;
    }
    
    .magazine-header {
        margin-bottom: 50px;
    }
    
    .magazine-header h2 {
        font-size: 2.5rem;
    }
    
    .magazine-header p {
        font-size: 1rem;
    }
    
    .magazine-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .magazine-article.featured {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .magazine-article .article-image {
        height: 240px;
    }
    
    .magazine-article.featured .article-image {
        height: 240px;
    }
    
    .magazine-article .article-content {
        padding: 24px;
    }
    
    .magazine-article .article-content h3 {
        font-size: 1.25rem;
    }
    
    .magazine-article.featured .article-content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .magazine-section {
        padding: 60px 0;
    }
    
    .magazine-header h2 {
        font-size: 2rem;
    }
    
    .magazine-article .article-content {
        padding: 20px;
    }
    
    .magazine-article .article-meta {
        flex-direction: column;
        gap: 12px;
    }
}

.contact-section {
    padding: 120px 0;
    background: var(--bg-white);
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 3.5rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

.contact-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-cream);
    border-radius: 12px;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-md);
}

.contact-item h3 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-medium);
    font-size: 16px;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.contact-item a {
    color: var(--text-medium);
    text-decoration: none;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    display: inline-block;
    max-width: 100%;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 40px;
    left: 40px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-button svg {
    width: 32px;
    height: 32px;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 998;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(220, 20, 60, 0.3);
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(220, 20, 60, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    z-index: 3000;
}

.lightbox-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: var(--bg-white);
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    z-index: 3001;
}

.close-lightbox:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--bg-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 3001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--bg-white);
    padding: 10px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    z-index: 3001;
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-bottom: 60px;
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.social-media {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #fff;
}

.social-icon svg {
    width: 22px;
    height: 22px;
}

.footer-section h4 {
    font-family: 'Century Gothic', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--bg-white);
    font-weight: 600;
    letter-spacing: -0.5px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.9;
    font-size: 15px;
    font-weight: 300;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
    font-weight: 300;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-header h2 {
        font-size: 3rem;
    }
    
    .villas-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 40px;
    }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 16px 0;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 16px;
        position: relative;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .logo {
        order: 1;
    }

    .logo img {
        height: 55px;
    }

    .nav {
        order: 4;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav ul {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }

    .nav ul li {
        width: 100%;
    }

    .nav ul li a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .header-actions {
        order: 3;
        margin-left: auto;
        gap: 16px;
    }

    .language-selector {
        order: -1;
    }

    .lang-btn {
        padding: 7px 12px;
        font-size: 12px;
    }

    .lang-flag {
        display: none; /* Emojis retirés */
    }

    .lang-code {
        font-size: 11px;
        display: inline-block;
    }

    .lang-dropdown {
        min-width: 150px;
        right: auto;
        left: 0;
    }

    .selection-count {
        font-size: 12px;
    }

    .hero {
        min-height: 60vh;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 16px;
    }

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

    .search-box {
        padding: 24px 20px;
        margin-top: 20px;
    }

    .search-form {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .search-field input,
    .search-field select {
        padding: 14px 16px;
        font-size: 14px;
    }

    .search-btn {
        width: 100%;
        padding: 14px;
    }

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

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

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .filters {
        gap: 8px;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .category-filters {
        gap: 8px;
        margin-bottom: 30px;
    }

    .category-filter-btn {
        padding: 10px 18px;
        font-size: 12px;
    }

    .villas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .villa-image {
        height: 240px;
    }

    .villa-content {
        padding: 24px;
    }

    .villa-content h3 {
        font-size: 1.5rem;
    }

    .villa-description {
        font-size: 14px;
        -webkit-line-clamp: 2;
    }

    .villa-footer {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .reserve-btn {
        width: 100%;
    }

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

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .about-intro {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
    }

    .about-feature {
        padding: 30px 20px;
    }

    .magazine-section {
        padding: 60px 0;
    }
    
    .magazine-header {
        margin-bottom: 40px;
    }
    
    .magazine-header h2 {
        font-size: 2rem;
    }
    
    .magazine-header p {
        font-size: 1rem;
    }
    
    .magazine-grid {
        gap: 24px;
    }

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

    .contact-header h2 {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .contact-header p {
        font-size: 1rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-item {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .gallery-container img {
        height: 150px;
    }
    
    .whatsapp-button {
        bottom: 20px;
        left: 20px;
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-button svg {
        width: 28px;
        height: 28px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }

    .close-lightbox {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 30px;
    }

    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .social-media {
        justify-content: center;
        flex-wrap: wrap;
    }

    .cookie-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cookie-content p {
        font-size: 12px;
    }

    .cookie-close {
        width: 100%;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .header {
        padding: 12px 0;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-content {
        padding: 30px 16px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }

    .search-box {
        padding: 20px 16px;
        border-radius: 8px;
    }

    .search-field label {
        font-size: 10px;
    }

    .search-field input,
    .search-field select {
        padding: 12px 14px;
        font-size: 14px;
    }

    .villas-section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .villa-card {
        border-radius: 8px;
    }

    .villa-image {
        height: 200px;
    }

    .villa-content {
        padding: 20px;
    }

    .villa-content h3 {
        font-size: 1.25rem;
    }

    .villa-features {
        gap: 6px;
    }

    .feature {
        padding: 6px 12px;
        font-size: 11px;
    }

    .price-amount {
        font-size: 1.4rem;
    }

    .magazine-section {
        padding: 40px 0;
    }
    
    .magazine-header h2 {
        font-size: 1.75rem;
    }
    
    .magazine-header p {
        font-size: 0.9rem;
    }
    
    .magazine-grid {
        gap: 20px;
    }

    .about-section,
    .contact-section {
        padding: 40px 0;
    }

    .about-text h2,
    .contact-header h2 {
        font-size: 1.75rem;
    }

    .about-intro,
    .contact-header p {
        font-size: 0.9rem;
    }

    .modal-content {
        padding: 24px 16px;
        margin: 5% auto;
        width: 95%;
        border-radius: 8px;
    }

    .modal-content h2 {
        font-size: 1.5rem;
        margin-bottom: 24px;
    }

    .gallery-modal .modal-content {
        padding: 24px 16px;
    }

    .gallery-content h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .gallery-container {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 8px;
    }

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

    .footer {
        padding: 40px 0 24px;
    }

    .footer-section h4 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .footer-section p {
        font-size: 14px;
    }

    .whatsapp-button {
        bottom: 16px;
        left: 16px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-button svg {
        width: 24px;
        height: 24px;
    }

    .back-to-top {
        bottom: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .back-to-top svg {
        width: 16px;
        height: 16px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-counter {
        bottom: 15px;
        padding: 8px 16px;
        font-size: 12px;
    }

    #lightboxImage {
        max-width: 95%;
        max-height: 85vh;
    }
}

/* =========================================
   VILLA DETAIL PAGE MODAL
   ========================================= */

.villa-card {
    cursor: pointer;
}

.vd-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-white);
    z-index: 2500;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-behavior: smooth;
}

.vd-modal.open {
    transform: translateX(0);
}

/* Topbar */
.vd-topbar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 70px;
    gap: 20px;
}

.vd-back-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 12px;
    letter-spacing: 1.5px;
    color: var(--text-medium);
    text-transform: uppercase;
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 0;
    flex-shrink: 0;
}

.vd-back-btn:hover {
    color: var(--secondary-color);
}

.vd-back-btn svg {
    transition: var(--transition);
}

.vd-back-btn:hover svg {
    transform: translateX(-4px);
}

.vd-topbar-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dark);
    text-align: center;
    flex: 1;
}

.vd-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-medium);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
}

.vd-close-btn:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

/* Hero */
.vd-hero {
    position: relative;
    height: 68vh;
    overflow: hidden;
    background: #111;
}

.vd-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
    display: block;
}

.vd-hero-prev,
.vd-hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 5;
}

.vd-hero-prev { left: 32px; }
.vd-hero-next { right: 32px; }

.vd-hero-prev:hover,
.vd-hero-next:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-50%) scale(1.07);
}

.vd-hero-counter {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: white;
    padding: 7px 22px;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.vd-hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent);
    pointer-events: none;
}

/* Body */
.vd-body {
    padding: 70px 0 60px;
    background: var(--bg-white);
}

.vd-body-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 64px;
    align-items: start;
}

.vd-villa-name {
    font-size: 46px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.3px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.vd-location-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 15px;
    letter-spacing: 0.3px;
}

.vd-location-text svg {
    flex-shrink: 0;
    color: var(--secondary-color);
}

.vd-sep {
    height: 1px;
    background: var(--border-color);
    margin: 40px 0;
}

.vd-section-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 18px;
    font-weight: 600;
}

.vd-description {
    font-size: 16px;
    line-height: 2;
    color: var(--text-medium);
}

.vd-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vd-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-cream);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-dark);
    letter-spacing: 0.2px;
    transition: var(--transition);
}

.vd-feature-item:hover {
    border-color: var(--secondary-color);
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--shadow);
}

.vd-feature-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Side / Price Card */
.vd-side-col {
    position: sticky;
    top: 90px;
}

.vd-price-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 36px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
}

.vd-price-top {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border-color);
}

.vd-price-label-text {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 10px;
}

.vd-price-amount {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 6px;
    letter-spacing: -1px;
}

.vd-price-unit-text {
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.vd-reserve-btn {
    width: 100%;
    padding: 17px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
    display: block;
}

.vd-reserve-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220, 20, 60, 0.28);
}

.vd-gallery-open-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 20px;
    display: block;
}

.vd-gallery-open-btn:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.vd-price-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Gallery Section */
.vd-gallery-section {
    background: var(--bg-cream);
    padding: 70px 0 80px;
}

.vd-gallery-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 48px;
}

.vd-gallery-title {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--secondary-color);
    margin-bottom: 32px;
    font-weight: 600;
}

.vd-photo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.vd-photo-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: var(--bg-light);
}

.vd-photo-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: unset;
}

.vd-photo-item img,
.vd-photo-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}

.vd-photo-item:hover img,
.vd-photo-item:hover video {
    transform: scale(1.06);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .vd-body-inner {
        grid-template-columns: 1fr 320px;
        gap: 48px;
    }
    .vd-villa-name { font-size: 38px; }
    .vd-photo-grid { grid-template-columns: repeat(3, 1fr); }
    .vd-photo-item:first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
    .vd-topbar { padding: 0 20px; }
    .vd-topbar-title { font-size: 12px; }
    .vd-hero { height: 50vh; }
    .vd-hero-prev { left: 16px; }
    .vd-hero-next { right: 16px; }
    .vd-hero-prev, .vd-hero-next { width: 44px; height: 44px; }
    .vd-body { padding: 48px 0 40px; }
    .vd-body-inner {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0 24px;
    }
    .vd-side-col {
        position: static;
        order: -1;
        padding-bottom: 40px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 40px;
    }
    .vd-villa-name { font-size: 30px; }
    .vd-photo-grid { grid-template-columns: repeat(2, 1fr); }
    .vd-photo-item:first-child { grid-column: span 2; }
    .vd-gallery-inner { padding: 0 24px; }
    .vd-features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .vd-hero { height: 42vh; }
    .vd-villa-name { font-size: 26px; }
    .vd-price-amount { font-size: 38px; }
    .vd-photo-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}