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

:root {
    --color-primary: #1B3A2D;
    --color-primary-light: #2A5440;
    --color-accent: #C4A265;
    --color-accent-light: #D4B87A;
    --color-bg: #F5F0E8;
    --color-white: #ffffff;
    --color-text: #1B3A2D;
    --color-text-light: #5A6B60;
    --color-border: #DDD5C8;
    --color-whatsapp: #25D366;
    --color-confotur: #0066cc;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --max-width: 1200px;
    --radius: 12px;
    --shadow: 0 4px 20px rgba(27,58,45,0.06);
    --shadow-hover: 0 8px 32px rgba(27,58,45,0.12);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* === Scroll Animations === */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Header === */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245,240,232,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    transition: all 0.3s;
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo img {
    height: 100px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
}

.nav a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

.lang-selector {
    display: flex;
    gap: 2px;
    background: var(--color-bg);
    border-radius: 20px;
    padding: 3px;
    border: 1.5px solid var(--color-border);
}

.lang-btn {
    padding: 4px 10px;
    border: none;
    border-radius: 16px;
    background: transparent;
    color: var(--color-text-light);
    font-weight: 600;
    font-size: 0.72rem;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.lang-btn:hover {
    color: var(--color-primary);
}

.lang-btn.active {
    background: var(--color-primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: 0.3s;
}

/* === Hero === */
.hero {
    position: relative;
    height: 90vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(27, 58, 45, 0.6) 0%,
        rgba(27, 58, 45, 0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.85;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease infinite;
}

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

/* === Stats Strip === */
.stats-strip {
    background: var(--color-primary);
    padding: 32px 0;
    position: relative;
}

.stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

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

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1.2;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
    font-weight: 400;
}

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(200,164,94,0.4);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: white;
    font-size: 1.15rem;
    padding: 16px 44px;
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-primary);
}

/* === Sections === */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    text-align: center;
    margin-bottom: 48px;
    color: var(--color-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-light);
    font-size: 1.1rem;
    margin-top: -32px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* === Properties Section === */
.properties-section {
    background: var(--color-bg);
    padding-bottom: 48px;
}

/* === Featured Property Card (horizontal) === */
.featured-property-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

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

.featured-property-image {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: #e8e5df;
}

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

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

.featured-property-info {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-property-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.featured-property-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.featured-property-info .property-location {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

.featured-property-info .property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.featured-property-info .property-specs span {
    background: var(--color-bg);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.featured-property-info .property-highlight {
    font-size: 0.9rem;
    color: var(--color-primary-light);
    font-weight: 500;
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin-bottom: 20px;
}

.featured-property-btn {
    align-self: flex-start;
    font-size: 0.9rem;
    padding: 10px 28px;
}

.properties-coming-soon {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin-top: 32px;
    font-style: italic;
}

.properties-coming-soon a {
    color: var(--color-accent);
    text-decoration: underline;
}

/* === Original Properties Grid (kept for other pages) === */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.property-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.property-card:not(.coming-soon):hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.property-card.coming-soon {
    opacity: 0.5;
    cursor: default;
}

.property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #e8e5df;
}

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

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

.property-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    font-weight: 500;
}

.property-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 8px;
}

.badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-confotur {
    background: var(--color-confotur);
    color: white;
}

.badge-featured {
    background: var(--color-accent);
    color: var(--color-primary);
}

.property-price {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.15rem;
}

.property-info {
    padding: 20px;
}

.property-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 4px;
    color: var(--color-primary);
}

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

.property-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.property-specs span {
    background: var(--color-bg);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.property-highlight {
    font-size: 0.85rem;
    color: var(--color-primary-light);
    font-weight: 500;
    border-top: 1px solid var(--color-border);
    padding-top: 12px;
}

/* === Rental Service Landing === */
.rental-service-landing {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rental-service-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.rental-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27,58,45,0.92) 0%, rgba(27,58,45,0.85) 50%, rgba(27,58,45,0.75) 100%);
}

.rental-service-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 800px;
}

.rental-service-badge {
    display: inline-block;
    background: var(--color-accent);
    color: var(--color-primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.rental-service-text h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: white;
    margin-bottom: 16px;
    line-height: 1.15;
}

.rental-service-lead {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 650px;
}

.rental-service-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.rental-service-stat {
    display: flex;
    flex-direction: column;
}

.rental-service-stat-number {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.rental-service-stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-top: 4px;
}

.rental-service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    margin-bottom: 36px;
}

.rental-service-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.9);
    font-size: 0.92rem;
    font-weight: 500;
}

