/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1E1E1E;
    background-color: #FFFFFF;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: #F5F5F5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #D4AF37;
}

.btn {
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-outline {
    background: transparent;
    border: 1px solid #D4AF37;
    color: #D4AF37;
}

.btn-outline:hover {
    background: #D4AF37;
    color: #0A192F;
}

.btn-primary {
    background: #D4AF37;
    color: #0A192F;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #C5A028;
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Hero */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1600') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    margin-top: 80px;
}

.hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gold {
    color: #D4AF37;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Sections Common */
.section-title {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 48px;
    color: #0A192F;
}

.section-title.left {
    text-align: left;
}

/* Categories */
.categories {
    padding: 80px 0;
    background: #F8F9FA;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.category-card {
    background: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0A192F;
}

/* Properties */
.properties {
    padding: 80px 0;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.property-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.place-img-1 {
    background-image: url('https://images.pexels.com/photos/258154/pexels-photo-258154.jpeg?auto=compress&cs=tinysrgb&w=600');
}

.place-img-2 {
    background-image: url('https://images.pexels.com/photos/1029599/pexels-photo-1029599.jpeg?auto=compress&cs=tinysrgb&w=600');
}

.place-img-3 {
    background-image: url('https://images.pexels.com/photos/1571460/pexels-photo-1571460.jpeg?auto=compress&cs=tinysrgb&w=600');
}

.property-info {
    padding: 24px;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    display: block;
    margin-bottom: 8px;
}

.property-info h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.property-details {
    margin-top: 12px;
    color: #5a6e7a;
    font-size: 14px;
}

/* About */
.about {
    background: #0A192F;
    color: white;
    padding: 80px 0;
}

.about-container {
    max-width: 800px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.9;
}

.about-list {
    list-style: none;
}

.about-list li {
    margin-bottom: 12px;
    font-weight: 400;
    font-size: 16px;
}

/* Footer */
.footer {
    background: #041221;
    padding: 32px 0;
    color: #8a99aa;
    border-top: 1px solid #1e2a3a;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-link {
    color: #D4AF37;
    text-decoration: none;
    margin-left: 24px;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 44px;
    }
}

@media (max-width: 768px) {

    .nav,
    .btn-outline {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .social-link {
        margin: 0 12px;
    }

    .section-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero {
        margin-top: 70px;
        height: 90vh;
    }

    .hero-title {
        font-size: 28px;
    }

    .categories,
    .properties,
    .about {
        padding: 50px 0;
    }
}