/* ==========================================================================
   Professional Web Design - Main Styles
   Built with mobile-first, responsive approach
   ========================================================================== */

/* ==========================================================================
   CSS Imports for Performance
   ========================================================================== */

/* CSS files are now loaded individually by the Asset Optimizer for better performance */

/* ==========================================================================
   CSS Custom Properties (Design System)
   ========================================================================== */
:root {
    /* Color Palette */
    --primary-color: #4B382F; /* Primary (Brown) - Main theme color for buttons and links */
    --primary-dark: #3A2B24;
    --primary-light: #6B4F3F;
    --accent-color: #E1AA05; /* Accent (Mustard) - For highlights and special elements */
    --accent-dark: #B88A04;
    --accent-light: #F4C430;
    --base-neutral: #FBF8F1; /* Base (Neutral) - For backgrounds and content areas */
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #FBF8F1;
    --gray-100: #F5F5F5;
    
    /* Theme Color Variables */
    --theme-primary: var(--primary-color);
    --theme-accent: var(--accent-color);
    --theme-base: var(--base-neutral);
    --gray-200: #E5E5E5;
    --gray-300: #CCCCCC;
    --gray-400: #999999;
    --gray-500: #666666;
    --gray-600: #4A4A4A;
    --gray-700: #333333;
    --gray-800: #1A1A1A;
    --gray-900: #000000;
    
    /* Semantic Colors */
    --success: #E1AA05;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* Typography */
    --font-family-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Playfair Display', Georgia, serif;
    
    /* Font Sizes (Mobile First) */
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Spacing Scale */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.75rem;    /* 12px */
    --space-4: 1rem;       /* 16px */
    --space-5: 1.25rem;    /* 20px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-10: 2.5rem;    /* 40px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    --space-24: 6rem;      /* 96px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* ==========================================================================
   CSS Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    line-height: var(--leading-normal);
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   Typography System
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-secondary);
    font-weight: 600;
    line-height: var(--leading-tight);
    color: var(--primary-color);
    margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-4xl); }
h2 { font-size: var(--text-3xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }
h5 { font-size: var(--text-lg); }
h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
    color: var(--gray-600);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-dark);
}

/* ==========================================================================
   Professional Grid System
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(var(--space-2) * -1);
}

.col {
    flex: 1 0 0%;
    padding: 0 var(--space-2);
}

/* Column Sizes */
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }

/* ==========================================================================
   Top Information Bar
   ========================================================================== */
.top-info-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
    color: var(--gray-600);
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.top-info-left .welcome-text {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
    color: var(--primary-color);
}

.top-info-left .welcome-text i {
    color: var(--accent-color);
}

.top-info-right .contact-info {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
}

.contact-item i {
    color: var(--accent-color);
    width: 14px;
    text-align: center;
}

