/* ========================================
   Salinn Fasteignasala - Main Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0f2744;
    --secondary-color: #c9a227;
    --secondary-light: #ddb844;
    --accent-color: #38a169;
    --text-color: #2d3748;
    --text-light: #718096;
    --text-white: #ffffff;
    --bg-color: #ffffff;
    --bg-light: #f7fafc;
    --bg-dark: #1a202c;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.full-width { grid-column: 1 / -1; }

/* Focus Visible for Accessibility */
:focus-visible {
    outline: 3px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Skip to content (screen reader) */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    z-index: 10000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: var(--primary-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.8;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 1000;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
}

.btn-reject {
    background: transparent;
    border: 1px solid var(--text-white);
    color: var(--text-white);
    padding: 10px 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 100;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: 45px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.15);
    transition: var(--transition);
}

.logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.25);
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.nav a.active {
    color: var(--primary-color);
    font-weight: 600;
}

.nav a.active::after {
    width: 100%;
    background: var(--primary-color);
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
    padding: 12px;
    z-index: 1001;
    position: relative;
    -webkit-tap-highlight-color: rgba(0,0,0,0.1);
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--text-white);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Valuation Form */
.verdmat-form {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.verdmat-form .btn {
    width: 100%;
    margin-top: 10px;
}

/* Stats Section */
.stats-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-number::after {
    content: '+';
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 10px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Properties Section */
.properties-section {
    padding: 80px 0;
}

.property-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.property-filters select {
    padding: 12px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: white;
    cursor: pointer;
    min-width: 180px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.property-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.property-image {
    position: relative;
    height: 220px;
    background: var(--bg-light);
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.property-content {
    padding: 20px;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.property-address {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-light);
    font-size: 1.2rem;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--bg-color);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--text-white);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--secondary-light);
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.tip-card {
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.tip-card:hover {
    border-color: var(--secondary-color);
}

.tip-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.tip-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.about-features {
    margin-top: 25px;
}

.about-features .feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
}

.about-features i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-lg);
}

.contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
}

.footer-col ul a:hover {
    color: var(--secondary-color);
}

.footer-col i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
}

.footer-links a {
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 400px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.success-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid,
    .tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-color);
        box-shadow: var(--shadow-lg);
        padding: 20px;
        z-index: 1000;
    }
    
    .nav.active {
        display: block !important;
    }
    
    .nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav ul li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav ul li:last-child {
        border-bottom: none;
    }
    
    .nav ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .header-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .verdmat-form {
        padding: 25px;
    }
    
    .properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    /* Estimator mobile */
    .estimator-grid {
        grid-template-columns: 1fr;
    }
    
    .estimator-card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .properties-grid,
    .services-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
}

/* Admin Styles */
.admin-login {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 20px;
}

.login-box {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.login-box .logo-img {
    height: 60px;
    margin-bottom: 30px;
}

.login-box h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.login-box .form-group {
    margin-bottom: 20px;
    text-align: left;
}

.login-box .btn {
    width: 100%;
}

/* Admin Dashboard */
.admin-container {
    display: flex;
    min-height: 100vh;
}

/* Hide mobile elements on desktop */
.admin-mobile-header,
.admin-sidebar-overlay {
    display: none;
}

.admin-sidebar {
    width: 260px;
    background: var(--bg-dark);
    color: white;
    padding: 20px 0;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
}

.admin-sidebar .logo-img {
    height: 40px;
    padding: 0 20px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255,255,255,0.1);
    color: white;
    border-left: 3px solid var(--secondary-color);
}

.admin-nav a.wp-admin-link {
    background: #21759b;
    color: white;
    margin: 10px 15px;
    border-radius: var(--radius-md);
    padding: 12px 20px;
}

.admin-nav a.wp-admin-link:hover {
    background: #1e6a8d;
    border-left: none;
}

.admin-nav i {
    width: 20px;
    text-align: center;
}

.admin-main {
    flex: 1;
    margin-left: 260px;
    padding: 30px;
    background: var(--bg-light);
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.admin-header h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
}

