/* ========================================
   AKNA WEBSITE - MAIN STYLES
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Selva y Cancún */
    --jungle-green: #2D5016;        /* Verde selva profundo */
    --sand-beige: #F4E4BC;          /* Arena dorada de playa */
    --white: #FFFFFF;
    --turquoise: #00CED1;           /* Turquesa vibrante del Caribe */
    
    /* Secondary Colors */
    --dark-green: #1A3A0A;          /* Verde oscuro selvático */
    --light-beige: #FEF9E7;         /* Crema tropical */
    --light-turquoise: #20B2AA;     /* Turquesa claro */
    --coral: #FF6B6B;               /* Coral vibrante */
    --gold: #FFD700;                /* Dorado del sol */
    --ocean-blue: #0077BE;          /* Azul océano profundo */
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --dark-gray: #2D5016;           /* Verde selva en lugar de negro */
    --text-dark: #1A3A0A;           /* Verde oscuro para texto */
    --accent-purple: #8B5CF6;       /* Púrpura vibrante */
    --accent-orange: #F97316;       /* Naranja vibrante */
    
    /* States */
    --success: #00BFA5;             /* Verde esmeralda */
    --warning: #FF9800;             /* Naranja tropical */
    --error: #E91E63;               /* Rosa vibrante */
    --info: #2196F3;                /* Azul cielo */
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    --text-6xl: 3.75rem;   /* 60px */
    
    /* Spacing */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-normal: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.6;
    color: #F0F0F0 !important;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-4);
    color: #FFFFFF !important;
    text-shadow: 
        0 0 10px rgba(0, 0, 0, 0.8),
        0 0 20px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
    margin-bottom: var(--space-4);
    color: #F0F0F0 !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

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

a:hover {
    color: var(--jungle-green);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: var(--text-base);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left var(--transition-slow);
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--coral), var(--accent-orange), var(--gold));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-clip: padding-box;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--white), rgba(255, 255, 255, 0.9));
    color: var(--jungle-green);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--jungle-green), var(--turquoise));
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--jungle-green);
}

.btn-large {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-lg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 228, 188, 0.9));
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 206, 209, 0.2);
    transition: all var(--transition-normal);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header.scrolled .nav-link {
    color: var(--jungle-green);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header.scrolled .nav-link:hover {
    color: var(--turquoise);
}

.header.scrolled .logo-main {
    color: var(--jungle-green);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.header.scrolled .logo-subtitle {
    color: var(--gray);
}

.navbar {
    padding: var(--space-4) 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--jungle-green);
}

.logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-main {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.logo-subtitle {
    font-size: var(--text-xs);
    font-weight: 400;
    color: var(--gray);
    line-height: 1;
    margin-top: 2px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.logo-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
    padding: 8px;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--jungle-green);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: #FFFFFF;
    transition: color var(--transition-fast);
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--turquoise);
    transition: width var(--transition-normal);
}

.nav-link:hover {
    color: var(--turquoise);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.header-cta {
    padding: var(--space-2) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--jungle-green), var(--turquoise));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
    transition: all var(--transition-normal);
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

.language-switcher {
    display: flex;
    gap: var(--space-1);
}

.lang-btn {
    padding: var(--space-2) var(--space-3);
    border: 2px solid #FFFFFF;
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
    font-size: var(--text-sm);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--white);
    color: var(--jungle-green);
    border-color: var(--white);
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.hamburger {
    width: 25px;
    height: 3px;
    background: var(--jungle-green);
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    min-height: 100vh;
    z-index: 1;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.6), 
        rgba(0, 0, 0, 0.4), 
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.5)
    );
    z-index: -1;
}

.hero-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hero-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.1"/><circle cx="80" cy="80" r="1.5" fill="%23FFFFFF" opacity="0.1"/><circle cx="50" cy="50" r="1" fill="%2300CED1" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23hero-pattern)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    padding: 0 var(--space-4);
    position: relative;
    z-index: 100;
}