.rental-service-feature svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

.rental-service-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.rental-service-cta .btn-outline {
    border-color: rgba(255,255,255,0.4);
    color: white;
}

.rental-service-cta .btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

@media (max-width: 768px) {
    .rental-service-landing {
        min-height: auto;
    }
    .rental-service-content {
        padding: 60px 24px;
    }
    .rental-service-stats {
        gap: 24px;
    }
    .rental-service-features {
        grid-template-columns: 1fr;
    }
    .rental-service-cta {
        flex-direction: column;
    }
    .rental-service-cta .btn {
        text-align: center;
        justify-content: center;
    }
    .rental-service-bg {
        background-attachment: scroll;
    }
}

/* === Rentals Section === */
.rentals-section {
    background: var(--color-white);
}

.rentals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

/* === Rental Cards === */
.rental-card {
    background: var(--color-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

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

.rental-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.rental-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.rental-rating {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.75);
    color: var(--color-accent);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    backdrop-filter: blur(4px);
}

.rental-rating span {
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

.rental-card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rental-card-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    margin-bottom: 4px;
    line-height: 1.3;
}

.rental-location {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin-bottom: 10px;
}

.rental-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.rental-specs span {
    background: var(--color-bg);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-text-light);
}

.rental-desc {
    font-size: 0.85rem;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.rental-buttons {
    display: flex;
    gap: 8px;
}

.btn-rental-airbnb {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: #FF5A5F;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-rental-airbnb:hover {
    background: #e04e52;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255,90,95,0.3);
}

.btn-rental-wa {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    background: var(--color-whatsapp);
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-rental-wa:hover {
    background: #20bd5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37,211,102,0.3);
}

.rentals-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

@media (max-width: 768px) {
    .rentals-grid {
        grid-template-columns: 1fr;
    }
    .rental-buttons {
        flex-direction: column;
    }
    .btn-rental-airbnb,
    .btn-rental-wa {
        justify-content: center;
        padding: 10px 16px;
    }
}

/* === Why Punta Cana (Alternating Layout) === */
.why-section {
    background: var(--color-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(196, 162, 101, 0.08);
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(196, 162, 101, 0.05);
}

.why-section .section-title {
    color: white;
    margin-bottom: 56px;
}

.why-row {
    display: flex;
    align-items: center;
    gap: 28px;
    max-width: 700px;
    margin: 0 auto 40px;
}

.why-row:last-child {
    margin-bottom: 0;
}

.why-row-reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.why-icon-col {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 80px;
}

.why-icon-circle {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    border-radius: 50%;
    background: rgba(196, 162, 101, 0.15);
    border: 2px solid rgba(196, 162, 101, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    flex-shrink: 0;
}

.why-icon-circle svg {
    display: block;
    flex-shrink: 0;
}

.why-text-col {
    flex: 1;
    min-width: 0;
}

.why-text-col h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.why-text-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.85;
}

/* === Free Tools Section === */
.tools-section {
    background: var(--color-bg);
    position: relative;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

.tool-card {
    background: var(--color-white);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
    border-top: 4px solid transparent;
}

.tool-card:hover {
    transform: translateY(-6px) rotate(-0.5deg);
    box-shadow: var(--shadow-hover);
}

.tool-card-accent-gold { border-top-color: var(--color-accent); }
.tool-card-accent-green { border-top-color: var(--color-primary-light); }
.tool-card-accent-blue { border-top-color: #3b82f6; }
.tool-card-accent-coral { border-top-color: #f97066; }
.tool-card-accent-teal { border-top-color: #14b8a6; }

.tool-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.tool-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.tool-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-light);
}

/* === About Section === */
/* === About / Agent Profile === */
.about-section {
    background: var(--color-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(196,162,101,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(245,240,232,0.05) 0%, transparent 50%);
}

.agent-card {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.agent-photo-col {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.agent-photo-wrapper {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--color-accent);
    box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 0 0 8px rgba(196,162,101,0.15);
}

.agent-photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.agent-info-col {
    flex: 1;
    min-width: 0;
}

.agent-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 8px;
}

.agent-name {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    line-height: 1.2;
}

.agent-title {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
    font-weight: 500;
}

.agent-bio {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
}

.about-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.credential-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.credential-badge strong {
    display: block;
    font-size: 0.85rem;
}

.credential-badge span {
    display: block;
    font-size: 0.72rem;
    opacity: 0.7;
}

.credential-green {
    background: rgba(46, 125, 50, 0.2);
    border: 1px solid rgba(46, 125, 50, 0.35);
    color: #a5d6a7;
}

.credential-green svg { color: #66bb6a; }

.credential-gold {
    background: rgba(200, 164, 94, 0.2);
    border: 1px solid rgba(200, 164, 94, 0.35);
    color: var(--color-accent-light);
}

.credential-gold svg { color: var(--color-accent); }

.credential-blue {
    background: rgba(21, 101, 192, 0.2);
    border: 1px solid rgba(21, 101, 192, 0.35);
    color: #90caf9;
}

.credential-blue svg { color: #64b5f6; }

.about-quote {
    max-width: none;
    margin: 0 0 28px;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.7);
    position: relative;
    font-style: italic;
    padding-left: 24px;
    border-left: 3px solid var(--color-accent);
}

.agent-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: var(--color-whatsapp);
    color: white;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.agent-cta:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}

/* === Contact / CTA === */
.contact-section {
    text-align: center;
    background: linear-gradient(135deg, var(--color-bg) 0%, #EDE7DC 50%, var(--color-bg) 100%);
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 40px,
            rgba(196,162,101,0.04) 40px,
            rgba(196,162,101,0.04) 80px
        );
    pointer-events: none;
}

.contact-section .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    position: relative;
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

/* === Footer === */
.footer {
    background: var(--color-primary);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 24px;
}

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

.footer-logo {
    text-decoration: none;
    display: inline-block;
    margin-bottom: 12px;
}

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

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-size: 1rem;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.footer-col ul li {
    font-size: 0.85rem;
}

.footer-col ul a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* === Benefits Grid (kept for other pages) === */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}

.benefit-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    transition: background 0.3s;
}

.benefit-card:hover {
    background: rgba(255,255,255,0.14);
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-accent);
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* === Property Detail Page === */

/* === Slideshow === */
.slideshow {
    margin-top: 95px;
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background: #111;
    overflow: hidden;
}

.slideshow-track {
    display: flex;
    transition: transform 0.3s ease;
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.slide {
    min-width: 100%;
    position: relative;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: 520px;
    object-fit: contain;
    display: block;
    background: #111;
    -webkit-user-drag: none;
    user-select: none;
    touch-action: pan-y;
}

.slide-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

.slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    font-size: 2.2rem;
    cursor: pointer;
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.slide-btn:hover {
    background: rgba(255,255,255,0.4);
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-counter {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 10;
}

.slide-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 10;
}

.slide-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    padding: 0;
}

.slide-dot.active {
    background: white;
    transform: scale(1.3);
}

/* === Lightbox === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    line-height: 1;
    padding: 8px;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1001;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    line-height: 1;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.3);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* === Property Card Image === */
.property-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.detail-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px;
}

.detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-border);
}

.detail-title h1 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--color-primary);
    margin-bottom: 4px;
}

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

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