.contact-item a {
    color: var(--gray-600);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.contact-item a:hover {
    color: var(--accent-color);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    background: linear-gradient(135deg, #4B382F 0%, #3A2B24 100%);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(225, 170, 5, 0.2);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 0px 0px;
    min-height: 70px;
}

.site-branding {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.site-logo {
    max-height: 50px;
    width: auto;
    margin-right: var(--space-3);
}

.custom-logo {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.custom-logo a {
    display: block;
    line-height: 0;
}

.custom-logo img {
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Make logo more prominent on larger screens */
@media (min-width: 768px) {
    .custom-logo img {
        max-height: 70px;
    }
}

@media (min-width: 1024px) {
    .custom-logo img {
        max-height: 80px;
    }
}

.footer-logo {
    margin-bottom: var(--space-4);
    text-align: center;
}

.footer-logo img {
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.site-title {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    margin: 0;
}

.site-title:hover {
    color: var(--accent-color);
}

.site-description {
    font-size: var(--text-sm);
    color: var(--accent-light);
    margin: 0;
    margin-left: var(--space-4);
}

.main-navigation {
    display: flex;
    align-items: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: var(--space-8);
}

.main-navigation a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
    position: relative;
}

.main-navigation a:hover {
    color: var(--accent-color);
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-fast);
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item a::after,
.main-navigation .current_page_item a::after {
    width: 100%;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    flex-shrink: 0;
}

.user-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-right: var(--space-3);
}

.user-name {
    font-weight: 500;
    color: var(--white);
    font-size: var(--text-sm);
    margin-bottom: 2px;
}

.user-role {
    font-size: var(--text-xs);
    color: var(--accent-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Button System
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    user-select: none;
}

.btn:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(225, 170, 5, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    color: #4B382F;
    border: none;
    box-shadow: 0 4px 15px rgba(225, 170, 5, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 170, 5, 0.4);
    background: linear-gradient(135deg, #F4C430 0%, #E1AA05 100%);
}

.btn-secondary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Header/Hero specific white outline buttons - only for dark backgrounds */
.site-header .btn-outline,
.user-menu .btn-outline,
.hero-section .btn-outline,
.hero-content .btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.site-header .btn-outline i,
.user-menu .btn-outline i,
.hero-section .btn-outline i,
.hero-content .btn-outline i {
    color: #ffffff;
    opacity: 1;
}

.site-header .btn-outline:hover,
.user-menu .btn-outline:hover,
.hero-section .btn-outline:hover,
.hero-content .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-sm {
    padding: var(--space-1) var(--space-3);
    font-size: var(--text-xs);
}

.btn-lg {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-lg);
}

/* ==========================================================================
   Card System
   ========================================================================== */
.card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-header {
    padding: var(--space-6);
    background-color: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
}

.card-body {
    padding: var(--space-6);
}

.card-footer {
    padding: var(--space-6);
    background-color: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

/* ==========================================================================
   Form System
   ========================================================================== */
.form-group {
    margin-bottom: var(--space-5);
}

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: 500;
    color: var(--gray-700);
    font-size: var(--text-sm);
}

.form-control {
    display: block;
    width: 100%;
    padding: var(--space-2) var(--space-3);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    color: var(--gray-700);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(225, 170, 5, 0.1);
}

.form-control::placeholder {
    color: var(--gray-400);
}

/* ==========================================================================
   Property Archive Page
   ========================================================================== */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: linear-gradient(135deg, #FBF8F1 0%, #FFFFFF 100%);
    border-radius: 16px;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-family-secondary);
}

.archive-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.search-results-info {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-color);
}

.search-results-info p {
    margin: 0;
    font-weight: 500;
    color: var(--primary-color);
}

.property-search-form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
}

.property-search-form {
    margin-bottom: 0;
}

.search-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.search-form-group {
    display: flex;
    flex-direction: column;
}

.search-form-group label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.search-form-group input,
.search-form-group select {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-form-group input:focus,
.search-form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(225, 170, 5, 0.1);
}

.search-form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.search-form-actions .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.advanced-search-filters {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.property-sort-options {
    background: var(--gray-50);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.sort-form label {
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
}

.sort-form select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    background: white;
    font-size: 0.9rem;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.property-type-badge {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
}

.featured-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.property-card:hover .property-overlay {
    opacity: 1;
}

.property-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.action-btn:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.1);
}

.property-content {
    padding: 1.5rem;
}

.property-header {
    margin-bottom: 1rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.property-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.property-title a:hover {
    color: var(--accent-color);
}

.property-location {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    padding: 1rem 0;
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--gray-600);
}

.detail-item i {
    color: var(--accent-color);
    width: 16px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-amount {
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.btn-premium-view {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-premium-view:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 170, 5, 0.3);
}

.no-properties-found {
    text-align: center;
    padding: 3rem 0;
}

.no-properties-found .card {
    max-width: 500px;
    margin: 0 auto;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.no-properties-found h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-properties-found p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

/* ==========================================================================
   Premium Page Template Styling (Matches Index.php Design)
   ========================================================================== */

/* Premium Page Hero Section */
.premium-page-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3A2B24 100%);
    color: white;
    overflow: hidden;
    margin-bottom: 4rem;
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.page-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="page-particles" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23E1AA05" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23page-particles)"/></svg>');
    opacity: 0.3;
}

.page-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(225, 170, 5, 0.1) 0%, transparent 50%, rgba(225, 170, 5, 0.1) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    font-family: var(--font-family-secondary);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Premium Page Content Section */
.premium-page-content {
    padding: 4rem 0;
    background: var(--gray-50);
}

.page-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 2rem;
}

.page-content-body {
    padding: 3rem;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--gray-700);
}

