/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #C9A227;
    --primary-dark: #A68523;
    --primary-light: #FDF6E3;
    --secondary-color: #8B6914;
    --secondary-light: #FFF8E7;
    --accent-gradient: linear-gradient(135deg, #C9A227 0%, #8B6914 100%);
    --warm-gradient: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    --ocean-gradient: linear-gradient(135deg, #E8D5B7 0%, #C9A227 100%);
    --sunset-gradient: linear-gradient(135deg, #C9A227 0%, #FFD700 100%);
    --forest-gradient: linear-gradient(135deg, #8B6914 0%, #C9A227 100%);
    --gold: #C9A227;
    --gold-light: #D4AF37;
    --gold-dark: #8B6914;
    --beige: #F5F0E6;
    --cream: #FFFDF7;
    --text-dark: #2C2416;
    --text-light: #5C4D3C;
    --text-muted: #8B7355;
    --bg-light: #FAF7F2;
    --bg-white: #FFFDF7;
    --border-color: #E8DFD0;
    --shadow: 0 4px 15px rgba(139,105,20,0.08);
    --shadow-lg: 0 10px 40px rgba(139,105,20,0.12);
    --shadow-color: 0 10px 40px rgba(201,162,39,0.2);
    --radius: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

/* Top Contact Strip */
.top-strip {
    background: var(--accent-gradient);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

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

.top-strip-left {
    display: flex;
    gap: 25px;
}

.top-strip-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-strip-item a {
    color: white;
    transition: opacity 0.3s;
}

.top-strip-item a:hover {
    opacity: 0.8;
}

.top-strip-item svg {
    width: 16px;
    height: 16px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.top-strip-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.top-strip-social {
    display: flex;
    gap: 10px;
}

.top-strip-social a {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.top-strip-social a:hover {
    background: rgba(255,255,255,0.3);
}

.top-strip-social svg {
    width: 14px;
    height: 14px;
    fill: white;
}

@media (max-width: 768px) {
    .top-strip-left {
        gap: 15px;
    }

    .top-strip-right {
        display: none;
    }

    .top-strip {
        font-size: 12px;
    }

    .top-strip-item span {
        display: none;
    }
}

@media (max-width: 480px) {
    .top-strip-left {
        justify-content: center;
        width: 100%;
    }
}

/* Header Styles */
.header {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
}

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

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 2px;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-color);
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

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

.btn-secondary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: 0.3s;
}

/* Icon Styles */
.icon {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
}

/* Hero Slider Section */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 36, 22, 0.7) 0%, rgba(139, 105, 20, 0.6) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.slide-tagline {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.slide.active .slide-tagline {
    animation-delay: 0.2s;
}

.slide-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.slide.active .slide-subtitle {
    animation-delay: 0.4s;
}

.slide-content .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.slide.active .slide-content .btn {
    animation-delay: 0.6s;
}

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

/* Slider Navigation Arrows */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    pointer-events: none;
    z-index: 10;
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
}

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

.slider-arrow svg {
    width: 24px;
    height: 24px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover,
.slider-dot.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Slider Responsive */
@media (max-width: 992px) {
    .hero-slider {
        height: 500px;
    }

    .slide-tagline {
        font-size: 42px;
    }

    .slide-subtitle {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
    }

    .slide-tagline {
        font-size: 32px;
        padding: 0 20px;
    }

    .slide-subtitle {
        font-size: 16px;
        padding: 0 20px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
    }

    .slider-nav {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slide-tagline {
        font-size: 26px;
    }

    .slide-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .slider-dots {
        bottom: 20px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.95) 0%, rgba(139, 105, 20, 0.95) 100%),
                url('../images/hero-bg.jpg') center/cover;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    width: 100%;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.2);
    line-height: 1.2;
}

.hero p {
    font-size: 22px;
    opacity: 0.95;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Search Box */
.search-box {
    background: white;
    border-radius: var(--radius-xl);
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    max-width: 950px;
    margin: 0 auto;
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.search-tab {
    padding: 10px 24px;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab:hover {
    background: var(--bg-light);
}

.search-tab.active {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr auto;
    gap: 15px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    transition: all 0.3s;
    background: var(--bg-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 120, 219, 0.1);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

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

.stat-item {
    padding: 30px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-item .stat-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary-color);
    stroke-width: 2;
    fill: none;
}

.stat-item h3 {
    font-size: 46px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-light);
    font-size: 16px;
    margin-top: 5px;
    font-weight: 500;
}

/* Featured Properties */
.featured {
    padding: 100px 0;
    background: white;
}

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

.section-header h2 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 18px;
}

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

.property-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.property-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.5) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.property-card:hover .property-image-overlay {
    opacity: 1;
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.property-badge.premium {
    background: var(--accent-gradient);
}

.property-badge.new {
    background: var(--forest-gradient);
}

.property-favorite {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.property-favorite:hover {
    background: #ff4757;
    transform: scale(1.1);
}

.property-favorite:hover svg {
    stroke: white;
    fill: white;
}

.property-favorite svg {
    width: 20px;
    height: 20px;
    stroke: #ff4757;
    fill: none;
    stroke-width: 2;
}

.property-content {
    padding: 25px;
}

.property-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.property-price span {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

.property-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.property-location {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.property-location svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    fill: none;
}

.property-features {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

.property-feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary-color);
    fill: none;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, white 100%);
}

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

.feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.feature-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
    fill: none;
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: white;
}

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

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: #ffc107;
    stroke: #ffc107;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
    position: relative;
}

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

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.author-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.author-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--accent-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
    color: white;
    padding: 80px 0 40px;
}

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

.footer-brand .logo {
    margin-bottom: 25px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    color: #999;
    font-size: 15px;
    line-height: 1.8;
}

.footer-links h4 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #999;
    font-size: 15px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--accent-gradient);
    transform: translateY(-3px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

/* About Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.95) 0%, rgba(139, 105, 20, 0.95) 100%),
                url('../images/page-hero-bg.jpg') center/cover;
    padding: 120px 0;
    text-align: center;
    color: white;
    position: relative;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 100px 0;
}

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

.about-text {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--border-color);
}

.about-text::-webkit-scrollbar {
    width: 6px;
}

.about-text::-webkit-scrollbar-track {
    background: var(--border-color);
    border-radius: 10px;
}

.about-text::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.about-text::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    position: sticky;
    top: 0;
    background: var(--bg-white);
    padding-bottom: 10px;
    z-index: 1;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.9;
    font-size: 16px;
}

.about-image {
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-lg);
}

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

.values-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.value-card {
    background: white;
    padding: 50px 35px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow);
}

.value-card .feature-icon {
    width: 90px;
    height: 90px;
}

.value-card .feature-icon svg {
    width: 40px;
    height: 40px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

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

.team-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 0 auto 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.team-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 5px;
    font-weight: 600;
}

.team-card .role {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 14px;
    font-weight: 600;
}

.team-card p {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 12px;
    line-height: 1.6;
}

/* Partners Page */
.partners-intro {
    padding: 80px 0;
    text-align: center;
}

.partners-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.partners-intro p {
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
}

.partners-grid-section {
    padding: 0 0 100px;
}

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

.partner-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 35px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.partner-logo {
    width: 100px;
    height: 100px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.partner-card h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.partner-card .category {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.partner-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.become-partner {
    padding: 100px 0;
    background: var(--bg-light);
}

.become-partner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.become-partner-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
}

.become-partner-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.9;
    font-size: 16px;
}

.benefits-list {
    margin-bottom: 35px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 15px;
}

.benefits-list li svg {
    width: 22px;
    height: 22px;
    stroke: #10b981;
    stroke-width: 3;
    flex-shrink: 0;
}

/* Contact Page */
.contact-section {
    padding: 100px 0;
}

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

.contact-info {
    background: var(--bg-light);
    padding: 45px;
    border-radius: var(--radius-xl);
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
    fill: none;
}

.contact-item h4 {
    font-size: 17px;
    margin-bottom: 6px;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
}

.contact-form h2 {
    font-size: 32px;
    margin-bottom: 35px;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--bg-light);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 120, 219, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* Map Section */
.map-section {
    height: 450px;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.1) 0%, rgba(139, 105, 20, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.map-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.map-info-card {
    background: white;
    padding: 20px 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 300px;
}

.map-pin {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.map-info-card h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.map-info-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.map-info-card .btn-sm {
    padding: 10px 18px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Custom Map Marker */
.custom-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: 5;
    pointer-events: none;
}

.marker-pin {
    position: relative;
    z-index: 2;
    animation: bounce 2s ease-in-out infinite;
}

.marker-pulse {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: rgba(201, 162, 39, 0.4);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
}

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

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) scale(3);
        opacity: 0;
    }
}

/* Projects Section */
.projects-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.project-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-status.ongoing {
    background: var(--primary-color);
    color: white;
}

.project-status.sold-out {
    background: #28a745;
    color: white;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 700;
}

.project-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.project-location svg {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.project-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.project-stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.project-progress {
    height: 8px;
    background: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 8px;
}

.progress-bar {
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 10px;
}

.progress-text {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* Locations Section */
.locations-section {
    padding: 80px 0;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 20px;
}

.location-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.location-card.large {
    grid-row: span 2;
}

.location-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.location-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: white;
}

.location-overlay h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.location-overlay p {
    font-size: 14px;
    opacity: 0.9;
}

/* Partners Home Section */
.partners-home-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.partner-logo-item {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.partner-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.partner-logo-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
}

.partner-logo-item span {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    text-align: center;
}

.partners-cta {
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

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

.service-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--primary-color);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: var(--accent-gradient);
    color: white;
}

.awards-section .section-header h2,
.awards-section .section-header p {
    color: white;
}

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

.award-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.award-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.award-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.award-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 220px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-gradient);
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-color);
}

