/* ============================================
   LAS PALMERAS GOLF & COUNTRY CLUB v1.4
   Tono: Premium/Boutique - Tratamiento "usted"
   ============================================ */

/* ----- CSS RESET & BASE ----- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette premium */
    --primary-gold: #c9a961;
    --primary-dark: #1a1a1a;
    --secondary-green: #2d5016;
    --bg-light: #f8f8f8;
    --bg-dark: #2a2a2a;
    --text-primary: #1a1a1a;
    --text-secondary: #666;
    --text-light: #fff;
    
    /* Typography */
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: #fff;
    overflow-x: hidden;
}

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

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

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

/* ----- TYPOGRAPHY ----- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.lead {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
}

/* ----- BUTTONS ----- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 0;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    border-color: var(--primary-gold);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline:hover {
    background-color: var(--primary-dark);
    color: var(--text-light);
}

.btn-whatsapp {
    background-color: #25D366;
    color: var(--text-light);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    border-color: #128C7E;
}

/* ----- HEADER ----- */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: var(--transition);
}

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

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin: 0;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: -5px;
}

/* ----- DESKTOP NAVIGATION ----- */
.desktop-nav {
    display: none;
}

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

.desktop-nav a {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

/* Mega menu (desktop only) */
.has-dropdown {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 30px;
    margin-top: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 300px;
    border-top: 2px solid var(--primary-gold);
}

.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mega-menu a {
    color: var(--text-light);
    padding: 10px 15px;
    border-left: 2px solid transparent;
    transition: var(--transition);
}

.mega-menu a:hover {
    border-left-color: var(--primary-gold);
    padding-left: 20px;
    color: var(--primary-gold);
}

/* ----- MOBILE MENU TOGGLE ----- */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* ----- MOBILE NAVIGATION ----- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1001;
    transition: right 0.4s ease;
    overflow-y: auto;
}

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

.mobile-nav-content {
    padding: 80px 40px 40px;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    padding: 10px 0;
}

.mobile-nav .mobile-submenu a {
    font-size: 1rem;
    padding-left: 20px;
    color: rgba(255, 255, 255, 0.8);
}

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

/* ----- HERO SECTION ----- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    overflow: hidden;
}

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

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

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 300;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----- SECTIONS ----- */
.section {
    padding: var(--section-padding);
}

.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-light {
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* ----- CONCEPTO SECTION ----- */
.concepto {
    text-align: center;
}

.concepto .section-header h2 {
    margin-bottom: 1.5rem;
}

/* ----- CIFRAS / STATS ----- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----- MODELOS GRID ----- */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.model-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
}

.model-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.model-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

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

.model-content {
    padding: 30px;
}

.model-content h3 {
    margin-bottom: 1rem;
}

.model-specs {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.model-specs p {
    margin-bottom: 0.5rem;
}

.model-actions {
    display: flex;
    gap: 10px;
}

.model-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.85rem;
}

/* ----- INGRESO CAROUSEL ----- */
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel {
    position: relative;
    height: 500px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 97, 0.3);
}

.carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.carousel-item.active {
    opacity: 1;
    visibility: visible;
}

.carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(201, 169, 97, 0.1);
    border: 2px dashed rgba(201, 169, 97, 0.3);
}

.carousel-placeholder p {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.carousel-placeholder small {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--text-light);
}

.carousel-caption h3 {
    margin-bottom: 0.5rem;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(201, 169, 97, 0.8);
    border: none;
    color: var(--text-light);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
}

.carousel-control:hover {
    background-color: var(--primary-gold);
}

.carousel-control.prev {
    left: 10px;
}

.carousel-control.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background-color: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-indicators button.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

/* ----- PARQUE CAROUSEL (Master Plan Page) ----- */
.parque-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.parque-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.parque-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.parque-carousel-item.active {
    opacity: 1;
    visibility: visible;
}

.parque-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parque-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4) 70%, transparent);
    color: var(--text-light);
}

