/* ===== VARIABLES ===== */
:root {
    --gold: #c9a84c;
    --gold-light: #e2c97e;
    --gold-dark: #a88832;
    --dark: #0d0d0d;
    --dark-2: #1a1a1a;
    --dark-3: #252525;
    --white: #ffffff;
    --gray: #999;
    --light-bg: #f5f1eb;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 16px;
    --shadow: 0 8px 32px rgba(0, 0, 0, .12);
    --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

ul {
    list-style: none;
}

/* ===== UTILITIES ===== */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: .85rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.section-title.left {
    text-align: left;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(201, 168, 76, .35);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, .5);
    color: var(--white);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, .15);
}

.btn-sm {
    padding: 10px 22px;
    font-size: .82rem;
}

.full-width {
    width: 100%;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 13, 13, .95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: 0 2px 30px rgba(0, 0, 0, .2);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: var(--gold);
    font-size: 1.2rem;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    color: rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .7) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-subtitle {
    color: var(--gold-light);
    font-size: .9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: var(--white);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-desc {
    color: rgba(255, 255, 255, .75);
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .5);
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: .3;
        transform: scaleY(.7)
    }

    50% {
        opacity: 1;
        transform: scaleY(1)
    }
}

/* ===== ANIMATIONS ===== */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp .8s ease forwards;
}

.delay-1 {
    animation-delay: .2s;
}

.delay-2 {
    animation-delay: .4s;
}

.delay-3 {
    animation-delay: .6s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== STATS BAR ===== */
.stats-bar {
    background: var(--dark);
    padding: 48px 0;
}

.stats-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.stat {
    text-align: center;
    color: var(--white);
}

.stat-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: .85rem;
    color: var(--gray);
    margin-top: 4px;
}

/* ===== VIDEO SHOWCASE ===== */
.video-showcase {
    padding: 100px 0;
    background: var(--light-bg);
}

.video-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 64px;
    align-items: center;
}

.video-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, .15);
    background: var(--dark);
}

.video-wrapper video {
    display: block;
    width: 100%;
    height: auto;
}

.video-description h2 {
    margin-bottom: 20px;
}

.video-description p {
    color: #555;
    font-size: .95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.video-highlights {
    list-style: none;
    margin-bottom: 32px;
}

.video-highlights li {
    font-size: .92rem;
    color: #444;
    padding: 8px 0;
    border-bottom: 1px solid #e5e0d8;
}

.video-highlights li:last-child {
    border-bottom: none;
}

.video-highlights li strong {
    color: var(--gold-dark);
}

@media (max-width: 900px) {
    .video-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .video-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .video-description .section-title.left {
        text-align: center;
    }

    .video-highlights li {
        text-align: left;
        display: inline-block;
        width: 100%;
    }
}

/* ===== PROPERTIES ===== */
.properties {
    padding: 100px 0;
    background: var(--light-bg);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 28px;
}

.property-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
}

.property-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-img img {
    transition: var(--transition);
}

.property-card:hover .property-img img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.property-badge.rent {
    background: #2d8a4e;
}

.property-info {
    padding: 24px;
}

.property-info h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.property-location {
    font-size: .85rem;
    color: var(--gray);
    margin-bottom: 16px;
}

.property-features {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.property-features span {
    font-size: .82rem;
    color: #555;
}

.property-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-price {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold-dark);
}

/* ===== ABOUT ===== */
.about {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 500px;
}

.about-img-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--gold);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .9rem;
}

.about-content p {
    color: #555;
    margin-bottom: 20px;
    font-size: .95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--light-bg);
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 500;
}

.about-feat span {
    font-size: 1.3rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, .8);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, .7);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-card h4 {
    font-family: var(--font-display);
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.contact-card p {
    font-size: .88rem;
    color: #555;
}

.contact-card a {
    color: var(--gold-dark);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: .9rem;
    margin-bottom: 16px;
    transition: var(--transition);
    background: var(--light-bg);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, .15);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    padding: 64px 0 0;
    color: rgba(255, 255, 255, .7);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-brand h3 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: .9rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: block;
    font-size: .88rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact p {
    font-size: .88rem;
    margin-bottom: 8px;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

/* ===== SOCIAL ICONS (Navbar) ===== */
.social-icons {
    display: flex;
    gap: 12px;
    margin-right: 16px;
}

.social-link {
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.social-link:hover {
    color: var(--gold);
    transform: scale(1.15);
}

/* ===== SOCIAL ICONS (Contact) ===== */
.social-icons-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.social-link-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 10px;
    transition: var(--transition);
}

.social-link-contact.fb {
    color: #1877f2;
}

.social-link-contact.fb:hover {
    background: rgba(24, 119, 242, .1);
}

.social-link-contact.ig {
    color: #e1306c;
}

.social-link-contact.ig:hover {
    background: rgba(225, 48, 108, .1);
}

/* ===== SOCIAL ICONS (Footer) ===== */
.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.footer-social-link {
    color: rgba(255, 255, 255, .5);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.footer-social-link:hover {
    color: var(--gold);
    transform: scale(1.15);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: var(--transition);
    animation: waPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .6);
}

@keyframes waPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, .7)
    }
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-img {
        height: 350px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(13, 13, 13, .98);
        padding: 24px;
        gap: 20px;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.2rem);
    }
}