/* ============================================
   CALIMA HOMES — Landing Page Styles
   Brand Colors:
   - Primary (dark teal): #2c5f72
   - Gold: #d4a24e
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --primary: #2c5f72;
    --primary-dark: #1e4555;
    --primary-light: #3d7a8f;
    --gold: #d4a24e;
    --gold-dark: #b8882f;
    --gold-light: #e6be7a;
    --bg: #faf9f7;
    --bg-alt: #f0eeea;
    --bg-dark: #1a2a33;
    --text: #2d3436;
    --text-light: #636e72;
    --text-muted: #99a3a8;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(44, 95, 114, 0.08);
    --shadow-md: 0 8px 30px rgba(44, 95, 114, 0.12);
    --shadow-lg: 0 20px 60px rgba(44, 95, 114, 0.15);
    --shadow-gold: 0 8px 30px rgba(212, 162, 78, 0.25);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* ---------- Typography ---------- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(44, 95, 114, 0.08), rgba(212, 162, 78, 0.08));
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.text-gold {
    color: var(--gold);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-main);
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    padding: 12px 28px;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212, 162, 78, 0.35);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    text-decoration: none;
}

.logo-calima {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--gold);
    transition: var(--transition);
}

.logo-homes {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.navbar:not(.scrolled) .logo-calima {
    color: var(--gold-light);
}

.navbar:not(.scrolled) .logo-homes {
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.navbar.scrolled .nav-link {
    color: var(--text);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary);
    background: rgba(44, 95, 114, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text);
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.png') center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(26, 42, 51, 0.85) 0%,
            rgba(44, 95, 114, 0.7) 50%,
            rgba(26, 42, 51, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-block;
    background: rgba(212, 162, 78, 0.15);
    border: 1px solid rgba(212, 162, 78, 0.3);
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 24px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-highlight {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounceDown 2s infinite;
}

.hero-scroll a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
}

.hero-scroll a:hover {
    color: var(--gold-light);
}

/* ---------- Valoración Hero Banner ---------- */
.val-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('images/hero.png') center/cover no-repeat;
    overflow: hidden;
}

.val-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(26, 42, 51, 0.75) 0%,
            rgba(44, 95, 114, 0.65) 100%);
}

.val-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    padding: 120px 24px 80px;
}

.val-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 12px;
}

.val-hero-title em {
    color: var(--gold-light);
    font-style: italic;
}

.val-hero-sub {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 28px;
}

.val-hero-checks {
    list-style: none;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.val-hero-checks li {
    font-size: 1rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.val-hero-checks li i {
    color: var(--gold-light);
}

.btn-val-cta {
    display: inline-block;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 16px 48px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-val-cta:hover {
    background: var(--white);
    color: var(--primary-dark);
}

/* ---------- Valoración Form Section ---------- */
.val-form-section {
    background: var(--bg);
    padding: 0 0 60px;
}

.val-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
}

.val-form-image {
    position: relative;
}

.val-form-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.val-form-wrapper {
    padding: 48px 48px 48px 56px;
}

/* Clean Form Styles (Lucas Fox inspired) */
.vf-row {
    margin-bottom: 24px;
}

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

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

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

.vf-group label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.vf-group input,
.vf-group select,
.vf-group textarea {
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 10px 0;
    border: none;
    border-bottom: 1.5px solid #ccc;
    background: transparent;
    color: var(--text);
    outline: none;
    transition: var(--transition);
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.vf-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2399a3a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 24px;
    cursor: pointer;
}

.vf-group input:focus,
.vf-group select:focus,
.vf-group textarea:focus {
    border-bottom-color: var(--primary);
    border-bottom-width: 2px;
}

.vf-group input::placeholder,
.vf-group textarea::placeholder {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.vf-group textarea {
    resize: vertical;
    min-height: 50px;
    border-bottom: 1.5px solid #ccc;
}

/* Phone input with prefix */
.vf-phone {
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.vf-phone-prefix {
    font-family: var(--font-main);
    font-size: 0.95rem;
    padding: 10px 0 !important;
    border: none !important;
    border-bottom: 1.5px solid #ccc !important;
    background: transparent !important;
    color: var(--text);
    outline: none;
    width: 120px !important;
    min-width: 120px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2399a3a8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 4px center !important;
    padding-right: 20px !important;
    border-radius: 0 !important;
}

.vf-phone-prefix:focus {
    border-bottom-color: var(--primary) !important;
    border-bottom-width: 2px !important;
}

.vf-phone input {
    flex: 1;
}

/* Checkbox */
.vf-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 28px 0 8px;
}

.vf-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
    accent-color: var(--primary);
    margin-top: 2px;
    cursor: pointer;
}

.vf-checkbox label {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    cursor: pointer;
}

.vf-checkbox label a {
    color: var(--primary);
    text-decoration: underline;
}

.vf-legal {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
}

.btn-val-submit {
    display: block;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 16px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 0;
}

.btn-val-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* ---------- Thank You Overlay ---------- */
.thankyou-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 42, 51, 0.7);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.thankyou-overlay.active {
    display: flex;
}

.thankyou-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 48px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    animation: scaleIn 0.4s ease;
}