.hero-logo {
    margin-bottom: var(--space-8);
    animation: fadeInDown 1s ease-out;
    position: relative;
    z-index: 101;
}

.hero-logo img {
    width: 150px;
    height: 150px;
    border-radius: 0;
    background: transparent;
    padding: 0;
    box-shadow: 
        0 0 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.3);
    border: none;
    backdrop-filter: none;
    transition: all var(--transition-normal);
}

.hero-logo img:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(0, 0, 0, 0.4),
        0 15px 40px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments for hero logo */
@media (max-width: 768px) {
    .hero-logo img {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-logo img {
        width: 100px;
        height: 100px;
    }
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #FFFFFF !important;
    text-shadow: 
        0 0 30px rgba(0, 0, 0, 1),
        0 0 60px rgba(0, 0, 0, 0.8),
        0 0 90px rgba(0, 0, 0, 0.6),
        0 4px 8px rgba(0, 0, 0, 1);
    animation: fadeInUp 1s ease-out;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
    padding: var(--space-6) var(--space-8);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: var(--space-8);
    color: #FFFFFF !important;
    text-shadow: 
        0 0 25px rgba(0, 0, 0, 1),
        0 0 50px rgba(0, 0, 0, 0.8),
        0 0 75px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 1);
    animation: fadeInUp 1s ease-out 0.2s both;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    padding: var(--space-4) var(--space-6);
    border-radius: 12px;
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: var(--white);
    text-decoration: none;
    font-size: var(--text-sm);
    opacity: 0.8;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Sections */
.section {
    padding: var(--space-20) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-title {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    color: #FFFFFF !important;
    text-shadow: 
        0 0 15px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(0, 0, 0, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.9);
}

.section-subtitle {
    font-size: var(--text-lg);
    color: #000000 !important;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: none !important;
    font-weight: 500;
}

/* Specific style for location section subtitle */
.location .section-subtitle {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specific style for amenities section subtitle */
.amenities .section-subtitle {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specific style for contact section subtitle */
.contact .section-subtitle {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Specific style for development section subtitle */
.development .section-subtitle {
    color: #FFFFFF !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--jungle-green), var(--dark-green));
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    margin-top: var(--space-12);
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
    margin-bottom: var(--space-8);
}

.stat-item {
    text-align: center;
    padding: var(--space-4);
    background: linear-gradient(135deg, var(--light-beige), var(--white));
    border-radius: 12px;
    border: 1px solid rgba(0, 206, 209, 0.1);
    transition: all var(--transition-normal);
}

.stat-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.1);
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--jungle-green);
    margin-bottom: var(--space-2);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--gray);
    font-weight: 500;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    background: rgba(0, 206, 209, 0.05);
    transform: translateX(8px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--jungle-green), var(--turquoise));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
}

.amenity-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--space-4);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
    transition: all var(--transition-normal);
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

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

.info-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: var(--space-4);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.2);
    transition: all var(--transition-normal);
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all var(--transition-normal);
}

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

.amenity-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--jungle-green), var(--turquoise));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.3);
    transition: all var(--transition-normal);
}

.amenity-icon i {
    color: var(--white);
    font-size: 2rem;
}

.amenity-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.feature-icon img {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
}

.feature-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: #FFFFFF !important;
    margin-bottom: var(--space-2);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.feature-content p {
    color: #FFFFFF !important;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

/* Development Section */
.development {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--dark-green));
    position: relative;
}

.development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%2300CED1" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23FF6B6B" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.development-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
}

.development-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

.development-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    margin-top: var(--space-12);
}

@media (max-width: 1024px) {
    .development-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-4);
    }
}

@media (max-width: 768px) {
    .development-cards {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
}

.info-card {
    background: linear-gradient(135deg, var(--white), var(--light-beige));
    padding: var(--space-8);
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 206, 209, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left var(--transition-slow);
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
    border-color: var(--turquoise);
}

.info-icon {
    margin-bottom: var(--space-4);
}

.info-icon img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.info-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: #000000 !important;
    font-weight: 600;
    text-shadow: none !important;
}

