

@charset "UTF-8";


/* 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; /* Background color for the entire website, including individual sections */
    --default-color: #323b3b; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #163535; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #2c7a7b; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
    --nav-color: #323b3b; /* The default color of the main navmenu links */
    --nav-hover-color: #2c7a7b; /* Applied to main navmenu links when they are hovered over or active */
    --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
    --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
    --nav-dropdown-color: #323b3b; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #2c7a7b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
    --background-color: #eaf9f9;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #081b12;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #1f3028;
    --contrast-color: #ffffff;
}

.accent-background {
    --background-color: #077f46;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffffff;
    --surface-color: #2a8f5f;
    --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.3s;
}

    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: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 50px 0;
    transition: all 0.5s;
    z-index: 997;
}

    .header .header-container {
        background: var(--surface-color);
        border-radius: 50px;
        padding: 5px 25px;
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    }

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

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

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

    .header .btn-getstarted,
    .header .btn-getstarted:focus {
        color: var(--contrast-color);
        background: var(--accent-color);
        font-size: 14px;
        padding: 8px 20px;
        margin: 0 0 0 30px;
        border-radius: 50px;
        transition: 0.3s;
    }

        .header .btn-getstarted:hover,
        .header .btn-getstarted:focus:hover {
            color: var(--contrast-color);
            background: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

@media (max-width: 1200px) {
    .header {
        padding-top: 10px;
    }

        .header .header-container {
            margin-left: 10px;
            margin-right: 10px;
            padding: 10px 5px 10px 15px;
        }

        .header .logo {
            order: 1;
        }

        .header .btn-getstarted {
            order: 2;
            margin: 0 10px 0 0;
            padding: 6px 15px;
        }

        .header .navmenu {
            order: 3;
        }
}

/*--------------------------------------------------------------
# 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.3s;
        }

            .navmenu a i,
            .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .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.3s;
            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.3s;
    }

    .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.3s;
            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.3s;
        }

            .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.3s;
                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.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background: var(--background-color);
    font-size: 14px;
    padding: 80px 0 0;
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .footer .footer-content .logo {
        line-height: 1;
    }

        .footer .footer-content .logo span {
            color: var(--heading-color);
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 0.5px;
            font-family: var(--heading-font);
        }

    .footer .footer-content p {
        font-size: 15px;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
    }

    .footer .newsletter-form {
        margin-top: 30px;
    }

        .footer .newsletter-form h5 {
            color: var(--heading-color);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 15px;
            font-family: var(--heading-font);
        }

        .footer .newsletter-form .input-group {
            position: relative;
            display: flex;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
        }

        .footer .newsletter-form input[type=email] {
            flex: 1;
            padding: 12px 20px;
            border: none;
            background-color: var(--surface-color);
            color: var(--default-color);
            font-size: 14px;
        }

            .footer .newsletter-form input[type=email]:focus {
                outline: none;
                box-shadow: none;
            }

            .footer .newsletter-form input[type=email]::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 60%);
            }

        .footer .newsletter-form .btn-subscribe {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            padding: 12px 20px;
            cursor: pointer;
            transition: 0.3s;
        }

            .footer .newsletter-form .btn-subscribe:hover {
                background-color: color-mix(in srgb, var(--accent-color), black 10%);
            }

            .footer .newsletter-form .btn-subscribe i {
                font-size: 16px;
            }

        .footer .newsletter-form .loading,
        .footer .newsletter-form .error-message,
        .footer .newsletter-form .sent-message {
            font-size: 13px;
            margin-top: 8px;
        }

    .footer h4 {
        color: var(--heading-color);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 25px;
        position: relative;
        font-family: var(--heading-font);
    }

        .footer h4:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 30px;
            height: 2px;
            background-color: var(--accent-color);
        }

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

        .footer .footer-links ul li {
            padding: 8px 0;
            display: flex;
            align-items: center;
            transition: 0.3s;
        }

            .footer .footer-links ul li:hover {
                transform: translateX(5px);
            }

        .footer .footer-links ul a {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            text-decoration: none;
            display: flex;
            align-items: center;
            font-size: 14px;
            transition: 0.3s;
        }

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

            .footer .footer-links ul a i {
                margin-right: 8px;
                font-size: 12px;
                color: var(--accent-color);
            }

    .footer .footer-contact .contact-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }

        .footer .footer-contact .contact-item .contact-icon {
            width: 40px;
            height: 40px;
            background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

            .footer .footer-contact .contact-item .contact-icon i {
                color: var(--accent-color);
                font-size: 16px;
            }

        .footer .footer-contact .contact-item .contact-info p {
            margin: 0;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 14px;
            line-height: 1.5;
        }

    .footer .social-links {
        display: flex;
        gap: 12px;
        margin-top: 25px;
    }

        .footer .social-links a {
            width: 42px;
            height: 42px;
            background-color: color-mix(in srgb, var(--default-color), transparent 92%);
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: 0.3s;
            text-decoration: none;
        }

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

            .footer .social-links a i {
                font-size: 16px;
            }

    .footer .footer-bottom {
        margin-top: 50px;
        padding: 25px 0;
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .footer .footer-bottom .copyright p {
            margin: 0;
            font-size: 14px;
            color: color-mix(in srgb, var(--contrast-color), transparent 20%);
        }

@media (max-width: 991px) {
    .footer .footer-bottom .copyright p {
        text-align: center;
        margin-bottom: 15px;
    }
}

.footer .footer-bottom .footer-bottom-links {
    text-align: right;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .footer .footer-bottom .footer-bottom-links {
        text-align: center;
        margin-bottom: 10px;
    }
}

.footer .footer-bottom .footer-bottom-links a {
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
}

    .footer .footer-bottom .footer-bottom-links a:first-child {
        margin-left: 0;
    }

    .footer .footer-bottom .footer-bottom-links a:hover {
        color: var(--contrast-color);
    }

@media (max-width: 991px) {
    .footer .footer-bottom .footer-bottom-links a {
        margin: 0 10px;
    }
}

.footer .footer-bottom .credits {
    text-align: right;
    font-size: 13px;
    color: color-mix(in srgb, var(--contrast-color), transparent 40%);
}

@media (max-width: 991px) {
    .footer .footer-bottom .credits {
        text-align: center;
    }
}

.footer .footer-bottom .credits a {
    color: var(--contrast-color);
    text-decoration: none;
}

    .footer .footer-bottom .credits a:hover {
        text-decoration: underline;
    }

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 0;
    }

        .footer .footer-content {
            text-align: center;
            margin-bottom: 40px;
        }

        .footer .footer-links,
        .footer .footer-contact {
            margin-bottom: 40px;
        }
}

input[type=text],
input[type=email],
textarea {
    color: var(--default-color);
    background-color: var(--surface-color);
    font-size: 14px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

    input[type=text]:focus,
    input[type=email]:focus,
    textarea:focus {
        border-color: var(--accent-color);
    }

    input[type=text]::placeholder,
    input[type=email]::placeholder,
    textarea::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 70%);
    }

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--accent-color) 90%, white 15%);
    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) 90%, white 25%);
        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);
    position: relative;
    padding-top: 80px;
}

    .page-title .heading {
        padding: 80px 0;
    }

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

    .page-title nav {
        background-color: color-mix(in srgb, var(--default-color), transparent 96%);
        padding: 20px 0;
    }

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

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

                .page-title nav 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:before {
            content: "";
            position: absolute;
            display: block;
            width: 160px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            left: 0;
            right: 0;
            bottom: 1px;
            margin: auto;
        }

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--background-color), transparent 5%) 100%);
    padding: 140px 0 60px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

@media (max-width: 1200px) {
    .hero {
        padding: 100px 0 60px;
    }
}

.hero .hero-content {
    width: 100%;
}

.hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

    .hero .hero-badge i {
        font-size: 12px;
    }

.hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .hero .hero-text h1 {
        font-size: 2.5rem;
    }
}

.hero .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
}

.hero .search-form {
    background: var(--surface-color);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .hero .search-form .form-floating .form-control,
    .hero .search-form .form-floating .form-select {
        color: var(--default-color);
        background-color: transparent;
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        border-radius: 8px;
        font-size: 14px;
        height: 56px;
    }

        .hero .search-form .form-floating .form-control:focus,
        .hero .search-form .form-floating .form-select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 75%);
        }

        .hero .search-form .form-floating .form-control::placeholder,
        .hero .search-form .form-floating .form-select::placeholder {
            color: color-mix(in srgb, var(--default-color), transparent 70%);
        }

    .hero .search-form .form-floating label {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 14px;
    }

    .hero .search-form .btn-search {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        padding: 16px 32px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

        .hero .search-form .btn-search:hover {
            background: color-mix(in srgb, var(--accent-color), transparent 10%);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

        .hero .search-form .btn-search i {
            font-size: 16px;
        }

.hero .hero-stats .stat-item {
    text-align: center;
    padding: 16px;
}

    .hero .hero-stats .stat-item h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--accent-color);
    }

    .hero .hero-stats .stat-item p {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin: 0;
        font-weight: 500;
    }

.hero .hero-images {
    position: relative;
}

    .hero .hero-images .image-stack {
        position: relative;
        height: 600px;
    }

        .hero .hero-images .image-stack .main-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px color-mix(in srgb, var(--default-color), transparent 80%);
        }

            .hero .hero-images .image-stack .main-image img {
                width: 100%;
                height: 500px;
                object-fit: cover;
            }

            .hero .hero-images .image-stack .main-image .property-tag {
                position: absolute;
                top: 20px;
                right: 20px;
                background: var(--surface-color);
                padding: 12px 16px;
                border-radius: 12px;
                backdrop-filter: blur(10px);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .hero .hero-images .image-stack .main-image .property-tag .price {
                    display: block;
                    font-size: 18px;
                    font-weight: 700;
                    color: var(--accent-color);
                    margin-bottom: 4px;
                }

                .hero .hero-images .image-stack .main-image .property-tag .type {
                    font-size: 12px;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                    text-transform: uppercase;
                    font-weight: 600;
                }

        .hero .hero-images .image-stack .secondary-image {
            position: absolute;
            top: -40px;
            left: -20px;
            width: 200px;
            height: 180px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
            border: 4px solid var(--surface-color);
        }

        .hero .hero-images .image-stack .third-image {
            position: absolute;
            top: 150px;
            left: 190px;
            width: 200px;
            height: 180px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
            border: 4px solid var(--surface-color);
        }

        .hero .hero-images .image-stack .fourth-image {
            position: absolute;
            top: 360px;
            left: 400px;
            width: 200px;
            height: 180px;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 85%);
            border: 4px solid var(--surface-color);
        }

        .hero .hero-images .image-stack .secondary-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero .hero-images .image-stack .third-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero .hero-images .image-stack .fourth-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero .hero-images .image-stack .floating-card {
            position: absolute;
            bottom: 40px;
            left: 40px;
            background: var(--surface-color);
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
            backdrop-filter: blur(10px);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            width: 280px;
        }

            .hero .hero-images .image-stack .floating-card .agent-info {
                display: flex;
                align-items: center;
                gap: 12px;
            }

                .hero .hero-images .image-stack .floating-card .agent-info .agent-avatar {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 2px solid var(--accent-color);
                }

                .hero .hero-images .image-stack .floating-card .agent-info .agent-details {
                    flex: 1;
                }

                    .hero .hero-images .image-stack .floating-card .agent-info .agent-details h5 {
                        margin: 0 0 4px;
                        font-size: 16px;
                        font-weight: 600;
                    }

                    .hero .hero-images .image-stack .floating-card .agent-info .agent-details p {
                        margin: 0 0 8px;
                        font-size: 12px;
                        color: color-mix(in srgb, var(--default-color), transparent 30%);
                    }

                    .hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating {
                        display: flex;
                        align-items: center;
                        gap: 2px;
                        font-size: 12px;
                    }

                        .hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating i {
                            color: #ffc107;
                            font-size: 10px;
                        }

                        .hero .hero-images .image-stack .floating-card .agent-info .agent-details .rating span {
                            margin-left: 6px;
                            color: color-mix(in srgb, var(--default-color), transparent 30%);
                        }

@media (max-width: 992px) {
    .hero .hero-images {
        margin-top: 60px;
    }

        .hero .hero-images .image-stack {
            height: 400px;
        }

            .hero .hero-images .image-stack .main-image img {
                height: 350px;
            }

            .hero .hero-images .image-stack .secondary-image {
                top: -60px;
                left: 0px;
                width: 150px;
                height: 130px;
            }

            .hero .hero-images .image-stack .third-image {
                top: 55px;
                left: 110px;
                width: 150px;
                height: 130px;
            }

            .hero .hero-images .image-stack .fourth-image {
                top: 165px;
                left: 225px;
                width: 150px;
                height: 130px;
            }

            .hero .hero-images .image-stack .floating-card {
                bottom: 20px;
                left: -20px;
                width: 250px;
                padding: 16px;
            }

    .hero .search-form {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .hero .search-form {
        padding: 20px;
        margin-bottom: 30px;
    }

    .hero .hero-stats .stat-item {
        padding: 12px 8px;
    }

        .hero .hero-stats .stat-item h3 {
            font-size: 1.5rem;
        }

        .hero .hero-stats .stat-item p {
            font-size: 13px;
        }

    .hero .hero-images .image-stack {
        height: 300px;
    }

        .hero .hero-images .image-stack .main-image img {
            height: 250px;
        }

        .hero .hero-images .image-stack .main-image .property-tag {
            top: 12px;
            right: 12px;
            padding: 8px 12px;
        }

            .hero .hero-images .image-stack .main-image .property-tag .price {
                font-size: 16px;
            }

        .hero .hero-images .image-stack .secondary-image {
            width: 120px;
            height: 120px;
        }

        .hero .hero-images .image-stack .third-image {
            width: 120px;
            height: 120px;
        }

        .hero .hero-images .image-stack .fourth-image {
            width: 120px;
            height: 120px;
        }

        .hero .hero-images .image-stack .floating-card {
            bottom: 10px;
            left: 10px;
            width: 220px;
            padding: 12px;
        }

            .hero .hero-images .image-stack .floating-card .agent-details h5 {
                font-size: 14px;
            }

            .hero .hero-images .image-stack .floating-card .agent-details p {
                font-size: 11px;
            }
}

/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-section {
    position: relative;
}

    .home-about .image-section .main-image-wrapper {
        position: relative;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    }

        .home-about .image-section .main-image-wrapper .main-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
        }

@media (max-width: 768px) {
    .home-about .image-section .main-image-wrapper .main-image {
        height: 350px;
    }
}

.home-about .image-section .main-image-wrapper .floating-card {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
    .home-about .image-section .main-image-wrapper .floating-card {
        bottom: 1rem;
        right: 1rem;
        padding: 1rem;
    }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .home-about .image-section .main-image-wrapper .floating-card .card-content .icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .home-about .image-section .main-image-wrapper .floating-card .card-content .icon i {
            color: var(--contrast-color);
            font-size: 1.3rem;
        }

    .home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
        display: block;
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--heading-color);
        line-height: 1;
    }

@media (max-width: 768px) {
    .home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
        font-size: 1.5rem;
    }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-weight: 500;
}

.home-about .image-section .secondary-images {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (max-width: 576px) {
    .home-about .image-section .secondary-images {
        flex-direction: column;
    }
}

.home-about .image-section .secondary-images .small-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

    .home-about .image-section .secondary-images .small-image img {
        width: 100%;
        height: 140px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

        .home-about .image-section .secondary-images .small-image img:hover {
            transform: scale(1.05);
        }

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

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

.home-about .content-wrapper .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
    color: var(--contrast-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

    .home-about .content-wrapper .section-badge i {
        font-size: 1rem;
    }

.home-about .content-wrapper h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.home-about .content-wrapper p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2.5rem;
}

.home-about .content-wrapper .stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
    .home-about .content-wrapper .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.home-about .content-wrapper .stats-grid .stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--surface-color);
    border-radius: 16px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

    .home-about .content-wrapper .stats-grid .stat-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .home-about .content-wrapper .stats-grid .stat-item .stat-number {
        font-size: 2rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

@media (max-width: 768px) {
    .home-about .content-wrapper .stats-grid .stat-item .stat-number {
        font-size: 1.7rem;
    }
}

.home-about .content-wrapper .stats-grid .stat-item .stat-label {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 500;
}

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

    .home-about .content-wrapper .features-list .feature-item {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
        font-size: 1rem;
        color: var(--default-color);
    }

        .home-about .content-wrapper .features-list .feature-item:last-child {
            margin-bottom: 0;
        }

        .home-about .content-wrapper .features-list .feature-item i {
            color: var(--accent-color);
            font-size: 1.2rem;
            flex-shrink: 0;
        }

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

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

.home-about .content-wrapper .cta-wrapper .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

    .home-about .content-wrapper .cta-wrapper .btn-primary:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
        box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
        color: var(--contrast-color);
    }

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

    .home-about .content-wrapper .cta-wrapper .btn-primary i {
        transition: transform 0.3s ease;
        font-size: 1.1rem;
    }

.home-about .content-wrapper .cta-wrapper .contact-quick {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

    .home-about .content-wrapper .cta-wrapper .contact-quick i {
        width: 45px;
        height: 45px;
        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: 1.2rem;
    }

    .home-about .content-wrapper .cta-wrapper .contact-quick .contact-text {
        display: flex;
        flex-direction: column;
    }

        .home-about .content-wrapper .cta-wrapper .contact-quick .contact-text span {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-bottom: 0.1rem;
        }

        .home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a {
            font-weight: 600;
            color: var(--heading-color);
            text-decoration: none;
            font-size: 1rem;
        }

            .home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a:hover {
                color: var(--accent-color);
            }

/*--------------------------------------------------------------
# Featured Properties Section
--------------------------------------------------------------*/
.featured-properties .grid-featured {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

@media (max-width: 992px) {
    .featured-properties .grid-featured {
        grid-template-columns: 1fr;
    }
}

.featured-properties .highlight-card {
    background-color: var(--surface-color);
    border-radius: 18px;
    box-shadow: 0 6px 28px color-mix(in srgb, var(--default-color), transparent 90%);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .featured-properties .highlight-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 36px color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .featured-properties .highlight-card .media {
        position: relative;
        height: 360px;
        overflow: hidden;
    }

        .featured-properties .highlight-card .media .image-link {
            display: block;
            height: 100%;
        }

            .featured-properties .highlight-card .media .image-link img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transform: scale(1.02);
                transition: transform 0.6s ease;
            }

        .featured-properties .highlight-card .media:hover img {
            transform: scale(1.08);
        }

        .featured-properties .highlight-card .media .badge-set {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            gap: 8px;
            z-index: 2;
        }

            .featured-properties .highlight-card .media .badge-set .flag {
                padding: 6px 12px;
                border-radius: 20px;
                font-size: 11px;
                font-weight: 800;
                color: var(--contrast-color);
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

                .featured-properties .highlight-card .media .badge-set .flag.featured {
                    background: color-mix(in srgb, var(--accent-color), black 10%);
                }

                .featured-properties .highlight-card .media .badge-set .flag.premium {
                    background: color-mix(in srgb, var(--accent-color), blue 25%);
                }

        .featured-properties .highlight-card .media .quick-specs {
            position: absolute;
            bottom: 16px;
            left: 16px;
            right: 16px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

            .featured-properties .highlight-card .media .quick-specs span {
                display: inline-flex;
                align-items: center;
                gap: 6px;
                padding: 8px 12px;
                border-radius: 16px;
                backdrop-filter: blur(8px);
                color: var(--contrast-color);
                background: color-mix(in srgb, #000, transparent 65%);
                font-size: 12px;
            }

                .featured-properties .highlight-card .media .quick-specs span i {
                    font-size: 14px;
                    color: var(--contrast-color);
                }

    .featured-properties .highlight-card .content {
        padding: 22px;
    }

        .featured-properties .highlight-card .content .top {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 12px;
        }

            .featured-properties .highlight-card .content .top h3 {
                margin: 0 0 6px 0;
                font-weight: 800;
                font-size: 24px;
                line-height: 1.25;
            }

                .featured-properties .highlight-card .content .top h3 a {
                    color: var(--heading-color);
                    transition: color 0.3s ease;
                }

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

            .featured-properties .highlight-card .content .top .loc {
                display: flex;
                align-items: center;
                gap: 8px;
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

                .featured-properties .highlight-card .content .top .loc i {
                    color: var(--accent-color);
                }

            .featured-properties .highlight-card .content .top .price {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                color: var(--contrast-color);
                padding: 10px 16px;
                border-radius: 14px;
                font-weight: 800;
                font-size: 20px;
                white-space: nowrap;
            }

        .featured-properties .highlight-card .content .excerpt {
            color: color-mix(in srgb, var(--default-color), transparent 18%);
            margin: 0 0 18px 0;
            line-height: 1.7;
            font-size: 15px;
        }

        .featured-properties .highlight-card .content .cta {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

            .featured-properties .highlight-card .content .cta .btn-main {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                padding: 12px 22px;
                border-radius: 28px;
                font-weight: 700;
                font-size: 13px;
                text-transform: uppercase;
                letter-spacing: 0.4px;
                transition: 0.3s;
            }

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

            .featured-properties .highlight-card .content .cta .btn-soft {
                border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
                color: var(--accent-color);
                padding: 10px 20px;
                border-radius: 28px;
                font-weight: 700;
                font-size: 13px;
                text-transform: uppercase;
                transition: 0.3s;
            }

                .featured-properties .highlight-card .content .cta .btn-soft:hover {
                    border-color: var(--accent-color);
                    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                }

            .featured-properties .highlight-card .content .cta .meta {
                margin-left: auto;
                display: flex;
                gap: 10px;
                align-items: center;
            }

                .featured-properties .highlight-card .content .cta .meta .status {
                    padding: 6px 12px;
                    border-radius: 14px;
                    font-size: 11px;
                    font-weight: 800;
                    text-transform: uppercase;
                }

                    .featured-properties .highlight-card .content .cta .meta .status.for-sale {
                        color: var(--accent-color);
                        background: color-mix(in srgb, var(--accent-color), transparent 85%);
                    }

                .featured-properties .highlight-card .content .cta .meta .listed {
                    font-size: 12px;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

@media (max-width: 576px) {
    .featured-properties .highlight-card .media {
        height: 280px;
    }

    .featured-properties .highlight-card .content .top {
        flex-direction: column;
    }

        .featured-properties .highlight-card .content .top .price {
            align-self: flex-start;
        }

    .featured-properties .highlight-card .content .cta {
        flex-direction: column;
        align-items: stretch;
    }

        .featured-properties .highlight-card .content .cta .meta {
            margin-left: 0;
            justify-content: space-between;
            width: 100%;
        }
}

.featured-properties .mini-list {
    display: grid;
    gap: 16px;
    grid-template-rows: repeat(3, 1fr);
}

    .featured-properties .mini-list .mini-card {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 14px;
        background: var(--surface-color);
        border-radius: 14px;
        box-shadow: 0 4px 18px color-mix(in srgb, var(--default-color), transparent 92%);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .featured-properties .mini-list .mini-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
        }

        .featured-properties .mini-list .mini-card .thumb {
            position: relative;
            display: block;
            height: 100%;
        }

            .featured-properties .mini-list .mini-card .thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .featured-properties .mini-list .mini-card .thumb .label {
                position: absolute;
                top: 10px;
                left: 10px;
                padding: 4px 10px;
                border-radius: 12px;
                font-size: 10px;
                font-weight: 800;
                color: var(--contrast-color);
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

                .featured-properties .mini-list .mini-card .thumb .label.hot {
                    background: color-mix(in srgb, var(--accent-color), red 25%);
                }

                .featured-properties .mini-list .mini-card .thumb .label.new {
                    background: color-mix(in srgb, var(--accent-color), green 20%);
                }

                .featured-properties .mini-list .mini-card .thumb .label.featured {
                    background: color-mix(in srgb, var(--accent-color), blue 20%);
                }

        .featured-properties .mini-list .mini-card .mini-body {
            padding: 14px 14px 12px 0;
        }

            .featured-properties .mini-list .mini-card .mini-body h4 {
                font-size: 16px;
                font-weight: 800;
                margin: 0 0 6px 0;
            }

                .featured-properties .mini-list .mini-card .mini-body h4 a {
                    color: var(--heading-color);
                    transition: 0.3s;
                }

                    .featured-properties .mini-list .mini-card .mini-body h4 a:hover {
                        color: var(--accent-color);
                    }

            .featured-properties .mini-list .mini-card .mini-body .mini-loc {
                font-size: 12px;
                color: color-mix(in srgb, var(--default-color), transparent 35%);
                display: flex;
                align-items: center;
                gap: 6px;
                margin-bottom: 8px;
            }

                .featured-properties .mini-list .mini-card .mini-body .mini-loc i {
                    color: var(--accent-color);
                }

            .featured-properties .mini-list .mini-card .mini-body .mini-specs {
                display: flex;
                gap: 10px;
                font-size: 12px;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                margin-bottom: 10px;
            }

                .featured-properties .mini-list .mini-card .mini-body .mini-specs span {
                    display: inline-flex;
                    align-items: center;
                    gap: 4px;
                }

                    .featured-properties .mini-list .mini-card .mini-body .mini-specs span i {
                        color: var(--accent-color);
                        font-size: 12px;
                    }

            .featured-properties .mini-list .mini-card .mini-body .mini-foot {
                display: flex;
                align-items: center;
                justify-content: space-between;
            }

                .featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-price {
                    font-size: 18px;
                    font-weight: 800;
                    color: var(--heading-color);
                }

                .featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-btn {
                    padding: 8px 14px;
                    border-radius: 18px;
                    background: var(--accent-color);
                    color: var(--contrast-color);
                    font-size: 12px;
                    font-weight: 700;
                    text-transform: uppercase;
                    transition: 0.3s;
                }

                    .featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-btn:hover {
                        background: color-mix(in srgb, var(--accent-color), black 12%);
                        transform: translateY(-2px);
                    }

@media (max-width: 992px) {
    .featured-properties .mini-list {
        grid-template-rows: none;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .featured-properties .mini-list {
        grid-template-columns: 1fr;
    }

        .featured-properties .mini-list .mini-card {
            grid-template-columns: 100px 1fr;
        }
}

.featured-properties .stack-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .featured-properties .stack-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
    }

    .featured-properties .stack-card .stack-media {
        position: relative;
        height: 200px;
        margin: 0;
    }

        .featured-properties .stack-card .stack-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .featured-properties .stack-card .stack-media figcaption {
            position: absolute;
            top: 12px;
            left: 12px;
        }

            .featured-properties .stack-card .stack-media figcaption .chip {
                padding: 6px 12px;
                border-radius: 14px;
                font-size: 11px;
                font-weight: 800;
                color: var(--contrast-color);
            }

                .featured-properties .stack-card .stack-media figcaption .chip.exclusive {
                    background: color-mix(in srgb, var(--accent-color), blue 25%);
                }

                .featured-properties .stack-card .stack-media figcaption .chip.hot {
                    background: color-mix(in srgb, var(--accent-color), red 22%);
                }

                .featured-properties .stack-card .stack-media figcaption .chip.new {
                    background: color-mix(in srgb, var(--accent-color), green 20%);
                }

    .featured-properties .stack-card .stack-body {
        padding: 18px;
    }

        .featured-properties .stack-card .stack-body h5 {
            font-weight: 800;
            font-size: 18px;
            margin-bottom: 6px;
        }

            .featured-properties .stack-card .stack-body h5 a {
                color: var(--heading-color);
                transition: 0.3s;
            }

                .featured-properties .stack-card .stack-body h5 a:hover {
                    color: var(--accent-color);
                }

        .featured-properties .stack-card .stack-body .stack-loc {
            display: flex;
            align-items: center;
            gap: 6px;
            color: color-mix(in srgb, var(--default-color), transparent 35%);
            font-size: 13px;
            margin-bottom: 10px;
        }

            .featured-properties .stack-card .stack-body .stack-loc i {
                color: var(--accent-color);
            }

        .featured-properties .stack-card .stack-body .stack-specs {
            display: flex;
            gap: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            font-size: 12px;
            margin: 0 0 14px 0;
            padding: 0;
            list-style: none;
        }

            .featured-properties .stack-card .stack-body .stack-specs li {
                display: inline-flex;
                align-items: center;
                gap: 6px;
            }

                .featured-properties .stack-card .stack-body .stack-specs li i {
                    color: var(--accent-color);
                    font-size: 12px;
                }

        .featured-properties .stack-card .stack-body .stack-foot {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

            .featured-properties .stack-card .stack-body .stack-foot .stack-price {
                font-weight: 800;
                font-size: 20px;
                color: var(--heading-color);
            }

            .featured-properties .stack-card .stack-body .stack-foot .stack-link {
                padding: 8px 14px;
                border-radius: 18px;
                border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
                color: var(--accent-color);
                font-weight: 700;
                font-size: 12px;
                text-transform: uppercase;
                transition: 0.3s;
            }

                .featured-properties .stack-card .stack-body .stack-foot .stack-link:hover {
                    border-color: var(--accent-color);
                    background: color-mix(in srgb, var(--accent-color), transparent 92%);
                }

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px 24px 32px;
    height: 100%;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    text-align: center;
    overflow: hidden;
}

    .featured-services .service-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 3px;
        background: var(--accent-color);
        transition: width 0.4s ease;
        border-radius: 0 0 3px 3px;
    }

    .featured-services .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 88%);
    }

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

        .featured-services .service-card:hover .service-icon {
            background: var(--accent-color);
            transform: rotateY(360deg);
        }

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

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

    .featured-services .service-card.featured {
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
        color: var(--contrast-color);
    }

        .featured-services .service-card.featured::before {
            background: var(--contrast-color);
        }

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

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

        .featured-services .service-card.featured .service-header .service-number {
            color: var(--contrast-color);
        }

        .featured-services .service-card.featured .service-content h3 a {
            color: var(--contrast-color);
        }

            .featured-services .service-card.featured .service-content h3 a:hover {
                color: color-mix(in srgb, var(--contrast-color), transparent 20%);
            }

        .featured-services .service-card.featured .service-content p {
            color: color-mix(in srgb, var(--contrast-color), transparent 15%);
        }

        .featured-services .service-card.featured .service-content .service-features li {
            color: var(--contrast-color);
        }

            .featured-services .service-card.featured .service-content .service-features li i {
                color: var(--contrast-color);
            }

        .featured-services .service-card.featured .service-btn {
            background: color-mix(in srgb, var(--contrast-color), transparent 80%);
            color: var(--contrast-color);
        }

            .featured-services .service-card.featured .service-btn:hover {
                background: color-mix(in srgb, var(--contrast-color), transparent 10%);
                color: var(--accent-color);
            }

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

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

    .featured-services .service-card .service-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
    }

        .featured-services .service-card .service-header .service-icon {
            width: 70px;
            height: 70px;
            background: color-mix(in srgb, var(--accent-color), transparent 88%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.5s ease;
        }

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

        .featured-services .service-card .service-header .service-number {
            font-size: 24px;
            font-weight: 800;
            color: color-mix(in srgb, var(--default-color), transparent 70%);
            font-family: var(--heading-font);
            transition: all 0.3s ease;
        }

    .featured-services .service-card .service-content {
        margin-bottom: 32px;
    }

        .featured-services .service-card .service-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            line-height: 1.3;
        }

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

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

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

        .featured-services .service-card .service-content .service-features {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .featured-services .service-card .service-content .service-features li {
                display: flex;
                align-items: center;
                justify-content: flex-start;
                padding: 8px 0;
                font-size: 14px;
                color: var(--default-color);
            }

                .featured-services .service-card .service-content .service-features li i {
                    color: var(--accent-color);
                    margin-right: 12px;
                    font-size: 16px;
                    font-weight: 600;
                }

    .featured-services .service-card .service-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        color: var(--accent-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 14px;
        transition: all 0.3s ease;
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

        .featured-services .service-card .service-btn:hover {
            background: var(--accent-color);
            color: var(--contrast-color);
            transform: scale(1.05);
        }

            .featured-services .service-card .service-btn:hover i {
                transform: translateX(3px);
            }

        .featured-services .service-card .service-btn i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

.featured-services .btn-all-services {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: transparent;
    color: var(--accent-color);
    text-decoration: none;
    border: 2px solid var(--accent-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.4s ease;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

    .featured-services .btn-all-services::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-services .btn-all-services:hover {
        color: var(--contrast-color);
        transform: translateY(-3px);
        box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .featured-services .btn-all-services:hover::before {
            left: 0;
        }

        .featured-services .btn-all-services:hover i {
            transform: rotate(45deg);
        }

    .featured-services .btn-all-services i {
        font-size: 20px;
        transition: transform 0.4s ease;
    }

@media (max-width: 992px) {
    .featured-services .service-card {
        margin-bottom: 30px;
        padding: 36px 20px 28px;
    }

        .featured-services .service-card .service-header {
            margin-bottom: 24px;
        }

            .featured-services .service-card .service-header .service-icon {
                width: 60px;
                height: 60px;
            }

                .featured-services .service-card .service-header .service-icon i {
                    font-size: 28px;
                }

            .featured-services .service-card .service-header .service-number {
                font-size: 22px;
            }

        .featured-services .service-card .service-content {
            margin-bottom: 28px;
        }

            .featured-services .service-card .service-content h3 {
                font-size: 19px;
            }

            .featured-services .service-card .service-content p {
                font-size: 14px;
            }

            .featured-services .service-card .service-content .service-features li {
                font-size: 13px;
            }
}

@media (max-width: 768px) {
    .featured-services .service-card {
        padding: 32px 16px 24px;
    }

        .featured-services .service-card .service-header {
            flex-direction: column;
            gap: 16px;
        }

            .featured-services .service-card .service-header .service-number {
                font-size: 20px;
            }

        .featured-services .service-card .service-content h3 {
            font-size: 18px;
        }

        .featured-services .service-card .service-content .service-features {
            text-align: left;
        }

    .featured-services .btn-all-services {
        padding: 16px 32px;
        font-size: 15px;
        margin-top: 40px;
    }
}

/*--------------------------------------------------------------
# Featured Agents Section
--------------------------------------------------------------*/
.featured-agents .agent-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 94%);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

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

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

        .featured-agents .agent-card:hover .agent-image .agent-overlay {
            opacity: 1;
            visibility: visible;
        }

        .featured-agents .agent-card:hover .status-badge {
            transform: scale(1.05);
        }

.featured-agents .agent-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

    .featured-agents .agent-image .agent-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

        .featured-agents .agent-image .agent-overlay .contact-buttons {
            display: flex;
            gap: 12px;
        }

            .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact {
                width: 48px;
                height: 48px;
                background: var(--contrast-color);
                color: var(--accent-color);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 18px;
                transition: all 0.3s ease;
                box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
            }

                .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:hover {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                    transform: translateY(-2px) scale(1.1);
                }

                .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:nth-child(2):hover {
                    background: #dc3545;
                }

                .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:nth-child(3):hover {
                    background: #25d366;
                }

    .featured-agents .agent-image .status-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: transform 0.3s ease;
    }

        .featured-agents .agent-image .status-badge.top-agent {
            background: linear-gradient(135deg, #ffd700, #ffb000);
            color: #333;
        }

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

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

.featured-agents .agent-info {
    padding: 24px 20px;
}

.featured-agents .agent-meta {
    text-align: center;
    margin-bottom: 20px;
}

    .featured-agents .agent-meta .agent-name {
        font-size: 20px;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 4px;
        line-height: 1.2;
    }

    .featured-agents .agent-meta .agent-title {
        color: var(--accent-color);
        font-size: 14px;
        font-weight: 600;
        margin: 0;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

.featured-agents .agent-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 18px;
    padding: 16px;
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

    .featured-agents .agent-stats .stat-item {
        text-align: center;
        flex: 1;
    }

        .featured-agents .agent-stats .stat-item .stat-number {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
        }

        .featured-agents .agent-stats .stat-item .stat-label {
            font-size: 11px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.3px;
        }

    .featured-agents .agent-stats .stat-divider {
        width: 1px;
        height: 30px;
        background: color-mix(in srgb, var(--default-color), transparent 85%);
    }

.featured-agents .location-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    font-weight: 500;
}

    .featured-agents .location-tag i {
        color: var(--accent-color);
        font-size: 14px;
    }

.featured-agents .specialties {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

    .featured-agents .specialties .specialty-tag {
        background: var(--surface-color);
        color: var(--accent-color);
        padding: 5px 12px;
        border-radius: 16px;
        font-size: 11px;
        font-weight: 600;
        border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 70%);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

.featured-agents .profile-link {
    display: block;
    text-align: center;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .featured-agents .profile-link:hover {
        background: color-mix(in srgb, var(--accent-color), #000 15%);
        color: var(--contrast-color);
        transform: translateY(-1px);
    }

.featured-agents .explore-agents-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--surface-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

    .featured-agents .explore-agents-btn i {
        font-size: 20px;
        transition: transform 0.3s ease;
    }

    .featured-agents .explore-agents-btn:hover {
        color: var(--contrast-color);
        transform: translateY(-2px);
    }

        .featured-agents .explore-agents-btn:hover::before {
            left: 0;
        }

        .featured-agents .explore-agents-btn:hover i {
            transform: translateX(4px);
        }

@media (max-width: 1199px) {
    .featured-agents .col-xl-4 {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 992px) {
    .featured-agents .agent-image {
        height: 240px;
    }

    .featured-agents .agent-info {
        padding: 20px 18px;
    }

    .featured-agents .agent-meta .agent-name {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .featured-agents .agent-image {
        height: 220px;
    }

        .featured-agents .agent-image .agent-overlay {
            opacity: 1;
            visibility: visible;
            background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--heading-color), transparent 90%) 100%);
        }

            .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact {
                width: 42px;
                height: 42px;
                font-size: 16px;
            }

    .featured-agents .agent-stats {
        gap: 15px;
        padding: 14px;
    }

        .featured-agents .agent-stats .stat-item .stat-number {
            font-size: 16px;
        }

    .featured-agents .explore-agents-btn {
        padding: 12px 28px;
        font-size: 15px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-slider {
    width: 100%;
    position: relative;
    padding-bottom: 60px;
}

.testimonials .swiper-wrapper {
    height: auto;
}

.testimonials .testimonial-item {
    background-color: var(--surface-color);
    padding: 40px;
    border-radius: 20px;
}

@media (max-width: 575px) {
    .testimonials .testimonial-item {
        padding: 20px;
    }
}

.testimonials .testimonial-item h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.testimonials .testimonial-item p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonials .testimonial-item .profile {
    gap: 15px;
}

    .testimonials .testimonial-item .profile .profile-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonials .testimonial-item .profile .profile-info h3 {
        font-size: 18px;
        margin: 0;
        font-weight: 600;
    }

    .testimonials .testimonial-item .profile .profile-info span {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color) 70%, transparent);
    }

.testimonials .testimonial-item .featured-img-wrapper {
    min-height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.testimonials .testimonial-item .featured-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonials .swiper-navigation {
    position: absolute;
    bottom: 0;
    gap: 10px;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    margin: 0;
    width: 44px;
    height: 44px;
    background-color: var(--surface-color);
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: 0.3s;
}

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 20px;
        color: var(--default-color);
    }

    .testimonials .swiper-button-prev:hover,
    .testimonials .swiper-button-next:hover {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .testimonials .swiper-button-prev:hover::after,
        .testimonials .swiper-button-next:hover::after {
            color: var(--contrast-color);
        }

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
    position: relative;
    overflow: hidden;
}

    .why-us::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("../img/bg/abstract-bg-3.webp") no-repeat center center;
        background-size: cover;
        opacity: 0.03;
        z-index: 0;
    }

    .why-us .container {
        position: relative;
        z-index: 1;
    }

    .why-us .image-showcase {
        position: relative;
    }

        .why-us .image-showcase .main-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

            .why-us .image-showcase .main-image-wrapper .main-image {
                width: 100%;
                height: 500px;
                object-fit: cover;
                transition: transform 0.3s ease;
            }

            .why-us .image-showcase .main-image-wrapper .image-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
                display: flex;
                align-items: center;
                justify-content: center;
                transition: opacity 0.3s ease;
            }

                .why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content {
                    text-align: center;
                    color: var(--contrast-color);
                    display: flex;
                    align-items: center;
                }

                    .why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
                        font-size: 4rem;
                        margin-bottom: 1rem;
                        transition: transform 0.3s ease;
                        cursor: pointer;
                    }

                        .why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
                            transform: scale(1.1);
                        }

                    .why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
                        font-weight: 600;
                        font-size: 1.1rem;
                        padding: 0 0 15px 10px;
                    }

            .why-us .image-showcase .main-image-wrapper:hover .main-image {
                transform: scale(1.05);
            }

        .why-us .image-showcase .floating-stats {
            position: absolute;
            top: -30px;
            right: -20px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

            .why-us .image-showcase .floating-stats .stat-badge {
                background: var(--accent-color);
                color: var(--contrast-color);
                padding: 20px;
                border-radius: 15px;
                text-align: center;
                min-width: 120px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                transform: rotate(5deg);
            }

                .why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
                    transform: rotate(-3deg);
                    background: var(--surface-color);
                    color: var(--default-color);
                }

                .why-us .image-showcase .floating-stats .stat-badge .stat-number {
                    display: block;
                    font-size: 1.8rem;
                    font-weight: 700;
                    margin-bottom: 5px;
                }

                .why-us .image-showcase .floating-stats .stat-badge .stat-text {
                    font-size: 0.9rem;
                    opacity: 0.9;
                }

        .why-us .image-showcase .experience-card {
            position: absolute;
            bottom: -25px;
            left: -25px;
            background: var(--surface-color);
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 15px;
            max-width: 280px;
        }

            .why-us .image-showcase .experience-card .card-icon {
                width: 50px;
                height: 50px;
                background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }

                .why-us .image-showcase .experience-card .card-icon i {
                    font-size: 1.5rem;
                    color: var(--contrast-color);
                }

            .why-us .image-showcase .experience-card .card-content h5 {
                font-size: 1.1rem;
                font-weight: 600;
                margin-bottom: 5px;
                color: var(--heading-color);
            }

            .why-us .image-showcase .experience-card .card-content p {
                font-size: 0.9rem;
                margin: 0;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
            }

    .why-us .content-wrapper {
        padding-left: 2rem;
    }

        .why-us .content-wrapper .section-badge {
            display: inline-flex;
            align-items: center;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
        }

            .why-us .content-wrapper .section-badge i {
                color: var(--accent-color);
            }

        .why-us .content-wrapper h2 {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--heading-color);
        }

        .why-us .content-wrapper .lead-text {
            font-size: 1.2rem;
            line-height: 1.7;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin-bottom: 3rem;
        }

        .why-us .content-wrapper .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

            .why-us .content-wrapper .benefits-grid .benefit-item {
                display: flex;
                align-items: flex-start;
                gap: 1rem;
            }

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

                    .why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
                        font-size: 1.2rem;
                        color: var(--contrast-color);
                    }

                .why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
                    font-size: 1.1rem;
                    font-weight: 600;
                    margin-bottom: 0.5rem;
                    color: var(--heading-color);
                }

                .why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
                    font-size: 0.95rem;
                    line-height: 1.6;
                    margin: 0;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                }

        .why-us .content-wrapper .achievement-highlights {
            display: flex;
            align-items: center;
            gap: 2rem;
            padding: 2rem 0;
            margin-bottom: 2.5rem;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            border-radius: 15px;
            background: var(--surface-color);
            justify-content: center;
        }

            .why-us .content-wrapper .achievement-highlights .highlight-item {
                text-align: center;
            }

                .why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
                    display: block;
                    font-size: 2.2rem;
                    font-weight: 700;
                    color: var(--accent-color);
                    margin-bottom: 5px;
                }

                .why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
                    font-size: 0.9rem;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                    font-weight: 500;
                }

            .why-us .content-wrapper .achievement-highlights .highlight-divider {
                width: 1px;
                height: 40px;
                background: color-mix(in srgb, var(--default-color), transparent 85%);
            }

        .why-us .content-wrapper .action-buttons {
            display: flex;
            gap: 1.5rem;
        }

            .why-us .content-wrapper .action-buttons .btn {
                padding: 15px 35px;
                font-weight: 600;
                border-radius: 8px;
                transition: all 0.3s ease;
                font-size: 1rem;
            }

                .why-us .content-wrapper .action-buttons .btn.btn-primary {
                    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 20%));
                    border: none;
                    color: var(--contrast-color);
                }

                    .why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
                    }

                .why-us .content-wrapper .action-buttons .btn.btn-outline {
                    border: 2px solid var(--accent-color);
                    color: var(--accent-color);
                    background: transparent;
                }

                    .why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
                        background: var(--accent-color);
                        color: var(--contrast-color);
                        transform: translateY(-3px);
                    }