.detail-price .price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
}

.detail-price .confotur-tag {
    display: inline-block;
    margin-top: 4px;
    padding: 4px 14px;
    background: var(--color-confotur);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.specs-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 36px;
    padding: 20px 24px;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.spec-item {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.spec-item .spec-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.spec-item .spec-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-description {
    margin-bottom: 36px;
}

.detail-description h2 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.detail-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
}

.features-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 10px;
    margin-bottom: 36px;
}

.features-list li {
    padding: 10px 14px;
    background: white;
    border-radius: 8px;
    font-size: 0.9rem;
    border-left: 3px solid var(--color-accent);
}

.confotur-box {
    background: linear-gradient(135deg, #e8f4fd, #f0f7ff);
    border: 1px solid #b3d9f2;
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 36px;
}

.confotur-box h3 {
    font-family: var(--font-heading);
    color: var(--color-confotur);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.confotur-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.confotur-box li {
    font-size: 0.9rem;
    padding-left: 20px;
    position: relative;
}

.confotur-box li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--color-confotur);
    font-weight: 700;
}

.detail-cta {
    text-align: center;
    padding: 40px;
    background: var(--color-primary);
    border-radius: var(--radius);
    color: white;
}

.detail-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.detail-cta p {
    opacity: 0.8;
    margin-bottom: 20px;
}

/* === Floating WhatsApp Button === */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99;
    background: var(--color-whatsapp);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    transition: all 0.3s;
    text-decoration: none;
}

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

