/* ============================================
   PROPERTIES PAGE SPECIFIC STYLES
   ============================================ */

/* Properties Hero */
.properties-hero {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-primary);
    overflow: hidden;
    margin-top: 70px;
    padding: clamp(3rem, 8vw, 4rem) clamp(1rem, 5vw, 2rem);
}

.properties-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(59, 130, 246, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 1;
}

.properties-hero .hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, rgba(201, 169, 97, 0.02) 0px, transparent 2px, transparent 60px),
        repeating-linear-gradient(0deg, rgba(201, 169, 97, 0.02) 0px, transparent 2px, transparent 60px);
    opacity: 0.6;
}

.properties-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'Cormorant Garamond', serif;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.page-subtitle {
    font-size: clamp(1rem, 3vw, 1.3rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Properties Section */
.properties-section {
    background: var(--bg-primary);
}

/* Properties CTA */
.properties-cta {
    background: 
        radial-gradient(ellipse at 50% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 60%),
        linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    text-align: center;
    position: relative;
}

.properties-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(59, 130, 246, 0.04) 0%, transparent 40%);
    z-index: 0;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3rem) clamp(1rem, 4vw, 2rem);
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: clamp(1.75rem, 5vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Responsive Design for Properties Page */
@media (max-width: 768px) {
    .properties-hero {
        min-height: 40vh;
        margin-top: 70px;
    }
}

@media (max-width: 480px) {
    .properties-hero {
        min-height: 35vh;
    }
    
    .cta-content {
        padding: 2rem 1rem;
    }
}