@media (max-width: 992px) {
    .why-us {
        padding: 80px 0;
    }

        .why-us .content-wrapper {
            padding-left: 0;
            margin-top: 3rem;
        }

            .why-us .content-wrapper h2 {
                font-size: 2.3rem;
            }

            .why-us .content-wrapper .benefits-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .why-us .content-wrapper .achievement-highlights {
                flex-direction: column;
                gap: 1.5rem;
            }

                .why-us .content-wrapper .achievement-highlights .highlight-divider {
                    width: 40px;
                    height: 1px;
                }

            .why-us .content-wrapper .action-buttons {
                flex-direction: column;
                align-items: stretch;
            }

        .why-us .image-showcase .main-image-wrapper .main-image {
            height: 400px;
        }

        .why-us .image-showcase .floating-stats {
            position: relative;
            top: 20px;
            right: 0;
            flex-direction: row;
            justify-content: center;
        }

        .why-us .image-showcase .experience-card {
            position: relative;
            bottom: 0;
            left: 0;
            margin-top: 2rem;
            max-width: 100%;
        }
}

@media (max-width: 576px) {
    .why-us {
        padding: 60px 0;
    }

        .why-us .content-wrapper h2 {
            font-size: 2rem;
        }

        .why-us .content-wrapper .lead-text {
            font-size: 1.1rem;
        }

        .why-us .image-showcase .floating-stats {
            flex-direction: column;
            gap: 10px;
        }

            .why-us .image-showcase .floating-stats .stat-badge {
                min-width: 100px;
                padding: 15px;
            }

                .why-us .image-showcase .floating-stats .stat-badge .stat-number {
                    font-size: 1.5rem;
                }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    background: var(--surface-color);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
    border-radius: 5px;
    overflow: hidden;
}

    .recent-blog-posts .post-item .post-img img {
        transition: 0.5s;
    }

    .recent-blog-posts .post-item .post-date {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        position: absolute;
        top: 15px;
        left: 15px;
        border-radius: 5px;
        text-transform: uppercase;
        font-size: 13px;
        padding: 6px 12px;
        font-weight: 600;
    }

    .recent-blog-posts .post-item .post-content {
        padding: 30px;
    }

    .recent-blog-posts .post-item .post-title {
        color: var(--heading-color);
        font-size: 20px;
        font-weight: 600;
        transition: 0.3s;
        margin-bottom: 20px;
    }

    .recent-blog-posts .post-item .readmore {
        color: var(--accent-color);
        display: flex;
        align-items: center;
        font-weight: 700;
        line-height: 1;
        transition: 0.3s;
        text-decoration: underline;
        padding-bottom: 5px;
    }

        .recent-blog-posts .post-item .readmore i {
            line-height: 0;
            margin-left: 6px;
            font-size: 16px;
        }

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

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

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

    .call-to-action .section-badge {
        display: inline-block;
        background: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        padding: 8px 20px;
        border-radius: 25px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        letter-spacing: 0.5px;
    }

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

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

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