.info-card p {
    font-size: var(--text-sm);
    color: #000000 !important;
    margin: 0;
    font-weight: 500;
    text-shadow: none !important;
}

.dev-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Amenities Section */
.amenities {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--jungle-green), var(--ocean-blue));
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="leaves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M20,20 Q30,10 40,20 Q50,30 40,40 Q30,50 20,40 Q10,30 20,20" fill="%232D5016" opacity="0.05"/><path d="M60,60 Q70,50 80,60 Q90,70 80,80 Q70,90 60,80 Q50,70 60,60" fill="%2300CED1" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23leaves)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
}

.amenity-card {
    background: linear-gradient(135deg, var(--white), var(--light-beige));
    padding: var(--space-8);
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid rgba(0, 206, 209, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    backdrop-filter: blur(10px);
}

.amenity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(0, 206, 209, 0.05), 
        rgba(255, 215, 0, 0.05), 
        rgba(255, 107, 107, 0.05)
    );
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.amenity-card:hover::before {
    opacity: 1;
}

.amenity-card:hover {
    transform: translateY(-8px);
    border-color: var(--turquoise);
    box-shadow: 0 20px 40px rgba(45, 80, 22, 0.15);
}

.amenity-icon {
    margin-bottom: var(--space-4);
}

.amenity-icon img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.amenity-icon img:hover {
    transform: scale(1.1);
}

.amenity-card h3 {
    font-size: var(--text-lg);
    color: #000000 !important;
    margin: 0;
    font-weight: 600;
    text-shadow: none !important;
}

/* Location Section */
.location {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--dark-green), var(--jungle-green), var(--ocean-blue));
    position: relative;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="waves" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M0,50 Q25,30 50,50 T100,50 L100,100 L0,100 Z" fill="%2300CED1" opacity="0.1"/><path d="M0,70 Q25,50 50,70 T100,70 L100,100 L0,100 Z" fill="%230077BE" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23waves)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.location-card {
    background: var(--white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--turquoise);
}

.location-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-2);
    color: #000000 !important;
    font-weight: 600;
    text-shadow: none !important;
}

.location-card p {
    margin: 0;
    color: #000000 !important;
    font-weight: 500;
    text-shadow: none !important;
}

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

/* Gallery Section */
.gallery {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--jungle-green), var(--ocean-blue));
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--white);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--white);
    color: var(--jungle-green);
    border-color: var(--white);
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 86, 50, 0.8), rgba(0, 139, 139, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Icons */
.icon-location::before {
    content: "📍";
    font-size: 1.5rem;
}

.icon-email::before {
    content: "✉️";
    font-size: 1.5rem;
}

.icon-phone::before {
    content: "📞";
    font-size: 1.5rem;
}

.icon-facebook::before {
    content: "📘";
    font-size: 1.2rem;
}

.icon-twitter::before {
    content: "🐦";
    font-size: 1.2rem;
}

.icon-instagram::before {
    content: "📷";
    font-size: 1.2rem;
}

.icon-linkedin::before {
    content: "💼";
    font-size: 1.2rem;
}

.icon-security::before {
    content: "🔒";
    font-size: 2rem;
}

.icon-pet::before {
    content: "🐕";
    font-size: 2rem;
}

.icon-pool::before {
    content: "🏊";
    font-size: 2rem;
}

.icon-playground::before {
    content: "🎠";
    font-size: 2rem;
}

.icon-palapa::before {
    content: "🏖️";
    font-size: 2rem;
}

.icon-gym::before {
    content: "🏋️";
    font-size: 2rem;
}

.icon-trail::before {
    content: "🌳";
    font-size: 2rem;
}

.icon-shop::before {
    content: "🏪";
    font-size: 2rem;
}

/* Contact Section */
.contact {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--ocean-blue), var(--jungle-green), var(--dark-green));
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="tropical" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="3" fill="%23FFD700" opacity="0.1"/><circle cx="80" cy="80" r="2" fill="%23FF6B6B" opacity="0.1"/><circle cx="50" cy="50" r="1.5" fill="%2300CED1" opacity="0.1"/><circle cx="30" cy="70" r="2.5" fill="%230077BE" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23tropical)"/></svg>');
    opacity: 0.2;
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.contact-card {
    background: linear-gradient(135deg, var(--white), var(--light-beige));
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(45, 80, 22, 0.08);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    border: 1px solid rgba(0, 206, 209, 0.2);
    transition: all var(--transition-normal);
}

