/**
* Template Name: HomeSpace
* Template URL: https://bootstrapmade.com/homespace-bootstrap-real-estate-template/
* Updated: Jul 05 2025 with Bootstrap v5.3.7
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/


/* Fonts */

:root {
    --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway", sans-serif;
    --nav-font: "Montserrat", sans-serif;
}


/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */

:root {
    --background-color: #ffffff;
    /* OK */
    --default-color: #000000;
    /* Texte principal => noir */
    --heading-color: #000000;
    /* Titres => noir */
    --accent-color: #ff66cc;
    /* Boutons, liens => rose */
    --surface-color: #ffffff;
    /* Fond des cartes/box => blanc */
    --contrast-color: #ffffff;
    /* Texte sur fond rose ou noir => blanc */
}

:root {
    --nav-color: #ffffff;
    /* Liens navbar => blanc */
    --nav-hover-color: #ff66cc;
    /* Hover navbar => rose */
    --nav-mobile-background-color: #000000;
    /* Menu mobile => fond noir */
    --nav-dropdown-background-color: #000000;
    /* Menu déroulant => fond noir */
    --nav-dropdown-color: #ffffff;
    /* Texte menu déroulant => blanc */
    --nav-dropdown-hover-color: #ff66cc;
    /* Hover menu déroulant => rose */
}

.light-background {
    --background-color: #ffffff;
    /* fond blanc */
    --surface-color: #ffffff;
    /* surface blanche */
}

.dark-background {
    --background-color: #000000;
    /* fond noir */
    --default-color: #ffffff;
    /* texte blanc */
    --heading-color: #ffffff;
    /* titres blancs */
    --surface-color: #1a1a1a;
    /* surface gris foncé */
    --contrast-color: #ffffff;
    /* pour les textes contrastés */
}

.accent-background {
    --background-color: #ff66cc;
    /* fond rose */
    --default-color: #ffffff;
    /* texte blanc */
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    /* éléments accentués = blanc ici */
    --surface-color: #e055b2;
    /* surface rose foncé */
    --contrast-color: #ffffff;
}


/* Smooth scroll */

:root {
    scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.2s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}


/* PHP Email Form Messages
------------------------------*/

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
    --background-color: #000000;
    /* fond noir */
    --default-color: #ffffff;
    /* texte blanc */
    --heading-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    height: 140px;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 32px;
    margin-right: 8px;
}

.header .logo svg {
    height: 32px;
    margin-right: 6px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/* Navmenu - Desktop */

@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.2s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.2s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.2s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}


/* Navmenu - Mobile */

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.2s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.2s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.2s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.2s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.2s;
    }
    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    max-height: 40px;
    margin-right: 6px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: var(--heading-font);
}

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-right: 10px;
    transition: 0.2s;
}

.footer .social-links a:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 6px;
    font-size: 13px;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/

#preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: var(--background-color);
    transition: all 0.6s ease-out;
    width: 100%;
    height: 100vh;
}

#preloader:before,
#preloader:after {
    content: "";
    position: absolute;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
    animation-delay: -0.5s;
}

@keyframes animate-preloader {
    0% {
        width: 10px;
        height: 10px;
        top: calc(50% - 5px);
        left: calc(50% - 5px);
        opacity: 1;
    }
    100% {
        width: 72px;
        height: 72px;
        top: calc(50% - 36px);
        left: calc(50% - 36px);
        opacity: 0;
    }
}


/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 25px 0;
    position: relative;
}

.page-title h1 {
    font-size: 24px;
    font-weight: 700;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/

section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}


/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.hero {
    padding-top: 80px;
    background: linear-gradient(45deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 100%);
    z-index: 1;
}

.hero .hero-wrapper {
    position: relative;
    z-index: 2;
    height: 480px;
}

.hero .hero-content .content-header {
    margin-bottom: 48px;
}

.hero .hero-content .content-header .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.hero .hero-content .content-header .hero-label i {
    font-size: 16px;
}

.hero .hero-content .content-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .hero .hero-content .content-header h1 {
        font-size: 2.4rem;
    }
}

.hero .hero-content .content-header p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.hero .hero-content .search-container {
    background: var(--surface-color);
    border-radius: 24px;
    padding: 36px;
    box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 92%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
    margin-bottom: 40px;
}

.hero .hero-content .search-container .search-header {
    text-align: center;
    margin-bottom: 32px;
}

.hero .hero-content .search-container .search-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.hero .hero-content .search-container .search-header p {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
    font-size: 15px;
}

.hero .hero-content .search-container .property-search-form .search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .hero .hero-content .search-container .property-search-form .search-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.hero .hero-content .search-container .property-search-form .search-field {
    position: relative;
}

.hero .hero-content .search-container .property-search-form .search-field .field-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.hero .hero-content .search-container .property-search-form .search-field input,
.hero .hero-content .search-container .property-search-form .search-field select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 88%);
    border-radius: 12px;
    font-size: 15px;
    background: transparent;
    color: var(--default-color);
    transition: all 0.2s ease;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.hero .hero-content .search-container .property-search-form .search-field input:focus,
.hero .hero-content .search-container .property-search-form .search-field select:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.hero .hero-content .search-container .property-search-form .search-field input::placeholder,
.hero .hero-content .search-container .property-search-form .search-field select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.hero .hero-content .search-container .property-search-form .search-field select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 44px;
}

.hero .hero-content .search-container .property-search-form .search-field .field-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: color-mix(in srgb, var(--accent-color), transparent 30%);
    font-size: 16px;
    margin-top: 12px;
    pointer-events: none;
}

.hero .hero-content .search-container .property-search-form .search-btn {
    width: 100%;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.2s ease;
}

.hero .hero-content .search-container .property-search-form .search-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 65%);
}

.hero .hero-content .search-container .property-search-form .search-btn i {
    font-size: 18px;
}

.hero .hero-content .achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 576px) {
    .hero .hero-content .achievement-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.hero .hero-content .achievement-grid .achievement-item {
    text-align: center;
    padding: 20px 16px;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.hero .hero-content .achievement-grid .achievement-item .achievement-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 8px;
}

.hero .hero-content .achievement-grid .achievement-item .achievement-text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 600;
}

.hero .hero-visual .visual-container {
    position: relative;
    height: 650px;
}

.hero .hero-visual .visual-container .featured-property {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 480px;
    box-shadow: 0 30px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.hero .hero-visual .visual-container .featured-property img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-visual .visual-container .featured-property .property-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 40px 24px 24px;
    color: white;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-price {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-details span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.9;
}

.hero .hero-visual .visual-container .featured-property .property-info .property-details span i {
    font-size: 13px;
}

.hero .hero-visual .visual-container .overlay-images .overlay-img {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 80%);
    border: 4px solid var(--surface-color);
}

.hero .hero-visual .visual-container .overlay-images .overlay-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero .hero-visual .visual-container .overlay-images .overlay-1 {
    top: 60px;
    right: -40px;
    width: 140px;
    height: 140px;
}

.hero .hero-visual .visual-container .overlay-images .overlay-2 {
    top: 240px;
    right: -20px;
    width: 120px;
    height: 120px;
}