.step-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.process-connector {
    width: 80px;
    height: 3px;
    background: var(--border-color);
    margin-top: 30px;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

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

@media (max-width: 1024px) {
    .projects-grid,
    .services-grid,
    .awards-grid,
    .partners-logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .location-card.large {
        grid-row: span 1;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 30px;
    }

    .process-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .projects-grid,
    .services-grid,
    .awards-grid,
    .partners-logo-grid,
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .location-card {
        height: 200px;
    }

    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .map-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
    }

    .map-info-card {
        max-width: 100%;
        padding: 15px 20px;
    }

    .map-info-card h4 {
        font-size: 16px;
    }
}

/* City Cards for Popular Locations */
.city-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
}

.city-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}

.city-card p {
    font-size: 14px;
    opacity: 0.9;
}

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

    .features-grid,
    .team-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .search-form {
        grid-template-columns: 1fr 1fr;
    }

    .hero h1 {
        font-size: 44px;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        min-height: 600px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .search-form {
        grid-template-columns: 1fr;
    }

    .properties-grid,
    .testimonials-grid,
    .features-grid,
    .team-grid,
    .values-grid,
    .partners-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .about-grid,
    .contact-grid,
    .become-partner-content {
        grid-template-columns: 1fr;
    }

    .about-text {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .about-text h2 {
        position: static;
        background: transparent;
    }

    .about-image {
        position: static;
        height: 300px;
        order: -1;
        margin-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .section-header h2,
    .page-hero h1 {
        font-size: 32px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        min-height: 550px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .search-box {
        padding: 20px;
        border-radius: var(--radius-lg);
    }

    .search-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-tab {
        padding: 8px 16px;
        font-size: 13px;
    }

    .btn-lg {
        padding: 14px 28px;
    }

    .property-content {
        padding: 20px;
    }

    .property-price {
        font-size: 22px;
    }
}