.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4,
.page-content-body h5,
.page-content-body h6 {
    color: var(--primary-color);
    font-family: var(--font-family-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.page-content-body h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.page-content-body h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.page-content-body p {
    margin-bottom: 1.5rem;
}

.page-content-body a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content-body a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

/* Page Sidebar Cards */
.page-sidebar-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.premium-stats-card,
.premium-cta-card,
.premium-services-preview {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.premium-stats-card:hover,
.premium-cta-card:hover,
.premium-services-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stats-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stats-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: var(--font-family-secondary);
}

.stats-header p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.9rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-mustard);
    line-height: 1;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--primary-color);
}

/* Premium CTA Card */
.premium-cta-card {
    background: linear-gradient(135deg, var(--accent-color) 0%, #F4C430 100%);
    color: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(30deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(30deg); }
}

.cta-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.premium-cta-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-family-secondary);
}

.premium-cta-card p {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    opacity: 0.9;
}

.btn-premium-cta {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(75, 56, 47, 0.3);
    position: relative;
    z-index: 2;
}

.btn-premium-cta:hover {
    background: #3A2B24;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(75, 56, 47, 0.4);
    color: white;
}

/* Premium Services Preview */
.premium-services-preview h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-family: var(--font-family-secondary);
    text-align: center;
}

.services-list {
    margin-bottom: 1.5rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.service-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.btn-premium-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-premium-secondary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 170, 5, 0.3);
}

.page-content-body h1,
.page-content-body h2,
.page-content-body h3,
.page-content-body h4,
.page-content-body h5,
.page-content-body h6 {
    color: var(--primary-color);
    font-family: var(--font-family-secondary);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.page-content-body h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.page-content-body h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.page-content-body p {
    margin-bottom: 1.5rem;
}

.page-content-body ul,
.page-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content-body li {
    margin-bottom: 0.5rem;
}

.page-content-body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.page-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: 1.5rem 0;
}

.page-content-body a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.page-content-body a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.page-content-body .wp-block-button {
    margin: 2rem 0;
}

.page-content-body .wp-block-button__link {
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.page-content-body .wp-block-button__link:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 170, 5, 0.3);
    text-decoration: none;
}

.page-content-body .wp-block-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.page-content-body .wp-block-group {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 1px solid var(--gray-200);
}

.page-content-body .wp-block-quote {
    border-left: 4px solid var(--accent-color);
    padding-left: 2rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--gray-600);
    background: var(--gray-50);
    padding: 1.5rem 2rem;
    border-radius: 8px;
}

.page-content-body .wp-block-separator {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 3rem 0;
}

.page-content-body .wp-block-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.page-content-body .wp-block-table th,
.page-content-body .wp-block-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--gray-200);
}

.page-content-body .wp-block-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.page-content-body .wp-block-table tr:nth-child(even) {
    background: var(--gray-50);
}

.page-content-body .wp-block-table tr:hover {
    background: rgba(225, 170, 5, 0.1);
}