/* Admin Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.admin-stat-card {
    background: white;
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.admin-stat-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
}

.admin-stat-card p {
    color: var(--text-light);
    margin-top: 5px;
}

/* Analytics Grid */
.analytics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px 25px;
}

.analytics-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.analytics-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.analytics-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
}

.analytics-trend {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.analytics-trend.positive {
    background: #dcfce7;
    color: #166534;
}

.analytics-trend.negative {
    background: #fee2e2;
    color: #991b1b;
}

/* Admin Table */
.admin-card {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.admin-card-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-card-header h2 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th,
.admin-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.admin-table th {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.admin-table tr:hover {
    background: var(--bg-light);
}

.status-badge {
    padding: 5px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
}

.status-active {
    background: #c6f6d5;
    color: #22543d;
}

.status-pending {
    background: #fefcbf;
    color: #744210;
}

.status-sold {
    background: #e2e8f0;
    color: #4a5568;
}

.action-btn {
    padding: 6px 12px;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.85rem;
    margin-right: 5px;
    transition: var(--transition);
}

.action-btn.edit {
    background: var(--primary-light);
    color: white;
}

.action-btn.delete {
    background: #e53e3e;
    color: white;
}

.action-btn.view {
    background: var(--accent-color);
    color: white;
}

/* Property Detail Section */
.property-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.property-gallery-card {
    grid-column: 1 / -1;
}

.property-main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.property-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-thumbnail-strip {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.property-thumbnail {
    width: 80px;
    height: 60px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.property-thumbnail:hover,
.property-thumbnail.active {
    border-color: var(--primary-color);
}

.property-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.property-info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
}

.property-info-item .info-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 600;
}

.property-info-item .info-value {
    font-size: 1rem;
    color: var(--text-color);
}

@media (max-width: 768px) {
    .property-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .property-main-image {
        height: 250px;
    }
    
    .property-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Admin Form */
.admin-form {
    padding: 30px;
}

.admin-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.admin-form .form-row.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.admin-form textarea {
    min-height: 120px;
}

/* Features checkboxes */
.features-checkboxes {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
}

.features-checkboxes .checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 15px;
    background: var(--bg-color);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    font-size: 0.9rem;
}

.features-checkboxes .checkbox-label:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.features-checkboxes .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.features-checkboxes .checkbox-label input[type="checkbox"]:checked + span,
.features-checkboxes .checkbox-label:has(input:checked) {
    color: var(--primary-color);
    font-weight: 500;
    border-color: var(--primary-color);
    background: #e8f4fd;
}

.image-upload-area {
    border: 2px dashed var(--border-color);
    padding: 40px;
    text-align: center;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
}

.image-upload-area:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.image-upload-area.drag-over {
    border-color: var(--accent-color);
    background: #f0fff4;
    border-width: 3px;
}

.image-upload-area.drag-over i {
    color: var(--accent-color);
    transform: scale(1.1);
}

.image-upload-area i {
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: block;
    transition: var(--transition);
}

.image-preview {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.image-preview-item {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.image-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-preview-item .remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 24px;
    height: 24px;
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .admin-form .form-row.three-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Mobile Admin Menu Toggle */
    .admin-mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
        background: var(--bg-dark);
        color: white;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1001;
    }
    
    .admin-mobile-header .logo-img {
        height: 35px;
        filter: brightness(0) invert(1);
    }
    
    .admin-menu-toggle {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }
    
    .admin-sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding-top: 70px;
    }
    
    .admin-sidebar.active {
        transform: translateX(0);
    }
    
    .admin-sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .admin-sidebar-overlay.active {
        display: block;
    }
    
    .admin-main {
        margin-left: 0;
        padding: 80px 15px 20px;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .admin-stat-card {
        padding: 20px;
    }
    
    .admin-stat-card h3 {
        font-size: 1.5rem;
    }
    
    .admin-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .admin-header h1 {
        font-size: 1.4rem;
    }
    
    .admin-form .form-row,
    .admin-form .form-row.three-col {
        grid-template-columns: 1fr;
    }
    
    .admin-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 15px;
    }
    
    /* Mobile-friendly tables */
    .admin-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .admin-table {
        min-width: 600px;
    }
    
    .admin-table th,
    .admin-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }
    
    .action-btn {
        padding: 8px 10px;
        margin-bottom: 5px;
    }
    
    .image-upload-area {
        padding: 25px;
    }
    
    .admin-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .admin-main {
        padding: 75px 10px 15px;
    }
    
    .admin-stat-card {
        padding: 15px;
    }
    
    .admin-card-header h2 {
        font-size: 1rem;
    }
    
    .action-btn {
        display: block;
        width: 100%;
        margin: 3px 0;
    }
}

/* ========================================
   Calculator & Estimator Sections
   ======================================== */

.calculator-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
}

