﻿/* ===========================
   BODY AND BASE STYLES
   =========================== */

:root {
    --primary-color: #0066cc;
    --secondary-color: #f39200;
    --dark-color: #333333;
    --light-color: #f5f5f5;
    --border-color: #e0e0e0;
    --footer-bg: #222222;
    --footer-text: #cccccc;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* ===========================
   HEADER SECTION
   =========================== */

.header-section {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    display: flex;
    justify-content: center;
}

    .header-section .navbar {
        width: 100%;
        max-width: 1200px;
        padding: 0 !important;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        border-bottom: 3px solid var(--primary-color);
        align-items: center;
    }

        .header-section .navbar .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 15px;
            padding-right: 15px;
        }

    .header-section .navbar-brand {
        padding: 10px 0;
        flex-shrink: 0;
    }

.logo-link {
    text-decoration: none;
}

.logo-placeholder {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.logo-img {
    max-height: 60px;
    max-width: 200px;
    width: auto;
    height: auto;
}

.header-contact {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    white-space: nowrap;
}

.contact-item {
    font-size: 14px;
    white-space: nowrap;
}

    .contact-item a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

        .contact-item a:hover {
            color: var(--secondary-color);
        }

.icon-ma.icon-contacto_b:before {
    background-position: 0 -104.9em;
    width: 2em;
    height: 2em;
    
}

.icon-ma:before {
    content: ' ';
    vertical-align: middle;
    display: inline-block;
    background-image: url(../Content/images/sprite.svg?v=1780923721);
    background-repeat: no-repeat;
    background-size: 9.6em 629.3em;
    font-size: 10px;
    margin-right: 8px;
}

/* ===========================
   NAVIGATION MENU
   =========================== */

.navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 !important;
}

.navbar-light {
    background-color: #ffffff !important;
    border-top: 3px solid var(--primary-color);
}

.navbar-nav {
    padding: 0;
}

.nav-link {
    color: rgb(116, 119, 124) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 8px !important;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

    .nav-link:hover {
        color: var(--primary-color) !important;
        border-bottom-color: var(--primary-color);
    }

    .nav-link.active {
        color: var(--primary-color) !important;
        border-bottom-color: var(--primary-color);
    }

.dropdown-toggle::after {
    border-top-color: var(--primary-color);
}

.dropdown-menu {
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
    color: rgb(116, 119, 124);
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

    .dropdown-item:hover {
        background-color: var(--light-color);
        color: var(--primary-color);
        padding-left: 25px;
    }

.dropdown-divider {
    margin: 5px 0;
}

/* ===========================
   MAIN CONTENT
   =========================== */

.main-content {
    flex: 1;
    padding: 30px 0;
    background-color: #ffffff;
}

    .main-content .container {
        max-width: 1200px;
    }

/* ===========================
   FOOTER SECTION
   =========================== */

.footer-section {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 40px 0 0;
    margin-top: auto;
}

.footer-content {
    padding: 30px 0;
    border-bottom: 1px solid #444;
}

.footer-section h5 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: var(--footer-text);
}

.footer-section a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

    .footer-section a:hover {
        color: var(--secondary-color);
    }

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 10px;
        font-size: 14px;
    }

    .footer-links a {
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
        padding-left: 0;
    }

        .footer-links a:hover {
            padding-left: 5px;
            color: var(--secondary-color);
        }

.footer-bottom {
    background-color: #1a1a1a;
    padding: 20px;
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        color: var(--footer-text);
        font-size: 13px;
    }

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

@media (max-width: 768px) {
    .header-contact {
        gap: 15px;
        padding-top: 15px;
        border-top: 1px solid var(--border-color);
    }

    .contact-item {
        font-size: 13px;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        padding: 10px 12px !important;
    }

    .dropdown-menu {
        background-color: var(--light-color);
        border: none;
    }

    .dropdown-item {
        color: var(--dark-color);
    }

    .footer-content {
        text-align: center;
    }

    .footer-links a {
        justify-content: center;
    }

        .footer-links a:hover {
            padding-left: 0;
        }
}

/* ===========================
   FORM STYLES
   =========================== */

