/* ===================================
   VERUS PRAEDIUM - MINIMAL MODERN
   Inmobiliaria Tito Saladin
   Clean & Elegant Design
   =================================== */

/* --- CSS Variables --- */
:root {
    --primary: #23aade;
    --primary-dark: #1a8bb8;
    --primary-light: #5cc5e8;
    --accent: #06b6d4;
    --gradient-primary: linear-gradient(135deg, #23aade 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(180deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
    --dark: #0f172a;
    --dark-secondary: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --white: #ffffff;
    --background: #f8fafc;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 40px -10px rgb(0 0 0 / 0.15);
    --font-family: 'Poppins', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
    --transition: all 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

section {
    padding: 100px 0;
}

/* --- Header --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 14px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 var(--border);
    padding: 10px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 64px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.main-header.scrolled .logo {
    filter: none;
    height: 52px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.main-header.scrolled .main-nav a {
    color: var(--text-primary);
}

.main-nav a:hover,
.main-nav a.active {
    background: rgba(255, 255, 255, 0.15);
}

.main-header.scrolled .main-nav a:hover,
.main-header.scrolled .main-nav a.active {
    background: var(--background);
    color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.main-header.scrolled .menu-toggle span {
    background: var(--dark);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(35, 170, 222, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    overflow: hidden;
    padding: 0;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    will-change: transform;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-logo-wrapper {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Logo grande en hero */
.hero-logo {
    height: 320px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(35, 170, 222, 0.15);
    border: 1px solid rgba(35, 170, 222, 0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.hero h1 span {
    color: var(--primary-light);
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-stat h3 span {
    color: var(--primary-light);
}

.hero-stat p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.scroll-indicator svg {
    width: 20px;
    height: 20px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* --- About CTA Section --- */
.about-cta-section {
    position: relative;
    padding: 120px 0;
    background: var(--dark);
    overflow: hidden;
}

.about-cta-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.about-cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.about-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.about-cta-section .container {
    position: relative;
    z-index: 10;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(35, 170, 222, 0.15);
    border: 1px solid rgba(35, 170, 222, 0.3);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    color: var(--primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-cta-badge svg {
    width: 18px;
    height: 18px;
}

.about-cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-cta-content h2 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-cta-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.about-cta-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.cta-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.cta-highlight:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(35, 170, 222, 0.3);
    transform: translateY(-4px);
}

.cta-highlight-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-highlight-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.cta-highlight-content h4 {
    color: var(--white);
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.cta-highlight-content p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.about-cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 80px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-stat {
    text-align: center;
}

.cta-stat h3 {
    font-size: 2.5rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-stat h3 span {
    color: var(--primary-light);
}

.cta-stat p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* --- Properties Slider Section --- */
.properties-section {
    background: var(--background);
    overflow: hidden;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-header-content .section-label {
    margin-bottom: 8px;
}

.section-header-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.slider-controls {
    display: flex;
    gap: 12px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--border);
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-btn svg {
    width: 20px;
    height: 20px;
    color: var(--text-primary);
    transition: var(--transition);
}

.slider-btn:hover svg {
    color: var(--white);
}

.properties-slider-wrapper {
    overflow: hidden;
    margin: 0 -24px;
    padding: 0 24px;
}

.properties-slider {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: grab;
}

.properties-slider:active {
    cursor: grabbing;
}

.properties-slider.paused {
    animation-play-state: paused;
}

/* Slider Property Card - Modern Design */
.properties-slider .property-card {
    flex: 0 0 320px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.properties-slider .property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.properties-slider .property-card-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.properties-slider .property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.properties-slider .property-card:hover .property-card-image img {
    transform: scale(1.08);
}

/* Property Badge - Sale/Rent */
.property-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}

.property-badge.for-sale {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(35, 170, 222, 0.4);
}

.property-badge.for-rent {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Featured Badge */
.property-badge-featured {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.property-badge-featured svg {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    fill: #f59e0b;
}

/* Slider Card Content */
.properties-slider .property-card-content {
    padding: 20px;
}

.property-type {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.properties-slider .property-card-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.property-location svg {
    width: 14px;
    height: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Property Stats */
.property-stats {
    display: flex;
    gap: 16px;
    padding: 14px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin-bottom: 14px;
}

.property-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.property-stat svg {
    width: 16px;
    height: 16px;
    color: var(--text-light);
}

.property-stat strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Property Footer */
.property-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.property-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.property-area {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: var(--background);
    padding: 6px 12px;
    border-radius: var(--radius);
}

.property-area svg {
    width: 14px;
    height: 14px;
}

.property-area strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Slider Progress */
.slider-progress {
    height: 4px;
    background: var(--border);
    border-radius: var(--radius-full);
    margin-top: 32px;
    overflow: hidden;
}

.slider-progress-bar {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    width: 20%;
    transition: width 0.3s ease;
}

.view-all-link {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* --- Services Section --- */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    padding: 40px 32px;
    background: var(--background);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
}

.service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon svg {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.service-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.service-feature svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* --- Footer --- */
.main-footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

/* Patrón de logo con degradado */
.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg opacity='0.03' fill='%2323aade'%3E%3Cpath d='M86.22,31.71c-6.1,0-12.19,0-18.28,0-4.01,0-8.01,0-12.02,0-.31,0-.56-.03-.79-.32-5.84-7.05-11.68-14.09-17.53-21.13-.06-.07-.14-.13-.11-.28,2.23.35,4.47.71,6.7,1.07,6.14.98,12.27,1.95,18.41,2.93,2.24.36,4.48.71,6.72,1.07.28.05.53.12.75.34,5.32,5.33,10.65,10.66,15.98,15.99.07.07.2.13.16.33Z'/%3E%3Cpath d='M53.63,31.49c-1.9-1.55-3.81-3.09-5.72-4.64-3.93-3.2-7.86-6.4-11.77-9.62-.16-.13-.3-.2-.42-.21-.01,0-.03,0-.04,0-.01,0-.03,0-.05,0-.13,0-.26.08-.42.21-3.91,3.22-7.84,6.42-11.77,9.62-1.9,1.55-3.81,3.09-5.72,4.64.08-.13.14-.27.23-.39,1.23-1.47,2.46-2.95,3.69-4.42,1.54-1.84,3.08-3.67,4.62-5.51v-3.57l-.57.33-1.15.65.66-1.14.66-1.14h0s2.72,0,2.72,0v2.1c2.24-2.67,4.47-5.34,6.7-8.02.14-.17.25-.26.35-.28,0,0,0,0,0,0,.03,0,.06,0,.08,0,0,0,0,0,0,0,.1.02.21.11.35.28,4.53,5.44,9.09,10.87,13.64,16.3,1.23,1.47,2.46,2.94,3.69,4.42.09.11.15.26.23.39Z'/%3E%3Crect x='32.3' y='23.93' width='3.05' height='3.05'/%3E%3Crect x='35.98' y='23.93' width='3.05' height='3.05'/%3E%3Crect x='36.01' y='27.89' width='3.05' height='3.05'/%3E%3Crect x='32.3' y='27.89' width='3.05' height='3.05'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 120px;
    background-repeat: repeat;
    pointer-events: none;
    z-index: 0;
}

/* Degradado superpuesto */
.main-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.95) 0%,
        rgba(15, 23, 42, 0.85) 30%,
        rgba(15, 23, 42, 0.98) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.main-footer .container {
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-brand .footer-logo {
    height: 56px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Subfooter */
.subfooter {
    background: #0a0f1a;
    padding: 14px 0;
}

.subfooter .container {
    display: flex;
    justify-content: center;
}

.powered-by {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

.powered-by a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 500;
}

.powered-by a:hover {
    color: var(--primary-light);
}

.powered-by svg {
    width: 14px;
    height: 14px;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

/* ===================================
   SELL PROPERTY SECTION
   =================================== */

.sell-property-section {
    padding: 80px 0;
    background: var(--background);
}

.sell-property-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.sell-property-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sell-property-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: #25d366;
    margin-bottom: 20px;
    width: fit-content;
}

.sell-property-badge svg {
    width: 18px;
    height: 18px;
}

.sell-property-content h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.sell-property-content h2 span {
    color: #25d366;
}

.sell-property-content > p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 28px;
}

.sell-property-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 32px;
}

.sell-benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.sell-benefit svg {
    width: 20px;
    height: 20px;
    color: #25d366;
    flex-shrink: 0;
}

/* WhatsApp Button */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition);
    width: fit-content;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
    flex-shrink: 0;
}

/* Sell Property Image */
.sell-property-image {
    position: relative;
    min-height: 400px;
}

.sell-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sell-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.sell-stat {
    color: var(--white);
}

.sell-stat h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.sell-stat p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===================================
   CATALOG PAGE STYLES
   =================================== */

/* Catalog Hero */
.catalog-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--dark);
    overflow: hidden;
}

.catalog-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.catalog-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.catalog-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.catalog-hero .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.catalog-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.catalog-hero h1 span {
    color: var(--primary-light);
}

.catalog-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs svg {
    width: 14px;
    height: 14px;
}

.breadcrumbs span {
    color: var(--primary);
}

/* Filters */
.filters-section {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 20;
}

.filters-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.filters-form {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr) auto;
    gap: 16px;
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.filter-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.filter-group input,
.filter-group select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
}

.filter-group input:focus,
.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.filter-group input::placeholder {
    color: var(--text-light);
}

.filters-form .btn {
    height: fit-content;
}

/* Modern Button Group */
.button-group {
    display: flex;
    gap: 8px;
    padding: 4px;
    background: var(--background);
    border-radius: var(--radius);
}

.btn-filter {
    flex-grow: 1;
    padding: 10px 16px;
    border: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: var(--font-family);
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
    position: relative;
}

.btn-filter.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-filter:not(.active):hover {
    color: var(--text-primary);
}

/* Filter Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--background);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-primary);
}

.filter-tag svg {
    width: 14px;
    height: 14px;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.filter-tag svg:hover {
    color: var(--primary);
}

.clear-filters {
    padding: 6px 12px;
    background: transparent;
    border: 1px dashed var(--border);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.clear-filters:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Catalog Results */
.catalog-results {
    padding: 50px 0 80px;
    background: var(--background);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.results-count {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.results-count strong {
    color: var(--text-primary);
}

.results-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.results-sort label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.results-sort select {
    padding: 8px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-family);
    font-size: 0.9rem;
    background: var(--white);
}

/* Catalog Grid */
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Modern Property Cards */
.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.property-card-image {
    position: relative;
    display: block;
    height: 200px;
    overflow: hidden;
}

.property-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.property-card:hover .property-card-image img {
    transform: scale(1.08);
}

/* Card Content */
.property-card-content {
    padding: 20px;
}

.property-card-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* No Results */
.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.no-results svg {
    width: 64px;
    height: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.no-results p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 20px;
}

.no-results .btn {
    display: inline-flex;
}

/* Button Outline for catalog */
.catalog-results .btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.catalog-results .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 48px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--text-primary);
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .current,
.pagination a.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination a.disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ===================================
   SIMPLIFIED FILTERS FORM
   =================================== */

.filters-form-simple {
    display: flex;
    gap: 16px;
    align-items: end;
    flex-wrap: wrap;
}

.filters-form-simple .filter-search {
    flex: 1;
    min-width: 250px;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-wrapper svg {
    position: absolute;
    left: 14px;
    width: 18px;
    height: 18px;
    color: var(--text-light);
    pointer-events: none;
}

.search-input-wrapper input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-family);
    color: var(--text-primary);
    background: var(--white);
    transition: var(--transition);
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(35, 170, 222, 0.1);
}

.filters-form-simple .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    white-space: nowrap;
}

.filters-form-simple .btn svg {
    width: 18px;
    height: 18px;
}

.filters-form-simple .btn-outline {
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text-primary);
}

.filters-form-simple .btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(35, 170, 222, 0.05);
}

/* ===================================
   FILTERS MODAL
   =================================== */

.filters-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.filters-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filters-modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s ease;
}

.filters-modal-overlay.active .filters-modal {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: var(--background);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: var(--text-secondary);
}

.modal-close:hover {
    background: var(--primary);
}

.modal-close:hover svg {
    color: var(--white);
}

.modal-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.modal-filter-group {
    margin-bottom: 24px;
}

.modal-filter-group:last-child {
    margin-bottom: 0;
}

.modal-filter-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

/* Filter Chips */
.filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-chip {
    padding: 8px 16px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-family: var(--font-family);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.filter-chip.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Price Range */
.price-range {
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-input {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0 14px;
    transition: var(--transition);
}

.price-input:focus-within {
    border-color: var(--primary);
}

.price-input span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.price-input input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 8px;
    font-size: 0.95rem;
    font-family: var(--font-family);
    color: var(--text-primary);
    outline: none;
    width: 100%;
}

.price-input input::placeholder {
    color: var(--text-light);
}

.price-separator {
    color: var(--text-light);
    font-weight: 500;
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: var(--background);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}

.amenity-checkbox:hover {
    border-color: var(--primary);
}

.amenity-checkbox input {
    display: none;
}

.amenity-checkbox .checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.amenity-checkbox .checkmark svg {
    width: 12px;
    height: 12px;
    color: var(--white);
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.amenity-checkbox input:checked + .checkmark {
    background: var(--primary);
    border-color: var(--primary);
}

.amenity-checkbox input:checked + .checkmark svg {
    opacity: 1;
    transform: scale(1);
}

.amenity-checkbox .amenity-label {
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* Modal Footer */
.modal-footer {
    display: flex;
    justify-content: space-between;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--background);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px 20px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--radius);
}

.btn-ghost:hover {
    color: var(--primary);
    background: rgba(35, 170, 222, 0.1);
}

/* Active Filter Tags */
.active-filters .filter-tag {
    background: linear-gradient(135deg, rgba(35, 170, 222, 0.1), rgba(35, 170, 222, 0.05));
    border: 1px solid rgba(35, 170, 222, 0.3);
}

.active-filters .filter-tag .tag-remove {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* ===================================
   SINGLE PROPERTY PAGE
   =================================== */

.single-property-hero {
    position: relative;
    padding: 140px 0 60px;
    background: var(--dark);
}

.single-property-hero .container {
    position: relative;
    z-index: 10;
}

.property-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.property-gallery-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 400px;
}

.property-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-gallery-thumbs {
    display: grid;
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
}

.property-gallery-thumb {
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.property-gallery-thumb:hover {
    opacity: 0.8;
}

.property-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.property-detail-title h1 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 12px;
}

.property-detail-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.property-detail-price {
    text-align: right;
}

.property-detail-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
}

.property-detail-price .price small {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.property-detail-content {
    padding: 60px 0;
}

.property-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.property-description h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.property-description p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
}

.property-features {
    background: var(--background);
    padding: 32px;
    border-radius: var(--radius-lg);
    margin-bottom: 32px;
}

.property-features h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.feature-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-item span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.feature-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
}

.property-amenities h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--background);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    color: var(--text-primary);
}