/* Page Links (for paginated content) */
.page-links {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.page-links a {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: var(--accent-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-links a:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.page-links .current {
    background: var(--primary-color);
    color: white;
}

/* Comments Section */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.comments-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-family: var(--font-family-secondary);
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.comment-author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.comment-content {
    line-height: 1.6;
    color: var(--gray-700);
}

/* Mobile Responsive for Premium Pages */
@media (max-width: 768px) {
    .premium-page-hero {
        min-height: 50vh;
        margin-bottom: 2rem;
    }
    
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .premium-page-content {
        padding: 2rem 0;
    }
    
    .page-content-body {
        padding: 2rem 1.5rem;
        font-size: 1rem;
    }
    
    .page-sidebar-cards {
        margin-top: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    /* Testimonials mobile styles */
    .testimonial-card.premium {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .testimonials-navigation {
        gap: 1rem;
    }
    
    .testimonials-navigation .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 1rem 0.75rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .premium-stats-card,
    .premium-cta-card,
    .premium-services-preview {
        padding: 1.5rem;
    }
    
    .btn-premium-cta {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .page-hero-title {
        font-size: 2rem;
    }
    
    .page-hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .page-content-body {
        padding: 1.5rem 1rem;
    }
    
    .premium-stats-card,
    .premium-cta-card,
    .premium-services-preview {
        padding: 1rem;
    }
    
    .service-item {
        padding: 0.75rem 0;
    }
    
    .service-item i {
        font-size: 1rem;
    }
}

/* ==========================================================================
   Premium Hero Section
   ========================================================================== */
.premium-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #4B382F 0%, #3A2B24 50%, #4B382F 100%);
    will-change: auto;
    transform: translateZ(0);
    padding: 2rem 0;
}

/* Front Page Hero Background */
.premium-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: auto;
    transform: translateZ(0);
}

/* Page Hero Background */
.premium-page-hero .page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    will-change: auto;
    transform: translateZ(0);
}

/* Front Page Hero Particles and Gradient */
.premium-hero .hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(225, 170, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(225, 170, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(225, 170, 5, 0.05) 0%, transparent 50%);
    /* Removed heavy animation for better performance */
}

.premium-hero .hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(225, 170, 5, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(225, 170, 5, 0.1) 100%);
    /* Removed heavy animation for better performance */
}

/* Page Hero Particles and Gradient */
.premium-page-hero .page-hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(225, 170, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(225, 170, 5, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(225, 170, 5, 0.05) 0%, transparent 50%);
    /* Removed heavy animation for better performance */
}

.premium-page-hero .page-hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        rgba(225, 170, 5, 0.1) 0%, 
        transparent 30%, 
        transparent 70%, 
        rgba(225, 170, 5, 0.1) 100%);
    /* Removed heavy animation for better performance */
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 1rem auto;
    color: white;

    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 28%);
    font-family: var(--font-family-secondary);
}

.title-line-1 {
    display: block;
    color: white;
}