.call-to-action .cta-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .call-to-action .cta-content p {
        text-align: center;
        font-size: 1.05rem;
    }
}

.call-to-action .benefits-list {
    margin-bottom: 2.5rem;
}

    .call-to-action .benefits-list .benefit-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }

@media (max-width: 768px) {
    .call-to-action .benefits-list .benefit-item {
        justify-content: flex-start;
    }
}

.call-to-action .benefits-list .benefit-item i {
    color: var(--accent-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-item span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--default-color);
}

.call-to-action .cta-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .call-to-action .cta-actions {
        justify-content: center;
    }
}

.call-to-action .cta-actions .btn {
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

    .call-to-action .cta-actions .btn::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transform: translateX(-100%);
        transition: transform 0.6s;
    }

    .call-to-action .cta-actions .btn:hover::before {
        transform: translateX(100%);
    }

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

        .call-to-action .cta-actions .btn.btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 15%);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .call-to-action .cta-actions .btn.btn-secondary {
        background-color: var(--surface-color);
        color: var(--accent-color);
        border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    }

        .call-to-action .cta-actions .btn.btn-secondary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border-color: var(--accent-color);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
        }

@media (max-width: 576px) {
    .call-to-action .cta-actions .btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

.call-to-action .cta-visual {
    position: relative;
}

@media (max-width: 992px) {
    .call-to-action .cta-visual {
        margin-bottom: 3rem;
    }
}

.call-to-action .cta-visual .main-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

    .call-to-action .cta-visual .main-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

@media (max-width: 768px) {
    .call-to-action .cta-visual .main-image img {
        height: 300px;
    }
}

.call-to-action .cta-visual .main-image:hover img {
    transform: scale(1.05);
}

.call-to-action .cta-visual .main-image .overlay-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--surface-color);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

    .call-to-action .cta-visual .main-image .overlay-badge i {
        color: #FFD700;
        font-size: 1.1rem;
    }

    .call-to-action .cta-visual .main-image .overlay-badge span {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--default-color);
    }