input,
select,
textarea {
    max-width: 100%;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 8px 12px;
    font-size: 14px;
}

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--primary-color);
        outline: none;
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

/* ===========================
   UTILITY CLASSES
   =========================== */

/* ===========================
   UTILITY CLASSES
   =========================== */

.container {
    max-width: 1200px;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-section {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin: 0;
    opacity: 0.95;
}

/* ===========================
   SEARCH SECTION
   =========================== */

.search-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.filter-container {
    max-width: 100%;
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-select,
.form-control {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 14px;
}

    .form-select:focus,
    .form-control:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
    }

.btn-search {
    height: 100%;
    padding: 10px 20px !important;
    font-weight: 600;
}

.advanced-search-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
}

    .advanced-search-link:hover {
        text-decoration: underline;
        color: var(--secondary-color);
    }

/* ===========================
   SECTION TITLES
   =========================== */

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--dark-color);
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 4px;
        background-color: var(--primary-color);
        border-radius: 2px;
    }

/* ===========================
   FEATURED PROPERTIES SECTION
   =========================== */

.featured-properties {
    padding: 40px 0;
}

/* ===========================
   PROPERTY CARD (Large)
   =========================== */

.property-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .property-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

.property-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

    .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);
}

.energy-class {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #27ae60;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.property-status {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
}