.thankyou-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 16px;
}

.thankyou-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.thankyou-card p {
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ---------- Alojamientos Section ---------- */
.alojamientos {
    background: var(--bg-alt);
}

.alojamientos-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.alojamiento-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.alojamiento-overlay-card {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 42, 51, 0.95));
    padding: 60px 28px 28px;
    color: var(--white);
}

.alojamiento-overlay-card h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.alojamiento-overlay-card h4 i {
    color: var(--gold-light);
}

.alojamiento-overlay-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.alojamiento-overlay-card li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    gap: 8px;
}

.alojamiento-overlay-card li i {
    color: var(--gold-light);
    font-size: 0.75rem;
}

.booking-engine {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}

.booking-header {
    text-align: center;
    margin-bottom: 24px;
}

.booking-header i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.booking-header h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.booking-header p {
    color: var(--text-light);
    font-size: 0.9rem;
}

#apartmentIframeAll {
    min-height: 400px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

#apartmentIframeAll iframe {
    border-radius: var(--radius-sm);
}

/* ---------- About Section ---------- */
.nosotros {
    background: var(--bg);
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.nosotros-content .section-tag {
    margin-bottom: 12px;
}

.nosotros-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

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

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

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

.feature>i {
    font-size: 1.2rem;
    color: var(--gold);
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 162, 78, 0.1), rgba(44, 95, 114, 0.05));
    border-radius: var(--radius-sm);
}

.feature h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Process Card */
.process-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(44, 95, 114, 0.08);
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-card h3 i {
    color: var(--gold);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    font-size: 0.92rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.step-content p {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ---------- Propiedades Section ---------- */
.propiedades {
    background: var(--bg-alt);
}

.propiedades-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.propiedad-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
    position: relative;
}

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

.propiedad-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.propiedad-badge.sale {
    background: #e74c3c;
}

.propiedad-img {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.propiedad-img i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
}

.propiedad-info {
    padding: 20px;
}

.propiedad-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
    line-height: 1.3;
}

.propiedad-ubicacion {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 12px;
}

.propiedad-ubicacion i {
    color: var(--gold);
    font-size: 0.75rem;
}

.propiedad-detalles {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--bg-alt);
}

.propiedad-detalles span {
    font-size: 0.78rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.propiedad-detalles span i {
    color: var(--primary-light);
    font-size: 0.7rem;
}

.propiedad-precio {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
}

.precio-antes {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    font-weight: 400;
    margin-right: 6px;
}

.propiedades-cta {
    text-align: center;
    margin-top: 48px;
}

/* ---------- Contacto Section ---------- */
.contacto {
    background: var(--bg);
}

.contacto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: stretch;
}

.contacto-info .section-tag {
    margin-bottom: 12px;
}

.contacto-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contacto-text {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contacto-items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacto-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contacto-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.contacto-item h4 {
    font-size: 0.9rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.contacto-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contacto-item a {
    color: var(--gold-dark);
    font-weight: 500;
}

.contacto-item a:hover {
    color: var(--gold);
}

.contacto-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

.contacto-map iframe {
    display: block;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

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

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulseGreen 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes pulseGreen {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .propiedades-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .val-form-image {
        max-height: 400px;
        overflow: hidden;
    }

    .val-form-image img {
        min-height: 300px;
        max-height: 400px;
    }

    .val-form-wrapper {
        padding: 40px 32px;
    }

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

    .alojamientos-showcase {
        grid-template-columns: 1fr;
    }

    .alojamiento-img {
        height: 350px;
    }

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

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        color: var(--text);
        padding: 14px 16px;
        border-radius: var(--radius-sm);
        font-size: 1rem;
    }

    .nav-menu .nav-link:hover {
        background: var(--bg-alt);
        color: var(--primary);
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero-content {
        padding: 100px 20px 60px;
    }

    .hero-stats {
        gap: 18px;
    }

    .stat-number {
        font-size: 1.1rem;
    }

    .val-hero-content {
        padding: 100px 20px 60px;
    }

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

    .val-form-image {
        display: none;
    }

    .val-form-wrapper {
        padding: 32px 20px;
    }

    .vf-row-2,
    .vf-row-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

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

    .contacto-map {
        min-height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .btn-val-cta {
        padding: 14px 32px;
        font-size: 0.8rem;
    }
}