.call-to-action .cta-visual .floating-stats {
    position: absolute;
    bottom: -30px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (max-width: 992px) {
    .call-to-action .cta-visual .floating-stats {
        position: relative;
        bottom: auto;
        right: auto;
        flex-direction: row;
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .call-to-action .cta-visual .floating-stats {
        flex-direction: column;
        align-items: center;
    }
}

.call-to-action .cta-visual .floating-stats .stat-card {
    background: var(--surface-color);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
    transition: transform 0.3s ease;
    min-width: 200px;
}

    .call-to-action .cta-visual .floating-stats .stat-card:hover {
        transform: translateY(-5px);
    }

    .call-to-action .cta-visual .floating-stats .stat-card .stat-icon {
        width: 50px;
        height: 50px;
        background: color-mix(in srgb, var(--accent-color), transparent 85%);
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .call-to-action .cta-visual .floating-stats .stat-card .stat-icon i {
            color: var(--accent-color);
            font-size: 1.5rem;
        }

    .call-to-action .cta-visual .floating-stats .stat-card .stat-info {
        display: flex;
        flex-direction: column;
    }

        .call-to-action .cta-visual .floating-stats .stat-card .stat-info .stat-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
        }

        .call-to-action .cta-visual .floating-stats .stat-card .stat-info .stat-label {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
        }

@media (max-width: 768px) {
    .call-to-action {
        padding: 80px 0;
    }

        .call-to-action .cta-content {
            text-align: center;
        }

            .call-to-action .cta-content .benefits-list {
                text-align: left;
                max-width: 400px;
                margin: 0 auto 2.5rem auto;
            }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: color-mix(in srgb, var(--accent-color), transparent 92%);
    color: var(--accent-color);
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .about .intro-content .section-badge i {
        font-size: 1rem;
    }

.about .intro-content h2 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .about .intro-content h2 {
        font-size: 2.4rem;
    }
}

.about .intro-content .lead-text {
    font-size: 1.25rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.about .intro-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about .founder-highlight {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 1.5rem;
    border-left: 4px solid var(--accent-color);
    margin-top: 2rem;
}

    .about .founder-highlight .founder-image {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        float: left;
        margin-right: 1rem;
        margin-bottom: 1rem;
        border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

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

    .about .founder-highlight .founder-info {
        overflow: hidden;
    }

        .about .founder-highlight .founder-info blockquote {
            font-style: italic;
            font-size: 1rem;
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

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

        .about .founder-highlight .founder-info .founder-details span {
            font-size: 0.9rem;
            color: var(--accent-color);
            font-weight: 500;
        }

.about .visual-section {
    position: relative;
}

    .about .visual-section .main-image {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }

        .about .visual-section .main-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

            .about .visual-section .main-image img:hover {
                transform: scale(1.02);
            }

@media (max-width: 768px) {
    .about .visual-section .main-image img {
        height: 350px;
    }
}

.about .visual-section .experience-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--surface-color);
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 2px solid var(--accent-color);
}

    .about .visual-section .experience-badge .badge-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 0.3rem;
    }

    .about .visual-section .experience-badge .badge-text {
        font-size: 0.8rem;
        color: var(--heading-color);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.about .visual-section .overlay-image {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 4px solid var(--surface-color);
}

@media (max-width: 992px) {
    .about .visual-section .overlay-image {
        display: none;
    }
}

.about .visual-section .overlay-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.about .achievements-grid {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
    border-radius: 20px;
    padding: 3rem 2rem;
    margin: 5rem 0;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

    .about .achievements-grid .achievement-item {
        padding: 1.5rem;
    }

        .about .achievements-grid .achievement-item .achievement-icon {
            width: 80px;
            height: 80px;
            background: color-mix(in srgb, var(--accent-color), transparent 88%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }

            .about .achievements-grid .achievement-item .achievement-icon i {
                font-size: 2rem;
                color: var(--accent-color);
            }

            .about .achievements-grid .achievement-item .achievement-icon:hover {
                background: var(--accent-color);
                transform: translateY(-5px);
            }

                .about .achievements-grid .achievement-item .achievement-icon:hover i {
                    color: var(--contrast-color);
                }

        .about .achievements-grid .achievement-item .achievement-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

@media (max-width: 768px) {
    .about .achievements-grid .achievement-item .achievement-number {
        font-size: 2.5rem;
    }
}

.about .achievements-grid .achievement-item .achievement-label {
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about .timeline-section {
    margin: 5rem 0;
}

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

    .about .timeline-section .section-header p {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        max-width: 600px;
        margin: 0 auto;
    }

    .about .timeline-section .timeline {
        position: relative;
        padding: 2rem 0;
    }

        .about .timeline-section .timeline .timeline-item {
            display: flex;
            align-items: center;
            margin-bottom: 3rem;
            position: relative;
        }

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item {
        padding-left: 60px;
        flex-direction: column;
        align-items: flex-start;
    }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
    text-align: right;
    padding-right: 2rem;
    padding-left: 0;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding-right: 0;
    }
}

.about .timeline-section .timeline .timeline-item .timeline-year {
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item .timeline-year {
        position: absolute;
        left: -40px;
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }
}

.about .timeline-section .timeline .timeline-item .timeline-content {
    flex: 1;
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .about .timeline-section .timeline .timeline-item .timeline-content {
        padding-left: 0;
        margin-top: 1rem;
    }
}

.about .timeline-section .timeline .timeline-item .timeline-content h4 {
    font-size: 1.4rem;
    color: var(--heading-color);
    margin-bottom: 0.8rem;
}

.about .timeline-section .timeline .timeline-item .timeline-content p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
    margin: 0;
}

.about .team-preview {
    text-align: center;
    margin: 5rem 0;
}

    .about .team-preview h3 {
        font-size: 2.5rem;
        color: var(--heading-color);
        margin-bottom: 1rem;
    }

    .about .team-preview .team-description {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 3rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about .team-preview .team-member {
        background: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
        border-radius: 15px;
        padding: 2rem 1.5rem;
        transition: all 0.3s ease;
        height: 100%;
    }

        .about .team-preview .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        }

        .about .team-preview .team-member .member-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 1.5rem;
            border: 4px solid var(--accent-color);
        }

            .about .team-preview .team-member .member-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .about .team-preview .team-member .member-info h5 {
            color: var(--heading-color);
            margin-bottom: 0.5rem;
            font-size: 1.2rem;
        }

        .about .team-preview .team-member .member-info span {
            color: var(--accent-color);
            font-size: 0.9rem;
            font-weight: 500;
        }

    .about .team-preview .view-team-btn {
        display: inline-block;
        margin-top: 2rem;
        padding: 1rem 2.5rem;
        background: var(--accent-color);
        color: var(--contrast-color);
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
    }

        .about .team-preview .view-team-btn:hover {
            background: color-mix(in srgb, var(--accent-color), black 15%);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            color: var(--contrast-color);
        }

/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties .properties-header .view-toggle .view-btn {
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
    color: var(--default-color);
    transition: all 0.3s ease;
}

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

    .properties .properties-header .view-toggle .view-btn:hover:not(.active) {
        border-color: var(--accent-color);
        color: var(--accent-color);
    }

.properties .properties-header .sort-dropdown .form-select {
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
    color: var(--default-color);
    font-size: 14px;
    background-color: transparent;
}

    .properties .properties-header .sort-dropdown .form-select:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
    }

.properties .properties-grid {
    display: none;
}

    .properties .properties-grid.active {
        display: block;
    }

.properties .properties-list {
    display: none;
}

    .properties .properties-list.active {
        display: block;
    }

.properties .property-card {
    background-color: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    height: 100%;
}

    .properties .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 80%);
    }

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

        .properties .property-card .property-image img {
            transition: transform 0.3s ease;
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

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

        .properties .property-card .property-image .property-badges {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 2;
        }

            .properties .property-card .property-image .property-badges .badge {
                margin-right: 5px;
                margin-bottom: 5px;
                padding: 5px 10px;
                font-size: 12px;
                font-weight: 600;
                border-radius: 20px;
            }

                .properties .property-card .property-image .property-badges .badge.featured {
                    background-color: #ff6b35;
                    color: white;
                }

                .properties .property-card .property-image .property-badges .badge.new {
                    background-color: #10b981;
                    color: white;
                }

                .properties .property-card .property-image .property-badges .badge.for-sale {
                    background-color: var(--accent-color);
                    color: white;
                }

                .properties .property-card .property-image .property-badges .badge.for-rent {
                    background-color: #8b5cf6;
                    color: white;
                }

                .properties .property-card .property-image .property-badges .badge.open-house {
                    background-color: #f59e0b;
                    color: white;
                }

        .properties .property-card .property-image .property-overlay {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            flex-direction: column;
            gap: 8px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

            .properties .property-card .property-image .property-overlay button {
                width: 35px;
                height: 35px;
                border-radius: 50%;
                border: none;
                background-color: white;
                color: var(--default-color);
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
                transition: all 0.3s ease;
            }

                .properties .property-card .property-image .property-overlay button:hover {
                    background-color: var(--accent-color);
                    color: white;
                }

                .properties .property-card .property-image .property-overlay button.favorite-btn:hover {
                    background-color: #ef4444;
                    color: white;
                }

        .properties .property-card .property-image:hover .property-overlay {
            opacity: 1;
        }

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

        .properties .property-card .property-content .property-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--accent-color);
            margin-bottom: 8px;
        }

            .properties .property-card .property-content .property-price span {
                font-size: 16px;
                font-weight: 500;
                color: var(--default-color);
            }

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

        .properties .property-card .property-content .property-location {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            font-size: 14px;
            margin-bottom: 15px;
        }

            .properties .property-card .property-content .property-location i {
                margin-right: 5px;
                color: var(--accent-color);
            }

        .properties .property-card .property-content .property-features {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }

            .properties .property-card .property-content .property-features span {
                font-size: 13px;
                color: var(--default-color);
                display: flex;
                align-items: center;
                gap: 5px;
            }

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

        .properties .property-card .property-content .property-agent {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 20px;
            padding: 12px 15px;
            background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
            border-radius: 8px;
        }

            .properties .property-card .property-content .property-agent .agent-avatar {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                object-fit: cover;
            }

            .properties .property-card .property-content .property-agent .agent-info {
                flex: 1;
            }

                .properties .property-card .property-content .property-agent .agent-info strong {
                    font-size: 14px;
                    color: var(--heading-color);
                    display: block;
                }

                .properties .property-card .property-content .property-agent .agent-info .agent-contact small {
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                    font-size: 12px;
                }

                    .properties .property-card .property-content .property-agent .agent-info .agent-contact small i {
                        margin-right: 3px;
                    }

        .properties .property-card .property-content .btn {
            font-size: 14px;
            font-weight: 600;
            padding: 12px 20px;
            border-radius: 8px;
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            transition: all 0.3s ease;
        }