.property-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.property-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

    .property-title a {
        color: var(--dark-color);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .property-title a:hover {
            color: var(--primary-color);
        }

.property-details {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.detail {
    display: flex;
    align-items: center;
    gap: 5px;
}

    .detail i {
        color: var(--primary-color);
    }

.property-location {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    margin-top: auto;
}

/* ===========================
   RECENT PROPERTIES SECTION
   =========================== */

.recent-properties {
    padding: 40px 0;
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
    margin: 40px 0;
}

/* ===========================
   PROPERTY CARD (Small)
   =========================== */

.property-card-small {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .property-card-small:hover {
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
        transform: translateY(-3px);
    }

.property-image-small {
    overflow: hidden;
    height: 180px;
    position: relative;
}

    .property-image-small img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.property-card-small:hover .property-image-small img {
    transform: scale(1.05);
}

.property-body-small {
    padding: 15px;
}

    .property-body-small h4 {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 8px;
        line-height: 1.4;
    }

        .property-body-small h4 a {
            color: var(--dark-color);
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .property-body-small h4 a:hover {
                color: var(--primary-color);
            }

.property-price-small {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.period {
    font-size: 12px;
    color: #666;
}

.property-details-small {
    display: flex;
    gap: 10px;
    font-size: 12px;
    color: #666;
    margin-bottom: 8px;
}

    .property-details-small i {
        color: var(--primary-color);
    }

.property-location-small {
    font-size: 12px;
    color: #888;
    margin: 0;
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    padding: 10px 20px;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

    .btn-primary:hover {
        background-color: #0052a3;
        color: white;
    }

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

    .btn-secondary:hover {
        background-color: #d87e00;
        color: white;
    }

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

    .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: white;
    }

.btn-sm {
    padding: 6px 12px;
    font-size: 12px;
}

.btn-lg {
    padding: 12px 30px;
    font-size: 16px;
}

.btn-search {
    background-color: var(--primary-color);
    color: white;
}

    .btn-search:hover {
        background-color: #0052a3;
    }

/* ===========================
   CTA SECTION
   =========================== */

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #cc6f00 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin: 40px 0;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

/* ===========================
   PAGE HEADER
   =========================== */

.page-header {
    background: linear-gradient(135deg, #0066cc 0%, #004499 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 8px;
}

    .page-header h1 {
        font-size: 40px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-header p {
        font-size: 18px;
        margin: 0;
        opacity: 0.95;
    }

/* ===========================
   PAGINATION
   =========================== */

.pagination-nav {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.pagination {
    gap: 5px;
}

.page-link {
    color: var(--primary-color);
    border-color: var(--border-color);
    padding: 8px 12px;
}

    .page-link:hover {
        color: white;
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

.page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* ===========================
   SOLUTION CARDS
   =========================== */

.solution-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

    .solution-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-10px);
        border-color: var(--primary-color);
    }

.solution-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.solution-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ===========================
   CONSULTANT CARDS
   =========================== */

.consultant-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

    .consultant-card:hover {
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        transform: translateY(-5px);
    }

.consultant-image {
    overflow: hidden;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .consultant-image img {
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.consultant-card:hover .consultant-image img {
    transform: scale(1.05);
}

.consultant-info {
    padding: 20px;
}

    .consultant-info h3 {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 5px;
        color: var(--dark-color);
    }

.consultant-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 14px;
}

.consultant-bio {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.consultant-contact {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

    .consultant-contact p {
        font-size: 13px;
        margin-bottom: 8px;
        justify-content: center;
    }

    .consultant-contact a {
        color: var(--primary-color);
        text-decoration: none;
        color: #666;
        display: flex;
    }

        .consultant-contact a:hover {
            color: var(--secondary-color);
        }

.numero {
    font-size: 14px;
    padding-left: 5px;
}

/* ===========================
   ABOUT PAGE STYLES
   =========================== */

.values-list {
    list-style: none;
    padding: 0;
}

    .values-list li {
        padding-left: 30px;
        margin-bottom: 15px;
        position: relative;
        font-size: 14px;
        line-height: 1.6;
    }

        .values-list li::before {
            content: '\f058';
            font-family: FontAwesome;
            position: absolute;
            left: 0;
            color: var(--primary-color);
        }

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
    }

.stats-box {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
}

.stat-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-item h4 {
        color: var(--primary-color);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 5px;
    }

    .stat-item p {
        color: #666;
        font-size: 14px;
        margin: 0;
    }

.services-section {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 40px;
}

.service-box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

    .service-box:hover {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transform: translateY(-3px);
    }

    .service-box h4 {
        color: var(--primary-color);
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 600;
    }

    .service-box i {
        margin-right: 10px;
    }

    .service-box p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }

/* ===========================
   CONTACT PAGE STYLES
   =========================== */

.contact-info-box {
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
}

    .contact-info-box h3 {
        color: var(--dark-color);
        margin-bottom: 25px;
        font-size: 20px;
        font-weight: 600;
    }

.contact-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

    .contact-item:last-child {
        border-bottom: none;
    }

    .contact-item h4 {
        color: var(--primary-color);
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact-item i {
        margin-right: 0px;
    }

    .contact-item p {
        font-size: 14px;
        color: #666;
        margin: 0;
        line-height: 1.6;
    }

    .contact-item a {
        color: var(--primary-color);
        text-decoration: none;
    }

        .contact-item a:hover {
            color: var(--secondary-color);
        }

.contact-form-box {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
}

    .contact-form-box h3 {
        color: var(--dark-color);
        margin-bottom: 15px;
        font-size: 20px;
        font-weight: 600;
    }

    .contact-form-box p {
        color: #666;
        margin-bottom: 25px;
        font-size: 14px;
    }

/* reCAPTCHA Styles */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

/* Terms and Conditions Checkbox */
.form-check {
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    margin: 15px 0;
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
}

.form-check-input {
    margin-top: 0px;
    margin-right: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    min-width: 18px;
    flex-shrink: 0;
    border: none;
}

.form-check-label {
    font-size: 14px;
    cursor: pointer;
    color: var(--dark-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    flex: 1;
}

.form-check .form-check-input {
    float: left;
    margin-left: 0px;
}

.form-check-label strong {
    font-weight: 600;
}

.form-check-label a {
    color: var(--primary-color);
    text-decoration: none;
}

    .form-check-label a:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

.map-section {
    text-align: center;
    padding: 40px 0;
}

.map-placeholder {
    background-color: #f0f0f0;
    border: 2px dashed var(--border-color);
    border-radius: 8px;
    padding: 60px 20px;
    color: #999;
}

    .map-placeholder i {
        font-size: 48px;
        margin-bottom: 15px;
        color: var(--primary-color);
        display: block;
    }

.recruitment-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004499 100%);
    color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

    .recruitment-section h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .recruitment-section p {
        font-size: 16px;
        margin-bottom: 25px;
        line-height: 1.6;
    }

/* ===========================
   RESPONSIVE ADJUSTMENTS
   =========================== */

@media (max-width: 768px) {
    /* ===========================
       HEADER AND NAVIGATION - Mobile
       =========================== */
    .main-content {
        padding: 20px 0;
    }

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* ===========================
       HERO SECTION - Mobile
       =========================== */
    .hero-section {
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 16px;
    }

    /* ===========================
       SEARCH SECTION - Mobile
       =========================== */
    .search-section {
        padding: 20px;
        margin-bottom: 30px;
    }

    .filter-container {
        max-width: 100%;
    }

    .filter-container .row {
        flex-direction: column;
    }

    .filter-container .col-md-3 {
        width: 100% !important;
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .filter-container .col-md-3:last-child {
        margin-bottom: 0;
    }

    .form-label {
        font-size: 13px;
        margin-bottom: 8px;
        font-weight: 600;
        color: var(--dark-color);
        display: block;
    }

    .form-select,
    .form-control {
        padding: 12px;
        font-size: 14px;
        margin-bottom: 0;
        width: 100%;
        border: 1px solid var(--border-color);
        border-radius: 4px;
    }

    .form-select {
        height: auto;
        min-height: 44px;
    }

    .btn-search {
        padding: 12px 20px !important;
        font-size: 14px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .advanced-search-link {
        margin-top: 15px;
        display: inline-block;
    }

    /* ===========================
       SECTION TITLES - Mobile
       =========================== */
    .section-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

        .section-title::after {
            width: 50px;
            height: 3px;
        }

    /* ===========================
       PROPERTY CARDS - Mobile
       =========================== */
    .featured-properties,
    .recent-properties {
        padding: 20px 0;
    }

    .property-image {
        height: 180px;
    }

    .property-card {
        margin-bottom: 25px;
    }

    .property-body {
        padding: 16px;
    }

    .property-price {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .property-title {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .property-title a {
        display: block;
    }

    .property-details {
        gap: 8px;
        font-size: 12px;
        margin-bottom: 10px;
        flex-wrap: wrap;
    }

    .property-location {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .property-card .btn {
        width: 100%;
        padding: 8px 12px;
        font-size: 12px;
    }

    /* Property Small Cards - Mobile */
    .recent-properties {
        background-color: transparent;
        padding: 0;
        margin: 30px 0;
    }

    .property-image-small {
        height: 140px;
    }

    .property-card-small {
        margin-bottom: 20px;
    }

    .property-body-small {
        padding: 14px;
    }

        .property-body-small h4 {
            font-size: 13px;
            margin-bottom: 8px;
            line-height: 1.4;
        }

    .property-price-small {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .property-details-small {
        gap: 8px;
        font-size: 11px;
        margin-bottom: 8px;
    }

    .property-location-small {
        font-size: 11px;
    }

    /* ===========================
       PAGE HEADER - Mobile
       =========================== */
    .page-header {
        padding: 40px 20px;
        margin-bottom: 30px;
    }

        .page-header h1 {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .page-header p {
            font-size: 16px;
        }

    /* ===========================
       CONSULTANT CARDS - Mobile
       =========================== */
    .consultant-card {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .consultant-image {
        height: 220px;
    }

    .consultant-info {
        padding: 18px;
    }

        .consultant-info h3 {
            font-size: 19px;
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--dark-color);
        }

    .consultant-title {
        font-size: 13px;
        font-weight: 500;
        color: var(--primary-color);
        margin-bottom: 12px;
    }

    .consultant-bio {
        font-size: 13px;
        color: #666;
        margin-bottom: 12px;
        line-height: 1.5;
    }

    .consultant-contact {
        border-top: 1px solid var(--border-color);
        padding-top: 12px;
        margin-top: 12px;
    }

        .consultant-contact p {
            font-size: 12px;
            margin-bottom: 8px;
            display: flex;
            justify-content: center;
        }

        .consultant-contact a {
            font-size: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .numero {
        font-size: 12px;
        padding-left: 5px;
    }

    /* ===========================
       SOLUTION CARDS - Mobile
       =========================== */
    .solution-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .solution-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .solution-card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .solution-card p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    /* ===========================
       CONTACT PAGE - Mobile
       =========================== */
    .contact-info-box,
    .contact-form-box {
        margin-bottom: 25px;
        padding: 20px;
    }

        .contact-info-box h3,
        .contact-form-box h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .contact-form-box p {
            font-size: 13px;
        }

    .contact-item {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }

        .contact-item h4 {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .contact-item p {
            font-size: 13px;
        }

    .form-check {
        padding: 12px;
        margin: 12px 0;
    }

    .form-check-label {
        font-size: 13px;
        line-height: 1.5;
    }

    .map-placeholder {
        padding: 40px 15px;
    }

        .map-placeholder i {
            font-size: 36px;
        }

    /* ===========================
       STATS - Mobile
       =========================== */
    .stat-item {
        padding: 15px 0;
    }

        .stat-item h4 {
            font-size: 24px;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 13px;
        }

    /* ===========================
       SERVICES - Mobile
       =========================== */
    .services-section {
        padding: 20px;
    }

    .service-box {
        padding: 16px;
        margin-bottom: 15px;
    }

        .service-box h4 {
            font-size: 15px;
            margin-bottom: 12px;
        }

        .service-box p {
            font-size: 13px;
        }

    /* ===========================
       CTA SECTION - Mobile
       =========================== */
    .cta-section {
        padding: 40px 20px;
        margin: 30px 0;
    }

    .cta-content h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* ===========================
       RECRUITMENT SECTION - Mobile
       =========================== */
    .recruitment-section {
        padding: 30px 20px;
        margin-top: 30px;
        border-radius: 8px;
    }

        .recruitment-section h2 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .recruitment-section p {
            font-size: 14px;
            margin-bottom: 20px;
        }

    .btn {
        padding: 10px 18px;
        font-size: 13px;
        width: auto;
    }

    .btn-lg {
        padding: 10px 20px;
        font-size: 14px;
    }

    /* ===========================
       BUTTONS - Mobile
       =========================== */
    .btn-primary,
    .btn-secondary {
        display: inline-block;
    }

    /* ===========================
       ABOUT PAGE - Mobile
       =========================== */
    .about-image {
        margin-bottom: 20px;
    }

    .values-list {
        margin-bottom: 20px;
    }

        .values-list li {
            padding-left: 25px;
            margin-bottom: 12px;
            font-size: 13px;
        }

    .stats-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    /* ===========================
       FOOTER - Mobile (enhancements)
       =========================== */
    .footer-section h5 {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 13px;
    }

    .footer-links li {
        font-size: 13px;
        margin-bottom: 8px;
    }

    /* ===========================
       PAGINATION - Mobile
       =========================== */
    .pagination {
        flex-wrap: wrap;
    }

    .page-link {
        padding: 6px 10px;
        font-size: 12px;
    }

    /* ===========================
       PRIVACY PAGE - Mobile
       =========================== */
    .privacy-content {
        line-height: 1.8;
    }

    .privacy-section {
        background-color: #f9f9f9;
        padding: 20px;
        border-radius: 8px;
        border-left: 4px solid var(--primary-color);
        margin-bottom: 20px;
    }

        .privacy-section h2 {
            color: var(--primary-color);
            margin-top: 20px;
            margin-bottom: 15px;
            font-size: 22px;
            font-weight: 600;
        }

        .privacy-section h3 {
            color: var(--dark-color);
            margin-top: 18px;
            margin-bottom: 12px;
            font-size: 16px;
            font-weight: 600;
            border-bottom: 2px solid var(--light-color);
            padding-bottom: 8px;
        }

        .privacy-section p {
            font-size: 13px;
            color: var(--dark-color);
            margin-bottom: 12px;
        }

        .privacy-section ol,
        .privacy-section ul {
            font-size: 13px;
            margin-bottom: 12px;
            padding-left: 25px;
        }

        .privacy-section li {
            margin-bottom: 8px;
            color: var(--dark-color);
        }

    .box-info {
        background-color: #e8f4f8;
        border-left: 4px solid var(--primary-color);
        border-radius: 4px;
        padding: 15px;
        margin-bottom: 15px;
    }

    .contact-info {
        background-color: #e8f4f8;
        border-left: 4px solid var(--primary-color);
        padding: 15px;
        margin-bottom: 15px;
    }

        .contact-info a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
        }

            .contact-info a:hover {
                color: var(--secondary-color);
                text-decoration: underline;
            }
}

/* ===========================
   EXTRA SMALL SCREENS (<576px)
   =========================== */

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 15px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .search-section {
        padding: 15px;
    }

    .filter-container .col-md-3 {
        width: 100% !important;
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .form-select,
    .form-control {
        padding: 10px;
        font-size: 13px;
        min-height: 40px;
    }

    .btn-search {
        padding: 10px 15px !important;
        font-size: 13px;
        height: 40px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .page-header {
        padding: 30px 15px;
    }

        .page-header h1 {
            font-size: 24px;
        }

        .page-header p {
            font-size: 14px;
        }

    .consultant-image {
        height: 180px;
    }

    .consultant-info {
        padding: 15px;
    }

        .consultant-info h3 {
            font-size: 17px;
        }

    .consultant-title {
        font-size: 12px;
    }

    .consultant-bio {
        font-size: 12px;
        line-height: 1.4;
    }

    .consultant-contact p,
    .consultant-contact a {
        font-size: 11px;
    }

    .numero {
        font-size: 11px;
    }

    .property-image {
        height: 150px;
    }

    .property-card {
        margin-bottom: 15px;
    }

    .property-body {
        padding: 12px;
    }

    .property-price {
        font-size: 18px;
    }

    .property-title {
        font-size: 14px;
    }

    .property-details {
        gap: 8px;
        font-size: 11px;
    }

    .property-image-small {
        height: 120px;
    }

    .property-body-small {
        padding: 10px;
    }

        .property-body-small h4 {
            font-size: 12px;
            margin-bottom: 6px;
        }

    .property-price-small {
        font-size: 14px;
    }

    .property-details-small {
        gap: 6px;
        font-size: 10px;
    }

    .property-location-small {
        font-size: 10px;
    }

    .solution-card {
        padding: 15px;
    }

    .solution-icon {
        font-size: 32px;
    }

    .solution-card h3 {
        font-size: 16px;
    }

    .solution-card p {
        font-size: 12px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 15px;
    }

        .contact-info-box h3,
        .contact-form-box h3 {
            font-size: 16px;
        }

    .contact-item {
        margin-bottom: 15px;
    }

        .contact-item h4 {
            font-size: 12px;
        }

        .contact-item p {
            font-size: 12px;
        }

    .stat-item {
        padding: 12px 0;
    }

        .stat-item h4 {
            font-size: 20px;
        }

    .stat-item p {
        font-size: 12px;
    }

    .service-box {
        padding: 12px;
    }

        .service-box h4 {
            font-size: 14px;
        }

        .service-box p {
            font-size: 12px;
        }

    .cta-section {
        padding: 30px 15px;
    }

    .cta-content h2 {
        font-size: 20px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .recruitment-section {
        padding: 25px 15px;
    }

        .recruitment-section h2 {
            font-size: 18px;
        }

        .recruitment-section p {
            font-size: 13px;
        }

    .btn {
        padding: 8px 15px;
        font-size: 12px;
    }

    .btn-lg {
        padding: 8px 16px;
        font-size: 13px;
    }

    .values-list li {
        padding-left: 20px;
        font-size: 12px;
    }

    .services-section {
        padding: 15px;
    }

    .privacy-section {
        padding: 15px;
    }

        .privacy-section h2 {
            font-size: 18px;
            margin-top: 15px;
        }

        .privacy-section h3 {
            font-size: 14px;
            margin-top: 12px;
        }

        .privacy-section p,
        .privacy-section li {
            font-size: 12px;
        }

        .privacy-section ol,
        .privacy-section ul {
            font-size: 12px;
            padding-left: 20px;
        }

    .box-info,
    .contact-info {
        padding: 12px;
    }
}