.title-line-2 {
    display: block;
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

/* Premium Search Card */
.premium-search-card {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.search-card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.search-card-header h3 {
    font-size: 1.75rem;
    color: #4B382F;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.search-card-header p {
    color: #666;
    margin: 0;
}

.search-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.premium {
    position: relative;
    transition: all 0.3s ease;
}

.form-group.premium.focused .form-label {
    color: #E1AA05;
    transform: translateY(-2px);
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #4B382F;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.form-label i {
    color: #E1AA05;
    width: 16px;
}

.form-control.premium {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E5E5;
    border-radius: 12px;
    font-size: 1rem;
    background: white;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-control.premium:focus {
    outline: none;
    border-color: #E1AA05;
    box-shadow: 0 0 0 4px rgba(225, 170, 5, 0.1);
    transform: translateY(-2px);
}

.search-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-premium-search {
    position: relative;
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    color: #4B382F;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 170, 5, 0.3);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-premium-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(225, 170, 5, 0.4);
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.3s ease;
    will-change: left;
}

.btn-premium-search:hover .btn-shine {
    left: 100%;
}

.btn-premium-advanced {
    background: transparent;
    color: #4B382F;
    border: 2px solid #E1AA05;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-premium-advanced:hover {
    background: #E1AA05;
    color: white;
    transform: translateY(-2px);
}

.advanced-filters {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #E5E5E5;
    display: none;
}

.filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.premium-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.premium-checkbox:hover {
    background-color: rgba(225, 170, 5, 0.05);
}

.premium-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.premium-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #E1AA05;
}

.premium-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.label-text {
    font-weight: 500;
    color: #4B382F;
}

/* ==========================================================================
   Premium Sections
   ========================================================================== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    color: #4B382F;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(225, 170, 5, 0.3);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #4B382F;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Featured Properties */
.premium-featured-properties {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FBF8F1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.premium-featured-properties::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23E1AA05" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23E1AA05" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23E1AA05" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23E1AA05" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23E1AA05" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.premium-featured-properties .container {
    position: relative;
    z-index: 2;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card.premium {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.property-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card.premium:hover .property-image img {
    transform: scale(1.05);
}

.property-badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.property-type-badge {
    background: rgba(75, 56, 47, 0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.featured-badge {
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    color: #4B382F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(75, 56, 47, 0.8) 0%, rgba(225, 170, 5, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-card.premium:hover .property-overlay {
    opacity: 1;
}

.property-actions {
    display: flex;
    gap: 1rem;
}

.action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.property-content {
    padding: 1.5rem;
}

.property-header {
    margin-bottom: 1rem;
}

.property-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.property-title a {
    color: #4B382F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.property-title a:hover {
    color: #E1AA05;
}

.property-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid #F0F0F0;
    border-bottom: 1px solid #F0F0F0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.detail-item i {
    color: #E1AA05;
    width: 16px;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-price {
    display: flex;
    flex-direction: column;
}

.price-period {
    font-size: 0.8rem;
    color: #666;
}

.btn-premium-view {
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    color: #4B382F;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(225, 170, 5, 0.3);
}

.btn-premium-view:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 170, 5, 0.4);
    color: #4B382F;
}

.section-footer {
    text-align: center;
    margin-top: 3rem;
}

.btn-premium-outline {
    background: transparent;
    border: 2px solid #E1AA05;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-premium-outline:hover {
    background: #E1AA05;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(225, 170, 5, 0.3);
}

/* Premium Services */
.premium-services {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card.premium {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card.premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    position: relative;
    margin-bottom: 2rem;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--service-color) 0%, var(--service-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card.premium:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--service-color) 0%, var(--service-color) 100%);
    opacity: 0.1;
    z-index: 1;
    transition: all 0.3s ease;
}

.service-card.premium:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4B382F;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.service-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(225, 170, 5, 0.05) 0%, rgba(75, 56, 47, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card.premium:hover .service-hover-effect {
    opacity: 1;
}

.services-cta {
    background: linear-gradient(135deg, #4B382F 0%, #3A2B24 100%);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23E1AA05" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: white;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    color: #4B382F;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(225, 170, 5, 0.3);
}

.btn-premium-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(225, 170, 5, 0.4);
    color: #4B382F;
}

/* Premium Testimonials */
.premium-testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FBF8F1 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    margin-bottom: 3rem;
}

/* Carousel viewport - shows exactly 3 testimonials */
.testimonials-carousel-viewport {
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 2rem;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    position: relative;
    transition: transform 0.5s ease;
    width: fit-content;
}

.testimonial-card.premium {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 0 0 350px;
    min-width: 350px;
    margin: 20px 5px;
}

.testimonial-card.premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 350px;
    transition: transform 0.5s ease;
}

.testimonials-slider {
    transition: transform 0.5s ease;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #E1AA05 0%, #F4C430 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4B382F;
    font-size: 1.2rem;
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B382F;
    font-style: italic;
    margin: 0;
    padding: 10px;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-rating .fa-star {
    color: #E1AA05;
    font-size: 1.1rem;
}

.testimonial-rating .fa-star:not(.active) {
    color: #E5E5E5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid #F0F0F0;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #E1AA05;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4B382F;
    margin-bottom: 0.25rem;
}

.author-role {
    color: #E1AA05;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.author-location {
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Ultra-Minimalist Premium Footer */
.premium-footer {
    background: #4B382F;
    color: var(--base-neutral);
    padding: 0;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Top Navigation Links - Ultra Minimalist */
.footer-top-nav {
    padding: 1.5rem 0 0.8rem;
}

.footer-nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-nav-link {
    color: var(--base-neutral);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.2s ease;
    opacity: 0.9;
}

.footer-nav-link:hover {
    color: var(--accent-mustard);
    opacity: 1;
}

/* Footer Dividers - Ultra Thin */
.footer-divider {
    height: 0.5px;
    background: rgb(98 74 34);
    margin: 1rem 0;
}

.regional-info {
    text-align: center;
    color: var(--base-neutral);
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 300;
}

.contact-sections {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.office-section {
    flex: 1;
}

.office-title {
    color: var(--base-neutral);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid var(--accent-mustard);
    display: inline-block;
    opacity: 0.95;
}

.contact-groups {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
}

.contact-group {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact {
    padding-bottom: 10px;
}

.contact-group-title {
    color: var(--base-neutral);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.contact-item {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.3;
    opacity: 0.8;
}

.contact-link {
    color: var(--base-neutral);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 300;
}

.contact-link:hover {
    color: var(--accent-mustard);
    opacity: 1;
}

/* Office Divider - Ultra Thin */
.office-divider {
    width: 0.5px;
    background: rgba(251, 248, 241, 0.2);
    margin: 0 1.5rem;
    align-self: stretch;
    flex-shrink: 0;
}

/* Footer Bottom - Minimalist */
.footer-bottom {
    padding: 1.2rem 0 1.5rem;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

/* Social Media - Clean Circles */
.social-media {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(251, 248, 241, 0.05);
    border: 0.5px solid rgba(251, 248, 241, 0.15);
    border-radius: 50%;
    color: var(--base-neutral);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    opacity: 0.8;
}

.social-icon:hover {
    background: var(--accent-mustard);
    border-color: var(--accent-mustard);
    color: var(--primary-brown);
    transform: translateY(-1px);
    opacity: 1;
}

/* Copyright - Minimalist */
.copyright {
    color: var(--base-neutral);
    font-size: 0.75rem;
    text-align: center;
    opacity: 0.7;
    font-weight: 300;
}

/* Scroll to Top Button - Minimalist */
.scroll-to-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(75, 56, 47, 0.9);
    border: 1px solid var(--accent-mustard);
    border-radius: 50%;
    color: var(--base-neutral);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.2s ease;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-mustard);
    color: var(--primary-brown);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(225, 170, 5, 0.2);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-groups {
        gap: 1rem;
    }
    
    .office-divider {
        margin: 0 1rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-nav-links {
        gap: 1rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .contact-groups {
        flex-direction: column;
        gap: 1rem;
    }
    
    .office-divider {
        width: 100%;
        height: 0.5px;
        margin: 1rem 0;
    }
    
    .social-media {
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .scroll-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .footer-nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .regional-info {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .office-title {
        font-size: 1rem;
    }
    
    .contact-group-title {
        font-size: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.8rem;
    }
    
    .copyright {
        font-size: 0.8rem;
    }
}

/* Testimonials Navigation */
.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.testimonials-navigation .nav-btn {
    background: var(--primary-brown);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.testimonials-navigation .nav-btn:hover {
    background: var(--accent-mustard);
    transform: scale(1.1);
}

.testimonials-navigation .nav-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.testimonials-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonials-dots .dot:hover {
    background: var(--primary-brown);
    transform: scale(1.2);
}

.testimonials-dots .dot.active {
    background: var(--accent-mustard);
    transform: scale(1.3);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-mustard);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.testimonials-stats .stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */
.site-main {
    min-height: calc(100vh - 200px);
    padding: 0;
}

/* ==========================================================================
   Responsive Design - Mobile First
   ========================================================================== */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
    
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    h1 { font-size: var(--text-5xl); }
    h2 { font-size: var(--text-4xl); }
    h3 { font-size: var(--text-3xl); }
    
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
}

/* Mobile Navigation */
@media (max-width: 767px) {
    /* Top Info Bar Mobile */
    .top-info-content {
        flex-direction: column;
        text-align: center;
        gap: var(--space-2);
    }
    
    .top-info-right .contact-info {
        justify-content: center;
        gap: var(--space-3);
    }
    
    .contact-item {
        font-size: var(--text-xs);
    }
    
    /* Property Archive Mobile */
    .page-title {
        font-size: 2rem;
    }
    
    .search-form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-form-actions {
        flex-direction: column;
    }
    
    .search-form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .property-sort-options {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .sort-form {
        justify-content: center;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-details {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .property-footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .btn-premium-view {
        width: 100%;
        justify-content: center;
    }

    .site-header .container {
        flex-wrap: wrap;
        padding: var(--space-3);
    }
    
    .site-branding {
        order: 1;
        flex: 1;
    }
    
    .mobile-menu-toggle {
    display: flex;
        order: 2;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: var(--z-dropdown);
    }
    
    .hamburger-line {
        width: 100%;
        height: 3px;
        background-color: var(--white);
        border-radius: 2px;
        transition: all var(--transition-normal);
        transform-origin: center;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .user-menu {
        order: 3;
        margin-left: 0;
    }
    
    .user-info {
        display: none;
    }
    
    .user-menu .btn {
        font-size: var(--text-xs);
        padding: var(--space-1) var(--space-2);
    }
    
    .main-navigation {
        order: 4;
    width: 100%;
        margin: 0;
        display: none;
    }
    
    .main-navigation.active {
    display: flex;
        margin-top: var(--space-4);
    }
    
    .main-navigation ul {
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.1);
        border-radius: var(--radius-md);
        padding: var(--space-4);
        gap: var(--space-2);
    }
    
    .main-navigation li {
        width: 100%;
    }
    
    .main-navigation a {
        text-align: center;
        padding: var(--space-3);
        border-bottom: none;
    }
    
    .main-navigation a::after {
        display: none;
    }
    
    .site-main {
        padding: var(--space-8) 0;
    }
    
    .row {
    margin: 0;
    }
    
    .col,
    [class*="col-"] {
        flex: 0 0 100%;
        max-width: 100%;
    padding: 0;
        margin-bottom: var(--space-4);
    }
    
    /* Premium Hero Mobile */
    .premium-hero {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .premium-search-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .search-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .search-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-premium-search,
    .btn-premium-advanced {
        width: 100%;
        justify-content: center;
    }
    
    .filters-grid {
        grid-template-columns: 1fr;
    }
    
    /* Premium Sections Mobile */
    .premium-featured-properties,
    .premium-services,
    .premium-testimonials {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .property-card.premium {
        margin: 0 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card.premium {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .services-cta {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-premium-primary,
    .btn-premium-outline {
        width: 100%;
        justify-content: center;
    }
    
    .testimonials-slider {
        gap: 1.5rem;
    }
    
    .testimonial-card.premium {
        flex: 0 0 300px;
        min-width: 300px;
    }
    
    .testimonial-card.premium {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .testimonials-stats .stat-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-1); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-3 { margin-bottom: var(--space-3); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-5 { margin-bottom: var(--space-5); }
.mb-6 { margin-bottom: var(--space-6); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }
.mt-6 { margin-top: var(--space-6); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-1); }
.p-2 { padding: var(--space-2); }
.p-3 { padding: var(--space-3); }
.p-4 { padding: var(--space-4); }
.p-5 { padding: var(--space-5); }
.p-6 { padding: var(--space-6); }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* ==========================================================================
   Responsive Utility Classes
   ========================================================================== */

/* Mobile First Responsive Classes */
@media (max-width: 576px) {
    .d-sm-none { display: none; }
    .d-sm-block { display: block; }
    .d-sm-flex { display: flex; }
    .d-sm-inline { display: inline; }
    .d-sm-inline-block { display: inline-block; }
    
    .text-sm-left { text-align: left; }
    .text-sm-center { text-align: center; }
    .text-sm-right { text-align: right; }
    
    .w-sm-100 { width: 100%; }
    .h-sm-100 { height: 100%; }
    
    .p-sm-0 { padding: 0; }
    .p-sm-1 { padding: var(--space-1); }
    .p-sm-2 { padding: var(--space-2); }
    .p-sm-3 { padding: var(--space-3); }
    
    .m-sm-0 { margin: 0; }
    .m-sm-1 { margin: var(--space-1); }
    .m-sm-2 { margin: var(--space-2); }
    .m-sm-3 { margin: var(--space-3); }
}

@media (max-width: 768px) {
    .d-md-none { display: none; }
    .d-md-block { display: block; }
    .d-md-flex { display: flex; }
    .d-md-inline { display: inline; }
    .d-md-inline-block { display: inline-block; }
    
    .text-md-left { text-align: left; }
    .text-md-center { text-align: center; }
    .text-md-right { text-align: right; }
    
    .w-md-100 { width: 100%; }
    .h-md-100 { height: 100%; }
    
    .p-md-0 { padding: 0; }
    .p-md-1 { padding: var(--space-1); }
    .p-md-2 { padding: var(--space-2); }
    .p-md-3 { padding: var(--space-3); }
    
    .m-md-0 { margin: 0; }
    .m-md-1 { margin: var(--space-1); }
    .m-md-2 { margin: var(--space-2); }
    .m-md-3 { margin: var(--space-3); }
}

@media (max-width: 992px) {
    .d-lg-none { display: none; }
    .d-lg-block { display: block; }
    .d-lg-flex { display: flex; }
    .d-lg-inline { display: inline; }
    .d-lg-inline-block { display: inline-block; }
    
    .text-lg-left { text-align: left; }
    .text-lg-center { text-align: center; }
    .text-lg-right { text-align: right; }
    
    .w-lg-100 { width: 100%; }
    .h-lg-100 { height: 100%; }
    
    .p-lg-0 { padding: 0; }
    .p-lg-1 { padding: var(--space-1); }
    .p-lg-2 { padding: var(--space-2); }
    .p-lg-3 { padding: var(--space-3); }
    
    .m-lg-0 { margin: 0; }
    .m-lg-1 { margin: var(--space-1); }
    .m-lg-2 { margin: var(--space-2); }
    .m-lg-3 { margin: var(--space-3); }
}

@media (max-width: 1200px) {
    .d-xl-none { display: none; }
    .d-xl-block { display: block; }
    .d-xl-flex { display: flex; }
    .d-xl-inline { display: inline; }
    .d-xl-inline-block { display: inline-block; }
    
    .text-xl-left { text-align: left; }
    .text-xl-center { text-align: center; }
    .text-xl-right { text-align: right; }
    
    .w-xl-100 { width: 100%; }
    .h-xl-100 { height: 100%; }
    
    .p-xl-0 { padding: 0; }
    .p-xl-1 { padding: var(--space-1); }
    .p-xl-2 { padding: var(--space-2); }
    .p-xl-3 { padding: var(--space-3); }
    
    .m-xl-0 { margin: 0; }
    .m-xl-1 { margin: var(--space-1); }
    .m-xl-2 { margin: var(--space-2); }
    .m-xl-3 { margin: var(--space-3); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: var(--space-16) 0 var(--space-8);
    margin-top: var(--space-16);
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-widget h4 {
    color: var(--accent-color);
    margin-bottom: var(--space-4);
    font-size: var(--text-lg);
    font-weight: 600;
}

.footer-widget p {
    color: var(--accent-light);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: var(--space-2);
}

.footer-widget ul li a {
    color: var(--accent-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-widget ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-6);
    border-top: 1px solid rgb(98 74 34);
    color: var(--accent-light);
}

@media (max-width: 767px) {
    .footer-widgets {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }
}

.contact-item a{
    color: var(--accent-color);
}