.properties .property-list-item {
    background-color: var(--surface-color);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

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

    .properties .property-list-item .property-image {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }

        .properties .property-list-item .property-image img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        .properties .property-list-item .property-image .property-badges {
            position: absolute;
            top: 10px;
            left: 10px;
        }

            .properties .property-list-item .property-image .property-badges .badge {
                padding: 4px 8px;
                font-size: 11px;
                font-weight: 600;
                border-radius: 15px;
            }

                .properties .property-list-item .property-image .property-badges .badge.featured {
                    background-color: #ff6b35;
                    color: white;
                }

                .properties .property-list-item .property-image .property-badges .badge.new {
                    background-color: #10b981;
                    color: white;
                }

                .properties .property-list-item .property-image .property-badges .badge.for-rent {
                    background-color: #8b5cf6;
                    color: white;
                }

                .properties .property-list-item .property-image .property-badges .badge.open-house {
                    background-color: #f59e0b;
                    color: white;
                }

    .properties .property-list-item .property-content .property-price {
        font-size: 20px;
        font-weight: 700;
        color: var(--accent-color);
    }

        .properties .property-list-item .property-content .property-price span {
            font-size: 14px;
            font-weight: 500;
            color: var(--default-color);
        }

    .properties .property-list-item .property-content .property-title {
        font-size: 18px;
        font-weight: 600;
        color: var(--heading-color);
        line-height: 1.3;
    }

    .properties .property-list-item .property-content .property-location {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 14px;
    }

        .properties .property-list-item .property-content .property-location i {
            margin-right: 5px;
            color: var(--accent-color);
        }

    .properties .property-list-item .property-content .property-features {
        display: flex;
        gap: 15px;
    }

        .properties .property-list-item .property-content .property-features span {
            font-size: 13px;
            color: var(--default-color);
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .properties .property-list-item .property-content .property-features span i {
                color: var(--accent-color);
                font-size: 14px;
            }

    .properties .property-list-item .property-content .property-agent {
        display: flex;
        align-items: center;
        gap: 8px;
    }

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

        .properties .property-list-item .property-content .property-agent span {
            font-size: 14px;
            color: var(--heading-color);
            font-weight: 500;
        }

    .properties .property-list-item .property-content .property-actions {
        display: flex;
        gap: 10px;
    }

        .properties .property-list-item .property-content .property-actions .btn-sm {
            padding: 6px 12px;
            font-size: 13px;
        }

        .properties .property-list-item .property-content .property-actions .btn-outline-secondary {
            border-color: color-mix(in srgb, var(--default-color), transparent 70%);
            color: var(--default-color);
        }

            .properties .property-list-item .property-content .property-actions .btn-outline-secondary:hover {
                background-color: #ef4444;
                border-color: #ef4444;
                color: white;
            }

.properties .properties-sidebar .filter-widget {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

    .properties .properties-sidebar .filter-widget .filter-title {
        color: var(--heading-color);
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    }

    .properties .properties-sidebar .filter-widget .filter-section {
        margin-bottom: 20px;
    }

        .properties .properties-sidebar .filter-widget .filter-section .form-label {
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 8px;
            font-size: 14px;
        }

        .properties .properties-sidebar .filter-widget .filter-section .form-select,
        .properties .properties-sidebar .filter-widget .filter-section .form-control {
            border-color: color-mix(in srgb, var(--default-color), transparent 70%);
            font-size: 14px;
            background-color: transparent;
            color: var(--default-color);
        }

            .properties .properties-sidebar .filter-widget .filter-section .form-select:focus,
            .properties .properties-sidebar .filter-widget .filter-section .form-control:focus {
                border-color: var(--accent-color);
                box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
            }

            .properties .properties-sidebar .filter-widget .filter-section .form-select::placeholder,
            .properties .properties-sidebar .filter-widget .filter-section .form-control::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

        .properties .properties-sidebar .filter-widget .filter-section .bedroom-filter,
        .properties .properties-sidebar .filter-widget .filter-section .bathroom-filter {
            display: flex;
            gap: 5px;
            flex-wrap: wrap;
        }

            .properties .properties-sidebar .filter-widget .filter-section .bedroom-filter .filter-btn,
            .properties .properties-sidebar .filter-widget .filter-section .bathroom-filter .filter-btn {
                border-color: color-mix(in srgb, var(--default-color), transparent 70%);
                color: var(--default-color);
                font-size: 13px;
                padding: 5px 12px;
            }

                .properties .properties-sidebar .filter-widget .filter-section .bedroom-filter .filter-btn.active,
                .properties .properties-sidebar .filter-widget .filter-section .bathroom-filter .filter-btn.active {
                    background-color: var(--accent-color);
                    border-color: var(--accent-color);
                    color: white;
                }

                .properties .properties-sidebar .filter-widget .filter-section .bedroom-filter .filter-btn:hover:not(.active),
                .properties .properties-sidebar .filter-widget .filter-section .bathroom-filter .filter-btn:hover:not(.active) {
                    border-color: var(--accent-color);
                    color: var(--accent-color);
                }

        .properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check {
            margin-bottom: 8px;
        }

            .properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check .form-check-input:checked {
                background-color: var(--accent-color);
                border-color: var(--accent-color);
            }

            .properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check .form-check-input:focus {
                border-color: var(--accent-color);
                box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
            }

            .properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check .form-check-label {
                font-size: 14px;
                color: var(--default-color);
            }

    .properties .properties-sidebar .filter-widget .btn-primary {
        background-color: var(--accent-color);
        border-color: var(--accent-color);
        padding: 12px 20px;
        font-weight: 600;
    }

        .properties .properties-sidebar .filter-widget .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
        }

.properties .properties-sidebar .featured-properties {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

    .properties .properties-sidebar .featured-properties h5 {
        color: var(--heading-color);
        font-weight: 600;
        margin-bottom: 20px;
    }

    .properties .properties-sidebar .featured-properties .featured-item {
        padding: 15px 0;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .properties .properties-sidebar .featured-properties .featured-item:last-child {
            border-bottom: none;
        }

        .properties .properties-sidebar .featured-properties .featured-item img {
            border-radius: 6px;
            height: 60px;
            object-fit: cover;
        }

        .properties .properties-sidebar .featured-properties .featured-item h6 {
            color: var(--heading-color);
            font-size: 14px;
            font-weight: 600;
        }

        .properties .properties-sidebar .featured-properties .featured-item .text-muted {
            color: color-mix(in srgb, var(--default-color), transparent 50%) !important;
        }

        .properties .properties-sidebar .featured-properties .featured-item .text-primary {
            color: var(--accent-color) !important;
            font-weight: 600;
            font-size: 14px;
        }

.properties .pagination .page-link {
    color: var(--default-color);
    border-color: color-mix(in srgb, var(--default-color), transparent 70%);
    padding: 10px 15px;
    background-color: transparent;
}

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

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

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

@media (max-width: 992px) {
    .properties .properties-sidebar {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .properties .properties-header .d-flex {
        flex-direction: column;
        gap: 15px;
        align-items: stretch !important;
    }

    .properties .properties-header .view-toggle {
        justify-content: center;
    }

    .properties .property-card .property-content {
        padding: 15px;
    }

        .properties .property-card .property-content .property-features {
            gap: 10px;
            flex-wrap: wrap;
        }

    .properties .property-list-item .row {
        flex-direction: column;
    }

    .properties .property-list-item .property-content {
        margin-top: 15px;
    }

        .properties .property-list-item .property-content .d-flex:first-child {
            flex-direction: column;
            align-items: flex-start !important;
            gap: 10px;
        }

        .properties .property-list-item .property-content .property-actions {
            margin-top: 15px;
        }
}

/*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/
.property-details .property-gallery .main-image-container {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

    .property-details .property-gallery .main-image-container .main-property-image {
        width: 100%;
        height: 500px;
        object-fit: cover;
        cursor: zoom-in;
    }

    .property-details .property-gallery .main-image-container .image-zoom-container {
        position: absolute;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        background-color: var(--surface-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
        z-index: 10;
    }

@media (max-width: 768px) {
    .property-details .property-gallery .main-image-container .image-zoom-container {
        display: none;
    }
}

.property-details .property-gallery .main-image-container .image-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--default-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
    backdrop-filter: blur(10px);
}

    .property-details .property-gallery .main-image-container .image-nav-btn:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .property-details .property-gallery .main-image-container .image-nav-btn.prev-image {
        left: 15px;
    }

    .property-details .property-gallery .main-image-container .image-nav-btn.next-image {
        right: 15px;
    }

.property-details .property-gallery .thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .property-details .property-gallery .thumbnail-gallery .thumbnail-item {
        flex: 1;
        min-width: 100px;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

        .property-details .property-gallery .thumbnail-gallery .thumbnail-item.active {
            border-color: var(--accent-color);
        }

        .property-details .property-gallery .thumbnail-gallery .thumbnail-item:hover {
            border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
        }

        .property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
            width: 100%;
            height: 80px;
            object-fit: cover;
        }

.property-details .property-description {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .property-details .property-description h3 {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 600;
    }

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

.property-details .property-amenities {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .property-details .property-amenities h3 {
        margin-bottom: 30px;
        font-size: 24px;
        font-weight: 600;
    }

    .property-details .property-amenities h4 {
        margin-bottom: 20px;
        font-size: 18px;
        font-weight: 500;
        color: var(--heading-color);
    }

    .property-details .property-amenities .features-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .property-details .property-amenities .features-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            color: color-mix(in srgb, var(--default-color), transparent 10%);
        }

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

.property-details .property-map {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

    .property-details .property-map h3 {
        margin-bottom: 20px;
        font-size: 24px;
        font-weight: 600;
    }

    .property-details .property-map .map-container {
        border-radius: 12px;
        overflow: hidden;
        margin-bottom: 20px;
    }

        .property-details .property-map .map-container iframe {
            border-radius: 12px;
        }

    .property-details .property-map .location-details h4 {
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: 500;
    }

    .property-details .property-map .location-details p {
        color: color-mix(in srgb, var(--default-color), transparent 10%);
        line-height: 1.6;
    }

.property-details .property-overview {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
    top: 100px;
}

    .property-details .property-overview .price-tag {
        font-size: 32px;
        font-weight: 700;
        color: var(--accent-color);
        margin-bottom: 10px;
    }

    .property-details .property-overview .property-status {
        display: inline-block;
        background: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        padding: 6px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-bottom: 20px;
    }

    .property-details .property-overview .property-address {
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    }

        .property-details .property-overview .property-address h4 {
            margin-bottom: 5px;
            font-size: 20px;
            font-weight: 600;
        }

        .property-details .property-overview .property-address p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
        }

    .property-details .property-overview .property-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

        .property-details .property-overview .property-stats .stat-item {
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .property-details .property-overview .property-stats .stat-item i {
                font-size: 20px;
                color: var(--accent-color);
                width: 24px;
            }

            .property-details .property-overview .property-stats .stat-item .value {
                font-size: 18px;
                font-weight: 600;
                color: var(--heading-color);
                display: block;
            }

            .property-details .property-overview .property-stats .stat-item .label {
                font-size: 13px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

    .property-details .property-overview .agent-info {
        display: flex;
        gap: 15px;
        margin-bottom: 30px;
        padding: 20px;
        background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
        border-radius: 12px;
        border-top: 3px solid var(--accent-color);
    }

        .property-details .property-overview .agent-info .agent-avatar img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }

        .property-details .property-overview .agent-info .agent-details h4 {
            margin-bottom: 5px;
            font-size: 16px;
            font-weight: 600;
        }

        .property-details .property-overview .agent-info .agent-details p {
            margin-bottom: 3px;
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

            .property-details .property-overview .agent-info .agent-details p i {
                margin-right: 5px;
                color: var(--accent-color);
            }

        .property-details .property-overview .agent-info .agent-details .agent-title {
            font-style: italic;
        }

    .property-details .property-overview .contact-form {
        margin-bottom: 30px;
    }

        .property-details .property-overview .contact-form h4 {
            margin-bottom: 20px;
            font-size: 18px;
            font-weight: 600;
        }

        .property-details .property-overview .contact-form .form-control {
            margin-bottom: 15px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            border-radius: 8px;
            padding: 12px 15px;
            font-size: 14px;
            color: var(--default-color);
            background-color: var(--surface-color);
        }

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

            .property-details .property-overview .contact-form .form-control::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 70%);
            }

        .property-details .property-overview .contact-form .btn-primary {
            background: var(--accent-color);
            border: none;
            border-radius: 8px;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            width: 100%;
            transition: all 0.3s ease;
        }

            .property-details .property-overview .contact-form .btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

    .property-details .property-overview .social-share h5 {
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 600;
    }

    .property-details .property-overview .social-share .share-buttons {
        display: flex;
        gap: 10px;
    }

        .property-details .property-overview .social-share .share-buttons .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--contrast-color);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            .property-details .property-overview .social-share .share-buttons .share-btn.facebook {
                background: #3b5998;
            }

            .property-details .property-overview .social-share .share-buttons .share-btn.twitter {
                background: #1da1f2;
            }

            .property-details .property-overview .social-share .share-buttons .share-btn.whatsapp {
                background: #25d366;
            }

            .property-details .property-overview .social-share .share-buttons .share-btn.email {
                background: #ea4335;
            }

            .property-details .property-overview .social-share .share-buttons .share-btn.print {
                background: var(--heading-color);
            }

            .property-details .property-overview .social-share .share-buttons .share-btn:hover {
                transform: translateY(-2px);
                color: var(--contrast-color);
            }

@media (max-width: 768px) {
    .property-details .property-overview {
        position: static !important;
        top: auto !important;
        margin-top: 30px;
    }

        .property-details .property-overview .property-stats {
            grid-template-columns: 1fr;
        }

    .property-details .property-gallery .main-image-container .main-property-image {
        height: 300px;
    }

    .property-details .property-gallery .thumbnail-gallery .thumbnail-item {
        min-width: 80px;
    }

        .property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
            height: 60px;
        }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .featured-agent .agent-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .agents .featured-agent .agent-image img {
        width: 100%;
        height: 600px;
        object-fit: cover;
    }

    .agents .featured-agent .agent-image .agent-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 25px;
        font-size: 14px;
        font-weight: 600;
    }

@media (max-width: 768px) {
    .agents .featured-agent .agent-image img {
        height: 400px;
    }
}

.agents .featured-content {
    padding-left: 40px;
}

    .agents .featured-content h3 {
        font-size: 2.5rem;
        margin-bottom: 5px;
        color: var(--heading-color);
    }

    .agents .featured-content .position {
        color: var(--accent-color);
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 20px;
        display: block;
    }

    .agents .featured-content .specialties {
        margin-bottom: 25px;
    }

        .agents .featured-content .specialties .badge {
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 13px;
            margin-right: 8px;
            margin-bottom: 8px;
            display: inline-block;
            border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
        }

    .agents .featured-content blockquote {
        font-style: italic;
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 25px 0;
        padding: 0;
        border: none;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .agents .featured-content .stats {
        display: flex;
        gap: 30px;
        margin: 30px 0;
    }

        .agents .featured-content .stats .stat-item {
            text-align: center;
        }

            .agents .featured-content .stats .stat-item .number {
                display: block;
                font-size: 2rem;
                font-weight: 700;
                color: var(--accent-color);
            }

            .agents .featured-content .stats .stat-item .label {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

    .agents .featured-content .contact-info {
        margin: 30px 0;
    }

        .agents .featured-content .contact-info .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

            .agents .featured-content .contact-info .contact-item i {
                color: var(--accent-color);
                margin-right: 12px;
                font-size: 16px;
            }

            .agents .featured-content .contact-info .contact-item span {
                color: var(--default-color);
            }

    .agents .featured-content .social-links {
        display: flex;
        gap: 10px;
        margin: 20px 0;
    }

        .agents .featured-content .social-links .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--surface-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--default-color);
            transition: all 0.3s ease;
        }

            .agents .featured-content .social-links .social-link:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                border-color: var(--accent-color);
                transform: translateY(-2px);
            }

    .agents .featured-content .cta-buttons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
    }

        .agents .featured-content .cta-buttons .btn {
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .agents .featured-content .cta-buttons .btn.btn-primary {
                background: var(--accent-color);
                color: var(--contrast-color);
                border: 2px solid var(--accent-color);
            }

                .agents .featured-content .cta-buttons .btn.btn-primary:hover {
                    background: color-mix(in srgb, var(--accent-color), transparent 20%);
                    transform: translateY(-2px);
                }

            .agents .featured-content .cta-buttons .btn.btn-outline {
                background: transparent;
                color: var(--accent-color);
                border: 2px solid var(--accent-color);
            }

                .agents .featured-content .cta-buttons .btn.btn-outline:hover {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                }

@media (max-width: 992px) {
    .agents .featured-content {
        padding-left: 0;
        margin-top: 40px;
    }

        .agents .featured-content .stats {
            justify-content: center;
        }

        .agents .featured-content .cta-buttons {
            justify-content: center;
        }
}

@media (max-width: 768px) {
    .agents .featured-content .stats {
        gap: 15px;
    }

        .agents .featured-content .stats .stat-item .number {
            font-size: 1.5rem;
        }

    .agents .featured-content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .agents .featured-content .cta-buttons .btn {
            width: 250px;
            text-align: center;
        }
}

.agents .section-subtitle {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    text-align: center;
}

.agents .section-description {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.agents .agent-card {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

    .agents .agent-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .agents .agent-card .agent-photo {
        position: relative;
        overflow: hidden;
    }

        .agents .agent-card .agent-photo img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .agents .agent-card .agent-photo .agent-status {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
        }

            .agents .agent-card .agent-photo .agent-status.verified {
                background: #28a745;
                color: white;
            }

            .agents .agent-card .agent-photo .agent-status.new {
                background: #fd7e14;
                color: white;
            }

        .agents .agent-card .agent-photo .hover-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.7);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

                .agents .agent-card .agent-photo .hover-overlay .contact-actions .action-btn {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    background: var(--contrast-color);
                    color: var(--accent-color);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    font-size: 18px;
                    transition: all 0.3s ease;
                }

                    .agents .agent-card .agent-photo .hover-overlay .contact-actions .action-btn:hover {
                        background: var(--accent-color);
                        color: var(--contrast-color);
                        transform: scale(1.1);
                    }

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

    .agents .agent-card:hover .agent-photo .hover-overlay {
        opacity: 1;
    }

    .agents .agent-card .agent-info {
        padding: 25px;
        text-align: center;
    }

        .agents .agent-card .agent-info h5 {
            color: var(--heading-color);
            font-size: 1.3rem;
            margin-bottom: 5px;
        }

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

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

            .agents .agent-card .agent-info .location i {
                margin-right: 5px;
                color: var(--accent-color);
            }

        .agents .agent-card .agent-info .languages {
            margin-bottom: 20px;
        }

            .agents .agent-card .agent-info .languages .lang-tag {
                display: inline-block;
                background: color-mix(in srgb, var(--accent-color), transparent 90%);
                color: var(--accent-color);
                padding: 4px 8px;
                border-radius: 10px;
                font-size: 12px;
                margin-right: 5px;
            }

        .agents .agent-card .agent-info .view-listings {
            display: inline-block;
            color: var(--accent-color);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            padding: 8px 20px;
            border: 2px solid var(--accent-color);
            border-radius: 20px;
            transition: all 0.3s ease;
        }

            .agents .agent-card .agent-info .view-listings:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

@media (max-width: 768px) {
    .agents .agent-card .agent-info h5 {
        font-size: 1.1rem;
    }
}

/*--------------------------------------------------------------
# Agent Profile Section
--------------------------------------------------------------*/
.agent-profile .agent-profile-card {
    position: relative;
    background: var(--surface-color);
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

    .agent-profile .agent-profile-card .profile-background {
        position: relative;
        height: 200px;
        overflow: hidden;
    }

        .agent-profile .agent-profile-card .profile-background .profile-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

    .agent-profile .agent-profile-card .profile-content {
        position: relative;
        padding: 2rem;
        margin-top: -80px;
    }

        .agent-profile .agent-profile-card .profile-content .agent-avatar {
            display: flex;
            align-items: flex-end;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

            .agent-profile .agent-profile-card .profile-content .agent-avatar .avatar-image {
                width: 120px;
                height: 120px;
                border-radius: 20px;
                border: 4px solid var(--surface-color);
                object-fit: cover;
                box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
            }

            .agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator {
                display: flex;
                align-items: center;
                gap: 6px;
                background: var(--surface-color);
                padding: 8px 15px;
                border-radius: 20px;
                box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
            }

                .agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator i {
                    color: #22c55e;
                    font-size: 10px;
                }

                .agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator span {
                    font-size: 14px;
                    font-weight: 600;
                    color: var(--heading-color);
                }

        .agent-profile .agent-profile-card .profile-content .agent-header .agent-name {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--heading-color);
        }

@media (max-width: 768px) {
    .agent-profile .agent-profile-card .profile-content .agent-header .agent-name {
        font-size: 2rem;
    }
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

    .agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .title {
        color: var(--accent-color);
        font-weight: 600;
        font-size: 1.1rem;
    }

    .agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .verification-badge {
        display: flex;
        align-items: center;
        gap: 5px;
        background: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        padding: 6px 12px;
        border-radius: 15px;
        font-size: 14px;
        font-weight: 600;
    }

        .agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .verification-badge i {
            font-size: 16px;
        }

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats {
    display: flex;
    gap: 2rem;
}

@media (max-width: 576px) {
    .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 0.25rem;
    }

    .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .star-rating {
        display: flex;
        gap: 2px;
    }

        .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .star-rating i {
            color: #fbbf24;
            font-size: 14px;
        }

    .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .stat-label {
        font-size: 0.9rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-weight: 500;
    }

.agent-profile .main-content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

@media (max-width: 1200px) {
    .agent-profile .main-content-grid {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .agent-profile .main-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.agent-profile .content-main .about-section,
.agent-profile .content-main .experience-section,
.agent-profile .content-main .service-areas {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

    .agent-profile .content-main .about-section h3,
    .agent-profile .content-main .experience-section h3,
    .agent-profile .content-main .service-areas h3 {
        color: var(--heading-color);
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        position: relative;
    }

        .agent-profile .content-main .about-section h3::after,
        .agent-profile .content-main .experience-section h3::after,
        .agent-profile .content-main .service-areas h3::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent-color);
            border-radius: 2px;
        }

    .agent-profile .content-main .about-section p,
    .agent-profile .content-main .experience-section p,
    .agent-profile .content-main .service-areas p {
        line-height: 1.7;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 1.5rem;
    }

.agent-profile .content-main .highlight-box {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 2rem 0;
}

    .agent-profile .content-main .highlight-box h4 {
        color: var(--heading-color);
        font-style: italic;
        font-weight: 500;
        margin: 0;
        font-size: 1.2rem;
        line-height: 1.5;
    }

.agent-profile .content-main .timeline .timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

    .agent-profile .content-main .timeline .timeline-item:last-child {
        margin-bottom: 0;
    }

        .agent-profile .content-main .timeline .timeline-item:last-child::before {
            display: none;
        }

    .agent-profile .content-main .timeline .timeline-item::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 30px;
        bottom: -2rem;
        width: 2px;
        background: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .agent-profile .content-main .timeline .timeline-item .timeline-marker {
        position: absolute;
        left: 0;
        top: 0;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: var(--accent-color);
        border: 4px solid var(--surface-color);
        box-shadow: 0 0 0 2px var(--accent-color);
    }

    .agent-profile .content-main .timeline .timeline-item .timeline-content .timeline-year {
        display: inline-block;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 4px 12px;
        border-radius: 15px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .agent-profile .content-main .timeline .timeline-item .timeline-content h5 {
        color: var(--heading-color);
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .agent-profile .content-main .timeline .timeline-item .timeline-content p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
        font-size: 0.95rem;
    }

.agent-profile .content-main .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

    .agent-profile .content-main .areas-grid .area-item {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.5rem;
        background: color-mix(in srgb, var(--accent-color), transparent 97%);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

        .agent-profile .content-main .areas-grid .area-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
        }

        .agent-profile .content-main .areas-grid .area-item i {
            font-size: 1.5rem;
            color: var(--accent-color);
            margin-top: 0.25rem;
        }

        .agent-profile .content-main .areas-grid .area-item h5 {
            color: var(--heading-color);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .agent-profile .content-main .areas-grid .area-item p {
            color: color-mix(in srgb, var(--default-color), transparent 25%);
            margin: 0;
            font-size: 0.9rem;
        }

.agent-profile .content-sidebar .contact-widget,
.agent-profile .content-sidebar .quick-contact-form,
.agent-profile .content-sidebar .achievements-widget,
.agent-profile .content-sidebar .office-info {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

    .agent-profile .content-sidebar .contact-widget h4,
    .agent-profile .content-sidebar .contact-widget h5,
    .agent-profile .content-sidebar .quick-contact-form h4,
    .agent-profile .content-sidebar .quick-contact-form h5,
    .agent-profile .content-sidebar .achievements-widget h4,
    .agent-profile .content-sidebar .achievements-widget h5,
    .agent-profile .content-sidebar .office-info h4,
    .agent-profile .content-sidebar .office-info h5 {
        color: var(--heading-color);
        font-weight: 600;
        margin-bottom: 1rem;
    }

.agent-profile .content-sidebar .contact-methods .contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .agent-profile .content-sidebar .contact-methods .contact-method.primary {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

        .agent-profile .content-sidebar .contact-methods .contact-method.primary:hover {
            background: color-mix(in srgb, var(--accent-color), black 10%);
            color: var(--contrast-color);
            transform: translateY(-2px);
        }

    .agent-profile .content-sidebar .contact-methods .contact-method:not(.primary) {
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
    }

        .agent-profile .content-sidebar .contact-methods .contact-method:not(.primary):hover {
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            border-color: var(--accent-color);
            transform: translateY(-2px);
        }

    .agent-profile .content-sidebar .contact-methods .contact-method i {
        font-size: 1.2rem;
        width: 20px;
    }

    .agent-profile .content-sidebar .contact-methods .contact-method .method-label {
        display: block;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .agent-profile .content-sidebar .contact-methods .contact-method .method-value {
        display: block;
        font-size: 0.9rem;
    }

.agent-profile .content-sidebar .social-links {
    display: flex;
    gap: 8px;
    margin-top: 1rem;
}

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

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

.agent-profile .content-sidebar .php-email-form input[type=text],
.agent-profile .content-sidebar .php-email-form input[type=email],
.agent-profile .content-sidebar .php-email-form select,
.agent-profile .content-sidebar .php-email-form textarea {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
}

    .agent-profile .content-sidebar .php-email-form input[type=text]:focus,
    .agent-profile .content-sidebar .php-email-form input[type=email]:focus,
    .agent-profile .content-sidebar .php-email-form select:focus,
    .agent-profile .content-sidebar .php-email-form textarea:focus {
        border-color: var(--accent-color);
        box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
    }

    .agent-profile .content-sidebar .php-email-form input[type=text]::placeholder,
    .agent-profile .content-sidebar .php-email-form input[type=email]::placeholder,
    .agent-profile .content-sidebar .php-email-form select::placeholder,
    .agent-profile .content-sidebar .php-email-form textarea::placeholder {
        color: color-mix(in srgb, var(--default-color), transparent 60%);
    }

.agent-profile .content-sidebar .php-email-form .btn-submit {
    width: 100%;
    background: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

    .agent-profile .content-sidebar .php-email-form .btn-submit:hover {
        background: color-mix(in srgb, var(--accent-color), black 10%);
        transform: translateY(-2px);
    }

.agent-profile .content-sidebar .achievement-list .achievement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 12px;
    margin-bottom: 0.75rem;
}

    .agent-profile .content-sidebar .achievement-list .achievement-item:last-child {
        margin-bottom: 0;
    }

    .agent-profile .content-sidebar .achievement-list .achievement-item .achievement-icon {
        width: 40px;
        height: 40px;
        background: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .agent-profile .content-sidebar .achievement-list .achievement-item .achievement-icon i {
            font-size: 1.1rem;
        }

    .agent-profile .content-sidebar .achievement-list .achievement-item .achievement-text h6 {
        color: var(--heading-color);
        font-weight: 600;
        margin: 0 0 3px 0;
        font-size: 0.9rem;
    }

    .agent-profile .content-sidebar .achievement-list .achievement-item .achievement-text span {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.8rem;
    }

.agent-profile .content-sidebar .office-details .office-address,
.agent-profile .content-sidebar .office-details .office-hours {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

    .agent-profile .content-sidebar .office-details .office-address:last-child,
    .agent-profile .content-sidebar .office-details .office-hours:last-child {
        margin-bottom: 0;
    }

    .agent-profile .content-sidebar .office-details .office-address i,
    .agent-profile .content-sidebar .office-details .office-hours i {
        color: var(--accent-color);
        font-size: 1.1rem;
        margin-top: 3px;
    }

    .agent-profile .content-sidebar .office-details .office-address span,
    .agent-profile .content-sidebar .office-details .office-hours span {
        display: block;
    }

        .agent-profile .content-sidebar .office-details .office-address span:first-child,
        .agent-profile .content-sidebar .office-details .office-hours span:first-child {
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 3px;
        }

        .agent-profile .content-sidebar .office-details .office-address span:last-child,
        .agent-profile .content-sidebar .office-details .office-hours span:last-child {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 0.9rem;
            line-height: 1.4;
        }

.agent-profile .performance-metrics {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

    .agent-profile .performance-metrics .metrics-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

        .agent-profile .performance-metrics .metrics-grid .metric-card {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.5rem;
            background: color-mix(in srgb, var(--accent-color), transparent 97%);
            border-radius: 15px;
            transition: all 0.3s ease;
        }

            .agent-profile .performance-metrics .metrics-grid .metric-card:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
            }

            .agent-profile .performance-metrics .metrics-grid .metric-card .metric-icon {
                width: 60px;
                height: 60px;
                background: var(--accent-color);
                color: var(--contrast-color);
                border-radius: 15px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

                .agent-profile .performance-metrics .metrics-grid .metric-card .metric-icon i {
                    font-size: 1.5rem;
                }

            .agent-profile .performance-metrics .metrics-grid .metric-card .metric-data .metric-number {
                display: block;
                font-size: 1.8rem;
                font-weight: 700;
                color: var(--heading-color);
                line-height: 1;
                margin-bottom: 5px;
            }

            .agent-profile .performance-metrics .metrics-grid .metric-card .metric-data .metric-label {
                display: block;
                color: color-mix(in srgb, var(--default-color), transparent 25%);
                font-size: 0.9rem;
                font-weight: 500;
            }

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-block {
    background: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

    .services .service-block .service-content {
        padding: 40px 30px 30px;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

        .services .service-block .service-content .icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }

            .services .service-block .service-content .icon i {
                font-size: 32px;
                color: var(--contrast-color);
            }

        .services .service-block .service-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--heading-color);
        }

        .services .service-block .service-content p {
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            line-height: 1.6;
            margin-bottom: 25px;
            flex: 1;
        }

        .services .service-block .service-content .stats {
            display: flex;
            gap: 30px;
            margin-bottom: 25px;
        }

            .services .service-block .service-content .stats .stat-item .number {
                display: block;
                font-size: 24px;
                font-weight: 700;
                color: var(--accent-color);
                font-family: var(--heading-font);
            }

            .services .service-block .service-content .stats .stat-item .label {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
            }

        .services .service-block .service-content .btn-service {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--accent-color);
            font-weight: 600;
            text-decoration: none;
            font-size: 16px;
            transition: all 0.3s ease;
        }

            .services .service-block .service-content .btn-service:hover {
                color: var(--heading-color);
                gap: 12px;
            }

            .services .service-block .service-content .btn-service i {
                transition: all 0.3s ease;
            }

    .services .service-block .service-image {
        height: 250px;
        overflow: hidden;
    }

        .services .service-block .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

    .services .service-block:hover .service-image img {
        transform: scale(1.05);
    }

.services .service-card {
    background: var(--surface-color);
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}

    .services .service-card:hover {
        border-color: var(--accent-color);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
    }

    .services .service-card .card-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

        .services .service-card .card-icon i {
            font-size: 36px;
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

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

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

    .services .service-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

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

    .services .service-card .feature-list {
        margin-bottom: 25px;
    }

        .services .service-card .feature-list .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 8px;
            justify-content: center;
            font-size: 14px;
        }

            .services .service-card .feature-list .feature-item i {
                color: var(--accent-color);
                font-size: 16px;
                flex-shrink: 0;
            }

            .services .service-card .feature-list .feature-item span {
                color: color-mix(in srgb, var(--default-color), transparent 20%);
            }

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

        .services .service-card .service-link:hover {
            color: var(--heading-color);
            gap: 12px;
        }

.services .cta-section {
    margin-top: 60px;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
    border-radius: 15px;
    padding: 40px;
}

    .services .cta-section h3 {
        color: var(--contrast-color);
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .services .cta-section p {
        color: color-mix(in srgb, var(--contrast-color), transparent 20%);
        margin-bottom: 0;
        font-size: 16px;
        line-height: 1.6;
    }

    .services .cta-section .btn-cta {
        background: var(--contrast-color);
        color: var(--accent-color);
        padding: 12px 30px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }

        .services .cta-section .btn-cta:hover {
            background: color-mix(in srgb, var(--contrast-color), transparent 10%);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
        }

@media (max-width: 768px) {
    .services .service-block .service-content {
        padding: 30px 20px 20px;
    }

        .services .service-block .service-content .stats {
            gap: 20px;
        }

    .services .service-block .service-image {
        height: 200px;
    }

    .services .service-card {
        padding: 25px 20px;
    }

    .services .cta-section {
        padding: 30px 20px;
        text-align: center;
    }

        .services .cta-section .btn-cta {
            margin-top: 20px;
        }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-sidebar .service-hero {
    position: relative;
    margin-bottom: 2.5rem;
    border-radius: 20px;
    overflow: hidden;
}

    .service-details .service-sidebar .service-hero img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-details .service-sidebar .service-hero .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
        display: flex;
        align-items: flex-end;
        padding: 1.5rem;
    }

    .service-details .service-sidebar .service-hero .service-badge {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        color: var(--heading-color);
        padding: 12px 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: 600;
        font-size: 14px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

        .service-details .service-sidebar .service-hero .service-badge i {
            color: var(--accent-color);
            font-size: 16px;
        }

    .service-details .service-sidebar .service-hero:hover img {
        transform: scale(1.05);
    }

.service-details .service-sidebar .quick-contact-card {
    background: var(--surface-color);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .service-details .service-sidebar .quick-contact-card .contact-header {
        text-align: center;
        margin-bottom: 1.5rem;
    }

        .service-details .service-sidebar .quick-contact-card .contact-header h4 {
            color: var(--heading-color);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .service-details .service-sidebar .quick-contact-card .contact-header p {
            color: var(--default-color);
            font-size: 14px;
            margin: 0;
        }

    .service-details .service-sidebar .quick-contact-card .form-group {
        margin-bottom: 1rem;
    }

    .service-details .service-sidebar .quick-contact-card .form-control,
    .service-details .service-sidebar .quick-contact-card select {
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
        border-radius: 10px;
        padding: 12px 16px;
        font-size: 14px;
        background-color: var(--surface-color);
        color: var(--default-color);
        transition: border-color 0.3s ease;
    }

        .service-details .service-sidebar .quick-contact-card .form-control:focus,
        .service-details .service-sidebar .quick-contact-card select:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
            outline: 0;
        }

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

    .service-details .service-sidebar .quick-contact-card .btn-submit {
        width: 100%;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
        color: var(--contrast-color);
        border: none;
        padding: 14px 24px;
        border-radius: 12px;
        font-weight: 600;
        font-size: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
        margin-top: 1rem;
    }

        .service-details .service-sidebar .quick-contact-card .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .service-details .service-sidebar .quick-contact-card .btn-submit i {
            transition: transform 0.3s ease;
        }

        .service-details .service-sidebar .quick-contact-card .btn-submit:hover i {
            transform: translateX(3px);
        }

.service-details .service-sidebar .expertise-highlights {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

    .service-details .service-sidebar .expertise-highlights h5 {
        color: var(--heading-color);
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }

    .service-details .service-sidebar .expertise-highlights .highlight-list .highlight-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 8px 0;
    }

        .service-details .service-sidebar .expertise-highlights .highlight-list .highlight-item i {
            color: var(--accent-color);
            font-size: 16px;
            width: 20px;
        }

        .service-details .service-sidebar .expertise-highlights .highlight-list .highlight-item span {
            color: var(--default-color);
            font-size: 13px;
            font-weight: 500;
        }

.service-details .service-main-content {
    padding-right: 2rem;
}

    .service-details .service-main-content .content-header {
        margin-bottom: 3rem;
    }

        .service-details .service-main-content .content-header .service-category {
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            display: inline-block;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1rem;
        }

        .service-details .service-main-content .content-header h1 {
            color: var(--heading-color);
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .service-details .service-main-content .content-header .service-intro {
            font-size: 1.1rem;
            color: var(--default-color);
            line-height: 1.7;
            margin: 0;
        }

    .service-details .service-main-content .investment-types {
        margin-bottom: 3.5rem;
    }

        .service-details .service-main-content .investment-types h3 {
            color: var(--heading-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .service-details .service-main-content .investment-types .types-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

            .service-details .service-main-content .investment-types .types-grid .type-card {
                background: var(--surface-color);
                padding: 2rem;
                border-radius: 16px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                transition: all 0.3s ease;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
            }

                .service-details .service-main-content .investment-types .types-grid .type-card:hover {
                    transform: translateY(-8px);
                    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
                }

                .service-details .service-main-content .investment-types .types-grid .type-card .type-icon {
                    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
                    color: var(--contrast-color);
                    width: 60px;
                    height: 60px;
                    border-radius: 16px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 1.5rem;
                }

                    .service-details .service-main-content .investment-types .types-grid .type-card .type-icon i {
                        font-size: 24px;
                    }

                .service-details .service-main-content .investment-types .types-grid .type-card h4 {
                    color: var(--heading-color);
                    font-size: 1.2rem;
                    font-weight: 600;
                    margin-bottom: 1rem;
                }

                .service-details .service-main-content .investment-types .types-grid .type-card p {
                    color: var(--default-color);
                    font-size: 14px;
                    line-height: 1.6;
                    margin-bottom: 1.5rem;
                }

                .service-details .service-main-content .investment-types .types-grid .type-card .roi-indicator {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 12px 16px;
                    background: color-mix(in srgb, var(--accent-color), transparent 95%);
                    border-radius: 8px;
                }

                    .service-details .service-main-content .investment-types .types-grid .type-card .roi-indicator .roi-label {
                        color: var(--default-color);
                        font-size: 12px;
                        font-weight: 500;
                    }

                    .service-details .service-main-content .investment-types .types-grid .type-card .roi-indicator .roi-value {
                        color: var(--accent-color);
                        font-size: 16px;
                        font-weight: 700;
                    }

    .service-details .service-main-content .service-methodology {
        margin-bottom: 3.5rem;
    }

        .service-details .service-main-content .service-methodology h3 {
            color: var(--heading-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .service-details .service-main-content .service-methodology .methodology-timeline {
            position: relative;
            padding-left: 2rem;
        }

            .service-details .service-main-content .service-methodology .methodology-timeline::before {
                content: "";
                position: absolute;
                left: 22px;
                top: 20px;
                bottom: 20px;
                width: 3px;
                background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
                border-radius: 3px;
            }

            .service-details .service-main-content .service-methodology .methodology-timeline .timeline-item {
                position: relative;
                margin-bottom: 2.5rem;
            }

                .service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-marker {
                    position: absolute;
                    left: -2rem;
                    top: 1rem;
                    width: 45px;
                    height: 45px;
                    background: var(--surface-color);
                    border: 3px solid var(--accent-color);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
                }

                    .service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-marker .step-num {
                        color: var(--accent-color);
                        font-weight: 700;
                        font-size: 14px;
                    }

                .service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-content {
                    background: var(--surface-color);
                    padding: 1.5rem 2rem;
                    border-radius: 12px;
                    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                }

                    .service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-content h5 {
                        color: var(--heading-color);
                        font-size: 1.1rem;
                        font-weight: 600;
                        margin-bottom: 0.5rem;
                    }

                    .service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-content p {
                        color: var(--default-color);
                        font-size: 14px;
                        line-height: 1.6;
                        margin: 0;
                    }

    .service-details .service-main-content .performance-metrics {
        margin-bottom: 3.5rem;
    }

        .service-details .service-main-content .performance-metrics h3 {
            color: var(--heading-color);
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 2rem;
        }

        .service-details .service-main-content .performance-metrics .metrics-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

            .service-details .service-main-content .performance-metrics .metrics-container .metric-box {
                text-align: center;
                padding: 2rem;
                background: var(--surface-color);
                border-radius: 16px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
                border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
            }

                .service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-value {
                    font-size: 3rem;
                    font-weight: 800;
                    color: var(--accent-color);
                    display: block;
                    margin-bottom: 0.5rem;
                }

                .service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-label {
                    color: var(--heading-color);
                    font-size: 1rem;
                    font-weight: 600;
                    margin-bottom: 0.25rem;
                }

                .service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-description {
                    color: var(--default-color);
                    font-size: 12px;
                    opacity: 0.8;
                }

    .service-details .service-main-content .testimonial-section h3 {
        color: var(--heading-color);
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 2rem;
    }

    .service-details .service-main-content .testimonial-section .testimonial-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }

        .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card {
            background: var(--surface-color);
            padding: 2rem;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border-left: 4px solid var(--accent-color);
        }

            .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .quote-content {
                margin-bottom: 1.5rem;
            }

                .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .quote-content p {
                    color: var(--default-color);
                    font-style: italic;
                    font-size: 15px;
                    line-height: 1.6;
                    margin: 0;
                    position: relative;
                }

                    .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .quote-content p::before {
                        content: '"';
                        font-size: 3rem;
                        color: color-mix(in srgb, var(--accent-color), transparent 30%);
                        position: absolute;
                        left: -1rem;
                        top: -0.5rem;
                        font-family: Georgia, serif;
                    }

            .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info {
                display: flex;
                align-items: center;
                gap: 1rem;
            }

                .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info .client-photo {
                    width: 50px;
                    height: 50px;
                    border-radius: 50%;
                    object-fit: cover;
                    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
                }

                .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info .client-details h6 {
                    color: var(--heading-color);
                    font-size: 14px;
                    font-weight: 600;
                    margin-bottom: 2px;
                }

                .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info .client-details span {
                    color: var(--accent-color);
                    font-size: 12px;
                    font-weight: 500;
                }

@media (max-width: 992px) {
    .service-details .service-main-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

        .service-details .service-main-content .content-header h1 {
            font-size: 2.2rem;
        }

        .service-details .service-main-content .investment-types .types-grid {
            grid-template-columns: 1fr;
        }

        .service-details .service-main-content .methodology-timeline {
            padding-left: 1.5rem;
        }

            .service-details .service-main-content .methodology-timeline::before {
                left: 17px;
            }

            .service-details .service-main-content .methodology-timeline .timeline-item .timeline-marker {
                left: -1.5rem;
                width: 35px;
                height: 35px;
            }

                .service-details .service-main-content .methodology-timeline .timeline-item .timeline-marker .step-num {
                    font-size: 12px;
                }

    .service-details .service-sidebar .service-hero {
        margin-bottom: 2rem;
    }

        .service-details .service-sidebar .service-hero img {
            height: 220px;
        }

    .service-details .service-sidebar .quick-contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .service-details .service-main-content .content-header h1 {
        font-size: 1.8rem;
    }

    .service-details .service-main-content .content-header .service-intro {
        font-size: 1rem;
    }

    .service-details .service-main-content .performance-metrics .metrics-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

        .service-details .service-main-content .performance-metrics .metrics-container .metric-box {
            padding: 1.5rem;
        }

            .service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-value {
                font-size: 2.5rem;
            }

    .service-details .service-main-content .testimonial-section .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

        .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card {
            padding: 1.5rem;
        }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .post-item {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

    .blog-hero .post-item:hover .post-img img {
        transform: scale(1.1);
    }

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

    .blog-hero .post-item .post-img {
        position: relative;
        overflow: hidden;
        margin-bottom: 16px;
    }

        .blog-hero .post-item .post-img img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .blog-hero .post-item .post-img .category {
            position: absolute;
            top: 15px;
            left: 15px;
            padding: 5px 15px;
            font-size: 14px;
            color: var(--contrast-color);
            border-radius: 4px;
            z-index: 1;
        }

            .blog-hero .post-item .post-img .category.entertainment {
                background-color: #e74c3c;
            }

            .blog-hero .post-item .post-img .category.business {
                background-color: #3498db;
            }

            .blog-hero .post-item .post-img .category.technology {
                background-color: #2ecc71;
            }

            .blog-hero .post-item .post-img .category.lifestyle {
                background-color: #9b59b6;
            }

    .blog-hero .post-item .post-content .post-title {
        margin: 0 0 12px;
        font-family: var(--heading-font);
    }

        .blog-hero .post-item .post-content .post-title a {
            color: var(--heading-color);
            transition: color 0.3s ease;
        }

            .blog-hero .post-item .post-content .post-title a:hover {
                color: var(--accent-color);
            }

    .blog-hero .post-item .post-content .post-meta {
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .blog-hero .post-item .post-content .post-meta .dot {
            margin: 0 8px;
        }

.blog-hero .main-post {
    margin-bottom: 0;
}

    .blog-hero .main-post .post-img {
        margin-bottom: 20px;
    }

    .blog-hero .main-post .post-title {
        font-size: 28px;
        line-height: 1.3;
    }

@media (max-width: 991.98px) {
    .blog-hero .main-post .post-title {
        font-size: 24px;
    }
}

.blog-hero .side-posts .side-post {
    margin-bottom: 30px;
}

    .blog-hero .side-posts .side-post:last-child {
        margin-bottom: 0;
    }

    .blog-hero .side-posts .side-post .post-title {
        font-size: 16px;
        line-height: 1.4;
    }

@media (max-width: 991.98px) {
    .blog-hero .side-posts {
        margin-top: 0;
    }
}

/*--------------------------------------------------------------
# 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.3s;
    }

        .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.3s 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.3s 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: 1000px;
    margin: 0 auto;
}

    .blog-details .hero-img {
        position: relative;
        width: 100%;
        height: 500px;
        margin: -60px auto 3rem;
        border-radius: 0 0 16px 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

        .blog-details .hero-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-details .hero-img .meta-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 2rem;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
        }

            .blog-details .hero-img .meta-overlay .meta-categories .category {
                color: var(--contrast-color);
                background-color: var(--accent-color);
                padding: 0.4rem 1rem;
                border-radius: 30px;
                font-size: 0.9rem;
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .blog-details .hero-img .meta-overlay .meta-categories .category:hover {
                    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                }

            .blog-details .hero-img .meta-overlay .meta-categories .divider {
                color: var(--contrast-color);
                margin: 0 0.75rem;
            }

            .blog-details .hero-img .meta-overlay .meta-categories .reading-time {
                color: var(--contrast-color);
                font-size: 0.9rem;
            }

                .blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
                    margin-right: 0.3rem;
                }

@media (max-width: 768px) {
    .blog-details .hero-img {
        height: 350px;
        margin-top: -30px;
        margin-bottom: 2rem;
    }
}

.blog-details .article-content {
    padding: 0 1rem;
}

    .blog-details .article-content .content-header {
        margin-bottom: 3rem;
    }

        .blog-details .article-content .content-header .title {
            font-size: 2.8rem;
            line-height: 1.2;
            margin-bottom: 2rem;
            font-weight: 700;
            color: var(--heading-color);
        }

@media (max-width: 768px) {
    .blog-details .article-content .content-header .title {
        font-size: 2rem;
    }
}

.blog-details .article-content .content-header .author-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .blog-details .article-content .content-header .author-info .author-details {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

        .blog-details .article-content .content-header .author-info .author-details .author-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .blog-details .article-content .content-header .author-info .author-details .info h4 {
            margin: 0;
            font-size: 1.1rem;
            color: var(--heading-color);
        }

        .blog-details .article-content .content-header .author-info .author-details .info .role {
            font-size: 0.9rem;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
        }

    .blog-details .article-content .content-header .author-info .post-meta {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
    }

        .blog-details .article-content .content-header .author-info .post-meta i {
            margin-right: 0.3rem;
        }

        .blog-details .article-content .content-header .author-info .post-meta .divider {
            margin: 0 0.75rem;
        }

.blog-details .article-content .content {
    font-size: 1.15rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
}

    .blog-details .article-content .content .lead {
        font-size: 1.3rem;
        color: var(--heading-color);
        margin-bottom: 2rem;
        font-weight: 500;
    }

    .blog-details .article-content .content h2 {
        font-size: 2rem;
        color: var(--heading-color);
        margin: 3rem 0 1.5rem;
    }

    .blog-details .article-content .content p {
        margin-bottom: 1.5rem;
    }

    .blog-details .article-content .content ul {
        margin-bottom: 2rem;
        padding-left: 1.2rem;
    }

        .blog-details .article-content .content ul li {
            margin-bottom: 0.75rem;
            position: relative;
        }

    .blog-details .article-content .content .content-image {
        margin: 2.5rem 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    }

        .blog-details .article-content .content .content-image.right-aligned {
            float: right;
            max-width: 450px;
            margin: 1rem 0 2rem 2rem;
        }

@media (max-width: 768px) {
    .blog-details .article-content .content .content-image.right-aligned {
        float: none;
        max-width: 100%;
        margin: 2rem 0;
    }
}

.blog-details .article-content .content .content-image img {
    width: 100%;
    height: auto;
}

.blog-details .article-content .content .content-image figcaption {
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
}

    .blog-details .article-content .content .highlight-box h3 {
        color: var(--heading-color);
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .blog-details .article-content .content .highlight-box .trend-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .blog-details .article-content .content .highlight-box .trend-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
        }

            .blog-details .article-content .content .highlight-box .trend-list li i {
                color: var(--accent-color);
                font-size: 1.5rem;
                margin-right: 1rem;
            }

            .blog-details .article-content .content .highlight-box .trend-list li span {
                color: var(--heading-color);
                font-weight: 500;
            }

.blog-details .article-content .content .content-grid {
    margin: 3rem 0;
}

    .blog-details .article-content .content .content-grid .info-card {
        background: var(--surface-color);
        border-radius: 12px;
        padding: 2rem;
        height: 100%;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease;
    }

        .blog-details .article-content .content .content-grid .info-card:hover {
            transform: translateY(-5px);
        }

        .blog-details .article-content .content .content-grid .info-card i {
            font-size: 2rem;
            color: var(--accent-color);
            margin-bottom: 1rem;
        }

        .blog-details .article-content .content .content-grid .info-card h4 {
            color: var(--heading-color);
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .blog-details .article-content .content .content-grid .info-card p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.6;
        }

.blog-details .article-content .content blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2rem 3rem;
    background: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

    .blog-details .article-content .content blockquote::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 8rem;
        color: color-mix(in srgb, var(--accent-color), transparent 85%);
        font-family: serif;
        line-height: 1;
    }

    .blog-details .article-content .content blockquote p {
        font-size: 1.3rem;
        font-style: italic;
        color: var(--heading-color);
        margin: 0 0 1rem;
        position: relative;
    }

    .blog-details .article-content .content blockquote cite {
        font-style: normal;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 0.95rem;
        display: block;
    }

.blog-details .article-content .meta-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    display: grid;
    gap: 2rem;
}

    .blog-details .article-content .meta-bottom h4 {
        color: var(--heading-color);
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .blog-details .article-content .meta-bottom .tags {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

        .blog-details .article-content .meta-bottom .tags .tag {
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            padding: 0.5rem 1rem;
            border-radius: 30px;
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

            .blog-details .article-content .meta-bottom .tags .tag:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
            }

    .blog-details .article-content .meta-bottom .social-links {
        display: flex;
        gap: 1rem;
    }

        .blog-details .article-content .meta-bottom .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            transition: all 0.3s ease;
        }

            .blog-details .article-content .meta-bottom .social-links a:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
            }

            .blog-details .article-content .meta-bottom .social-links a i {
                font-size: 1.2rem;
            }

/*--------------------------------------------------------------
# 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.3s 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.3s 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.3s 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.3s ease;
    }

        .blog-comments .comment-actions .action-btn i {
            font-size: 15px;
            transition: all 0.3s 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.3s 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-info-box {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact-2 .contact-info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .contact-2 .contact-info-box .icon-box {
        background-color: 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;
    }

        .contact-2 .contact-info-box .icon-box i {
            font-size: 24px;
        }

    .contact-2 .contact-info-box .info-content h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact-2 .contact-info-box .info-content p {
        margin-bottom: 5px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 15px;
        line-height: 1.5;
    }

        .contact-2 .contact-info-box .info-content p:last-child {
            margin-bottom: 0;
        }

.contact-2 .map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

    .contact-2 .map-section iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
    }

.contact-2 .form-container-overlap {
    position: relative;
    margin-top: -150px;
    margin-bottom: 60px;
    z-index: 10;
}

.contact-2 .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

    .contact-2 .contact-form-wrapper h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

        .contact-2 .contact-form-wrapper h2:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

    .contact-2 .contact-form-wrapper .form-group {
        margin-bottom: 20px;
    }

        .contact-2 .contact-form-wrapper .form-group .input-with-icon {
            position: relative;
        }

            .contact-2 .contact-form-wrapper .form-group .input-with-icon i {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 18px;
                z-index: 10;
            }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
                    top: 28px;
                }

            .contact-2 .contact-form-wrapper .form-group .input-with-icon textarea + i {
                top: 25px;
                transform: none;
            }

            .contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
                border-radius: 8px;
                padding: 12px 15px 12px 45px;
                height: 3.5rem;
                color: var(--default-color);
                background-color: var(--surface-color);
                font-size: 15px;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
                }

                .contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

            .contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
                height: 180px;
                resize: none;
                padding-top: 15px;
            }

    .contact-2 .contact-form-wrapper .btn-submit {
        background-color: var(--accent-color);
        border: none;
        color: var(--contrast-color);
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .contact-2 .contact-form-wrapper .btn-submit:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .contact-2 .contact-form-wrapper .btn-submit:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .contact-2 .contact-form-wrapper .loading,
    .contact-2 .contact-form-wrapper .error-message,
    .contact-2 .contact-form-wrapper .sent-message {
        margin-top: 10px;
        margin-bottom: 20px;
    }

@media (max-width: 992px) {
    .contact-2 .form-container-overlap {
        margin-top: -120px;
    }

    .contact-2 .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact-2 .contact-info-box {
        margin-bottom: 20px;
    }

    .contact-2 .form-container-overlap {
        margin-top: -100px;
    }

    .contact-2 .contact-form-wrapper {
        padding: 25px;
    }

        .contact-2 .contact-form-wrapper h2 {
            font-size: 24px;
        }

    .contact-2 .map-section {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact-2 .form-container-overlap {
        margin-top: -80px;
    }

    .contact-2 .contact-form-wrapper {
        padding: 20px;
    }

    .contact-2 .btn-submit {
        width: 100%;
    }

    .contact-2 .map-section {
        height: 400px;
    }
}

/*--------------------------------------------------------------
# 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.3s;
    }

        .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 .privacy-content {
    font-size: 16px;
    line-height: 1.7;
}

    .privacy .privacy-content .last-updated {
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 40px;
        border-left: 4px solid var(--accent-color);
    }

        .privacy .privacy-content .last-updated p {
            margin: 0;
            color: var(--heading-color);
        }

    .privacy .privacy-content .privacy-section {
        margin-bottom: 50px;
    }

        .privacy .privacy-content .privacy-section h3 {
            font-size: 28px;
            margin-bottom: 25px;
            color: var(--heading-color);
            position: relative;
            padding-bottom: 15px;
        }

            .privacy .privacy-content .privacy-section h3:after {
                content: "";
                position: absolute;
                left: 0;
                bottom: 0;
                width: 50px;
                height: 3px;
                background: var(--accent-color);
                border-radius: 2px;
            }

        .privacy .privacy-content .privacy-section h4 {
            color: var(--heading-color);
            font-size: 22px;
            margin: 30px 0 15px 0;
        }

        .privacy .privacy-content .privacy-section h5 {
            color: var(--heading-color);
            font-size: 18px;
            margin-bottom: 10px;
        }

        .privacy .privacy-content .privacy-section p {
            margin-bottom: 20px;
            color: var(--default-color);
        }

        .privacy .privacy-content .privacy-section ul,
        .privacy .privacy-content .privacy-section ol {
            margin: 20px 0;
            padding-left: 30px;
        }

            .privacy .privacy-content .privacy-section ul li,
            .privacy .privacy-content .privacy-section ol li {
                margin-bottom: 10px;
                color: var(--default-color);
            }

        .privacy .privacy-content .privacy-section .info-box {
            background: var(--surface-color);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .privacy .privacy-content .privacy-section .info-box h4 {
                color: var(--heading-color);
                margin-top: 0;
            }

        .privacy .privacy-content .privacy-section .highlight-box {
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            color: var(--contrast-color);
            margin: 40px 0;
        }

            .privacy .privacy-content .privacy-section .highlight-box i {
                font-size: 48px;
                margin-bottom: 20px;
                display: block;
            }

            .privacy .privacy-content .privacy-section .highlight-box h4 {
                color: var(--contrast-color);
                margin-bottom: 15px;
            }

            .privacy .privacy-content .privacy-section .highlight-box p {
                color: var(--contrast-color);
                margin: 0;
                opacity: 0.9;
            }

        .privacy .privacy-content .privacy-section .security-measures {
            margin: 30px 0;
        }

            .privacy .privacy-content .privacy-section .security-measures .measure-item {
                text-align: center;
                padding: 30px 20px;
                border-radius: 10px;
                background: var(--surface-color);
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                transition: all 0.3s ease;
            }

                .privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
                    transform: translateY(-5px);
                    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                }

                .privacy .privacy-content .privacy-section .security-measures .measure-item i {
                    font-size: 36px;
                    color: var(--accent-color);
                    margin-bottom: 20px;
                    display: block;
                }

                .privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
                    margin-bottom: 15px;
                }

                .privacy .privacy-content .privacy-section .security-measures .measure-item p {
                    margin: 0;
                    font-size: 14px;
                }

        .privacy .privacy-content .privacy-section .rights-list {
            margin: 30px 0;
        }

            .privacy .privacy-content .privacy-section .rights-list .right-item {
                display: flex;
                align-items: flex-start;
                padding: 25px;
                margin-bottom: 20px;
                background: var(--surface-color);
                border-radius: 10px;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                transition: all 0.3s ease;
            }

                .privacy .privacy-content .privacy-section .rights-list .right-item:hover {
                    border-color: var(--accent-color);
                    transform: translateX(5px);
                }

                .privacy .privacy-content .privacy-section .rights-list .right-item i {
                    font-size: 24px;
                    color: var(--accent-color);
                    margin-right: 20px;
                    margin-top: 5px;
                    min-width: 24px;
                }

                .privacy .privacy-content .privacy-section .rights-list .right-item div {
                    flex: 1;
                }

                    .privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
                        margin-bottom: 10px;
                    }

                    .privacy .privacy-content .privacy-section .rights-list .right-item div p {
                        margin: 0;
                        font-size: 14px;
                    }

        .privacy .privacy-content .privacy-section .cookie-types {
            margin: 30px 0;
        }

            .privacy .privacy-content .privacy-section .cookie-types h4 {
                margin-bottom: 20px;
            }

            .privacy .privacy-content .privacy-section .cookie-types .table-responsive {
                border-radius: 10px;
                overflow: hidden;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            }

                .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
                    margin: 0;
                }

                    .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
                        background: color-mix(in srgb, var(--accent-color), transparent 90%);
                    }

                        .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
                            border: none;
                            color: var(--heading-color);
                            font-weight: 600;
                            padding: 15px 20px;
                        }

                    .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
                        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
                        padding: 15px 20px;
                        color: var(--default-color);
                    }

                    .privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
                        background: color-mix(in srgb, var(--accent-color), transparent 97%);
                    }

    .privacy .privacy-content .contact-section {
        background: color-mix(in srgb, var(--accent-color), transparent 96%);
        padding: 40px;
        border-radius: 15px;
        border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    }

        .privacy .privacy-content .contact-section h3 {
            color: var(--heading-color);
            margin-bottom: 20px;
        }

            .privacy .privacy-content .contact-section h3:after {
                background: var(--accent-color);
            }

        .privacy .privacy-content .contact-section .contact-info {
            margin-top: 30px;
        }

            .privacy .privacy-content .contact-section .contact-info .contact-item {
                display: flex;
                align-items: center;
                margin-bottom: 15px;
            }

                .privacy .privacy-content .contact-section .contact-info .contact-item i {
                    font-size: 18px;
                    color: var(--accent-color);
                    margin-right: 15px;
                    min-width: 18px;
                }

                .privacy .privacy-content .contact-section .contact-info .contact-item span {
                    color: var(--default-color);
                }

@media (max-width: 768px) {
    .privacy .privacy-content {
        font-size: 15px;
    }

        .privacy .privacy-content .privacy-section h3 {
            font-size: 24px;
        }

        .privacy .privacy-content .privacy-section h4 {
            font-size: 20px;
        }

        .privacy .privacy-content .privacy-section .security-measures .row > div {
            margin-bottom: 20px;
        }

        .privacy .privacy-content .privacy-section .rights-list .right-item {
            flex-direction: column;
            text-align: center;
        }

            .privacy .privacy-content .privacy-section .rights-list .right-item i {
                margin-right: 0;
                margin-bottom: 15px;
            }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 100px 0;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

    .error-404 .error-wrapper {
        position: relative;
        overflow: hidden;
    }

    .error-404 .error-illustration {
        position: relative;
        height: 350px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .error-404 .error-illustration i {
            font-size: 9rem;
            color: color-mix(in srgb, var(--accent-color), transparent 10%);
            position: relative;
            z-index: 2;
            animation: pulse 2s infinite;
        }

        .error-404 .error-illustration .circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.6;
        }

            .error-404 .error-illustration .circle.circle-1 {
                width: 200px;
                height: 200px;
                background: color-mix(in srgb, var(--accent-color), transparent 80%);
                animation: float 6s ease-in-out infinite;
            }

            .error-404 .error-illustration .circle.circle-2 {
                width: 120px;
                height: 120px;
                background: color-mix(in srgb, var(--heading-color), transparent 85%);
                top: 30%;
                left: 25%;
                animation: float 8s ease-in-out infinite;
            }

            .error-404 .error-illustration .circle.circle-3 {
                width: 80px;
                height: 80px;
                background: color-mix(in srgb, var(--accent-color), transparent 75%);
                bottom: 20%;
                right: 30%;
                animation: float 7s ease-in-out infinite reverse;
            }

    .error-404 .error-content {
        padding: 30px 0;
    }

    .error-404 .error-badge {
        display: inline-block;
        background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
        color: var(--accent-color);
        font-size: 0.9rem;
        font-weight: 600;
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        margin-bottom: 1.5rem;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .error-404 .error-code {
        font-size: clamp(5rem, 10vw, 8rem);
        font-weight: 900;
        margin: 0;
        background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        letter-spacing: -2px;
    }

    .error-404 .error-title {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 1.5rem;
    }

    .error-404 .error-description {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 15%);
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .error-404 .error-actions {
        display: flex;
        gap: 1rem;
        margin-bottom: 2.5rem;
        flex-wrap: wrap;
    }

        .error-404 .error-actions .btn-home,
        .error-404 .error-actions .btn-help {
            padding: 0.8rem 1.8rem;
            border-radius: 8px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

            .error-404 .error-actions .btn-home i,
            .error-404 .error-actions .btn-help i {
                font-size: 1.2rem;
            }

        .error-404 .error-actions .btn-home {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border: none;
        }

            .error-404 .error-actions .btn-home:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
            }

        .error-404 .error-actions .btn-help {
            background-color: transparent;
            color: var(--accent-color);
            border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
        }

            .error-404 .error-actions .btn-help:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
                transform: translateY(-3px);
            }

    .error-404 .error-suggestions {
        padding: 1.5rem;
        background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
        border-radius: 12px;
    }

        .error-404 .error-suggestions h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }

        .error-404 .error-suggestions ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .error-404 .error-suggestions ul li {
                margin-bottom: 0.8rem;
            }

                .error-404 .error-suggestions ul li:last-child {
                    margin-bottom: 0;
                }

                .error-404 .error-suggestions ul li a {
                    display: flex;
                    align-items: center;
                    gap: 0.5rem;
                    color: var(--default-color);
                    font-size: 1.05rem;
                    transition: all 0.3s;
                }

                    .error-404 .error-suggestions ul li a i {
                        color: var(--accent-color);
                        font-size: 1.1rem;
                        transition: transform 0.3s;
                    }

                    .error-404 .error-suggestions ul li a:hover {
                        color: var(--accent-color);
                    }

                        .error-404 .error-suggestions ul li a:hover i {
                            transform: translateX(3px);
                        }

@keyframes float {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {

    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@media (max-width: 992px) {
    .error-404 .error-illustration {
        height: 300px;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .error-404 {
        padding: 70px 0;
    }

        .error-404 .error-code {
            font-size: clamp(4rem, 12vw, 6rem);
        }

        .error-404 .error-title {
            font-size: 1.8rem;
        }

        .error-404 .error-actions {
            flex-direction: column;
        }

            .error-404 .error-actions .btn-home,
            .error-404 .error-actions .btn-help {
                width: 100%;
                justify-content: center;
            }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