.whatsapp-float svg { width: 30px; height: 30px; }

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-content {
        height: 70px;
        padding: 0;
    }
    .logo img {
        height: 65px;
    }
    .footer-logo img {
        height: 50px;
    }
    .nav { display: none; }
    .nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow);
    }
    .nav.active a {
        font-size: 1rem;
        padding: 8px 0;
    }
    .nav.active .lang-selector {
        align-self: center;
        gap: 4px;
        padding: 4px;
    }
    .nav.active .lang-btn {
        padding: 8px 14px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    .mobile-menu-btn { display: flex; }

    .hero { height: 75vh; }

    /* Mobile typography */
    .section-header h2 {
        font-size: 1.5rem;
    }

    /* Mobile touch targets — min 44px */
    .btn, .btn-rental-airbnb, .btn-rental-wa {
        min-height: 44px;
        padding: 12px 20px;
    }

    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden;
    }
    .container {
        padding: 0 16px;
    }

    /* Better card images on mobile */
    .rental-card-image {
        height: 220px;
    }

    /* Stats strip mobile */
    .stats-grid {
        flex-direction: column;
        gap: 20px;
    }
    .stat-divider {
        width: 60px;
        height: 1px;
    }

    /* Featured property mobile — stack vertically */
    .featured-property-card {
        grid-template-columns: 1fr;
    }
    .featured-property-image {
        min-height: 240px;
    }
    .featured-property-info {
        padding: 24px;
    }

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

    /* Why section mobile */
    .why-section {
        padding: 60px 0;
    }
    .why-section .section-title {
        margin-bottom: 36px;
        font-size: 1.5rem;
    }
    .why-row,
    .why-row-reverse {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        margin-bottom: 36px;
    }
    .why-row-reverse {
        text-align: center;
    }
    .why-icon-col {
        width: auto;
    }
    .why-icon-circle {
        width: 64px;
        height: 64px;
        min-width: 64px;
        min-height: 64px;
        margin: 0 auto;
    }
    .why-icon-circle svg {
        width: 32px;
        height: 32px;
    }
    .why-text-col h3 {
        font-size: 1.15rem;
    }
    .why-text-col p {
        font-size: 0.9rem;
    }

    /* Tools grid mobile */
    .tools-grid {
        grid-template-columns: 1fr;
    }

    /* Agent profile mobile */
    .about-section {
        padding: 60px 0;
    }
    .agent-card {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    .agent-photo-wrapper {
        width: 150px;
        height: 150px;
    }
    .agent-name {
        font-size: 1.8rem;
    }
    .agent-bio {
        font-size: 0.95rem;
    }
    .about-credentials {
        justify-content: center;
    }
    .about-quote {
        border-left: none;
        padding-left: 0;
        text-align: center;
        border-top: 2px solid rgba(196,162,101,0.3);
        padding-top: 20px;
    }
    .agent-cta {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    /* Footer mobile */
    .footer {
        padding: 40px 0 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .footer-logo img {
        height: 45px;
    }
    .footer-col h4 {
        margin-bottom: 12px;
    }
    .footer-col ul {
        gap: 8px;
    }
    .footer-col ul a {
        font-size: 0.9rem;
        padding: 4px 0;
        display: inline-block;
    }

    /* Contact mobile */
    .contact-section {
        padding: 60px 0;
    }

    .slideshow {
        margin-top: 60px;
        border-radius: 0;
    }

    .slide img {
        height: 56vw;
        max-height: 350px;
    }

    .slide-btn {
        width: 36px;
        height: 36px;
        font-size: 1.6rem;
    }

    .slide-prev { left: 6px; }
    .slide-next { right: 6px; }

    .slide-dots { bottom: 36px; }
    .slide-dot {
        width: 7px;
        height: 7px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }

    .lightbox-prev { left: 4px; }
    .lightbox-next { right: 4px; }

    .lightbox img {
        max-width: 98vw;
        max-height: 85vh;
    }

    .lightbox-close {
        top: 8px;
        right: 8px;
        font-size: 2rem;
        padding: 12px;
    }

    .detail-header { flex-direction: column; }
    .detail-price { text-align: left; }

    .specs-bar { gap: 16px; }

    .confotur-box ul {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .header-content {
        height: 60px;
    }
    .logo img {
        height: 55px;
    }
    .footer-logo img {
        height: 42px;
    }
    .nav.active {
        top: 60px;
    }
    .hero { height: 70vh; min-height: 450px; }
    .hero-scroll-indicator { display: none; }
    .stat-number { font-size: 1.4rem; }
    .featured-property-info h3 { font-size: 1.2rem; }
    .featured-property-price { font-size: 1.6rem; }
    .rental-card-info {
        padding: 16px;
    }
    .rental-card-info h3 {
        font-size: 1rem;
    }
    .rental-specs span {
        font-size: 0.7rem;
    }
}