.parque-carousel-caption h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.parque-carousel-caption p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.parque-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(201, 169, 97, 0.85);
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.parque-carousel-control:hover {
    background-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.parque-carousel-control.prev {
    left: 20px;
}

.parque-carousel-control.next {
    right: 20px;
}

.parque-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.parque-carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.parque-carousel-indicators button.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive para carrusel del parque */
@media (max-width: 768px) {
    .parque-carousel {
        height: 400px;
    }
    
    .parque-carousel-control {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .parque-carousel-control.prev {
        left: 10px;
    }
    
    .parque-carousel-control.next {
        right: 10px;
    }
    
    .parque-carousel-caption {
        padding: 20px;
    }
    
    .parque-carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .parque-carousel-caption p {
        font-size: 0.85rem;
    }
}

/* ----- CICLOVIA CAROUSEL (Master Plan Page) ----- */
.ciclovia-carousel-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.ciclovia-carousel {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.ciclovia-carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}

.ciclovia-carousel-item.active {
    opacity: 1;
    visibility: visible;
}

.ciclovia-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ciclovia-carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4) 70%, transparent);
    color: var(--text-light);
}

.ciclovia-carousel-caption h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.ciclovia-carousel-caption p {
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.4;
}

.ciclovia-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(201, 169, 97, 0.85);
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.ciclovia-carousel-control:hover {
    background-color: var(--primary-gold);
    transform: translateY(-50%) scale(1.1);
}

.ciclovia-carousel-control.prev {
    left: 20px;
}

.ciclovia-carousel-control.next {
    right: 20px;
}

.ciclovia-carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.ciclovia-carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid var(--text-light);
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.ciclovia-carousel-indicators button.active {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    transform: scale(1.2);
}

/* Responsive para carrusel de ciclovía */
@media (max-width: 768px) {
    .ciclovia-carousel {
        height: 400px;
    }
    
    .ciclovia-carousel-control {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }
    
    .ciclovia-carousel-control.prev {
        left: 10px;
    }
    
    .ciclovia-carousel-control.next {
        right: 10px;
    }
    
    .ciclovia-carousel-caption {
        padding: 20px;
    }
    
    .ciclovia-carousel-caption h3 {
        font-size: 1.2rem;
    }
    
    .ciclovia-carousel-caption p {
        font-size: 0.85rem;
    }
}

/* ----- FEATURES GRID ----- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

/* ----- MASTER PLAN Y LOTES SECTION ----- */
.master-plan-lotes {
    background-color: #fff;
}

.master-plan-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 3rem;
    align-items: start;
}

.plan-visual .carousel-placeholder {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5, #e8e8e8);
    border: 2px dashed #ccc;
    border-radius: 8px;
    padding: 40px;
}

.lotes-info h3 {
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.info-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 2.5rem;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #f9f9f9;
    border-left: 4px solid var(--primary-gold);
}

.info-item strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.info-item span {
    color: var(--text-secondary);
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem 0;
}

.features-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-secondary);
    line-height: 1.6;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ----- PLANES Y FACILIDADES SECTION ----- */
.planes-facilidades {
    background-color: var(--primary-dark);
    color: #fff;
}

.planes-facilidades .section-title,
.planes-facilidades .section-subtitle {
    color: #fff;
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin: 3rem 0;
}

.plan-card {
    background-color: #fff;
    color: var(--primary-dark);
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.plan-card.featured {
    border: 3px solid var(--primary-gold);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-gold);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-card h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.plan-features li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.plan-cta {
    margin-top: 2rem;
    text-align: center;
}

.facilidades-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.facilidades-info h3 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
}

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

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.08);
}

.benefit-item h4 {
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----- FOOTER ----- */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

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

.footer-brand h3 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-slogan {
    margin-top: 1rem;
    font-style: italic;
}

.footer-column h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

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

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-column a:hover {
    color: var(--primary-gold);
}

.footer-cta {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 40px;
}

.footer-bottom {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.75rem;
    font-style: italic;
}

/* ----- PAGE HERO (Internal Pages) ----- */
.page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    color: var(--text-light);
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
}

