/* ===== CSS Variables ===== */
:root {
    --bg-dark: #050505;
    --bg-card: #121212;
    --gold: #D4AF37;
    --gold-hover: #F3E5AB;
    --gold-dark: #B8962F;
    --text-main: #F5F5F5;
    --text-muted: #A0A0A0;
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    --green-accent: #4ade80;
    --red-accent: #ef4444;
    --purple-accent: #8b5cf6;
    --orange-accent: #f97316;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, .brand-font {
    font-family: 'Playfair Display', serif;
}

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

.text-highlight {
    color: var(--green-accent);
}

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

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

ul {
    list-style: none;
}

/* ===== Container ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Tagline ===== */
.tagline {
    color: var(--gold);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

/* ===== Buttons ===== */
.btn-gold-outline {
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    padding: 16px 35px;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-gold-outline.btn-dark {
    background: rgba(212, 175, 55, 0.1);
}

.btn-gold-outline.w-100 {
    width: 100%;
}

/* ===== Section Styles ===== */
.section-pad {
    padding: 120px 0;
}

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

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
}

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

.logo-white {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    color: var(--text-main);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: var(--transition);
}

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

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--gold);
    padding: 10px 20px !important;
    font-size: 0.75rem !important;
}

.nav-cta:hover {
    background: var(--gold);
    color: #000 !important;
}

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

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(to right, rgba(5,5,5,0.95) 10%, rgba(5,5,5,0.5) 100%),
                url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?q=80&w=2000&auto=format&fit=crop') center/cover;
}

.hero-content {
    max-width: 700px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* ===== Trust Strip ===== */
.trust-strip {
    background: #0a0a0a;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 40px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.trust-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--gold);
}

.trust-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Properties Section ===== */
.properties {
    background: var(--bg-dark);
}

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

.property-card {
    background: var(--bg-card);
    border: 1px solid #1a1a1a;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.property-image {
    overflow: hidden;
    height: 280px;
    position: relative;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.7);
    color: var(--gold);
    padding: 8px 15px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
    border: 1px solid var(--gold);
    text-transform: uppercase;
}

.property-badge.new {
    border-color: var(--green-accent);
    color: var(--green-accent);
}

.property-badge.limited {
    border-color: var(--orange-accent);
    color: var(--orange-accent);
}

.property-badge.premium {
    border-color: var(--purple-accent);
    color: var(--purple-accent);
}

.property-badge.hot {
    border-color: var(--red-accent);
    color: var(--red-accent);
}

.property-brand {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.8);
    color: var(--text-main);
    padding: 6px 12px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.property-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-size: 1.4rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.property-card:hover .property-title {
    color: var(--gold);
}

.property-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.property-location i {
    color: var(--gold);
}

.property-price-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 20px 0;
    margin-bottom: 20px;
}

.price-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
}

.roi-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-accent);
}

.property-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.property-highlights span {
    background: rgba(212, 175, 55, 0.1);
    color: var(--text-muted);
    padding: 6px 12px;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    gap: 6px;
}

.property-highlights span i {
    color: var(--gold);
    font-size: 0.7rem;
}

/* ===== Calculator Section ===== */
.calculator {
    background: #0a0a0a;
}

.calculator-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.calculator-input label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-wrapper {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    overflow: hidden;
}

.input-prefix {
    padding: 18px 20px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
    font-size: 1.2rem;
    border-right: 1px solid #333;
}

.input-wrapper input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 18px 20px;
    color: var(--text-main);
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.input-wrapper input::placeholder {
    color: var(--text-muted);
}

.calculator-results {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.result-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-align: center;
}

.result-placeholder i {
    opacity: 0.5;
    margin-bottom: 15px;
}

.result-item {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #222;
    padding: 20px;
}

.result-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.result-item strong {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--green-accent);
}

.result-item.highlight {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

.result-item.highlight strong {
    color: var(--gold);
}

.calculator-note {
    margin-top: 30px;
    padding: 20px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    font-size: 0.9rem;
    color: var(--green-accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ===== Locations Section ===== */
.locations {
    background: var(--bg-dark);
}

.locations-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.location-card {
    text-align: center;
    background: var(--bg-card);
    border: 1px solid #1a1a1a;
    padding: 30px 40px;
    transition: var(--transition);
}

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

.location-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #000;
    transition: var(--transition);
}

.location-card:hover .location-icon {
    transform: scale(1.1);
}

.location-card h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.location-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===== Benefits Section ===== */
.benefits {
    background: #0a0a0a;
}

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

.benefit-card {
    background: var(--bg-card);
    border: 1px solid #1a1a1a;
    padding: 35px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--gold);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon {
    background: var(--gold);
    color: #000;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== How It Works ===== */
.how-it-works {
    background: var(--bg-dark);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--bg-card);
    border: 1px solid #1a1a1a;
    padding: 30px;
    transition: var(--transition);
}

.step-card:hover {
    border-color: var(--gold);
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact {
    background: #0a0a0a;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

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

.contact-info > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item a,
.contact-item p {
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: var(--gold);
}

.rera-badge {
    padding: 18px;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    font-size: 0.9rem;
    color: var(--green-accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-form-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 40px;
}

.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-form-card > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #333;
    padding: 15px 18px;
    color: var(--text-main);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    outline: none;
    transition: var(--transition);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--bg-card);
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    color: var(--green-accent);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--text-muted);
}

/* ===== Footer ===== */
.footer {
    background: #000;
    border-top: 1px solid #1a1a1a;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-links ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-links ul li i {
    color: var(--gold);
    margin-right: 10px;
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 999;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ===== Modal ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--gold);
    padding: 40px;
    max-width: 400px;
    width: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--gold);
}

.modal h3 {
    font-size: 1.4rem;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* ===== Text Right ===== */
.text-right {
    text-align: right;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: var(--transition);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links a {
        font-size: 1.2rem;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn-gold-outline {
        width: 100%;
        justify-content: center;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .section-pad {
        padding: 80px 0;
    }
    
    .calculator-card {
        padding: 30px 20px;
    }
    
    .property-content {
        padding: 25px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        flex-direction: column;
    }
    
    .location-card {
        width: 100%;
    }
    
    .step-card {
        flex-direction: column;
        gap: 15px;
    }
}

/* ===== Animation Classes ===== */
.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