.calculator-section .section-header h2 {
    color: var(--text-white);
}

.calculator-section .section-header p {
    color: rgba(255,255,255,0.8);
}

/* New Calculator Main Card */
.calculator-main-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-xl);
}

/* Loan Type Toggle */
.loan-type-toggle {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.loan-type-btn {
    flex: 1;
    padding: 20px;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    background: #f8f9fa;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.loan-type-btn i {
    display: block;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 8px;
}

.loan-type-btn span {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-color);
}

.loan-type-btn small {
    display: block;
    font-size: 0.8rem;
    color: #777;
    margin-top: 4px;
}

.loan-type-btn:hover {
    border-color: var(--primary-color);
    background: #fff;
}

.loan-type-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
}

.loan-type-btn.active i,
.loan-type-btn.active span {
    color: #fff;
}

.loan-type-btn.active small {
    color: rgba(255,255,255,0.8);
}

/* Calculator Form Grid */
.calc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.calc-form-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.calc-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.calc-input-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.rate-info {
    font-weight: 400;
    font-size: 0.85rem;
    color: #777;
}

.input-with-suffix {
    display: flex;
    align-items: center;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    transition: var(--transition);
}

.input-with-suffix:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.input-with-suffix .calc-input {
    border: none;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    flex: 1;
    background: transparent;
}

.input-with-suffix .calc-input:focus {
    outline: none;
    box-shadow: none;
}

.input-suffix {
    padding: 0 20px;
    font-weight: 600;
    color: #666;
    background: #f5f5f5;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 1px solid #e0e0e0;
}

.calc-btn {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 20px;
}

.calc-btn i {
    margin-right: 10px;
}

/* Results Box */
.calc-results-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 30px;
    color: var(--text-white);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.main-result-display {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 25px;
}

.main-result-display .result-title {
    display: block;
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.main-result-display .result-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.result-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
}

.result-row.highlight {
    background: var(--secondary-color);
    color: var(--primary-dark);
}

.result-row .result-label {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-row .result-value {
    font-weight: 700;
    font-size: 1.1rem;
}

/* Calculator Disclaimer */
.calculator-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin-top: 25px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.calculator-disclaimer i {
    color: #e5a100;
    font-size: 1.1rem;
    margin-top: 2px;
}

.calculator-disclaimer p {
    margin: 0;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .loan-type-toggle {
        flex-direction: column;
    }
    
    .calc-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .calculator-main-card {
        padding: 25px;
    }
    
    .main-result-display .result-amount {
        font-size: 2rem;
    }
}

/* OLD STYLES - keeping for backwards compat */
.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.calculator-card {
    background: var(--bg-color);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.calculator-card h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.calculator-card h3 i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.calc-input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    background: #fff;
    color: var(--text-color);
    transition: var(--transition);
    box-sizing: border-box;
}

.calc-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.calc-input::placeholder {
    color: #999;
    font-weight: 400;
}

.calculator-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.result-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.result-card:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
}

.result-card.main-result {
    grid-column: 1 / -1;
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 25px;
}

.result-card.main-result:hover {
    background: var(--secondary-light);
}

.result-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.result-card.main-result .result-icon {
    background: rgba(26, 54, 93, 0.2);
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
}

.result-content {
    flex: 1;
}

.calculator-footnote {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 20px;
}

