/* styles.css - Lala Builders and Decor - CLEAN VERSION */

:root {
    --black: #0a0a0a;
    --black-light: #141414;
    --gold: #c8a951;
    --gold-dark: #a17f3a;
    --gold-light: #e2c27a;
    --white: #ffffff;
    --off-white: #faf9f8;
    --gray-light: #f0f0f0;
    --gray: #888888;
    --shadow-sm: 0 10px 30px -10px rgba(0,0,0,0.08);
    --shadow-md: 0 20px 40px -15px rgba(0,0,0,0.12);
    --shadow-lg: 0 25px 50px -20px rgba(0,0,0,0.2);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font-primary: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: var(--font-primary);
    background-color: var(--white);
    color: var(--black);
    line-height: 1.5;
    scroll-behavior: smooth;
}

/* Container */
.container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

.gold-text { color: var(--gold); }

.gold-accent {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-smooth);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (max-width: 768px) {
    .nav-container { padding: 0 20px; }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo-img:hover { transform: scale(1.05); }

.logo-text {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.logo-gold {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #e2c27a, #c8a951, #a17f3a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-dark {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .logo-img { height: 35px; }
    .logo-gold { font-size: 1.1rem; }
    .logo-dark { font-size: 0.65rem; letter-spacing: 1px; }
    .logo a { gap: 8px; }
}

/* Navigation Links */
.nav-links ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(8px);
    border: none;
    padding: 10px;
    border-radius: 12px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger { background: rgba(10,10,10,0.8); }
.hamburger.active { background: var(--gold); }
.hamburger.active span { background: var(--black); }

@media (max-width: 992px) {
    .hamburger { display: flex; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--black);
        padding: 100px 30px;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    }
    
    .nav-links.active { right: 0; }
    .nav-links ul { flex-direction: column; gap: 1.5rem; }
    
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active { opacity: 1; z-index: 1; }

.hero-content {
    max-width: 800px;
    width: 90%;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(4px);
    border: none;
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-controls button:hover { background: var(--gold); color: black; }

@media (max-width: 768px) {
    .hero { min-height: 550px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content p { font-size: 0.9rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: 12px; }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline { width: 220px; justify-content: center; }
    .slider-controls button { width: 40px; height: 40px; }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.6rem; }
    .hero-content p { font-size: 0.8rem; }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline { width: 200px; padding: 10px 20px; font-size: 0.85rem; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-secondary, .btn-outline, .btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
}

.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(200,169,81,0.3); }

.btn-outline { border: 1.5px solid var(--white); background: transparent; color: white; }
.btn-outline:hover { background: white; color: black; }

.btn-secondary { background: transparent; border: 1px solid var(--gold); color: var(--gold); }
.btn-secondary:hover { background: var(--gold); color: var(--black); }

.btn-outline-light { border: 1px solid var(--gold); color: var(--gold); background: transparent; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 80px 0; width: 100%; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
}

/* Property & Decor Grids */
.property-grid, .decor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    width: 100%;
}

.property-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.property-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.property-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.property-card:hover .property-img img { transform: scale(1.05); }

.property-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gold);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: bold;
}

.property-details { padding: 20px; }
.property-price { font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.property-location { color: var(--gray); margin: 8px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }

.map-icon-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.map-icon-btn:hover { background: var(--gold); color: var(--black); }

/* Decor Cards */
.decor-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.decor-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s;
}

.decor-card:hover img { transform: scale(1.03); }

.decor-overlay {
    position: absolute;
    bottom: 0;
    background: linear-gradient(to top, black, transparent);
    width: 100%;
    padding: 20px;
    color: white;
}

/* Stats */
.stats-section {
    background: var(--black);
    color: white;
    padding: 70px 0;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); }

/* Why Us */
.why-us .row {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.col-6 { flex: 1; min-width: 280px; }
.why-us-image img { width: 100%; border-radius: 32px; box-shadow: var(--shadow-lg); }

.feature-list { list-style: none; margin: 30px 0; }
.feature-list li { margin: 15px 0; display: flex; align-items: center; gap: 10px; }
.feature-list i { color: var(--gold); }

/* Testimonials */
.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.testimonial-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 24px;
    min-width: calc(33.33% - 20px);
    flex-shrink: 0;
}

.testimonial-card i.fa-quote-left { color: var(--gold); font-size: 2rem; opacity: 0.5; }

/* CTA */
.cta-banner {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 70px 20px;
}

.cta-card {
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200,169,81,0.3);
    border-radius: 48px;
    padding: 50px 40px;
    text-align: center;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #050505;
    color: #ccc;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo { font-size: 1.4rem; font-weight: 700; margin-bottom: 20px; }

.social-icons a {
    color: white;
    background: #222;
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover { background: var(--gold); color: black; }

.footer-col h4 { color: white; margin-bottom: 20px; }
.footer-col ul { list-style: none; }
.footer-col ul li, .contact-info li { margin-bottom: 10px; display: flex; gap: 10px; align-items: center; }
.footer-col a { color: #aaa; text-decoration: none; }

.newsletter-form { display: flex; margin-top: 15px; }
.newsletter-form input {
    flex: 1;
    background: #1a1a1a;
    border: none;
    padding: 12px;
    border-radius: 40px 0 0 40px;
    color: white;
}
.newsletter-form button {
    background: var(--gold);
    border: none;
    padding: 0 20px;
    border-radius: 0 40px 40px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 25px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    transition: 0.2s;
}

.whatsapp-float:hover { transform: scale(1.05); }

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: black;
    color: white;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 30px;
    white-space: nowrap;
    opacity: 0;
    transition: 0.2s;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Utility */
.text-center { text-align: center; margin-top: 20px; }
[data-aos] { transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 140px 0 70px;
    text-align: center;
}

.page-hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.8); }

@media (max-width: 768px) {
    .page-hero { padding: 110px 0 50px; }
    .page-hero h1 { font-size: 2rem; }
    .page-hero p { font-size: 0.95rem; }
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card { min-width: calc(50% - 15px); }
}

@media (max-width: 768px) {
    .stats-container { flex-direction: column; align-items: center; }
    .why-us .row { flex-direction: column; }
    .property-grid, .decor-grid { grid-template-columns: 1fr; }
    .testimonial-card { min-width: 100%; }
    .cta-card { padding: 40px 25px; }
    .cta-card h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
}