/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
    --gold-primary: #D4AF37;
    --gold-secondary: #C9A961;
    --gold-light: #E5D5A8;
    --black-deep: #0A0A0A;
    --charcoal: #1A1A1A;
    --charcoal-light: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #F5F5F5;
    --bronze: #8B7355;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== GLOBAL RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    background: var(--white);
    color: var(--charcoal);
    line-height: 1.7;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 400;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black-deep);
}

/* ===== IMAGES ===== */
img {
    max-width: 100%;
    height: auto;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--black-deep);
    padding: 18px 32px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border-radius: 50px;
    z-index: 999;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
    transition: var(--transition);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 13px;
}

.sticky-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    z-index: 998;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--black-deep) 0%, var(--charcoal) 100%);
    color: var(--white);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--black-deep);
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-radius: 4px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--white);
    font-weight: 700;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 19px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 300;
}

.hero-points {
    list-style: none;
    margin-bottom: 40px;
}

.hero-points li {
    margin-bottom: 14px;
    font-size: 16px;
    padding-left: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-points li strong {
    color: var(--gold-light);
    font-weight: 600;
}

.hero-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

/* ===== BUTTONS ===== */
.btn-primary {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-secondary) 100%);
    color: var(--black-deep);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: linear-gradient(135deg, var(--gold-secondary) 0%, var(--gold-primary) 100%);
}

.btn-secondary {
    background: transparent;
    color: var(--gold-primary);
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition);
    border: 2px solid var(--gold-primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: var(--black-deep);
    transform: translateY(-2px);
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--charcoal-light);
    color: var(--gold-light);
    padding: 24px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    text-align: center;
    font-size: 14px;
    gap: 20px;
    font-weight: 500;
}

.trust-grid div {
    padding: 8px;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
    width: 100%;
    box-sizing: border-box;
}

.section.light {
    background: var(--gray-light);
}

.section h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-align: center;
    color: var(--black-deep);
}

.section-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

/* ===== CARDS ===== */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
    transform: scaleX(0);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card:hover::before {
    transform: scaleX(1);
}

.card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--black-deep);
}

.card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.card span {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 18px;
}

/* ===== GALLERY ===== */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== AMENITIES ===== */
.amenities-icons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

.amenity {
    background: var(--white);
    padding: 32px 24px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.amenity:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    border-color: var(--gold-primary);
}

.amenity .icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
    filter: grayscale(0.3);
}

.amenity p {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 15px;
}

/* ===== INVESTMENT LIST ===== */
.invest-list {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
}

.invest-list li {
    margin-bottom: 18px;
    font-size: 18px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.invest-list li:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(90deg, var(--white), rgba(212, 175, 55, 0.05));
}

/* ===== LOCATION MAP ===== */
.location-map {
    margin-top: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.location-map img {
    width: 100%;
    height: auto;
    display: block;
}

/* ===== FORM SECTION ===== */
.form-section {
    background: linear-gradient(135deg, var(--black-deep) 0%, var(--charcoal) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.lead-form {
    max-width: 600px;
    margin: 50px auto 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lead-form input,
.lead-form select {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.lead-form button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.privacy {
    display: block;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal-light);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 40px 0;
    font-size: 14px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer p {
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== COUNTDOWN TIMER ===== */
.countdown {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 30px 0;
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 24px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.countdown-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--gold-primary);
    display: block;
    font-family: 'Playfair Display', serif;
}

.countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background: linear-gradient(135deg, #C41E3A, #8B0000);
    color: white;
    text-align: center;
    padding: 16px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
    width: 100%;
    box-sizing: border-box;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section h2 {
        font-size: 36px;
    }

    .section {
        padding: 60px 0;
    }

    .sticky-cta {
        right: 50%;
        transform: translateX(50%);
        bottom: 20px;
        padding: 16px 28px;
        font-size: 12px;
    }

    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 28px;
    }

    .lead-form {
        padding: 40px 24px;
    }

    .countdown {
        gap: 16px;
    }

    .countdown-item {
        padding: 16px 20px;
    }

    .countdown-number {
        font-size: 28px;
    }
}