/* Property Value Estimator */
.estimator-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.estimator-card {
    background: var(--bg-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.estimator-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.estimate-result {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-white);
    animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.estimate-result h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.estimate-range {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.estimate-result p {
    margin-top: 15px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.estimate-result .estimate-note {
    margin-top: 15px;
}

.estimate-result .data-updated {
    margin-top: 10px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.estimate-result a {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* Call button */
.call-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 99;
    transition: var(--transition);
}

.call-float:hover {
    transform: scale(1.1);
    background: var(--primary-light);
}

/* Live Chat Widget Placeholder */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

.chat-box {
    position: absolute;
    bottom: 70px;
    left: 0;
    width: 350px;
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: none;
    overflow: hidden;
}

.chat-box.active {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
}

.chat-messages {
    height: 250px;
    padding: 15px;
    overflow-y: auto;
    background: var(--bg-light);
}

.chat-message {
    margin-bottom: 15px;
    max-width: 80%;
}

.chat-message.bot {
    background: var(--bg-color);
    padding: 12px 15px;
    border-radius: 15px 15px 15px 0;
    box-shadow: var(--shadow-sm);
}

.chat-message.user {
    background: var(--primary-color);
    color: white;
    padding: 12px 15px;
    border-radius: 15px 15px 0 15px;
    margin-left: auto;
}

.chat-input-area {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    outline: none;
}

.chat-input-area button {
    padding: 10px 15px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
}

/* Property Alert Signup */
.alert-banner {
    background: var(--secondary-color);
    color: var(--primary-dark);
    padding: 15px 0;
    text-align: center;
}

.alert-banner form {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.alert-banner p {
    font-weight: 600;
    margin-right: 10px;
}

.alert-banner input {
    padding: 10px 15px;
    border: none;
    border-radius: var(--radius-md);
    min-width: 250px;
}

.alert-banner button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
}

/* Responsive for Calculator */
@media (max-width: 1024px) {
    .calculator-grid {
        grid-template-columns: 1fr;
    }
    
    .estimator-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .calculator-results {
        grid-template-columns: 1fr;
    }
    
    .estimator-grid {
        grid-template-columns: 1fr;
    }
    
    .chat-box {
        width: 300px;
    }
    
    .whatsapp-float,
    .call-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .call-float {
        bottom: 90px;
    }
}

/* ========================================
   Properties Page (eignir.html)
   ======================================== */

/* Page Hero - Professional design */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 140px 0 60px;
    text-align: center;
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

/* Breadcrumb inside hero */
.page-hero .breadcrumb {
    background: transparent;
    border: none;
    padding: 0;
    margin-top: 1.5rem;
}

.page-hero .breadcrumb ol {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-hero .breadcrumb li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.page-hero .breadcrumb li::after {
    content: '›';
    color: rgba(255,255,255,0.5);
}

.page-hero .breadcrumb li:last-child::after {
    display: none;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: var(--transition);
}

.page-hero .breadcrumb a:hover {
    color: var(--secondary-color);
}

.page-hero .breadcrumb li:last-child {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Properties Page Section */
.properties-page-section {
    padding: 50px 0 80px;
    background: var(--bg-light);
    min-height: 60vh;
}

.properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

#results-count {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.sort-options select {
    padding: 10px 35px 10px 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: var(--bg-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: var(--transition);
}

.sort-options select:hover,
.sort-options select:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    text-align: center;
    color: var(--text-white);
}

.cta-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.alert-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.alert-form input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    min-width: 250px;
}

.alert-form input[type="email"]:focus {
    outline: 3px solid var(--secondary-color);
}

.alert-form .btn {
    padding: 15px 30px;
    white-space: nowrap;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.pagination button,
.pagination a {
    padding: 10px 16px;
    border: 2px solid var(--border-color);
    background: var(--bg-color);
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text-color);
}

.pagination button:hover,
.pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination button.active,
.pagination a.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-white);
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Breadcrumb */
.breadcrumb {
    padding: 1rem 0;
    background: transparent;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb li::after {
    content: "›";
    margin-left: 0.75rem;
    color: var(--text-light);
}

.breadcrumb li:last-child::after {
    content: "";
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.breadcrumb-list li a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb-list li a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb-list li:last-child {
    color: var(--text-color);
    font-weight: 500;
}

.breadcrumb-separator {
    color: var(--text-light);
}

/* ========================================
   Filter Bar (Uses verdmat-form styling)
   ======================================== */
.filter-bar {
    background: var(--bg-light);
    padding: 40px 0;
    position: sticky;
    top: 69px;
    z-index: 100;
}

.filter-bar .verdmat-form {
    max-width: 900px;
    margin: 0 auto;
}

.filter-bar .form-group label i {
    color: var(--primary-color);
    margin-right: 6px;
}

.filter-row {
    margin-bottom: 20px;
}

/* Filter bar responsive */
@media (max-width: 768px) {
    .filter-bar {
        padding: 25px 0;
        position: relative;
        top: 0;
    }
    
    .filter-bar .form-row {
        grid-template-columns: 1fr;
    }
}

/* Old search section (kept for compatibility) */
.search-section {
    display: none;
}

.search-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.search-filters .search-input {
    flex: 2;
    min-width: 250px;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
}

.search-filters .search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.search-filters .filter-select {
    flex: 1;
    min-width: 150px;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    background: var(--bg-color);
    cursor: pointer;
    transition: var(--transition);
}

.search-filters .filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-filters .search-btn {
    padding: 0.875rem 2rem;
    background: var(--primary-color);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-filters .search-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Properties Section Specific */
.properties-section .properties-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.properties-section .properties-count {
    color: var(--text-light);
    font-size: 1rem;
}

.properties-section .sort-select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: var(--bg-color);
    cursor: pointer;
}

/* Load More Button */
.load-more-container {
    text-align: center;
    margin-top: 3rem;
}

.load-more-btn {
    padding: 1rem 3rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

/* Properties Page Responsive */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 50px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-hero .breadcrumb ol {
        font-size: 0.8rem;
    }
    
    .properties-page-section {
        padding: 30px 0 50px;
    }
    
    .properties-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .sort-options {
        width: 100%;
    }
    
    .sort-options select {
        flex: 1;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .alert-form {
        flex-direction: column;
    }
    
    .alert-form input[type="email"] {
        min-width: auto;
        width: 100%;
    }
    
    .pagination {
        flex-wrap: wrap;
    }
    
    .search-section {
        position: relative;
        top: 0;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .search-filters .search-input,
    .search-filters .filter-select,
    .search-filters .search-btn {
        width: 100%;
    }
    
    .properties-section .properties-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    /* Mobile Float Buttons */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .chat-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
    
    .chat-box {
        width: calc(100vw - 40px);
        max-width: 350px;
        left: auto;
        right: 0;
    }
    
    /* Property filters mobile */
    .property-filters {
        flex-direction: column;
    }
    
    .property-filters select {
        width: 100%;
        min-width: auto;
    }
}

@media (max-width: 480px) {
    /* Small mobile adjustments */
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .verdmat-form {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    .calculator-main-card {
        padding: 20px;
    }
    
    .loan-type-btn {
        padding: 15px;
    }
    
    .loan-type-btn span {
        font-size: 1rem;
    }
    
    .main-result-display .result-amount {
        font-size: 1.6rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* ========================================
   Property Detail Modal
   ======================================== */

.property-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.property-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.property-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0,0,0,0.1);
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #333;
    z-index: 10;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(0,0,0,0.2);
    transform: scale(1.1);
}

.property-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.property-detail-gallery {
    position: relative;
}

.property-detail-main-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

.property-detail-info {
    padding: 30px;
}

.property-detail-info h2 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.property-detail-address {
    color: #718096;
    margin-bottom: 15px;
}

.property-detail-address i {
    color: var(--accent-color);
    margin-right: 8px;
}

.property-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.property-detail-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #f7fafc;
    border-radius: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 24px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.property-detail-description {
    margin-bottom: 25px;
}

.property-detail-description h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.property-detail-description p {
    color: #718096;
    line-height: 1.7;
}

.property-detail-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 25px;
    border-radius: 12px;
    color: white;
}

.property-detail-cta h3 {
    color: white;
    margin-bottom: 8px;
}

.property-detail-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 15px;
}

.property-detail-cta .btn-primary {
    background: white;
    color: var(--primary-color);
}

.property-detail-cta .btn-primary:hover {
    background: #f0f0f0;
}

.property-detail-cta .btn-outline {
    border-color: white;
    color: white;
}

.property-detail-cta .btn-outline:hover {
    background: rgba(255,255,255,0.1);
}

.property-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .property-modal {
        padding: 10px;
    }
    
    .property-modal-content {
        max-height: 95vh;
        border-radius: 15px;
    }
    
    .property-detail {
        grid-template-columns: 1fr;
    }
    
    .property-detail-main-image {
        min-height: 250px;
        border-radius: 15px 15px 0 0;
    }
    
    .property-detail-info {
        padding: 20px;
    }
    
    .property-detail-price {
        font-size: 1.5rem;
    }
    
    .property-detail-features {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }
    
    .property-detail-cta .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ========================================
   Property Detail Page (eign.html)
   ======================================== */

.property-page {
    padding: 100px 0 60px;
    min-height: 80vh;
    background: var(--bg-light);
}

.property-loading {
    text-align: center;
    padding: 100px 20px;
    color: var(--text-light);
}

.property-loading i {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.property-not-found {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.property-not-found i {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.property-not-found h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-not-found p {
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Property Detail Page Layout */
.property-detail-page {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* Gallery Section */
.property-gallery-section {
    padding: 20px;
}

.gallery-main-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #f0f0f0;
}

.gallery-main-wrapper img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.gallery-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 15px;
}

.gallery-next {
    right: 15px;
}

.gallery-counter {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.gallery-thumbs-wrapper {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.gallery-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition);
    border: 3px solid transparent;
}

.gallery-thumb:hover {
    opacity: 0.9;
}

.gallery-thumb.active {
    opacity: 1;
    border-color: var(--primary-color);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Property Info Section */
.property-info-section {
    padding: 30px;
    border-left: 1px solid var(--border-color);
}

.property-header {
    margin-bottom: 25px;
}

.property-header .property-badge {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.property-header .property-fnumer {
    display: inline-block;
    background: var(--bg-light);
    color: var(--text-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
}

.property-header h1 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.3;
}

.property-address {
    color: var(--text-light);
    font-size: 1rem;
}

.property-address i {
    color: var(--secondary-color);
    margin-right: 8px;
}

/* Price Box */
.property-price-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.price-value {
    font-size: 1.8rem;
    font-weight: 700;
}

.price-sub {
    display: block;
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 8px;
}

/* Amenities Section */
.property-amenities-section {
    margin-bottom: 25px;
}

.property-amenities-section h2 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenities-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.amenity-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    color: var(--text-color);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    border: 1px solid var(--border-color);
}

.amenity-tag i {
    color: var(--primary-color);
}

/* Features Grid */
.property-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.detail-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.detail-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 35px;
    text-align: center;
}

.detail-feature .feature-value {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.detail-feature .feature-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Description Section */
.property-description-section {
    margin-bottom: 30px;
}

.property-description-section h2 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.property-description-section p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Contact Section */
.property-contact-section {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
}

.property-contact-section h2 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-contact-section > p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-agent {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: var(--radius-md);
}

.agent-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.agent-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-large {
    padding: 15px 25px;
    font-size: 1rem;
}

.btn-whatsapp {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1fa855;
    border-color: #1fa855;
}

/* Back Link */
.back-to-list {
    margin-top: 30px;
    text-align: center;
}

/* Responsive - Property Page */
@media (max-width: 1024px) {
    .property-detail-page {
        grid-template-columns: 1fr;
    }
    
    .property-info-section {
        border-left: none;
        border-top: 1px solid var(--border-color);
    }
}

@media (max-width: 768px) {
    .property-page {
        padding: 80px 0 40px;
    }
    
    .gallery-main-wrapper img {
        height: 300px;
    }
    
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .property-header h1 {
        font-size: 1.3rem;
    }
    
    .property-features-grid {
        grid-template-columns: 1fr;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
}