/* ----- CONTENT BLOCKS ----- */
.content-block {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2 {
    margin-bottom: 1.5rem;
}

.content-block p {
    margin-bottom: 1.5rem;
}

.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.two-column-content.reverse {
    direction: rtl;
}

.two-column-content.reverse > * {
    direction: ltr;
}

.column-text h2 {
    margin-bottom: 1.5rem;
}

.column-text p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.column-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border: 1px solid #e0e0e0;
}

/* ----- CTA BLOCK ----- */
.cta-block {
    text-align: center;
    padding: 60px 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-gold);
}

.cta-block h2 {
    margin-bottom: 1rem;
}

.cta-block p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

/* ----- MASTERPLAN VIEWER ----- */
.masterplan-viewer {
    margin-top: 3rem;
}

.pdf-container {
    width: 100%;
    height: 600px;
    border: 2px solid var(--primary-gold);
    background-color: #f5f5f5;
    margin-bottom: 2rem;
    overflow: hidden;
}

.pdf-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.masterplan-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.masterplan-actions .btn {
    min-width: 200px;
}

/* ----- MAP CONTAINER ----- */
.map-container {
    width: 100%;
    height: 500px;
    border: 1px solid #e0e0e0;
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ----- INFO CARDS ----- */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.info-card {
    padding: 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

.info-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----- FORM STYLES ----- */
.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--primary-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    border: 1px solid #ddd;
    background-color: #fff;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
    margin-top: 2rem;
}

/* ----- AMENITY CARDS ----- */
.amenity-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.amenity-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: var(--transition);
}

.amenity-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.amenity-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.amenity-content {
    padding: 30px;
}

.amenity-content h3 {
    margin-bottom: 1rem;
}

.amenity-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ----- MODEL PAGE HERO ----- */
.model-page-hero {
    position: relative;
    height: 70vh;
    display: flex;
    align-items: flex-end;
    color: var(--text-light);
}

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

.model-page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.model-page-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
}

.model-page-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 0;
}

.model-page-hero h1 {
    margin-bottom: 0.5rem;
}

.model-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: var(--primary-gold);
    color: var(--primary-dark);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

/* ----- MODEL SPECS TABLE ----- */
.specs-table {
    width: 100%;
    margin-top: 2rem;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid #e0e0e0;
}

.specs-table td {
    padding: 15px;
}

.specs-table td:first-child {
    font-weight: 500;
    color: var(--primary-dark);
    width: 40%;
}

.specs-table td:last-child {
    color: var(--text-secondary);
}

/* ----- GALLERY GRID ----- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e0e0e0;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ----- CONCEPTO GRID ----- */
.concepto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 3rem;
}

.concepto-card {
    text-align: center;
    padding: 40px 30px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.concepto-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.concepto-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.concepto-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.concepto-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ----- AMENITIES GRID (HOME PAGE) ----- */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.amenities-grid .amenity-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--bg-light);
    border: 1px solid #e0e0e0;
    transition: var(--transition);
}

.amenities-grid .amenity-card:hover {
    border-color: var(--primary-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.amenities-grid .amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.amenities-grid .amenity-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--primary-dark);
}

.amenities-grid .amenity-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.club-house-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 991px) {
    .two-column-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .two-column-content.reverse {
        direction: ltr;
    }
}

@media (min-width: 768px) {
    .desktop-nav {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: none;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px 0;
    }
    
    .hero {
        height: 80vh;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .models-grid {
        grid-template-columns: 1fr;
    }
    
    .master-plan-content {
        grid-template-columns: 1fr;
    }
    
    .planes-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel {
        height: 400px;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .page-hero {
        padding: 140px 0 80px;
    }
    
    .model-page-hero {
        height: 60vh;
    }
    
    .map-container {
        height: 350px;
    }
    
    .pdf-container {
        height: 400px;
    }
    
    .masterplan-actions {
        flex-direction: column;
    }
    
    .masterplan-actions .btn {
        width: 100%;
    }
}