:root {
    --primary-blue: #0a192f;
    --accent-gold: #d4af37;
    --text-white: #ffffff;
    --bg-white: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
}

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

.btn-gold:hover {
    background-color: #b8962d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-blue:hover {
    background-color: #1a2a47;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

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

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

.btn-full {
    width: 100%;
    text-align: center;
}

/* Navbar */
.navbar {
    background-color: var(--primary-blue);
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: url('/images/hero.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.4));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-btns .btn {
    margin-right: 20px;
}

/* Section Common */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.section-header p {
    color: var(--text-muted);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

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

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* About */
.about {
    background-color: #fff;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 20px 20px 0 var(--accent-gold);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-content .lead {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mission-list {
    margin: 30px 0;
}

.mission-item {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Properties */
.filters {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.filter-btn {
    padding: 8px 25px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--accent-gold);
    color: white;
    border-color: var(--accent-gold);
}

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

.property-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.property-img {
    position: relative;
    height: 250px;
}

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

.tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.8rem;
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.location {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-blue);
    color: white;
}

.testimonials .section-header h2 {
    color: white;
}

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

.testimonial-card {
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stars {
    color: var(--accent-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 20px;
}

.client-name {
    font-weight: 600;
    color: var(--accent-gold);
}

/* Lead Capture */
.lead-capture {
    background-color: #fff;
    padding-bottom: 0;
}

.lead-box {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.deal-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.deal-form input, .deal-form select {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Contact */
.contact-flex {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.info-item a {
    color: var(--text-dark);
    text-decoration: none;
}

.social-btns {
    margin: 30px 0;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

.map-container {
    margin-top: 40px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-form-container {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Footer */
footer {
    background-color: var(--primary-blue);
    color: white;
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 30px;
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
}

.footer-links {
    margin-bottom: 40px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    opacity: 0.8;
}

.footer-copy {
    opacity: 0.5;
    font-size: 0.8rem;
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1001;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.float-call {
    background-color: var(--accent-gold);
    color: white;
}

.float-wa {
    background-color: #25D366;
    color: white;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--primary-blue);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    border: 1px solid var(--accent-gold);
    z-index: 2000;
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast-icon {
    font-size: 1.2rem;
    color: var(--accent-gold);
}

/* Responsive */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .about-flex, .contact-flex {
        flex-direction: column;
    }
    .nav-links, .nav-cta {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .hero-btns .btn {
        margin-right: 0;
    }
    .deal-form {
        grid-template-columns: 1fr;
    }
}