.amenity-tag svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Property Sidebar */
.property-sidebar {
    position: sticky;
    top: 100px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

.contact-card .btn {
    width: 100%;
    margin-bottom: 12px;
}

.contact-card .btn:last-child {
    margin-bottom: 0;
}

/* ===================================
   RESPONSIVE STYLES
   =================================== */

@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .filters-form {
        grid-template-columns: repeat(3, 1fr);
    }

    .filters-form .filter-group:first-child {
        grid-column: span 3;
    }
}

@media (max-width: 1024px) {
    .about-cta-highlights {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-cta-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .properties-slider .property-card {
        flex: 0 0 280px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-detail-grid {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }
}

@media (max-width: 992px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .filters-form {
        grid-template-columns: 1fr 1fr;
    }

    .filters-form .filter-group:first-child {
        grid-column: span 2;
    }

    .filters-form .btn {
        grid-column: span 2;
    }

    .property-stats {
        gap: 12px;
    }

    .sell-property-card {
        grid-template-columns: 1fr;
    }

    .sell-property-content {
        padding: 40px 30px;
        order: 2;
    }

    .sell-property-image {
        min-height: 280px;
        order: 1;
    }

    .sell-property-benefits {
        grid-template-columns: 1fr;
    }

    .property-gallery {
        grid-template-columns: 1fr;
    }

    .property-gallery-main {
        height: 300px;
    }

    .property-gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px;
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav a {
        display: block;
        color: var(--text-primary);
        padding: 12px 16px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
        padding: 0 20px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-logo-wrapper {
        margin-bottom: 0;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        text-align: center;
    }

    .about-cta-section {
        padding: 80px 0;
    }

    .about-cta-content > p {
        font-size: 1rem;
    }

    .about-cta-stats {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 48px;
    }

    .cta-stat h3 {
        font-size: 2rem;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .properties-slider .property-card {
        flex: 0 0 280px;
    }

    .services-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .catalog-hero {
        padding: 140px 0 80px;
    }

    .filters-section {
        margin-top: -30px;
    }

    .filters-card {
        padding: 20px;
    }

    .filters-form {
        grid-template-columns: 1fr;
    }

    .filters-form .filter-group:first-child,
    .filters-form .btn {
        grid-column: span 1;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .property-card-image {
        height: 160px;
    }

    .property-card-content {
        padding: 16px;
    }

    .property-card-content h3 {
        font-size: 1rem;
    }

    .property-stats {
        flex-wrap: wrap;
        gap: 10px;
    }

    .property-price {
        font-size: 1.1rem;
    }

    .filters-form-simple {
        flex-direction: column;
    }

    .filters-form-simple .filter-search {
        width: 100%;
    }

    .filters-form-simple .filter-group {
        width: 100%;
    }

    .filters-form-simple .btn {
        width: 100%;
        justify-content: center;
    }

    .filters-modal {
        max-height: 90vh;
        margin: 10px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .price-range {
        flex-direction: column;
        gap: 8px;
    }

    .price-separator {
        display: none;
    }

    .modal-footer {
        flex-direction: column;
        gap: 10px;
    }

    .modal-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .property-detail-header {
        flex-direction: column;
    }

    .property-detail-price {
        text-align: left;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .about-stats-card {
        flex-direction: column;
        gap: 16px;
    }

    .catalog-grid {
        grid-template-columns: 1fr;
    }

    .property-card-image {
        height: 200px;
    }

    .button-group {
        flex-direction: row;
    }

    .btn-filter {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .sell-property-content {
        padding: 30px 20px;
    }

    .sell-property-image {
        min-height: 220px;
    }

    .btn-whatsapp {
        width: 100%;
    }

    .property-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* WordPress Specific Styles */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}

/* WordPress Navigation Menu Classes */
.menu-item-has-children > a::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid currentColor;
}

.current-menu-item > a,
.current-menu-ancestor > a {
    color: var(--primary) !important;
}

/* ===================================
   SINGLE PROPERTY - NEW DESIGN
   =================================== */

/* Property Hero */
.property-hero {
    position: relative;
    padding: 160px 0 100px;
    background: var(--dark);
    overflow: hidden;
}

.property-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.property-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.property-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
}

.property-hero .container {
    position: relative;
    z-index: 10;
}

/* Breadcrumbs - Single Property (left aligned) */
.property-hero .breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.property-hero .breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}

.property-hero .breadcrumbs a:hover {
    color: var(--primary);
}

.property-hero .breadcrumbs svg {
    width: 14px;
    height: 14px;
}

.property-hero .breadcrumbs span {
    color: var(--primary);
}

.property-hero-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    flex-wrap: wrap;
}

.property-hero-info h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 700;
}

.property-hero-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.property-hero-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.property-hero-meta svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.property-hero-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.property-hero-badges .badge {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.property-hero-badges .badge.featured {
    background: var(--gradient-primary);
}

.property-hero-price {
    text-align: right;
}

.property-hero-price .price {
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.property-hero-price .price small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
}

/* Property Content */
.property-content {
    padding: 50px 0 80px;
    background: var(--background);
}

.property-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

/* Main Content */
.property-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.content-card h2 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-card h2 svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
}

.content-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Quick Info */
.quick-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-info-item {
    text-align: center;
    padding: 16px;
    background: var(--background);
    border-radius: var(--radius);
}

.quick-info-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.quick-info-item strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.quick-info-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Gallery */
.gallery-main {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 12px;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Gallery Navigation Buttons */
.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    color: var(--dark);
}

.gallery-nav-prev {
    left: 16px;
}

.gallery-nav-next {
    right: 16px;
}

.gallery-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-thumbnails img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    opacity: 0.7;
}

.gallery-thumbnails img:hover {
    opacity: 1;
}

.gallery-thumbnails img.active {
    border-color: var(--primary);
    opacity: 1;
}

/* Sidebar Cards */
.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

.sidebar-card:last-child {
    margin-bottom: 0;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-card h3 svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* Contact Card */
.sidebar-card.contact-card {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar-card.contact-card h3 {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
}

.sidebar-card.contact-card h3 svg {
    color: var(--white);
}

.sidebar-card.contact-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-buttons .btn {
    width: 100%;
    justify-content: center;
}

.contact-buttons .btn-whatsapp {
    background: #25d366;
    color: var(--white);
    border: none;
}

.contact-buttons .btn-whatsapp:hover {
    background: #20bd5a;
}

.contact-buttons .btn-call {
    background: var(--white);
    color: var(--primary);
    border: none;
}

.contact-buttons .btn-call:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Details List */
.details-list {
    list-style: none;
}

.details-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-list li strong {
    color: var(--text-primary);
}

.details-list li span {
    color: var(--text-secondary);
}

/* Amenities in Sidebar */
.sidebar-card .amenities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    background: var(--background);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-primary);
}

.amenity-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

/* Responsive - Single Property */
@media (max-width: 1024px) {
    .property-layout {
        grid-template-columns: 1fr;
    }

    .property-sidebar {
        position: static;
    }

    .quick-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .property-hero {
        padding: 140px 0 70px;
    }

    .property-hero-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .property-hero-price {
        text-align: left;
    }

    .gallery-main {
        height: 280px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-nav-prev {
        left: 10px;
    }

    .gallery-nav-next {
        right: 10px;
    }

    .gallery-thumbnails {
        grid-template-columns: repeat(2, 1fr);
    }

    .sidebar-card .amenities-grid {
        grid-template-columns: 1fr;
    }

    .content-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .quick-info {
        grid-template-columns: 1fr;
    }

    .gallery-nav {
        width: 32px;
        height: 32px;
    }

    .gallery-nav svg {
        width: 18px;
        height: 18px;
    }

    .gallery-nav-prev {
        left: 8px;
    }

    .gallery-nav-next {
        right: 8px;
    }

    .gallery-thumbnails img {
        height: 70px;
    }

    .breadcrumbs {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
}
