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

:root {
    --primary-color: #8B5CF6;
    --primary-dark: #7C3AED;
    --bg-dark: #0F0F0F;
    --bg-card: #1A1A1A;
    --bg-card-hover: #252525;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --border-color: #2A2A2A;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--bg-card);
    padding: 8px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.top-bar p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Header */
.header {
    background-color: var(--bg-dark);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(15, 15, 15, 0.95);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    color: white;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--bg-dark);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-primary-small, .btn-secondary-small {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
}

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

.btn-primary-small:hover {
    background-color: var(--primary-dark);
}

.btn-secondary-small {
    background-color: white;
    color: var(--bg-dark);
}

.btn-secondary-small:hover {
    background-color: #f0f0f0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.hero-right {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    position: relative;
}

.buildings-3d {
    width: 100%;
    height: 100%;
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    overflow: hidden;
}

.building {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), #6366f1);
    border-radius: 8px;
    opacity: 0.9;
}

.building-1 {
    width: 80px;
    height: 200px;
    left: 20%;
    bottom: 0;
    animation: float 3s ease-in-out infinite;
}

.building-2 {
    width: 100px;
    height: 280px;
    left: 40%;
    bottom: 0;
    animation: float 3s ease-in-out infinite 0.5s;
}

.building-3 {
    width: 90px;
    height: 240px;
    left: 60%;
    bottom: 0;
    animation: float 3s ease-in-out infinite 1s;
}

.circular-badge {
    position: absolute;
    top: 20%;
    right: 20%;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(139, 92, 246, 0.6); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px rgba(139, 92, 246, 0.8); }
}

/* Feature Blocks */
.features {
    padding: 60px 0;
    background-color: var(--bg-dark);
}

.feature-blocks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-block {
    background-color: var(--bg-card);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.feature-block:hover {
    background-color: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 15px;
    filter: grayscale(0.3);
}

.feature-block p {
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
}

.chevron {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--text-secondary);
    font-size: 12px;
}

/* Section Headers */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
}

/* Featured Properties */
.featured-properties {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.properties-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.property-card {
    background-color: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.property-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.property-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.property-name {
    font-size: 20px;
    font-weight: 600;
    margin: 20px 20px 8px;
}

.property-location {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0 20px 15px;
}

.property-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 20px 20px;
}

.property-buttons {
    display: flex;
    gap: 10px;
    margin: 0 20px 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.testimonials-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.testimonial-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

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

.stars {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-title {
    font-size: 12px;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.faq-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    flex: 1;
}

.faq-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.3s;
}

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

.faq-expand {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--bg-card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s;
}

.faq-expand:hover {
    background-color: var(--primary-color);
    transform: rotate(90deg);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-right: 40px;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Call to Action */
.cta {
    padding: 80px 0;
    background-color: var(--bg-dark);
}

.cta-content {
    background-color: var(--bg-card);
    padding: 60px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Footer */
.footer {
    background-color: var(--bg-card);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

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

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-column a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Carousel Buttons */
.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .properties-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-blocks {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
    }
    
    .properties-grid,
    .testimonials-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-blocks {
        grid-template-columns: 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .footer-middle {
        grid-template-columns: 1fr;
    }
    
    .carousel-btn {
        display: none;
    }
}