.hero .hero-visual .visual-container .agent-card {
    margin-top: 20px;
    background: var(--surface-color);
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero .hero-visual .visual-container .agent-card .agent-profile {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info h4 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info p {
    margin: 0 0 8px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating .stars {
    display: flex;
    gap: 2px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating .stars i {
    color: #ffc107;
    font-size: 11px;
}

.hero .hero-visual .visual-container .agent-card .agent-profile .agent-info .agent-rating .rating-text {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 600;
}

.hero .hero-visual .visual-container .agent-card .contact-agent-btn {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.hero .hero-visual .visual-container .agent-card .contact-agent-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: scale(1.1);
}

.hero .hero-visual .visual-container .agent-card .contact-agent-btn i {
    font-size: 16px;
}

@media (max-width: 992px) {
    .hero {
        padding: 100px 0 60px;
    }
    .hero .hero-visual {
        margin-top: 60px;
    }
    .hero .hero-visual .visual-container {
        height: 500px;
    }
    .hero .hero-visual .visual-container .featured-property {
        height: 380px;
    }
    .hero .hero-visual .visual-container .overlay-images .overlay-1 {
        top: 40px;
        right: -20px;
        width: 120px;
        height: 120px;
    }
    .hero .hero-visual .visual-container .overlay-images .overlay-2 {
        top: 180px;
        right: 0;
        width: 100px;
        height: 100px;
    }
    .hero .hero-visual .visual-container .agent-card {
        bottom: -10px;
        left: -20px;
        width: 280px;
        padding: 16px;
    }
    .hero .hero-visual .visual-container .agent-card .agent-profile .agent-photo {
        width: 50px;
        height: 50px;
    }
    .hero .search-container {
        padding: 28px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 80px 0 40px;
    }
    .hero .hero-content .content-header .hero-label {
        padding: 10px 16px;
        font-size: 14px;
    }
    .hero .search-container {
        padding: 20px;
    }
    .hero .search-container .search-header h3 {
        font-size: 1.3rem;
    }
    .hero .achievement-grid .achievement-item {
        padding: 16px 12px;
    }
    .hero .achievement-grid .achievement-item .achievement-number {
        font-size: 1.8rem;
    }
    .hero .hero-visual .visual-container .featured-property {
        height: 300px;
    }
    .hero .hero-visual .visual-container .featured-property .property-info {
        padding: 30px 20px 20px;
    }
    .hero .hero-visual .visual-container .featured-property .property-info .property-price {
        font-size: 1.5rem;
    }
    .hero .hero-visual .visual-container .overlay-images .overlay-1 {
        width: 100px;
        height: 100px;
    }
    .hero .hero-visual .visual-container .overlay-images .overlay-2 {
        width: 80px;
        height: 80px;
    }
    .hero .hero-visual .visual-container .agent-card {
        width: 100%;
        padding: 14px;
    }
    .hero .hero-visual .visual-container .agent-card .agent-profile {
        gap: 12px;
    }
    .hero .hero-visual .visual-container .agent-card .agent-profile .agent-info h4 {
        font-size: 15px;
    }
}


/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/

.home-about .image-gallery {
    position: relative;
    height: 100%;
}

.home-about .image-gallery .primary-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.home-about .image-gallery .primary-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .home-about .image-gallery .primary-image img {
        height: 300px;
    }
}

.home-about .image-gallery .primary-image .experience-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border-radius: 16px;
    padding: 1.5rem;
    color: var(--contrast-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .home-about .image-gallery .primary-image .experience-badge {
        top: 1rem;
        left: 1rem;
        padding: 1rem;
    }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content {
    text-align: center;
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
    .home-about .image-gallery .primary-image .experience-badge .badge-content .number {
        font-size: 1.5rem;
    }
}

.home-about .image-gallery .primary-image .experience-badge .badge-content .text {
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.2;
    opacity: 0.9;
}

.home-about .image-gallery .secondary-image {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 60%;
    border-radius: 16px;
    overflow: hidden;
    border: 4px solid var(--surface-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
    .home-about .image-gallery .secondary-image {
        display: none;
    }
}

.home-about .image-gallery .secondary-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.home-about .content {
    padding-left: 2rem;
}

@media (max-width: 992px) {
    .home-about .content {
        padding-left: 0;
        margin-top: 2rem;
    }
}

.home-about .content .section-header {
    margin-bottom: 2rem;
}

.home-about .content .section-header .section-label {
    display: inline-block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.home-about .content .section-header h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .home-about .content .section-header h2 {
        font-size: 1.8rem;
    }
}

.home-about .content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.home-about .content .achievements-list {
    margin-bottom: 2.5rem;
}

.home-about .content .achievements-list .achievement-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.home-about .content .achievements-list .achievement-item:last-child {
    margin-bottom: 0;
}

.home-about .content .achievements-list .achievement-item .achievement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about .content .achievements-list .achievement-item .achievement-icon i {
    font-size: 1.4rem;
    color: var(--accent-color);
}

.home-about .content .achievements-list .achievement-item .achievement-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--heading-color);
}

.home-about .content .achievements-list .achievement-item .achievement-content p {
    font-size: 0.9rem;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.home-about .content .action-section {
    display: flex;
    align-items: center;
    gap: 2rem;
}

@media (max-width: 768px) {
    .home-about .content .action-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
}

.home-about .content .action-section .btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    color: var(--contrast-color);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.home-about .content .action-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    color: var(--contrast-color);
}

.home-about .content .action-section .btn-cta:hover i {
    transform: translateX(3px);
}

.home-about .content .action-section .btn-cta i {
    transition: transform 0.2s ease;
}

.home-about .content .action-section .contact-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.home-about .content .action-section .contact-info .contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-about .content .action-section .contact-info .contact-icon i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.home-about .content .action-section .contact-info .contact-details {
    display: flex;
    flex-direction: column;
}

.home-about .content .action-section .contact-info .contact-details span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0.1rem;
}

.home-about .content .action-section .contact-info .contact-details strong {
    font-size: 1rem;
    color: var(--heading-color);
    font-weight: 700;
}


/*--------------------------------------------------------------
# Featured Properties Section
--------------------------------------------------------------*/

.featured-properties .featured-property-main {
    background-color: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.featured-properties .featured-property-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.featured-properties .featured-property-main .property-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.featured-properties .featured-property-main .property-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-properties .featured-property-main .property-hero:hover img {
    transform: scale(1.08);
}

.featured-properties .featured-property-main .property-hero .property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 25px;
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-badge-main {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-badge-main.premium {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    box-shadow: 0 4px 15px rgba(111, 66, 193, 0.3);
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-stats {
    display: flex;
    gap: 20px;
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-stats .stat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 14px;
    border-radius: 20px;
}

.featured-properties .featured-property-main .property-hero .property-overlay .property-stats .stat-item i {
    font-size: 16px;
}

.featured-properties .featured-property-main .property-hero-content {
    padding: 30px;
}

.featured-properties .featured-property-main .property-hero-content .property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info {
    flex: 1;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 a:hover {
    color: var(--accent-color);
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info .property-address {
    display: flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    font-size: 16px;
    font-weight: 500;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-info .property-address i {
    color: var(--accent-color);
    font-size: 18px;
}

.featured-properties .featured-property-main .property-hero-content .property-header .property-price-main {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
    color: var(--contrast-color);
    padding: 15px 25px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(54, 144, 231, 0.3);
}

.featured-properties .featured-property-main .property-hero-content .property-description {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    margin-bottom: 25px;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-primary-custom {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
    color: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(54, 144, 231, 0.3);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(54, 144, 231, 0.4);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-outline-custom {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 12px 26px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .btn-outline-custom:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info .listing-status {
    background-color: color-mix(in srgb, #28a745, transparent 85%);
    color: #28a745;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info .listing-status.for-sale {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
}

.featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info .listing-date {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

.featured-properties .properties-sidebar .sidebar-property-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image:hover img {
    transform: scale(1.05);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--contrast-color);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge.hot {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge.new {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-image .sidebar-property-badge.featured {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), blue 20%));
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content {
    padding: 20px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content h4 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content h4 a:hover {
    color: var(--accent-color);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    margin-bottom: 12px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-location i {
    color: var(--accent-color);
    font-size: 14px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs span i {
    color: var(--accent-color);
    font-size: 11px;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row .sidebar-price {
    font-size: 18px;
    font-weight: 800;
    color: var(--heading-color);
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row .sidebar-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.2s ease;
}

.featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-price-row .sidebar-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.featured-properties .property-card-horizontal {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
}

.featured-properties .property-card-horizontal:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.featured-properties .property-card-horizontal .property-image-horizontal {
    position: relative;
    width: 200px;
    min-width: 200px;
    overflow: hidden;
}

.featured-properties .property-card-horizontal .property-image-horizontal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.featured-properties .property-card-horizontal .property-image-horizontal:hover img {
    transform: scale(1.05);
}

.featured-properties .property-card-horizontal .property-image-horizontal .property-badge-horizontal {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--contrast-color);
}

.featured-properties .property-card-horizontal .property-image-horizontal .property-badge-horizontal.exclusive {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
}

.featured-properties .property-card-horizontal .property-image-horizontal .property-badge-horizontal.new {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.featured-properties .property-card-horizontal .property-content-horizontal {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-properties .property-card-horizontal .property-content-horizontal h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.featured-properties .property-card-horizontal .property-content-horizontal h3 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-properties .property-card-horizontal .property-content-horizontal h3 a:hover {
    color: var(--accent-color);
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-location-horizontal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 15px;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-location-horizontal i {
    color: var(--accent-color);
    font-size: 15px;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 13px;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-features .feature {
    display: flex;
    align-items: center;
    gap: 5px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-features .feature i {
    color: var(--accent-color);
    font-size: 12px;
}

.featured-properties .property-card-horizontal .property-content-horizontal p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 20px;
    flex: 1;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .property-price-horizontal {
    font-size: 22px;
    font-weight: 800;
    color: var(--heading-color);
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .btn-view-horizontal {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .btn-view-horizontal:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .featured-properties .property-card-horizontal {
        flex-direction: column;
    }
    .featured-properties .property-card-horizontal .property-image-horizontal {
        width: 100%;
        height: 200px;
    }
    .featured-properties .property-card-horizontal .property-content-horizontal {
        padding: 20px;
    }
    .featured-properties .property-card-horizontal .property-content-horizontal .property-features {
        flex-wrap: wrap;
    }
    .featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    .featured-properties .property-card-horizontal .property-content-horizontal .property-footer-horizontal .btn-view-horizontal {
        text-align: center;
    }
}

@media (max-width: 992px) {
    .featured-properties .featured-property-main .property-hero-content .property-header {
        flex-direction: column;
        gap: 20px;
    }
    .featured-properties .featured-property-main .property-hero-content .property-header .property-price-main {
        align-self: flex-start;
    }
    .featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info {
        margin-left: 0;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .featured-properties .featured-property-main .property-hero {
        height: 300px;
    }
    .featured-properties .featured-property-main .property-hero .property-overlay {
        padding: 20px;
    }
    .featured-properties .featured-property-main .property-hero .property-overlay .property-stats {
        flex-direction: column;
        gap: 10px;
    }
    .featured-properties .featured-property-main .property-hero-content {
        padding: 25px;
    }
    .featured-properties .featured-property-main .property-hero-content .property-header .property-info h2 {
        font-size: 24px;
    }
    .featured-properties .featured-property-main .property-hero-content .property-header .property-price-main {
        font-size: 20px;
        padding: 12px 20px;
    }
    .featured-properties .featured-property-main .property-hero-content .property-actions-main {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }
    .featured-properties .featured-property-main .property-hero-content .property-actions-main .property-listing-info {
        flex-direction: row;
        justify-content: space-between;
    }
    .featured-properties .properties-sidebar .sidebar-property-card .sidebar-property-content .sidebar-specs {
        flex-wrap: wrap;
    }
}


/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/

.featured-services .service-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    min-height: 280px;
}

.featured-services .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    transition: width 0.4s ease;
    z-index: 1;
}

.featured-services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-services .service-card:hover::before {
    width: 4px;
}

.featured-services .service-card:hover .service-visual img {
    transform: scale(1.05);
}

.featured-services .service-card:hover .service-icon {
    background: var(--accent-color);
    transform: scale(1.1);
}

.featured-services .service-card:hover .service-icon i {
    color: var(--contrast-color);
}

.featured-services .service-card .service-icon {
    width: 64px;
    height: 64px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
}

.featured-services .service-card .service-icon i {
    font-size: 28px;
    color: var(--accent-color);
    transition: color 0.2s ease;
}

.featured-services .service-card .service-info {
    flex: 1;
    position: relative;
    z-index: 2;
}

.featured-services .service-card .service-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
}

.featured-services .service-card .service-info h3 a {
    color: var(--heading-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.featured-services .service-card .service-info h3 a:hover {
    color: var(--accent-color);
}

.featured-services .service-card .service-info p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.featured-services .service-card .service-info .service-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.featured-services .service-card .service-info .service-highlights li {
    display: flex;
    align-items: center;
    padding: 4px 0;
    font-size: 14px;
    color: var(--default-color);
}

.featured-services .service-card .service-info .service-highlights li i {
    color: var(--accent-color);
    margin-right: 10px;
    font-size: 16px;
}

.featured-services .service-card .service-info .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    position: relative;
}

.featured-services .service-card .service-info .service-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.2s ease;
}

.featured-services .service-card .service-info .service-link:hover {
    color: var(--accent-color);
    transform: translateX(4px);
}

.featured-services .service-card .service-info .service-link:hover::after {
    width: 100%;
}

.featured-services .service-card .service-info .service-link:hover i {
    transform: translate(3px, -3px);
}

.featured-services .service-card .service-info .service-link i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.featured-services .service-card .service-visual {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.featured-services .service-card .service-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-services .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--accent-color);
    color: var(--contrast-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.featured-services .btn-view-all::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
    transition: left 0.5s ease;
}

.featured-services .btn-view-all:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-services .btn-view-all:hover::before {
    left: 100%;
}

.featured-services .btn-view-all:hover i {
    transform: translateX(4px);
}

.featured-services .btn-view-all i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

@media (max-width: 992px) {
    .featured-services .service-card {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
        min-height: auto;
    }
    .featured-services .service-card .service-visual {
        width: 100px;
        height: 100px;
        align-self: center;
    }
    .featured-services .service-card .service-icon {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .featured-services .service-card {
        padding: 24px 20px;
    }
    .featured-services .service-card .service-info h3 {
        font-size: 20px;
    }
    .featured-services .service-card .service-info p {
        font-size: 14px;
    }
    .featured-services .service-card .service-info .service-highlights li {
        font-size: 13px;
    }
    .featured-services .service-card .service-visual {
        width: 80px;
        height: 80px;
    }
    .featured-services .service-card .service-icon {
        width: 56px;
        height: 56px;
    }
    .featured-services .service-card .service-icon i {
        font-size: 24px;
    }
    .featured-services .btn-view-all {
        padding: 16px 28px;
        font-size: 15px;
        margin-top: 32px;
    }
}


/*--------------------------------------------------------------
# Featured Agents Section
--------------------------------------------------------------*/

.featured-agents .featured-agent {
    position: relative;
    height: 100%;
}

.featured-agents .agent-wrapper {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 92%);
    height: 100%;
}

.featured-agents .agent-wrapper:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-agents .agent-wrapper:hover .agent-photo::before {
    opacity: 1;
}

.featured-agents .agent-wrapper:hover .agent-photo img {
    transform: scale(1.1);
}

.featured-agents .agent-wrapper:hover .agent-photo .overlay-info {
    opacity: 1;
    visibility: visible;
}

.featured-agents .agent-wrapper:hover .achievement-badge {
    transform: scale(1.1);
}

.featured-agents .agent-photo {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.featured-agents .agent-photo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 70%) 0%, color-mix(in srgb, var(--heading-color), transparent 70%) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.featured-agents .agent-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-agents .agent-photo .overlay-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 2;
}

.featured-agents .agent-photo .overlay-info .contact-actions {
    display: flex;
    gap: 15px;
}

.featured-agents .agent-photo .overlay-info .contact-actions .contact-btn {
    width: 55px;
    height: 55px;
    background: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 20px;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-agents .agent-photo .overlay-info .contact-actions .contact-btn:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-agents .agent-photo .overlay-info .contact-actions .contact-btn.phone:hover {
    background: #28a745;
}

.featured-agents .agent-photo .overlay-info .contact-actions .contact-btn.email:hover {
    background: #dc3545;
}

.featured-agents .agent-photo .achievement-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    z-index: 2;
    transition: transform 0.2s ease;
}

.featured-agents .agent-photo .achievement-badge.expert {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0056b3 30%));
    color: var(--contrast-color);
}

.featured-agents .agent-photo .achievement-badge.rising {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--contrast-color);
}

.featured-agents .agent-photo .achievement-badge.veteran {
    background: linear-gradient(135deg, #6f42c1, #8e44ad);
    color: var(--contrast-color);
}

.featured-agents .agent-details {
    padding: 30px 25px;
    text-align: center;
}

.featured-agents .agent-details h4 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
}

.featured-agents .agent-details .position {
    display: block;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.featured-agents .agent-details .location-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 500;
}

.featured-agents .agent-details .location-info i {
    color: var(--accent-color);
    font-size: 16px;
}

.featured-agents .agent-details .expertise-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.featured-agents .agent-details .expertise-tags .tag {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.featured-agents .agent-details .view-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0056b3 20%));
    color: var(--contrast-color);
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.featured-agents .agent-details .view-profile::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 90%), transparent);
    transition: left 0.5s ease;
}

.featured-agents .agent-details .view-profile:hover {
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-agents .agent-details .view-profile:hover::before {
    left: 100%;
}

.featured-agents .discover-all-agents {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 16px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.featured-agents .discover-all-agents::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transition: left 0.4s ease;
    z-index: -1;
}

.featured-agents .discover-all-agents i {
    font-size: 18px;
    transition: transform 0.2s ease;
}

.featured-agents .discover-all-agents:hover {
    color: var(--contrast-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.featured-agents .discover-all-agents:hover::before {
    left: 0;
}

.featured-agents .discover-all-agents:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .featured-agents .agent-photo {
        height: 280px;
    }
    .featured-agents .agent-details {
        padding: 25px 20px;
    }
    .featured-agents .agent-details h4 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .featured-agents .agent-photo {
        height: 260px;
    }
    .featured-agents .agent-photo .overlay-info {
        opacity: 1;
        visibility: visible;
    }
    .featured-agents .agent-photo .overlay-info .contact-actions .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    .featured-agents .agent-details {
        padding: 20px 18px;
    }
    .featured-agents .discover-all-agents {
        padding: 14px 30px;
        font-size: 15px;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
}

.testimonials .testimonial-grid::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.testimonials .testimonial-item {
    position: relative;
}

.testimonials .testimonial-item.featured .testimonial-card {
    background-color: var(--accent-color);
    transform: scale(1.05);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h3,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-meta h4 {
    color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .company-logo i {
    color: var(--contrast-color);
}

.testimonials .testimonial-item.featured .testimonial-card .testimonial-body p,
.testimonials .testimonial-item.featured .testimonial-card .testimonial-body .quote-icon {
    color: var(--contrast-color);
}

.testimonials .testimonial-card {
    background-color: var(--surface-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease-in-out;
}

.testimonials .testimonial-card:hover:not(.featured .testimonial-card) {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px -5px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.testimonials .testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonials .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials .testimonial-meta {
    flex: 1;
}

.testimonials .testimonial-meta h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.testimonials .testimonial-meta h4 {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--heading-color), transparent 40%);
    margin-bottom: 0.75rem;
}

.testimonials .company-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.testimonials .testimonial-body {
    position: relative;
}

.testimonials .testimonial-body .quote-icon {
    color: var(--accent-color);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991.98px) {
    .testimonials .testimonial-grid {
        gap: 1.5rem;
    }
    .testimonials .testimonial-grid::before {
        width: 150px;
        height: 150px;
    }
    .testimonials .testimonial-card {
        padding: 1.5rem;
    }
    .testimonials .testimonial-image {
        width: 70px;
        height: 70px;
    }
    .testimonials .testimonial-meta h3 {
        font-size: 1.125rem;
    }
}

@media (max-width: 767.98px) {
    .testimonials .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .testimonials .testimonial-item.featured .testimonial-card {
        transform: scale(1);
    }
    .testimonials .testimonial-header {
        gap: 1rem;
    }
    .testimonials .testimonial-image {
        width: 60px;
        height: 60px;
    }
    .testimonials .company-logo i {
        font-size: 1.25rem;
    }
}


/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/

.why-us {
    padding: 80px 0;
    background-color: var(--surface-color);
}

.why-us .content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.why-us .content>p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.why-us .features-list .feature-item {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.why-us .features-list .feature-item:last-child {
    border-bottom: none;
}

.why-us .features-list .feature-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-us .features-list .feature-item .icon-wrapper i {
    font-size: 1.3rem;
    color: var(--contrast-color);
}

.why-us .features-list .feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.why-us .features-list .feature-item p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .cta-buttons .btn {
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.why-us .cta-buttons .btn.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.why-us .cta-buttons .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.why-us .cta-buttons .btn.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.why-us .cta-buttons .btn.btn-outline-primary:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.why-us .stats-section .stat-card {
    background-color: var(--background-color);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.why-us .stats-section .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.15);
}

.why-us .stats-section .stat-card .stat-icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.why-us .stats-section .stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    display: block;
}

.why-us .stats-section .stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
}

.why-us .stats-section .stat-card p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
}

.why-us .testimonial-preview .testimonial-card {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
    padding: 2rem;
    border-radius: 15px;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
}

.why-us .testimonial-preview .testimonial-card::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.why-us .testimonial-preview .testimonial-card .quote-icon i {
    font-size: 2rem;
    opacity: 0.7;
}

.why-us .testimonial-preview .testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.why-us .testimonial-preview .testimonial-card .testimonial-author .author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.why-us .testimonial-preview .testimonial-card .testimonial-author h6 {
    margin: 0;
    font-weight: 600;
    color: var(--contrast-color);
}

.why-us .testimonial-preview .testimonial-card .testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .why-us {
        padding: 60px 0;
    }
    .why-us .content h3 {
        font-size: 1.8rem;
    }
    .why-us .content .features-list .feature-item {
        flex-direction: column;
        text-align: center;
    }
    .why-us .content .features-list .feature-item .icon-wrapper {
        margin-bottom: 1rem;
    }
    .why-us .content .features-list .feature-item h5 {
        margin-bottom: 0.8rem;
    }
    .why-us .content .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    .why-us .content .cta-buttons .btn {
        width: 100%;
    }
    .why-us .stats-section {
        margin-top: 3rem;
    }
    .why-us .stats-section .stat-card {
        padding: 1.5rem;
    }
    .why-us .stats-section .stat-card .stat-number {
        font-size: 2rem;
    }
}


/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/

.call-to-action {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
}

.call-to-action .cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.call-to-action .cta-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: color-mix(in srgb, var(--background-color), transparent 20%);
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action .cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .call-to-action .cta-content h2 {
        font-size: 2rem;
    }
}

.call-to-action .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.6;
}

.call-to-action .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.call-to-action .cta-buttons .btn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.call-to-action .cta-buttons .btn.btn-primary {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 15%);
    border-color: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-2px);
}

.call-to-action .cta-buttons .btn.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border-color: var(--accent-color);
}

.call-to-action .cta-buttons .btn.btn-outline:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .call-to-action .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .call-to-action .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.call-to-action .cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.call-to-action .cta-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.call-to-action .cta-features .feature-item i {
    font-size: 1.2rem;
    color: var(--accent-color);
}

.call-to-action .cta-features .feature-item span {
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 576px) {
    .call-to-action .cta-features {
        flex-direction: column;
        gap: 1rem;
    }
    .call-to-action .cta-features .feature-item {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .call-to-action {
        min-height: 400px;
        padding: 80px 0;
    }
    .call-to-action .cta-content h2 {
        margin-bottom: 1rem;
    }
    .call-to-action .cta-content p {
        margin-bottom: 2rem;
    }
    .call-to-action .cta-buttons {
        margin-bottom: 2rem;
    }
}


/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/

.recent-blog-posts .featured-post {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    margin-bottom: 30px;
}

.recent-blog-posts .featured-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.recent-blog-posts .featured-post:hover .featured-img img {
    transform: scale(1.05);
}

.recent-blog-posts .featured-post:hover .post-title a {
    color: var(--accent-color);
}

.recent-blog-posts .featured-img {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.recent-blog-posts .featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.recent-blog-posts .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.recent-blog-posts .featured-content {
    padding: 32px;
}

.recent-blog-posts .post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.recent-blog-posts .post-title {
    margin: 0 0 20px 0;
}

.recent-blog-posts .post-title a {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    transition: color 0.2s ease;
}

.recent-blog-posts .post-title a:hover {
    color: var(--accent-color);
}

.recent-blog-posts .post-excerpt {
    color: var(--default-color);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.recent-blog-posts .post-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.recent-blog-posts .author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recent-blog-posts .author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.recent-blog-posts .author-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recent-blog-posts .author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.recent-blog-posts .read-time {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .read-more {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    position: relative;
}

.recent-blog-posts .read-more::after {
    content: "→";
    margin-left: 8px;
    transition: margin-left 0.2s ease;
}

.recent-blog-posts .read-more:hover::after {
    margin-left: 12px;
}

.recent-blog-posts .recent-post {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.recent-blog-posts .recent-post:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.recent-blog-posts .recent-post:hover .recent-title a {
    color: var(--accent-color);
}

.recent-blog-posts .recent-post:hover .recent-img img {
    transform: scale(1.05);
}

.recent-blog-posts .recent-img {
    height: 120px;
    overflow: hidden;
}

.recent-blog-posts .recent-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.recent-blog-posts .recent-content {
    padding: 20px;
}

.recent-blog-posts .recent-title {
    margin: 8px 0 12px 0;
}

.recent-blog-posts .recent-title a {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.recent-blog-posts .recent-title a:hover {
    color: var(--accent-color);
}

.recent-blog-posts .recent-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
}

.recent-blog-posts .recent-meta .author {
    color: var(--heading-color);
    font-weight: 500;
}

.recent-blog-posts .recent-meta .date {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.recent-blog-posts .category {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%), color-mix(in srgb, var(--accent-color), transparent 80%));
    color: var(--accent-color);
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.recent-blog-posts .category:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-1px);
}

.recent-blog-posts .post-date {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-weight: 500;
}

@media (max-width: 991px) {
    .recent-blog-posts .featured-post {
        margin-bottom: 40px;
    }
    .recent-blog-posts .featured-img {
        height: 250px;
    }
    .recent-blog-posts .featured-content {
        padding: 24px;
    }
    .recent-blog-posts .post-title a {
        font-size: 24px;
    }
    .recent-blog-posts .post-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .recent-blog-posts .recent-post {
        display: flex;
        margin-bottom: 16px;
    }
    .recent-blog-posts .recent-img {
        flex: 0 0 100px;
        height: 100px;
    }
    .recent-blog-posts .recent-content {
        flex: 1;
        padding: 16px;
    }
    .recent-blog-posts .recent-title a {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .recent-blog-posts .post-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .recent-blog-posts .recent-post {
        flex-direction: column;
    }
    .recent-blog-posts .recent-img {
        flex: none;
        height: 120px;
    }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about .hero-content {
    margin-bottom: 4rem;
}

.about .hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    font-weight: 700;
}

@media (max-width: 768px) {
    .about .hero-content h2 {
        font-size: 2.2rem;
        background: none;
        -webkit-text-fill-color: initial;
        color: var(--heading-color);
    }
}

.about .hero-content .hero-description {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.about .dual-image-layout {
    margin-bottom: 5rem;
}

.about .dual-image-layout .primary-image-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.about .dual-image-layout .primary-image-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.about .dual-image-layout .primary-image-wrap img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about .dual-image-layout .primary-image-wrap img {
        height: 300px;
    }
}

.about .dual-image-layout .secondary-image-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 40px;
}

@media (max-width: 992px) {
    .about .dual-image-layout .secondary-image-wrap {
        top: 0;
        margin-top: 2rem;
    }
}

.about .dual-image-layout .secondary-image-wrap img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.about .dual-image-layout .secondary-image-wrap img:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .about .dual-image-layout .secondary-image-wrap img {
        height: 280px;
    }
}

.about .dual-image-layout .floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--surface-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--accent-color);
}

.about .dual-image-layout .floating-badge .badge-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about .dual-image-layout .floating-badge .badge-content i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.about .dual-image-layout .floating-badge .badge-content span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.about .features-showcase {
    margin-bottom: 5rem;
}

.about .features-showcase .feature-box {
    background: var(--surface-color);
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.about .features-showcase .feature-box:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.about .features-showcase .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about .features-showcase .feature-box:hover:before {
    transform: scaleX(1);
}

.about .features-showcase .feature-icon {
    width: 70px;
    height: 70px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.about .features-showcase .feature-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.about .features-showcase .feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about .features-showcase .feature-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.about .metrics-section {
    margin-bottom: 5rem;
}

.about .metrics-section .metrics-wrapper {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 20%));
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about .metrics-section .metric-item .metric-icon {
    margin-bottom: 1rem;
}

.about .metrics-section .metric-item .metric-icon i {
    font-size: 2.5rem;
    color: var(--contrast-color);
    opacity: 0.9;
}

.about .metrics-section .metric-item .metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--contrast-color);
    font-family: var(--heading-font);
    line-height: 1;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .about .metrics-section .metric-item .metric-value {
        font-size: 2.2rem;
    }
}

.about .metrics-section .metric-item .metric-label {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about .testimonial-highlight {
    margin-bottom: 5rem;
}

.about .testimonial-highlight .testimonial-card {
    background: var(--surface-color);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
    position: relative;
}

.about .testimonial-highlight .quote-icon {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .testimonial-highlight .quote-icon i {
    color: var(--contrast-color);
    font-size: 1.3rem;
}

.about .testimonial-highlight blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin: 2rem 0;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.about .testimonial-highlight .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.about .testimonial-highlight .testimonial-author .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

.about .testimonial-highlight .testimonial-author .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about .testimonial-highlight .testimonial-author .author-info {
    text-align: left;
}

.about .testimonial-highlight .testimonial-author .author-info h5 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.about .testimonial-highlight .testimonial-author .author-info span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.9rem;
}

.about .cta-section h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about .cta-section p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.about .cta-section .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 576px) {
    .about .cta-section .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

.about .cta-section .action-buttons .btn {
    padding: 1rem 2.5rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.about .cta-section .action-buttons .btn.btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.about .cta-section .action-buttons .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.about .cta-section .action-buttons .btn.btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.about .cta-section .action-buttons .btn.btn-secondary:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}


/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/

.properties .search-bar .search-wrapper {
    background-color: var(--surface-color);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.properties .search-bar .search-wrapper .search-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.properties .search-bar .search-wrapper .search-field .form-control,
.properties .search-bar .search-wrapper .search-field .form-select {
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    background-color: transparent;
    color: var(--default-color);
    transition: all 0.2s ease;
}

.properties .search-bar .search-wrapper .search-field .form-control:focus,
.properties .search-bar .search-wrapper .search-field .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .search-bar .search-wrapper .search-field .form-control::placeholder,
.properties .search-bar .search-wrapper .search-field .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick {
    display: flex;
    gap: 4px;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
    flex: 1;
    padding: 12px 8px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    background: transparent;
    color: var(--default-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}

.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn:hover,
.properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn.active {
    border-color: var(--accent-color);
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.properties .search-bar .search-wrapper .search-field .search-btn {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
    border: none;
    border-radius: 8px;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--contrast-color);
    transition: all 0.2s ease;
}

.properties .search-bar .search-wrapper .search-field .search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.properties .results-header .results-info h5 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 5px;
}

.properties .results-header .results-info .text-muted {
    color: color-mix(in srgb, var(--default-color), transparent 40%) !important;
    font-size: 14px;
}

.properties .results-header .results-controls .sort-dropdown .form-select {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 13px;
    padding: 8px 12px;
    min-width: 180px;
}

.properties .results-header .results-controls .sort-dropdown .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .results-header .results-controls .view-toggle {
    display: flex;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 6px;
    overflow: hidden;
}

.properties .results-header .results-controls .view-toggle .view-btn {
    padding: 8px 12px;
    border: none;
    background-color: var(--surface-color);
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: all 0.2s ease;
    cursor: pointer;
}

.properties .results-header .results-controls .view-toggle .view-btn:not(:last-child) {
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.properties .results-header .results-controls .view-toggle .view-btn.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.properties .results-header .results-controls .view-toggle .view-btn:hover:not(.active) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
}

.properties .properties-container .view-masonry,
.properties .properties-container .view-rows {
    display: none;
}

.properties .properties-container .view-masonry.active,
.properties .properties-container .view-rows.active {
    display: block;
}

.properties .property-item {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.2s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    height: 100%;
}

.properties .property-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.properties .property-item .property-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.properties .property-item .property-link:hover {
    text-decoration: none;
    color: inherit;
}

.properties .property-item .property-image-wrapper {
    position: relative;
    overflow: hidden;
}

.properties .property-item .property-image-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.properties .property-item .property-image-wrapper:hover img {
    transform: scale(1.08);
}

.properties .property-item .property-image-wrapper .property-status {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.properties .property-item .property-image-wrapper .property-status .status-badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-right: 6px;
    margin-bottom: 6px;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.featured {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.new {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.sale {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0066cc 20%));
    color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.rent {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.open {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: white;
}

.properties .property-item .property-image-wrapper .property-status .status-badge.reduced {
    background: linear-gradient(135deg, #ef4444, #f87171);
    color: white;
}

.properties .property-item .property-image-wrapper .property-actions {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.2s ease;
    z-index: 3;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--default-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
    transition: all 0.2s ease;
    cursor: pointer;
    position: relative;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn:hover {
    transform: scale(1.1);
    background-color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.favorite-btn:hover {
    background-color: #ef4444;
    color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.share-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn.gallery-btn:hover {
    background-color: var(--heading-color);
    color: white;
}

.properties .property-item .property-image-wrapper .property-actions .action-btn .gallery-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background-color: var(--accent-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.properties .property-item .property-image-wrapper:hover .property-actions {
    opacity: 1;
    transform: translateX(0);
}

.properties .property-item .property-details {
    padding: 24px;
}

.properties .property-item .property-details .property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.properties .property-item .property-details .property-header .property-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.properties .property-item .property-details .property-header .property-price span {
    font-size: 16px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-item .property-details .property-header .property-price .old-price {
    font-size: 18px;
    text-decoration: line-through;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    margin-left: 8px;
}

.properties .property-item .property-details .property-header .property-type {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.properties .property-item .property-details .property-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.3;
}

.properties .property-item .property-details .property-address {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.properties .property-item .property-details .property-address i {
    color: var(--accent-color);
    flex-shrink: 0;
}

.properties .property-item .property-details .property-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.properties .property-item .property-details .property-specs .spec-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--default-color);
}

.properties .property-item .property-details .property-specs .spec-item i {
    color: var(--accent-color);
    font-size: 15px;
}

.properties .property-item .property-details .property-agent-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 2%);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
}

.properties .property-item .property-details .property-agent-info .agent-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.properties .property-item .property-details .property-agent-info .agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.properties .property-item .property-details .property-agent-info .agent-details {
    flex: 1;
}

.properties .property-item .property-details .property-agent-info .agent-details strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.properties .property-item .property-details .property-agent-info .agent-details span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.properties .property-item .property-details .property-agent-info .agent-contact .contact-btn:hover {
    transform: scale(1.1);
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.properties .property-row-item {
    background-color: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.2s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    margin-bottom: 24px;
}

.properties .property-row-item:hover {
    box-shadow: 0 8px 32px color-mix(in srgb, var(--default-color), transparent 88%);
}

.properties .property-row-item .property-row-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.properties .property-row-item .property-row-link:hover {
    text-decoration: none;
    color: inherit;
}

.properties .property-row-item .property-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin: 20px;
}

.properties .property-row-item .property-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.properties .property-row-item .property-image-wrapper:hover img {
    transform: scale(1.05);
}

.properties .property-row-item .property-image-wrapper .property-status {
    position: absolute;
    top: 12px;
    left: 12px;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge {
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-right: 6px;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge.featured {
    background: linear-gradient(135deg, #ff6b35, #ff8e53);
    color: white;
}

.properties .property-row-item .property-image-wrapper .property-status .status-badge.new {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.properties .property-row-item .property-row-content {
    padding: 20px 20px 20px 0;
}

.properties .property-row-item .property-row-content .property-info .property-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price {
    text-align: right;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-type {
    display: block;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-price small {
    font-size: 14px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.properties .property-row-item .property-row-content .property-info .property-address {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 14px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.properties .property-row-item .property-row-content .property-info .property-address i {
    color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-info .property-specs {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.properties .property-row-item .property-row-content .property-info .property-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--default-color);
}

.properties .property-row-item .property-row-content .property-info .property-specs span i {
    color: var(--accent-color);
    font-size: 15px;
}

.properties .property-row-item .property-row-content .property-info .property-agent {
    display: flex;
    align-items: center;
    gap: 10px;
}

.properties .property-row-item .property-row-content .property-info .property-agent .agent-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.properties .property-row-item .property-row-content .property-info .property-agent span {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-weight: 500;
}

.properties .property-row-item .property-row-content .property-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons {
    display: flex;
    gap: 8px;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn {
    padding: 8px 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    background-color: transparent;
    color: var(--default-color);
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.properties .property-row-item .property-row-content .property-actions .action-buttons .action-btn.favorite-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

.properties .property-row-item .property-row-content .property-actions .view-details-btn {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.properties .property-row-item .property-row-content .property-actions .view-details-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
    color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    font-size: 14px;
}

.properties .pagination-wrapper .pagination-info p strong {
    color: var(--default-color);
    font-weight: 600;
}

.properties .pagination-wrapper .pagination .page-link {
    color: var(--default-color);
    background-color: transparent;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    padding: 10px 16px;
    margin: 0 2px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.properties .pagination-wrapper .pagination .page-link:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination .page-item.active .page-link {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}

.properties .pagination-wrapper .pagination .page-item.disabled .page-link {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .pagination-wrapper .pagination .page-item.disabled .page-link:hover {
    background-color: transparent;
    border-color: color-mix(in srgb, var(--default-color), transparent 90%);
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

@media (max-width: 992px) {
    .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
        font-size: 12px;
        padding: 10px 6px;
    }
    .properties .property-row-item .property-row-content .property-info .property-header {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .properties .property-row-item .property-row-content .property-info .property-header .property-type-price {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 16px;
    }
    .properties .property-row-item .property-row-content .property-info .property-header .property-type-price .property-type {
        margin-bottom: 0;
    }
    .properties .property-row-item .property-row-content .property-info .property-specs {
        gap: 16px;
    }
    .properties .property-row-item .property-row-content .property-actions {
        margin-top: 20px;
        align-items: flex-start;
    }
    .properties .property-row-item .property-row-content .property-actions .action-buttons {
        width: 100%;
        justify-content: space-between;
    }
    .properties .property-row-item .property-row-content .property-actions .view-details-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .properties .search-bar .search-wrapper {
        padding: 20px;
    }
    .properties .search-bar .search-wrapper .search-field .bedroom-quick {
        flex-wrap: wrap;
    }
    .properties .search-bar .search-wrapper .search-field .bedroom-quick .bed-btn {
        min-width: calc(20% - 3px);
    }
    .properties .results-header .results-controls {
        margin-top: 20px;
    }
    .properties .results-header .results-controls .d-flex {
        justify-content: space-between;
        width: 100%;
    }
    .properties .property-row-item .row {
        flex-direction: column;
    }
    .properties .property-row-item .property-image-wrapper {
        margin: 20px 20px 0 20px;
    }
    .properties .property-row-item .property-row-content {
        padding: 20px;
    }
    .properties .pagination-wrapper .row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    .properties .pagination-wrapper .pagination {
        justify-content: center;
    }
}


/*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/

.property-details .property-hero .hero-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-wrapper {
    height: auto !important;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, transparent 60%, rgba(0, 0, 0, 0.3));
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 25px;
    z-index: 5;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .status-badge.for-rent {
    background: #28a745;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .property-badge .featured-badge {
    background: #ff6b35;
    color: var(--contrast-color);
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: var(--accent-color);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn i {
    font-size: 20px;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .hero-overlay .virtual-tour-btn:hover {
    background: var(--surface-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin-top: -22.5px;
    z-index: 10;
    color: var(--accent-color);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
    font-size: 16px;
    color: var(--accent-color);
    font-weight: 700;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:hover,
.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:hover {
    transform: scale(1.1);
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
    right: 20px;
    transition: 0.2s;
}

.property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
    left: 20px;
    transition: 0.2s;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-wrapper {
    height: auto !important;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 3px solid transparent;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img:hover {
    transform: scale(1.05);
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide {
    position: relative;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide.swiper-slide-thumb-active .thumbnail-img {
    border-color: var(--accent-color);
}

.property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .swiper-slide .photo-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--contrast-color);
    padding: 8px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    z-index: 2;
}

.property-details .property-info .property-header .property-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.property-details .property-info .property-header .property-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
}

.property-details .property-info .property-header .property-meta .address {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 16px;
}

.property-details .property-info .property-header .property-meta .address i {
    color: var(--accent-color);
    margin-right: 8px;
}

.property-details .property-info .property-header .property-meta .listing-id {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 500;
}

.property-details .property-info .pricing-section {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #6a11cb 30%));
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.property-details .property-info .pricing-section .main-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--contrast-color);
    line-height: 1;
    margin-bottom: 10px;
}

.property-details .property-info .pricing-section .main-price .period {
    font-size: 24px;
    font-weight: 400;
    opacity: 0.9;
}

.property-details .property-info .pricing-section .price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.property-details .property-info .pricing-section .price-breakdown span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.property-details .property-info .pricing-section .price-breakdown .available {
    font-weight: 600;
}

.property-details .property-info .quick-stats .stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card {
    background: var(--surface-color);
    padding: 20px 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.property-details .property-info .quick-stats .stat-grid .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon {
    margin-bottom: 10px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 5px;
}

.property-details .property-info .quick-stats .stat-grid .stat-card .stat-label {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.property-details .property-details h3 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.property-details .property-details p {
    line-height: 1.7;
    margin-bottom: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-details .features-grid h5 {
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.property-details .property-details .features-grid .feature-list {
    list-style: none;
    padding: 0;
}

.property-details .property-details .features-grid .feature-list li {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .property-details .features-grid .feature-list li:last-child {
    border-bottom: none;
}

.property-details .property-details .features-grid .feature-list li i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 16px;
}

.property-details .floor-plan-section h3 {
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.property-details .floor-plan-section .floor-plan-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.property-details .floor-plan-section .floor-plan-card .plan-details {
    padding: 25px;
}

.property-details .floor-plan-section .floor-plan-card .plan-details h5 {
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.property-details .floor-plan-section .floor-plan-card .plan-details p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.property-details .sticky-sidebar {
    position: sticky;
    top: 100px;
}

.property-details .sticky-sidebar .actions-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .actions-card .btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 15px 20px;
}

.property-details .sticky-sidebar .actions-card .btn.btn-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.property-details .sticky-sidebar .actions-card .btn.btn-primary i {
    margin-right: 8px;
}

.property-details .sticky-sidebar .actions-card .btn.btn-outline-primary {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.property-details .sticky-sidebar .actions-card .btn.btn-outline-primary:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.property-details .sticky-sidebar .agent-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .agent-card .agent-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar {
    position: relative;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-avatar .online-status {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #28a745;
    border: 3px solid var(--surface-color);
    border-radius: 50%;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info h4 {
    color: var(--heading-color);
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-role {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 10px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars {
    margin-bottom: 5px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .stars i {
    color: #ffc107;
    margin-right: 2px;
    font-size: 14px;
}

.property-details .sticky-sidebar .agent-card .agent-header .agent-info .agent-rating .rating-text {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.property-details .sticky-sidebar .agent-card .agent-contact {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 15px;
    margin-bottom: 15px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item i {
    color: var(--accent-color);
    margin-right: 10px;
    width: 16px;
}

.property-details .sticky-sidebar .agent-card .agent-contact .contact-item span {
    font-size: 14px;
    color: var(--default-color);
}

.property-details .sticky-sidebar .agent-card .btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 20px;
}

.property-details .sticky-sidebar .agent-card .btn i {
    margin-right: 8px;
}

.property-details .sticky-sidebar .agent-card .btn.btn-success {
    background: #28a745;
    border-color: #28a745;
}

.property-details .sticky-sidebar .agent-card .btn.btn-outline {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.property-details .sticky-sidebar .agent-card .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.property-details .sticky-sidebar .contact-form-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .contact-form-card h4 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-details .sticky-sidebar .contact-form-card .form-control,
.property-details .sticky-sidebar .contact-form-card .form-select {
    color: var(--default-color);
    background-color: transparent;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 12px;
    padding: 15px;
}

.property-details .sticky-sidebar .contact-form-card .form-control:focus,
.property-details .sticky-sidebar .contact-form-card .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

.property-details .sticky-sidebar .contact-form-card .form-control::placeholder,
.property-details .sticky-sidebar .contact-form-card .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.property-details .sticky-sidebar .contact-form-card .btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
    font-weight: 600;
    border-radius: 12px;
    padding: 15px 20px;
}

.property-details .sticky-sidebar .calculator-card {
    background: var(--surface-color);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.property-details .sticky-sidebar .calculator-card h4 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .cost-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .sticky-sidebar .calculator-card .cost-item:last-of-type {
    border-bottom: none;
}

.property-details .sticky-sidebar .calculator-card .cost-item .cost-label {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 14px;
}

.property-details .sticky-sidebar .calculator-card .cost-item .cost-value {
    color: var(--heading-color);
    font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .total-cost {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 15px;
    border-radius: 12px;
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.property-details .sticky-sidebar .calculator-card .total-cost .total-label {
    color: var(--heading-color);
    font-weight: 600;
}

.property-details .sticky-sidebar .calculator-card .total-cost .total-value {
    color: var(--accent-color);
    font-size: 18px;
    font-weight: 700;
}

.property-details .sticky-sidebar .similar-properties h4 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item {
    display: flex;
    background: var(--surface-color);
    border-radius: 15px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.2s ease;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.property-details .sticky-sidebar .similar-properties .similar-property-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
    flex-shrink: 0;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info h6 {
    color: var(--heading-color);
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 600;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-price {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 3px;
}

.property-details .sticky-sidebar .similar-properties .similar-property-item .similar-info .similar-specs {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 12px;
    margin: 0;
}

.property-details .location-section h3 {
    color: var(--heading-color);
    margin-bottom: 30px;
    font-weight: 600;
}

.property-details .location-section .map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-details .location-section .map-wrapper iframe {
    filter: grayscale(10%);
}

.property-details .location-section .neighborhood-info h5 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.property-details .location-section .neighborhood-info .poi-item {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.property-details .location-section .neighborhood-info .poi-item:last-child {
    border-bottom: none;
}

.property-details .location-section .neighborhood-info .poi-item i {
    color: var(--accent-color);
    margin-right: 15px;
    width: 20px;
    text-align: center;
    font-size: 18px;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content {
    display: flex;
    flex-direction: column;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content .poi-name {
    color: var(--heading-color);
    font-weight: 500;
    margin-bottom: 3px;
}

.property-details .location-section .neighborhood-info .poi-item .poi-content .poi-distance {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 13px;
}

@media (max-width: 992px) {
    .property-details .sticky-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next,
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
        width: 35px;
        height: 35px;
        margin-top: -17.5px;
    }
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next:after,
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev:after {
        font-size: 14px;
    }
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-next {
        right: 10px;
    }
    .property-details .property-hero .hero-image-container .property-gallery-slider .swiper-button-prev {
        left: 10px;
    }
    .property-details .property-hero .thumbnail-gallery .property-thumbnails-slider .thumbnail-img {
        height: 60px;
    }
    .property-details .property-info .property-header .property-title {
        font-size: 28px;
    }
    .property-details .property-info .property-header .property-meta {
        flex-direction: column;
        gap: 10px;
    }
    .property-details .property-info .pricing-section .main-price {
        font-size: 36px;
    }
    .property-details .property-info .quick-stats .stat-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .property-details .property-info .quick-stats .stat-grid .stat-card {
        padding: 15px 10px;
    }
    .property-details .similar-properties .similar-property-item {
        flex-direction: column;
        text-align: center;
    }
    .property-details .similar-properties .similar-property-item img {
        margin-right: 0;
        margin-bottom: 10px;
        width: 100%;
        height: 120px;
    }
}


/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/

.agents .agent-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.agents .agent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 50px color-mix(in srgb, var(--default-color), transparent 80%);
}

.agents .agent-card:hover .agent-image img {
    transform: scale(1.05);
}

.agents .agent-card:hover .contact-links {
    opacity: 1;
    transform: translateY(0);
}

.agents .agent-image {
    position: relative;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.agents .agent-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.agents .agent-image .badge-overlay {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

.agents .agent-image .badge-overlay span {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agents .agent-image .badge-overlay span.top-seller-badge {
    background: linear-gradient(135deg, #ffd700, #ffb700);
    color: #333;
}

.agents .agent-image .badge-overlay span.verified-badge {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0056b3 30%));
    color: var(--contrast-color);
}

.agents .agent-image .badge-overlay span.new-agent-badge {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--contrast-color);
}

.agents .agent-image .badge-overlay span.awarded-badge {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: var(--contrast-color);
}

.agents .agent-info {
    text-align: center;
}

.agents .agent-info h4 {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
}

.agents .agent-info .role {
    display: block;
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 8px;
}

.agents .agent-info .location {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.agents .agent-info .specialties {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 20px;
}

.agents .agent-info .specialties .specialty-tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.agents .agent-info .contact-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.2s ease;
}

.agents .agent-info .contact-links a {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s ease;
}

.agents .agent-info .contact-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.agents .agent-info .view-listings-btn {
    display: inline-block;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.agents .agent-info .view-listings-btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 15%);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.agents .btn-view-all-agents {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.agents .btn-view-all-agents:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

@media (max-width: 992px) {
    .agents .agent-card {
        padding: 20px;
    }
    .agents .agent-image img {
        height: 240px;
    }
}

@media (max-width: 576px) {
    .agents .agent-card {
        padding: 16px;
    }
    .agents .agent-image img {
        height: 200px;
    }
    .agents .agent-info .contact-links {
        opacity: 1;
        transform: translateY(0);
    }
}


/*--------------------------------------------------------------
# Agent Profile Section
--------------------------------------------------------------*/

.agent-profile .agent-photo-wrapper {
    position: relative;
}

.agent-profile .agent-photo-wrapper .agent-photo {
    border-radius: 15px;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.agent-profile .agent-photo-wrapper .agent-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.agent-profile .agent-photo-wrapper .agent-badge i {
    font-size: 12px;
}

.agent-profile .agent-info .agent-name {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .agent-profile .agent-info .agent-name {
        font-size: 2.5rem;
    }
}

.agent-profile .agent-info .agent-title {
    font-size: 1.25rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.agent-profile .agent-info .agent-tagline {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.agent-profile .contact-info-hero {
    margin-bottom: 2rem;
}

.agent-profile .contact-info-hero .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.agent-profile .contact-info-hero .contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    width: 20px;
}

.agent-profile .contact-info-hero .contact-item span {
    font-weight: 500;
}

.agent-profile .hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.agent-profile .hero-actions .btn {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.agent-profile .hero-actions .btn.btn-primary {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: var(--contrast-color);
}

.agent-profile .hero-actions .btn.btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    border-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}

.agent-profile .hero-actions .btn.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.agent-profile .hero-actions .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

@media (max-width: 576px) {
    .agent-profile .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
}

.agent-profile .stats-section {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin: 4rem 0;
    box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 90%);
}

.agent-profile .stats-section .stat-item {
    text-align: center;
}

.agent-profile .stats-section .stat-item .stat-icon {
    width: 80px;
    height: 80px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.8rem;
    transition: all 0.2s ease;
}

.agent-profile .stats-section .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.agent-profile .stats-section .stat-item .stat-label {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.agent-profile .stats-section .stat-item:hover .stat-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-5px);
}

.agent-profile .sidebar-info .contact-card,
.agent-profile .sidebar-info .specialties-card,
.agent-profile .sidebar-info .certifications-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.agent-profile .sidebar-info .contact-card h4,
.agent-profile .sidebar-info .specialties-card h4,
.agent-profile .sidebar-info .certifications-card h4 {
    margin-bottom: 1.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.agent-profile .sidebar-info .contact-details .contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.agent-profile .sidebar-info .contact-details .contact-detail i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 3px;
    width: 20px;
}

.agent-profile .sidebar-info .contact-details .contact-detail strong {
    display: block;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.agent-profile .sidebar-info .contact-details .contact-detail p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.5;
}

.agent-profile .sidebar-info .social-links {
    display: flex;
    gap: 10px;
    margin-top: 1.5rem;
}

.agent-profile .sidebar-info .social-links a {
    width: 40px;
    height: 40px;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.agent-profile .sidebar-info .social-links a:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.agent-profile .sidebar-info .specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.agent-profile .sidebar-info .specialty-tags .specialty-tag {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.agent-profile .sidebar-info .cert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.agent-profile .sidebar-info .cert-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.agent-profile .sidebar-info .cert-item span {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.agent-profile .bio-content h3,
.agent-profile .bio-content h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.agent-profile .bio-content h3 {
    font-size: 2rem;
    font-weight: 600;
}

.agent-profile .bio-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
}

.agent-profile .bio-content p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.agent-profile .bio-content .achievements ul {
    list-style: none;
    padding: 0;
}

.agent-profile .bio-content .achievements ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 0.8rem;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.agent-profile .bio-content .achievements ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.agent-profile .testimonials-section .section-heading {
    font-size: 2.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.agent-profile .testimonials-section .swiper-wrapper {
    height: auto !important;
}

.agent-profile .testimonials-section .testimonial-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 92%);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    position: relative;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-content p:before {
    content: "";
    font-size: 3rem;
    color: var(--accent-color);
    position: absolute;
    top: -10px;
    left: -15px;
    font-family: serif;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author .author-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author .author-info h5 {
    margin: 0;
    font-weight: 600;
    color: var(--heading-color);
}

.agent-profile .testimonials-section .testimonial-card .testimonial-author .author-info span {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 0.9rem;
}

.agent-profile .testimonials-section .swiper-pagination {
    margin-top: 2rem;
}

.agent-profile .testimonials-section .swiper-pagination .swiper-pagination-bullet {
    background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.agent-profile .testimonials-section .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
}

.agent-profile .contact-form-section {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    box-shadow: 0 15px 35px color-mix(in srgb, var(--default-color), transparent 88%);
}

@media (max-width: 768px) {
    .agent-profile .contact-form-section {
        padding: 2rem 1.5rem;
    }
}

.agent-profile .contact-form-section h3 {
    color: var(--heading-color);
    font-weight: 600;
    font-size: 2.2rem;
}

.agent-profile .contact-form-section .php-email-form .form-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}

.agent-profile .contact-form-section .php-email-form input[type=text],
.agent-profile .contact-form-section .php-email-form input[type=email],
.agent-profile .contact-form-section .php-email-form input[type=tel],
.agent-profile .contact-form-section .php-email-form select,
.agent-profile .contact-form-section .php-email-form textarea {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 15px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    padding: 12px 15px;
    transition: all 0.2s ease;
}

.agent-profile .contact-form-section .php-email-form input[type=text]:focus,
.agent-profile .contact-form-section .php-email-form input[type=email]:focus,
.agent-profile .contact-form-section .php-email-form input[type=tel]:focus,
.agent-profile .contact-form-section .php-email-form select:focus,
.agent-profile .contact-form-section .php-email-form textarea:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agent-profile .contact-form-section .php-email-form input[type=text]::placeholder,
.agent-profile .contact-form-section .php-email-form input[type=email]::placeholder,
.agent-profile .contact-form-section .php-email-form input[type=tel]::placeholder,
.agent-profile .contact-form-section .php-email-form select::placeholder,
.agent-profile .contact-form-section .php-email-form textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.agent-profile .contact-form-section .php-email-form .btn {
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 15px 40px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.agent-profile .contact-form-section .php-email-form .btn:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.services .service-block {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--surface-color);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.services .service-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-block:hover .service-image img {
    transform: scale(1.05);
}

.services .service-block:hover .image-overlay {
    opacity: 0.9;
}

.services .service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.services .service-block:nth-child(even) .service-content {
    text-align: right;
}

.services .service-block:nth-child(even) .service-content .service-number {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), #ff6b35 20%), var(--accent-color));
}

.services .service-content {
    flex: 1;
    min-width: 0;
}

.services .service-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #4285f4 20%));
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.services .service-info h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--heading-color);
}

.services .service-info p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.services .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.services .service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--default-color);
}

.services .service-features li i {
    color: var(--accent-color);
    font-size: 16px;
    flex-shrink: 0;
}

.services .service-features li:last-child {
    margin-bottom: 0;
}

.services .service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.services .service-btn:hover {
    background: color-mix(in srgb, var(--accent-color), #000000 15%);
    transform: translateX(5px);
    color: var(--contrast-color);
}

.services .service-btn:hover i {
    transform: translateX(3px);
}

.services .service-btn i {
    font-size: 16px;
    transition: transform 0.2s ease;
}

.services .service-image {
    width: 280px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.services .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.2s ease;
}

.services .service-image .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 30%), color-mix(in srgb, var(--accent-color), transparent 60%));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.services .service-image .image-overlay i {
    font-size: 48px;
    color: var(--contrast-color);
}

.services .cta-section {
    background: color-mix(in srgb, var(--surface-color), transparent 50%);
    box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 30px;
    padding: 60px 50px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.services .cta-section:before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: url("../img/bg/dotted-world-1.webp") no-repeat center;
    background-size: cover;
    opacity: 0.1;
    pointer-events: none;
}

.services .cta-section .cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.services .cta-section .cta-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.services .cta-section .cta-content p {
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services .cta-section .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.services .cta-section .cta-buttons .btn-primary,
.services .cta-section .cta-buttons .btn-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.services .cta-section .cta-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.services .cta-section .cta-buttons .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), #000000 15%);
    transform: translateY(-2px);
    color: var(--contrast-color);
}

.services .cta-section .cta-buttons .btn-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.services .cta-section .cta-buttons .btn-secondary:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.services .cta-section .cta-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.services .cta-section .cta-stats .stat-item {
    text-align: center;
}

.services .cta-section .cta-stats .stat-item .stat-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}

.services .cta-section .cta-stats .stat-item .stat-label {
    font-size: 14px;
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .services .service-block {
        flex-direction: column !important;
        text-align: center;
        gap: 30px;
    }
    .services .service-block .service-content {
        text-align: center !important;
    }
    .services .service-block .service-image {
        width: 100%;
        max-width: 400px;
        height: 250px;
    }
    .services .cta-section {
        padding: 40px 30px;
    }
    .services .cta-section .cta-content h3 {
        font-size: 28px;
    }
    .services .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .services .cta-section .cta-stats {
        gap: 30px;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .services .service-block {
        padding: 30px 25px;
    }
    .services .service-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .services .service-info h4 {
        font-size: 24px;
    }
    .services .service-features li {
        font-size: 14px;
    }
    .services .cta-section .cta-content h3 {
        font-size: 24px;
    }
    .services .cta-section .cta-stats .stat-number {
        font-size: 36px;
    }
}


/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/

.service-details .service-content .service-hero {
    position: relative;
    margin-bottom: 2rem;
}

.service-details .service-content .service-hero img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-hero .service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-details .service-content .service-hero .service-badge i {
    font-size: 16px;
}

.service-details .service-content .service-overview {
    margin-bottom: 3rem;
}

.service-details .service-content .service-overview h2 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.service-details .service-content .service-overview .lead {
    font-size: 1.2rem;
    color: var(--default-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-details .service-content .service-overview p {
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-details .service-content .service-features {
    margin-bottom: 3rem;
}

.service-details .service-content .service-features h3 {
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-details .service-content .service-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-details .service-content .service-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-details .service-content .service-features .feature-item .feature-icon {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-details .service-content .service-features .feature-item .feature-icon i {
    font-size: 20px;
}

.service-details .service-content .service-features .feature-item .feature-content h5 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-details .service-content .service-features .feature-item .feature-content p {
    color: var(--default-color);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.service-details .service-content .service-process {
    margin-bottom: 3rem;
}

.service-details .service-content .service-process h3 {
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-details .service-content .service-process .process-steps .process-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
}

.service-details .service-content .service-process .process-steps .process-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 22px;
    top: 45px;
    width: 2px;
    height: calc(100% + 10px);
    background: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.service-details .service-content .service-process .process-steps .process-step .step-number {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.service-details .service-content .service-process .process-steps .process-step .step-content h5 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.service-details .service-content .service-process .process-steps .process-step .step-content p {
    color: var(--default-color);
    margin: 0;
    line-height: 1.5;
}

.service-details .service-content .service-stats {
    margin-bottom: 3rem;
}

.service-details .service-content .service-stats h3 {
    color: var(--heading-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.service-details .service-content .service-stats .stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-details .service-content .service-stats .stat-item .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: block;
}

.service-details .service-content .service-stats .stat-item .stat-label {
    color: var(--default-color);
    font-size: 14px;
    font-weight: 500;
}

.service-details .sidebar .contact-form-widget,
.service-details .sidebar .quick-info-widget,
.service-details .sidebar .testimonial-widget,
.service-details .sidebar .related-services-widget {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.service-details .sidebar .contact-form-widget h4,
.service-details .sidebar .quick-info-widget h4,
.service-details .sidebar .testimonial-widget h4,
.service-details .sidebar .related-services-widget h4 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.service-details .sidebar .contact-form-widget p {
    color: var(--default-color);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.service-details .sidebar .contact-form-widget .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 5px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    background-color: var(--surface-color);
    color: var(--default-color);
}

.service-details .sidebar .contact-form-widget .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
    outline: 0;
}

.service-details .sidebar .contact-form-widget .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.service-details .sidebar .contact-form-widget .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.service-details .sidebar .contact-form-widget .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 10%);
    transform: translateY(-2px);
}

.service-details .sidebar .quick-info-widget .info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-details .sidebar .quick-info-widget .info-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .sidebar .quick-info-widget .info-list li:last-child {
    border-bottom: none;
}

.service-details .sidebar .quick-info-widget .info-list li i {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
}

.service-details .sidebar .quick-info-widget .info-list li span {
    color: var(--default-color);
    font-size: 14px;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-content {
    margin-bottom: 1rem;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-content p {
    color: var(--default-color);
    font-style: italic;
    margin: 0;
    line-height: 1.5;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info h6 {
    color: var(--heading-color);
    margin: 0;
    font-size: 14px;
    font-weight: 600;
}

.service-details .sidebar .testimonial-widget .testimonial-item .testimonial-author .author-info span {
    color: var(--default-color);
    font-size: 12px;
}

.service-details .sidebar .related-services-widget .service-links .service-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--default-color);
    text-decoration: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: color 0.2s ease;
}

.service-details .sidebar .related-services-widget .service-links .service-link:last-child {
    border-bottom: none;
}

.service-details .sidebar .related-services-widget .service-links .service-link:hover {
    color: var(--accent-color);
}

.service-details .sidebar .related-services-widget .service-links .service-link:hover .bi-arrow-right {
    transform: translateX(5px);
}

.service-details .sidebar .related-services-widget .service-links .service-link .bi:first-child {
    color: var(--accent-color);
    font-size: 16px;
    width: 20px;
}

.service-details .sidebar .related-services-widget .service-links .service-link span {
    flex: 1;
    font-size: 14px;
}

.service-details .sidebar .related-services-widget .service-links .service-link .bi-arrow-right {
    font-size: 14px;
    transition: transform 0.2s ease;
}

@media (max-width: 768px) {
    .service-details .service-content .service-overview h2 {
        font-size: 2rem;
    }
    .service-details .service-content .service-overview .lead {
        font-size: 1.1rem;
    }
    .service-details .service-content .service-process .process-steps .process-step:not(:last-child)::after {
        left: 17px;
    }
    .service-details .service-content .service-process .process-steps .process-step .step-number {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .service-details .sidebar {
        margin-top: 2rem;
    }
    .service-details .sidebar .contact-form-widget,
    .service-details .sidebar .quick-info-widget,
    .service-details .sidebar .testimonial-widget,
    .service-details .sidebar .related-services-widget {
        padding: 1.5rem;
    }
}


/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/

.blog-hero {
    padding-top: 60px;
    padding-bottom: 20px;
}

.blog-hero .featured-post {
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-hero .featured-post img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.blog-hero .featured-post .post-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    padding: 2rem;
    color: var(--contrast-color);
}

.blog-hero .featured-post .post-content {
    max-width: 800px;
}

.blog-hero .featured-post .post-title {
    font-size: 2rem;
    margin: 1rem 0;
}

.blog-hero .featured-post .post-title a {
    color: var(--contrast-color);
}

.blog-hero .featured-post .post-title a:hover {
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.blog-hero .featured-post .post-excerpt {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.blog-hero .secondary-post {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
}

.blog-hero .secondary-post .post-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.blog-hero .secondary-post .post-content {
    padding: 1.5rem;
}

.blog-hero .secondary-post .post-title {
    font-size: 1.25rem;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.blog-hero .secondary-post .post-title a {
    color: var(--heading-color);
}

.blog-hero .secondary-post .post-title a:hover {
    color: var(--accent-color);
}

.blog-hero .news-tabs {
    background-color: var(--surface-color);
    border-radius: 8px;
    overflow: hidden;
}

.blog-hero .news-tabs .nav-tabs {
    border: none;
    padding: 1rem 1rem 0;
    gap: 0.5rem;
    background-color: var(--surface-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link {
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--default-color);
    font-weight: 500;
    border-radius: 20px;
    transition: 0.2s;
}

.blog-hero .news-tabs .nav-tabs .nav-link:hover {
    color: var(--accent-color);
}

.blog-hero .news-tabs .nav-tabs .nav-link.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
}

.blog-hero .news-tabs .tab-content {
    padding: 1.5rem;
}

.blog-hero .tab-post {
    padding: 1rem 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-hero .tab-post:first-child {
    padding-top: 0;
}

.blog-hero .tab-post:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.blog-hero .tab-post img {
    border-radius: 8px;
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.blog-hero .tab-post .post-content {
    padding-left: 1rem;
}

.blog-hero .tab-post .post-title {
    font-size: 0.9375rem;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.blog-hero .tab-post .post-title a {
    color: var(--heading-color);
}

.blog-hero .tab-post .post-title a:hover {
    color: var(--accent-color);
}

.blog-hero .category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    margin-right: 0.5rem;
}

.blog-hero .date {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author {
    font-size: 0.8125rem;
    margin-top: 0.5rem;
}

.blog-hero .post-author span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-hero .post-author a {
    color: var(--accent-color);
    font-weight: 500;
}

.blog-hero .post-author a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

@media (max-width: 991.98px) {
    .blog-hero .featured-post img {
        height: 400px;
    }
    .blog-hero .featured-post .post-title {
        font-size: 1.75rem;
    }
    .blog-hero .secondary-post .post-image img {
        height: 220px;
    }
    .blog-hero .news-tabs {
        margin-top: 2rem;
    }
}

@media (max-width: 767.98px) {
    .blog-hero .featured-post img {
        height: 500px;
    }
    .blog-hero .featured-post .post-title {
        font-size: 1.5rem;
    }
    .blog-hero .featured-post .post-overlay {
        padding: 1.5rem;
    }
    .blog-hero .tab-post .post-title {
        font-size: 0.875rem;
    }
    .blog-hero .tab-post img {
        height: 80px;
    }
}


/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/

.blog-posts article {
    background-color: var(--surface-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.blog-posts .post-img {
    max-height: 240px;
    margin: -30px -30px 15px -30px;
    overflow: hidden;
}

.blog-posts .post-category {
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 10px;
}

.blog-posts .title {
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.blog-posts .title a {
    color: var(--heading-color);
    transition: 0.2s;
}

.blog-posts .title a:hover {
    color: var(--accent-color);
}

.blog-posts .post-author-img {
    width: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-posts .post-author {
    font-weight: 600;
    margin-bottom: 5px;
}

.blog-posts .post-date {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/

.pagination-2 {
    padding-top: 0;
}

.pagination-2 nav {
    position: relative;
}

.pagination-2 ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.pagination-2 li {
    margin: 0;
    transition: all 0.2s ease-in-out;
}

.pagination-2 li.ellipsis {
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 8px 16px;
    user-select: none;
}

.pagination-2 li a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 8px 16px;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateY(-1px);
    box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
    font-size: 14px;
}

.pagination-2 li a span {
    margin: 0 4px;
}

@media (max-width: 575px) {
    .pagination-2 ul {
        gap: 4px;
    }
    .pagination-2 li a {
        min-width: 36px;
        height: 36px;
        padding: 8px 12px;
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/

.blog-details {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.blog-details .article-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.blog-details .article-header .meta-categories {
    margin-bottom: 1.5rem;
}

.blog-details .article-header .meta-categories .category {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    margin: 0 0.5rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.blog-details .article-header .meta-categories .category:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.blog-details .article-header .title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .blog-details .article-header .title {
        font-size: 2.2rem;
    }
}

.blog-details .article-header .article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.blog-details .article-header .article-meta .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-details .article-header .article-meta .author .author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-details .article-header .article-meta .author .author-info {
    text-align: left;
}

.blog-details .article-header .article-meta .author .author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--heading-color);
}

.blog-details .article-header .article-meta .author .author-info span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9rem;
}

.blog-details .article-header .article-meta .post-info {
    display: flex;
    gap: 1.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.blog-details .article-header .article-meta .post-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .blog-details .article-header .article-meta {
        justify-content: center;
        text-align: center;
    }
    .blog-details .article-header .article-meta .post-info {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.blog-details .article-featured-image {
    margin: 0 -2rem 3rem;
    height: 500px;
    overflow: hidden;
    border-radius: 16px;
}

.blog-details .article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .blog-details .article-featured-image {
        margin: 0 -1rem 2rem;
        height: 300px;
    }
}

.blog-details .article-wrapper {
    display: grid;
    grid-template-columns: minmax(200px, 300px) 1fr;
    gap: 3rem;
    position: relative;
}

@media (max-width: 992px) {
    .blog-details .article-wrapper {
        grid-template-columns: 1fr;
    }
}

.blog-details .article-wrapper .table-of-contents {
    position: sticky;
    top: 100px;
    height: fit-content;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 992px) {
    .blog-details .article-wrapper .table-of-contents {
        display: none;
    }
}

.blog-details .article-wrapper .table-of-contents h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-details .article-wrapper .table-of-contents nav ul li {
    margin-bottom: 0.75rem;
}

.blog-details .article-wrapper .table-of-contents nav ul li a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    padding-left: 1rem;
    position: relative;
}

.blog-details .article-wrapper .table-of-contents nav ul li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-color);
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.2s ease;
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover,
.blog-details .article-wrapper .table-of-contents nav ul li a.active {
    color: var(--heading-color);
}

.blog-details .article-wrapper .table-of-contents nav ul li a:hover::before,
.blog-details .article-wrapper .table-of-contents nav ul li a.active::before {
    opacity: 1;
}

.blog-details .article-wrapper .article-content {
    font-size: 1.15rem;
    line-height: 1.8;
}

.blog-details .article-wrapper .article-content .content-section {
    margin-bottom: 4rem;
}

.blog-details .article-wrapper .article-content .content-section .lead {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--heading-color);
    margin-bottom: 2rem;
}

.blog-details .article-wrapper .article-content .content-section h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote {
    margin: 3rem 0;
    padding: 3rem;
    background: var(--surface-color);
    border-radius: 12px;
    position: relative;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote::before {
    content: "“";
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 85%);
    font-family: serif;
    line-height: 1;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote {
    padding-left: 3rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote p {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .highlight-quote blockquote cite {
    font-style: normal;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
    float: right;
    max-width: 450px;
    margin: 0 0 2rem 2rem;
}

@media (max-width: 768px) {
    .blog-details .article-wrapper .article-content .content-section .image-with-caption.right {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption img {
    width: 100%;
}

.blog-details .article-wrapper .article-content .content-section .image-with-caption figcaption {
    padding: 1rem;
    background: var(--surface-color);
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-wrapper .article-content .content-section .feature-points {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point i {
    font-size: 2rem;
    color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point h4 {
    margin: 0 0 0.5rem;
    color: var(--heading-color);
}

.blog-details .article-wrapper .article-content .content-section .feature-points .point p {
    margin: 0;
    font-size: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid {
    margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon {
    margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card .icon i {
    font-size: 2rem;
    color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul {
    padding-left: 1.2rem;
    margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .comparison-grid .comparison-card ul li {
    margin-bottom: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.blog-details .article-wrapper .article-content .content-section .key-principles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

@media (max-width: 768px) {
    .blog-details .article-wrapper .article-content .content-section .key-principles {
        grid-template-columns: 1fr;
    }
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle {
    text-align: center;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 12px;
    position: relative;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle .number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle h4 {
    color: var(--heading-color);
    margin: 1rem 0;
}

.blog-details .article-wrapper .article-content .content-section .key-principles .principle p {
    margin: 0;
    font-size: 0.95rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    margin: 2rem 0;
}

.blog-details .article-wrapper .article-content .content-section .info-box .icon i {
    font-size: 2.5rem;
    color: var(--accent-color);
}

.blog-details .article-wrapper .article-content .content-section .info-box .content h4 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.blog-details .article-wrapper .article-content .content-section .info-box .content p {
    margin: 0;
}

.blog-details .article-wrapper .article-content .content-section .future-trends {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

@media (max-width: 768px) {
    .blog-details .article-wrapper .article-content .content-section .future-trends {
        grid-template-columns: 1fr;
    }
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend {
    text-align: center;
    padding: 2rem;
    background: var(--surface-color);
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend:hover {
    transform: translateY(-5px);
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend h4 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.blog-details .article-wrapper .article-content .content-section .future-trends .trend p {
    margin: 0;
    font-size: 0.95rem;
}

.blog-details .article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-footer h4 {
    color: var(--heading-color);
    margin-bottom: 1.5rem;
}

.blog-details .article-footer .share-article {
    margin-bottom: 3rem;
}

.blog-details .article-footer .share-article .share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-details .article-footer .share-article .share-buttons .share-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--surface-color);
    border-radius: 30px;
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-details .article-footer .share-article .share-buttons .share-button i {
    font-size: 1.2rem;
}

.blog-details .article-footer .share-article .share-buttons .share-button:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

.blog-details .article-footer .share-article .share-buttons .share-button.twitter:hover {
    background: #1DA1F2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.facebook:hover {
    background: #4267B2;
}

.blog-details .article-footer .share-article .share-buttons .share-button.linkedin:hover {
    background: #0077B5;
}

.blog-details .article-footer .article-tags .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-details .article-footer .article-tags .tags .tag {
    padding: 0.5rem 1rem;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    border-radius: 30px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-details .article-footer .article-tags .tags .tag:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}


/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/

.blog-comments .comments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
    color: var(--heading-color);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
    margin: 0;
}

.blog-comments .comments-header .comments-stats {
    background: color-mix(in srgb, var(--default-color), transparent 95%);
    padding: 8px 20px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
    font-size: 18px;
    font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-comments .comments-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.blog-comments .comment-thread {
    position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 25px;
    top: 80px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
    z-index: 0;
}

@media (min-width: 768px) {
    .blog-comments .comment-thread:not(:last-child)::after {
        left: 35px;
    }
}

.blog-comments .comment-box {
    position: relative;
    transition: all 0.2s ease;
}

.blog-comments .comment-box.reply {
    margin-left: 50px;
    margin-top: 25px;
}

@media (min-width: 768px) {
    .blog-comments .comment-box.reply {
        margin-left: 70px;
    }
}

.blog-comments .comment-wrapper {
    display: flex;
    gap: 20px;
    position: relative;
}

.blog-comments .avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    object-fit: cover;
    border: 3px solid var(--surface-color);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

@media (min-width: 768px) {
    .blog-comments .avatar-wrapper img {
        width: 70px;
        height: 70px;
    }
}

.blog-comments .avatar-wrapper img:hover {
    transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #4CAF50;
    border: 2px solid var(--surface-color);
    z-index: 1;
}

.blog-comments .comment-content {
    flex: 1;
    background-color: var(--surface-color);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.2s ease;
}

.blog-comments .comment-content:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
    font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 20px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
    font-size: 13px;
}

.blog-comments .comment-body p {
    color: var(--default-color);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-comments .comment-actions {
    display: flex;
    gap: 15px;
}

.blog-comments .comment-actions .action-btn {
    background: none;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-comments .comment-actions .action-btn i {
    font-size: 15px;
    transition: all 0.2s ease;
}

.blog-comments .comment-actions .action-btn:hover {
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
    transform: scale(1.2);
    color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
    transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
    transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
    color: #ff4b6e;
}

.blog-comments .replies-container {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

@media (max-width: 768px) {
    .blog-comments .comments-header {
        margin-bottom: 30px;
    }
    .blog-comments .comments-header .title {
        font-size: 24px;
    }
    .blog-comments .comments-header .comments-stats {
        padding: 6px 15px;
    }
    .blog-comments .comments-header .comments-stats .count {
        font-size: 20px;
    }
    .blog-comments .comments-header .comments-stats .label {
        font-size: 12px;
    }
    .blog-comments .comment-content {
        padding: 20px;
    }
    .blog-comments .comment-header .user-info h4 {
        font-size: 16px;
    }
    .blog-comments .comment-header .user-info .time-badge {
        font-size: 13px;
    }
    .blog-comments .comment-body p {
        font-size: 14px;
    }
    .blog-comments .comment-actions .action-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
}


/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/

.blog-comment-form {
    max-width: 900px;
    margin: 30px auto 0 auto;
}

.blog-comment-form form {
    padding: 2rem;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
    color: var(--heading-color);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.9375rem;
}

.blog-comment-form .input-group {
    margin-bottom: 1rem;
    position: relative;
}

.blog-comment-form .input-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 500;
    font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 8px;
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 0.9375rem;
    transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
    opacity: 1;
    transform: translateY(0);
}

.blog-comment-form .input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.blog-comment-form .input-group .error-text {
    position: absolute;
    bottom: -20px;
    left: 0;
    color: #dc3545;
    font-size: 0.75rem;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 0.875rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-comment-form button[type=submit]:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .blog-comment-form {
        padding: 1.5rem;
    }
    .blog-comment-form .form-header h3 {
        font-size: 1.5rem;
    }
    .blog-comment-form button[type=submit] {
        width: 100%;
        padding: 0.875rem 1rem;
    }
}


/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/

.contact-2 .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

.contact-2 .contact-form-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.contact-2 .contact-form-wrapper h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 15px;
    background-color: var(--surface-color);
    color: var(--default-color);
    transition: 0.2s;
    margin-bottom: 15px;
}

.contact-2 .contact-form-wrapper .form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.contact-2 .contact-form-wrapper textarea.form-control {
    resize: vertical;
    min-height: 180px;
}

.contact-2 .contact-form-wrapper .btn-submit {
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 13px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.2s;
    display: inline-block;
    cursor: pointer;
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-info-card {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    border-radius: 8px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: 0.2s;
    height: 100%;
}

.contact-2 .contact-info-card:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    transform: translateY(-5px);
}

.contact-2 .contact-info-card .icon-box {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-2 .contact-info-card .icon-box i {
    font-size: 26px;
}

.contact-2 .contact-info-card .info-content h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--heading-color);
}

.contact-2 .contact-info-card .info-content p {
    margin-bottom: 8px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 16px;
}

.contact-2 .map-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-2 .map-container iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}

@media (max-width: 768px) {
    .contact-2 .contact-form-wrapper {
        padding: 30px;
    }
    .contact-2 .contact-form-wrapper h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    .contact-2 .contact-info-card {
        padding: 25px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .contact-2 .contact-info-card .icon-box {
        margin-bottom: 15px;
    }
    .contact-2 .map-container iframe {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .contact-2 .contact-form-wrapper {
        padding: 20px;
    }
    .contact-2 .contact-form-wrapper h2 {
        font-size: 22px;
    }
    .contact-2 .contact-info-card {
        padding: 20px;
    }
    .contact-2 .map-container iframe {
        height: 350px;
    }
}


/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/

.terms-of-service .tos-header {
    margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
    display: inline-block;
    padding: 8px 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 30px;
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.terms-of-service .tos-header p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--surface-color);
    border-radius: 15px;
    border-left: 4px solid var(--accent-color);
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
    font-size: 2rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
    color: #dc3545;
    font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
    margin-bottom: 15px;
    font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
    margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
    margin: 0;
    font-size: 0.95rem;
}

.terms-of-service .tos-contact {
    margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
    font-size: 1.8rem;
    color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }
    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}


/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/

.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

.privacy .privacy-header {
    margin-bottom: 60px;
    text-align: center;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
    font-size: 2.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
    font-size: 1.2rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.6;
}

.privacy .privacy-content {
    max-width: 800px;
    margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
    margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin: 30px 0 20px;
    font-weight: 500;
}

.privacy .privacy-content .content-section p {
    margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
    margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--accent-color);
}

.privacy .privacy-contact {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
    font-size: 1.8rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.privacy .privacy-contact p {
    margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
    margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
    margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
    color: var(--heading-color);
    font-weight: 600;
}

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }
    .privacy .privacy-header {
        text-align: left;
        border-bottom: 1pt solid #000;
        padding-bottom: 20pt;
        margin-bottom: 30pt;
    }
    .privacy h1 {
        font-size: 24pt;
    }
    .privacy h2 {
        font-size: 18pt;
        page-break-after: avoid;
    }
    .privacy h3 {
        font-size: 14pt;
        page-break-after: avoid;
    }
    .privacy p,
    .privacy ul {
        page-break-inside: avoid;
    }
    .privacy .contact-details {
        border: 1pt solid #000;
        padding: 15pt;
    }
}

@media (max-width: 767px) {
    .privacy .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    .privacy .privacy-header .header-content h1 {
        font-size: 2.2rem;
    }
    .privacy .privacy-header .header-content .intro-text {
        font-size: 1.1rem;
    }
    .privacy .privacy-content .content-section {
        margin-bottom: 40px;
    }
    .privacy .privacy-content .content-section h2 {
        font-size: 1.6rem;
    }
    .privacy .privacy-content .content-section h3 {
        font-size: 1.3rem;
    }
}


/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/

.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

.error-404 .error-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.error-404 .error-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.error-404 .error-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.error-404 .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.error-404 .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
}

.error-404 .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.2s ease;
}

.error-404 .error-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }
    .error-404 .error-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }
    .error-404 .error-title {
        font-size: 1.5rem;
    }
    .error-404 .error-text {
        font-size: 1rem;
        padding: 0 20px;
    }
    .error-404 .search-box {
        margin: 0 20px;
    }
}


/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

.starter-section {
    /* Add your styles here */
}


/* Conteneur principal de la bande noire */

#call-to-action {
    background-color: #000;
    padding: 30px 0;
    margin-bottom: 60px;
    /* Espace entre la bande et le footer */
    display: flex;
    justify-content: center;
}


/* Conteneur des logos */

.logo-bar {
    max-width: 900px;
    /* Largeur réduite de la bande */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}


/* Style des logos */

.logo-bar a img {
    height: 100px;
    transition: transform 0.2s ease;
}

.logo-bar a:hover img {
    transform: scale(1.1);
}