.contact-icon {
    color: var(--turquoise);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin-bottom: var(--space-4);
}

.contact-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.contact-icon svg {
    color: var(--jungle-green);
    width: 24px;
    height: 24px;
}

.contact-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.contact-card h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
    color: #000000 !important;
    font-weight: 600;
    text-shadow: none !important;
}

.contact-card p {
    margin: 0;
    color: #000000 !important;
    font-weight: 500;
    text-shadow: none !important;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.15);
    border-color: var(--turquoise);
}

/* Contact Form */
.contact-form-container {
    background: linear-gradient(135deg, var(--white), var(--light-beige));
    padding: var(--space-8);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(45, 80, 22, 0.12);
    border: 1px solid rgba(0, 206, 209, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

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

.form-group label {
    font-weight: 600;
    color: #000000 !important;
    margin-bottom: var(--space-2);
    text-shadow: none;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-3);
    border: 2px solid rgba(0, 206, 209, 0.3);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 206, 209, 0.1);
    color: var(--text-dark) !important;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--jungle-green) !important;
    opacity: 0.7;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--turquoise);
    box-shadow: 0 4px 16px rgba(0, 206, 209, 0.3);
    transform: translateY(-2px);
}

.error-message {
    color: var(--error);
    font-size: var(--text-sm);
    margin-top: var(--space-1);
    display: none;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: var(--error);
}

.form-group.error .error-message {
    display: block;
}

.form-status {
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-status.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--jungle-green), var(--ocean-blue), var(--accent-purple));
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23FFD700" opacity="0.1"/><circle cx="90" cy="90" r="1" fill="%2300CED1" opacity="0.1"/><circle cx="50" cy="20" r="0.5" fill="%23FF6B6B" opacity="0.1"/><circle cx="20" cy="80" r="1.5" fill="%23FFFFFF" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-pattern)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
}

.footer-brand {
    max-width: 400px;
}

.footer-brand h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--space-6);
}

.footer-column h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: var(--white);
}

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

.footer-column li {
    margin-bottom: var(--space-2);
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
}

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

.footer-cta {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--space-8);
    border-radius: 16px;
    margin-bottom: var(--space-12);
    backdrop-filter: blur(10px);
}

.footer-cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.footer-cta-content h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.footer-logo .logo-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    padding: 8px;
}

.footer-logo .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo .logo-main {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.footer-logo .logo-subtitle {
    font-size: var(--text-xs);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1;
    margin-top: 2px;
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.footer-contact p {
    margin-bottom: var(--space-2);
    color: #000000 !important;
    font-weight: 500;
    text-shadow: none !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--space-6);
}

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

.social-links {
    display: flex;
    gap: var(--space-4);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
    font-size: var(--text-lg);
}

.social-links a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: none;
    transition: all var(--transition-normal);
}

.social-links a:hover img {
    filter: brightness(1.2) saturate(1.2);
}

.social-links a:hover {
    background: var(--turquoise);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--space-4);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    color: var(--sand-beige);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    margin-bottom: var(--space-2);
    color: #000000 !important;
    font-weight: 500;
    text-shadow: none !important;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(215, 203, 181, 0.2);
    color: var(--sand-beige);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }

.hidden { display: none; }
.visible { display: block; }

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--light-gray);
    border-top: 2px solid var(--turquoise);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
