:root {
    --primary-yellow: #c5b358;
    --dark-bg: #1a1a1a;
}

body {
    font-family: 'Roboto', sans-serif;
}

/* Header Styles */
.ct-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #000;
    transition: all 0.3s ease;
}

.ct-header.sticky {
    background-color: #000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.ct-sticky-container {
    position: relative;
}

/* Desktop Header */
.header-desktop {
    padding: 1rem 0;
}


.site-branding {
    display: flex;
    align-items: center;
}

.site-logo-container {
    display: block;
    text-decoration: none;
}

.default-logo {
    max-height: 60px;
    width: auto;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.logo-icon {
    color: var(--primary-yellow);
    font-size: 1.8rem;
}

/* Navigation Menu */
.header-menu-1 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.menu-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
    align-items: center;
}

.menu-item {
    position: relative;
}

.ct-menu-link {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border-radius: 0;
    border: none;
    outline: none;
}

/* Modern hover style for main navigation items only (not dropdown items) */
.menu > .menu-item > .ct-menu-link {
    position: relative;
    overflow: hidden;
}

.menu > .menu-item > .ct-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu > .menu-item > .ct-menu-link:hover::before {
    left: 100%;
}

.menu > .menu-item > .ct-menu-link:hover,
.menu > .menu-item > .ct-menu-link.active,
.menu > .menu-item:hover > .ct-menu-link {
    background-color: #2a2a2a !important;
    color: #c5b358 !important;
    opacity: 1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(197, 179, 88, 0.2);
    border: none !important;
    outline: none !important;
}

/* Ensure dropdown icon also changes color on hover */
.menu > .menu-item:hover > .ct-menu-link .dropdown-icon {
    fill: #c5b358;
    transform: translateY(-1px);
}

.dropdown-icon {
    width: 8px;
    height: 8px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-icon {
    transform: rotate(180deg);
}

/* Hide Bootstrap default dropdown arrow */
.dropdown-toggle::after {
    display: none !important;
}

/* Dropdown Menu - Light Theme */
.dropdown-menu {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin-top: 0.5rem;
    min-width: 220px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    visibility: hidden;
}

/* When dropdown is positioned by Bootstrap but not yet shown */
.dropdown-menu[data-bs-popper] {
    display: block;
}

.dropdown-menu.show,
.dropdown-menu[data-bs-popper].show {
    opacity: 1;
    max-height: 500px;
    padding: 0.5rem 0;
    visibility: visible;
}

/* Bootstrap dropdown show state - for smooth animation */
.dropdown-menu.showing {
    opacity: 1;
    max-height: 500px;
    padding: 0.5rem 0;
    visibility: visible;
}

.dropdown-menu .menu-item {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.2s ease;
}

.dropdown-menu .menu-item:last-child {
    border-bottom: none;
}

.dropdown-menu.show .menu-item,
.dropdown-menu.showing .menu-item {
    opacity: 1;
    transform: translateX(0);
}

.dropdown-menu .menu-item:nth-child(1) { transition-delay: 0.05s; }
.dropdown-menu .menu-item:nth-child(2) { transition-delay: 0.1s; }
.dropdown-menu .menu-item:nth-child(3) { transition-delay: 0.15s; }
.dropdown-menu .menu-item:nth-child(4) { transition-delay: 0.2s; }
.dropdown-menu .menu-item:nth-child(5) { transition-delay: 0.25s; }
.dropdown-menu .menu-item:nth-child(6) { transition-delay: 0.3s; }
.dropdown-menu .menu-item:nth-child(7) { transition-delay: 0.35s; }
.dropdown-menu .menu-item:nth-child(8) { transition-delay: 0.4s; }
.dropdown-menu .menu-item:nth-child(9) { transition-delay: 0.45s; }

.dropdown-menu .ct-menu-link {
    color: #333;
    padding: 0.75rem 1.5rem;
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0;
}

.dropdown-menu .ct-menu-link:hover {
    background-color: #f8f9fa;
    color: #c5b358;
}

/* Header CTA Buttons */
.header-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-cta-group-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ct-header-cta {
    display: inline-block;
}

.ct-button-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.ct-button-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.ct-button-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 179, 88, 0.3);
}

.ct-button-ghost:hover::before {
    left: 100%;
}

.ct-button-ghost:hover .ct-icon {
    fill: var(--primary-yellow);
    transform: scale(1.1);
}

.ct-icon {
    width: 15px;
    height: 15px;
    fill: currentColor;
    transition: all 0.3s ease;
}

/* Mobile Header */
.header-mobile {
    padding: 0.75rem 0;
}

.header-cta-group-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Hide LISTINGS and phone buttons on mobile */
.header-cta-group-mobile .ct-header-cta:first-child,
.header-cta-group-mobile .ct-header-cta:nth-child(2) {
    display: none;
}

/* Show LISTINGS button from 768px */
@media (min-width: 768px) {
    .header-cta-group-mobile .ct-header-cta:first-child {
        display: inline-block;
    }
    .footer-brand,.footer-about,.footer-contact-info{
        text-align: left !important;
    }
}

/* Hide phone button in desktop header below 1366px (override Bootstrap d-xl-block) */
.header-cta-group .ct-header-cta:nth-child(2) {
    display: none !important;
}

/* Show phone button only from 1366px */
@media (min-width: 1366px) {
    .header-cta-group-mobile .ct-header-cta:nth-child(2) {
        display: inline-block;
    }

    /* Also show phone button in desktop header from 1366px */
    .header-cta-group .ct-header-cta:nth-child(2) {
        display: inline-block !important;
    }
}

.ct-header-trigger {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ct-header-trigger:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.ct-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ct-header-trigger .ct-icon {
    width: 18px;
    height: 14px;
    fill: currentColor;
}

/* Mobile Offcanvas Menu - Light Theme */
.offcanvas {
    background-color: #fff;
    color: #333;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

.offcanvas-title {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-close {
    filter: none;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 0;
}

.mobile-menu .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}

.mobile-menu .menu-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .ct-menu-link {
    padding: 1rem 1.5rem;
    justify-content: space-between;
    width: 100%;
    color: #333;
}

.mobile-menu .ct-menu-link:hover {
    background-color: #f8f9fa;
    color: #000;
}

.mobile-menu .sub-menu {
    background-color: #f8f9fa;
    padding-left: 0;
    margin: 0;
}

.mobile-menu .sub-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu .sub-menu .ct-menu-link {
    padding: 0.75rem 1.5rem 0.75rem 3rem;
    font-size: 0.85rem;
    text-transform: none;
    color: #666;
}

.mobile-menu .sub-menu .ct-menu-link:hover {
    background-color: #e9ecef;
    color: #000;
}

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../images/banner-bg.jpg') center top 70px / cover no-repeat;
    background-attachment: fixed;
    padding: 0;
    width: 100%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
    color: #fff;
}

.hero-title-section {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.houzez_section_title_wrap {
    text-align: center;
}

.houzez_section_title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.houzez_section_subtitle {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 300;
    color: #fff;
    opacity: 0.9;
}

.hero-social-section {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.elementor-social-icons-wrapper {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.elementor-social-icon {
    color: #fff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    border-bottom: none;
    box-shadow: none;
}

.elementor-social-icon::after,
.elementor-social-icon::before {
    display: none;
}

.elementor-social-icon:hover {
    color: var(--primary-yellow);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.elementor-screen-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hero-buttons-section {
    animation: fadeInUp 1s ease-out 0.4s both;
    display: flex;
    justify-content: center;
}

.elementor-button-wrapper {
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-btn {
    padding: 15px 50px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    min-width:200px;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(197, 179, 88, 0.4);
}

.hero-btn:hover::before {
    left: 100%;
}

.elementor-button-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.elementor-button-text {
    display: inline-block;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: #fff;
}

/* Contact Information - Part of About Section - Modern Attractive Design */
.about-contact-info-wrapper {
    margin: 60px 0 0;
    padding: 50px 0;
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, rgba(245, 245, 245, 0.3) 50%, transparent 100%);
}

.about-contact-items-modern {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-contact-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 179, 88, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.about-contact-card:hover::before {
    opacity: 1;
}

.about-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-yellow);
}

.about-contact-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(197, 179, 88, 0.1) 0%, rgba(197, 179, 88, 0.05) 100%);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.about-contact-card:hover .about-contact-icon-wrapper {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c066 100%);
    transform: scale(1.1);
}

.about-contact-icon-wrapper i {
    font-size: 28px;
    color: #000000;
    transition: all 0.4s ease;
}

.about-contact-card:hover .about-contact-icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

.about-contact-text-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.about-contact-label-modern {
    font-size: 11px;
    font-weight: 700;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Roboto', sans-serif;
    transition: color 0.3s ease;
}

.about-contact-card:hover .about-contact-label-modern {
    color: var(--primary-yellow);
}

.about-contact-separator-modern {
    width: 35px;
    height: 2px;
    background: linear-gradient(90deg, #000000 0%, transparent 100%);
    transition: all 0.4s ease;
}

.about-contact-card:hover .about-contact-separator-modern {
    width: 50px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, transparent 100%);
    height: 2.5px;
}

.about-contact-link-modern {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    line-height: 1.3;
    letter-spacing: 0.2px;
    position: relative;
    display: inline-block;
}

.about-contact-link-modern::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.about-contact-link-modern:hover {
    color: var(--primary-yellow);
    transform: translateX(3px);
}

.about-contact-link-modern:hover::after {
    width: 100%;
}

/* Responsive Styles for About Contact Info */
@media (max-width: 991px) {
    .about-contact-info-wrapper {
        margin: 50px 0;
        padding: 40px 0;
    }

    .about-contact-items-modern {
        gap: 20px;
    }

    .about-contact-card {
        min-width: 250px;
        padding: 22px 25px;
        gap: 18px;
    }

    .about-contact-icon-wrapper {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }

    .about-contact-icon-wrapper i {
        font-size: 26px;
    }

    .about-contact-label-modern {
        font-size: 10px;
    }

    .about-contact-link-modern {
        font-size: 17px;
    }
}

@media (max-width: 767px) {
    .about-contact-info-wrapper {
        margin: 40px 0;
        padding: 35px 0;
    }

    .about-contact-items-modern {
        flex-direction: column;
        gap: 18px;
        width: 100%;
    }

    .about-contact-card {
        width: 100%;
        max-width: 100%;
        min-width: auto;
        padding: 20px 25px;
        gap: 15px;
    }

    .about-contact-icon-wrapper {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }

    .about-contact-icon-wrapper i {
        font-size: 24px;
    }

    .about-contact-label-modern {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .about-contact-separator-modern {
        width: 30px;
    }

    .about-contact-link-modern {
        font-size: 16px;
    }
}

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

/* CT Heading Styles */
.ct-heading {
    margin-bottom: 2rem;
}

.ct-heading-sub {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 0.5rem;
    font-family: 'Roboto', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ct-heading-sub span {
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: #000;
}

.ct-heading-tag {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a1a1a;
    margin: 0;
}

.ct-heading-tag cite {
    color: var(--primary-yellow);
    font-style: italic;
    font-weight: 600;
}

.ct-heading.align-center {
    text-align: center;
}

.ct-heading.align-center .ct-heading-sub {
    justify-content: center;
}

/* Text Column */
.wpb_text_column {
    margin-bottom: 2rem;
}

.wpb_text_column p {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1rem;
    font-family: 'Roboto', sans-serif;
}

.wpb_text_column .underlink {
    color: #333;
    text-decoration: underline;
    text-decoration-color: var(--primary-yellow);
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.wpb_text_column .underlink:hover {
    color: var(--primary-yellow);
}

/* List Arrow */
.list-arrow {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-arrow li {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.list-arrow li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--primary-yellow);
    font-weight: bold;
}

/* Call Us */
.call-us {
    font-size: 1rem;
    color: #333;
    margin-bottom: 2rem;
    font-family: 'Roboto', sans-serif;
}

.call-us a {
    color: #333;
    text-decoration: underline;
    text-decoration-color: var(--primary-yellow);
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.call-us a:hover {
    color: var(--primary-yellow);
}

.call-number {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 0.5rem;
    font-family: 'Roboto', sans-serif;
}

.call-number span {
    font-weight: 400;
    color: #666;
    margin: 0 0.5rem;
}

/* VC Separator */
.vc_separator {
    margin: 2rem 0;
    text-align: center;
    position: relative;
}

.vc_sep_holder {
    display: inline-block;
    width: 45%;
    vertical-align: middle;
}

.vc_sep_line {
    display: block;
    border-top: 1px dashed #b7b7b7;
    border-bottom: none;
}

/* CT Signature */
.ct-signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.ct-signature-image {
    flex-shrink: 0;
}

.ct-signature-image img {
    max-width: 150px;
    height: auto;
    display: block;
}

.ct-signature-holder h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
    font-family: 'Roboto', sans-serif;
}

.ct-signature-holder span {
    font-size: 0.9rem;
    color: #666;
    font-family: 'Roboto', sans-serif;
}

/* About Visual Area */
.about-visual {
    padding-left: 2rem;
}

/* CT Video Wrapper */
.ct-video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ct-video-inner {
    position: relative;
    display: block;
}

.ct-video-inner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ct-video-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(197, 179, 88, 0.4);
    text-decoration: none;
    z-index: 2;
}

.ct-video-button.style2 {
    background-color: var(--primary-yellow);
}

.ct-video-button i {
    color: #fff;
    font-size: 1.8rem;
    margin-left: 5px;
}

.ct-video-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(197, 179, 88, 0.6);
}

/* Video Modal Styles */
#videoModal .modal-content {
    background: transparent;
    border: none;
}

#videoModal .modal-header {
    border: none;
    padding: 0.5rem;
    position: absolute;
    top: -40px;
    right: 0;
    z-index: 10;
}

#videoModal .btn-close {
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    background-size: 60%;
}

#videoModal .btn-close:hover {
    background-color: var(--primary-yellow);
    opacity: 1;
}

#videoModal .modal-body {
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

#videoModal .ratio {
    background: #000;
}

/* CT Counter */

.ct-counter {
    text-align: center;
    padding: 1.2rem;
}

.ct-counter-holder {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ct-counter-digit {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-yellow);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.ct-counter-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0.5rem 0;
    font-family: 'Roboto', sans-serif;
}

.ct-counter-desc {
    font-size:14px;
    color: #999;
    font-family: 'Roboto', sans-serif;
    margin-top: 0.25rem;
}

/* Responsive Styles for About Section */
@media (min-width: 991px) and (max-width: 1200px) {
    .ct-heading-tag {
        font-size: 36px !important;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .ct-heading-tag {
        font-size: 24px !important;
    }
}

@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .about-visual {
        padding-left: 0;
    }

    .ct-counter-digit {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 767px) {
    .ct-heading-tag {
        font-size: 24px !important;
    }

    .call-number {
        font-size: 1rem;
    }
}

/* Modern Contact Information Section - Compact Unique Design */
.contact-info-modern-section {
    padding: 40px 0 !important;
    background: #f5f5f5 !important;
    position: relative !important;
    overflow: hidden !important;
}

.contact-info-modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.contact-info-modern-wrapper {
    position: relative;
    z-index: 1;
}

.contact-info-modern-wrapper .row {
    margin: 0;
}

.contact-modern-item {
    background: transparent !important;
    padding: 35px 25px !important;
    text-align: center !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08) !important;
    transition: all 0.3s ease !important;
    min-height: auto !important;
    overflow: hidden !important;
}

.contact-modern-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 179, 88, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.contact-modern-item:hover::before {
    opacity: 1;
}

.contact-modern-item:hover {
    background-color: rgba(255, 255, 255, 0.8) !important;
    transform: translateY(-2px) !important;
}

.contact-modern-item:last-child {
    border-right: none;
}

.contact-modern-icon {
    width: auto !important;
    height: auto !important;
    margin-bottom: 18px !important;
    position: relative !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
}

.contact-modern-icon i {
    font-size: 36px !important;
    color: #000000 !important;
    display: block !important;
    transition: all 0.3s ease !important;
}

.contact-modern-item:hover .contact-modern-icon i {
    transform: scale(1.05) translateY(-2px) !important;
    color: var(--primary-yellow) !important;
}

.contact-modern-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 12px !important;
    position: relative !important;
    z-index: 1 !important;
    font-family: 'Roboto', sans-serif !important;
    line-height: 1.2 !important;
    transition: color 0.3s ease !important;
}

.contact-modern-item:hover .contact-modern-label {
    color: var(--primary-yellow) !important;
}

.contact-modern-separator {
    width: 40px !important;
    height: 1px !important;
    background-color: #000000 !important;
    margin: 0 auto 15px !important;
    position: relative !important;
    z-index: 1 !important;
    transition: all 0.3s ease !important;
}

.contact-modern-item:hover .contact-modern-separator {
    width: 55px !important;
    background-color: var(--primary-yellow) !important;
    height: 1.5px !important;
}

.contact-modern-detail {
    position: relative !important;
    z-index: 1 !important;
    margin-top: auto !important;
}

.contact-modern-detail a {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #000000 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    font-family: 'Roboto', sans-serif !important;
    display: inline-block !important;
    line-height: 1.4 !important;
    letter-spacing: 0.2px !important;
    position: relative !important;
}

.contact-modern-detail a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.contact-modern-detail a:hover {
    color: var(--primary-yellow) !important;
    transform: translateY(-1px) !important;
}

.contact-modern-detail a:hover::after {
    width: 100% !important;
}

/* Responsive Styles for Modern Contact Info Section */
@media (max-width: 991px) {
    .contact-info-modern-section {
        padding: 35px 0 !important;
    }

    .contact-modern-item {
        padding: 30px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    }

    .contact-modern-item:last-child {
        border-bottom: none !important;
    }

    .contact-modern-icon {
        margin-bottom: 15px !important;
    }

    .contact-modern-icon i {
        font-size: 32px !important;
    }

    .contact-modern-label {
        font-size: 10px !important;
        margin-bottom: 10px !important;
    }

    .contact-modern-separator {
        width: 35px !important;
        margin-bottom: 12px !important;
    }

    .contact-modern-detail a {
        font-size: 15px !important;
    }
}

@media (max-width: 767px) {
    .contact-info-modern-section {
        padding: 30px 0 !important;
    }

    .contact-modern-item {
        padding: 25px 15px !important;
    }

    .contact-modern-icon {
        margin-bottom: 12px !important;
    }

    .contact-modern-icon i {
        font-size: 28px !important;
    }

    .contact-modern-label {
        font-size: 9px !important;
        margin-bottom: 8px !important;
        letter-spacing: 1px !important;
    }

    .contact-modern-separator {
        width: 30px !important;
        margin-bottom: 10px !important;
    }

    .contact-modern-detail a {
        font-size: 14px !important;
    }
}

/* Contact Information Section - Minimalist Design */
.contact-info-section {
    background-color: #f5f5f5;
    position: relative;
}

.contact-info-wrapper {
    position: relative;
    z-index: 1;
}

.contact-info-wrapper .row {
    margin: 0;
}

.contact-info-item {
    background: transparent;
    padding: 60px 40px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    border-right: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    min-height: 280px;
}

.contact-info-item:last-child {
    border-right: none;
}

.contact-info-item:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.contact-icon-wrapper {
    width: auto;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
}

.contact-icon-wrapper i {
    font-size: 48px;
    color: #000000;
    transition: all 0.3s ease;
    display: block;
}

.contact-info-item:hover .contact-icon-wrapper i {
    transform: scale(1.05);
}

.contact-label {
    font-size: 13px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
}

.contact-separator {
    width: 60px;
    height: 1px;
    background-color: #000000;
    margin: 0 auto 25px;
    position: relative;
    transition: all 0.3s ease;
}

.contact-info-item:hover .contact-separator {
    width: 80px;
}

.contact-detail {
    position: relative;
    margin-top: auto;
}

.contact-detail a {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    display: inline-block;
    line-height: 1.4;
}

.contact-detail a:hover {
    color: var(--primary-yellow);
    transform: translateY(-2px);
}

/* Responsive Styles for Contact Info Section */
@media (max-width: 991px) {


    .contact-info-item {
        padding: 50px 30px;
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
        min-height: 250px;
    }

    .contact-info-item:last-child {
        border-bottom: none;
    }

    .contact-icon-wrapper {
        margin-bottom: 25px;
    }

    .contact-icon-wrapper i {
        font-size: 42px;
    }

    .contact-label {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .contact-separator {
        width: 50px;
        margin-bottom: 22px;
    }

    .contact-detail a {
        font-size: 17px;
    }
}

@media (max-width: 767px) {


    .contact-info-item {
        padding: 45px 25px;
        min-height: 220px;
    }

    .contact-icon-wrapper {
        margin-bottom: 20px;
    }

    .contact-icon-wrapper i {
        font-size: 36px;
    }

    .contact-label {
        font-size: 11px;
        margin-bottom: 15px;
    }

    .contact-separator {
        width: 45px;
        margin-bottom: 20px;
    }

    .contact-detail a {
        font-size: 16px;
    }
}

    .contact-label {
        font-size: 11px;
        letter-spacing: 1px;
        margin-bottom: 15px;
    }

    .contact-separator {
        width: 45px;
        margin-bottom: 20px;
    }

    .contact-detail a {
        font-size: 16px;
    }


@media (min-width: 992px) {
    .contact-info-item:nth-child(3n) {
        border-right: none;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991px) {
    .contact-info-item {
        padding: 55px 35px;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .contact-info-item {
        padding: 70px 50px;
        min-height: 300px;
    }

    .contact-icon-wrapper i {
        font-size: 52px;
    }

    .contact-label {
        font-size: 14px;
    }

    .contact-detail a {
        font-size: 19px;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 100px 0 !important;
    background-color: #000000 !important;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

/* Animated Background Gradient */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 179, 88, 0.15) 0%, transparent 70%);
    animation: cta-gradient-move 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes cta-gradient-move {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20%, 20%) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20%, 20%) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20%, -20%) scale(1.1);
        opacity: 0.5;
    }
}

/* Animated Background Overlay */
.cta-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(197, 179, 88, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(197, 179, 88, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: cta-overlay-pulse 8s ease-in-out infinite;
}

.cta-background-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.15), transparent);
    animation: cta-shimmer-sweep 6s infinite;
    pointer-events: none;
}

@keyframes cta-shimmer-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes cta-overlay-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Floating Animated Shapes */
.cta-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(197, 179, 88, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(197, 179, 88, 0.2), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(197, 179, 88, 0.4), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(197, 179, 88, 0.3), transparent),
        radial-gradient(2px 2px at 90% 80%, rgba(197, 179, 88, 0.2), transparent),
        radial-gradient(1px 1px at 10% 90%, rgba(197, 179, 88, 0.3), transparent);
    background-size: 200% 200%;
    background-position: 0% 0%, 100% 50%, 50% 50%, 0% 100%, 100% 100%, 50% 0%;
    animation: cta-particles 25s linear infinite;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

@keyframes cta-particles {
    0% {
        background-position: 0% 0%, 100% 50%, 50% 50%, 0% 100%, 100% 100%, 50% 0%;
    }
    50% {
        background-position: 100% 100%, 0% 50%, 50% 50%, 100% 0%, 0% 0%, 50% 100%;
    }
    100% {
        background-position: 0% 0%, 100% 50%, 50% 50%, 0% 100%, 100% 100%, 50% 0%;
    }
}

/* Animated Floating Shapes */
.cta-animated-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 179, 88, 0.15) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.6;
}

.cta-shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: 10%;
    animation: cta-float-1 15s ease-in-out infinite;
}

.cta-shape-2 {
    width: 250px;
    height: 250px;
    top: 50%;
    right: -125px;
    animation: cta-float-2 18s ease-in-out infinite;
}

.cta-shape-3 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: 60%;
    animation: cta-float-3 20s ease-in-out infinite;
}

.cta-shape-4 {
    width: 350px;
    height: 350px;
    top: 30%;
    left: 70%;
    animation: cta-float-4 22s ease-in-out infinite;
}

@keyframes cta-float-1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(50px, 100px) scale(1.2);
        opacity: 0.6;
    }
    66% {
        transform: translate(-30px, 80px) scale(0.9);
        opacity: 0.5;
    }
}

@keyframes cta-float-2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-80px, -50px) scale(1.3);
        opacity: 0.7;
    }
}

@keyframes cta-float-3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(60px, -80px) scale(1.1);
        opacity: 0.6;
    }
    75% {
        transform: translate(-40px, -60px) scale(0.95);
        opacity: 0.5;
    }
}

@keyframes cta-float-4 {
    0%, 100% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        opacity: 0.3;
    }
    33% {
        transform: translate(-100px, 50px) scale(1.15) rotate(120deg);
        opacity: 0.5;
    }
    66% {
        transform: translate(50px, -80px) scale(0.9) rotate(240deg);
        opacity: 0.4;
    }
}


.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: cta-content-fade-in 1s ease-out;
}

@keyframes cta-content-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-heading {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    line-height: 1.2 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
}

.cta-subheading {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #ffffff !important;
    margin-bottom: 40px !important;
    font-family: 'Roboto', sans-serif !important;
    letter-spacing: 1px !important;
    opacity: 0.95 !important;
    line-height: 1.5 !important;
}

.cta-button-wrapper {
    margin-top: 30px;
}

.cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 18px 45px !important;
    background-color: var(--primary-yellow) !important;
    color: #000000 !important;
    text-decoration: none !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    font-family: 'Roboto', sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    border-radius: 50px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 20px rgba(197, 179, 88, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background-color: #d4c066;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(197, 179, 88, 0.5);
    color: #000000;
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button i {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for CTA Section */
@media (max-width: 991px) {
    .cta-section {
        padding: 70px 0 !important;
    }

    .cta-heading {
        font-size: 2.2rem !important;
        letter-spacing: 1px !important;
    }

    .cta-subheading {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }

    .cta-button {
        padding: 15px 38px !important;
        font-size: 0.95rem !important;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 50px 0 !important;
    }

    .cta-heading {
        font-size: 1.5rem !important;
        letter-spacing: 0.5px !important;
        margin-bottom: 12px !important;
        line-height: 1.3 !important;
    }

    .cta-subheading {
        font-size: 0.9rem !important;
        margin-bottom: 25px !important;
        padding: 0 15px !important;
        letter-spacing: 0.5px !important;
        line-height: 1.5 !important;
    }

    .cta-button {
        padding: 12px 28px !important;
        font-size: 0.85rem !important;
        gap: 10px !important;
        letter-spacing: 1px !important;
    }

    .cta-button i {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 575px) {
    .cta-section {
        padding: 40px 0 !important;
    }

    .cta-heading {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        letter-spacing: 0.3px !important;
        margin-bottom: 10px !important;
    }

    .cta-subheading {
        font-size: 0.8rem !important;
        margin-bottom: 20px !important;
        padding: 0 10px !important;
        letter-spacing: 0.3px !important;
    }

    .cta-button {
        padding: 11px 24px !important;
        font-size: 0.8rem !important;
        letter-spacing: 0.8px !important;
    }

    .cta-button i {
        font-size: 0.75rem !important;
    }

    .cta-button-wrapper {
        margin-top: 20px !important;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.ct-fancybox-layout7 {
    margin-bottom: 0;
}

.ct-fancybox-inner {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #fff;
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.ct-fancybox-inner:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.ct-fancybox-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ad8e63;
    border-radius: 0;
}

.ct-fancybox-icon.preset1 {
    background-color: #ad8e63;
}

.ct-fancybox-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.ct-fancybox-content {
    flex: 1;
}

.ct-fancybox-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ad8e63;
    margin: 0 0 0.75rem 0;
    font-family: 'Roboto', sans-serif;
}

.ct-fancybox-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

.vc_empty_space {
    display: block;
    height: 36px;
}

.vc_empty_space_inner {
    display: block;
    height: 100%;
}

/* Experience Panel */
.experience-panel {
    position: relative;
    height: 100%;
}

.experience-panel .vc_single_image-wrapper {
    position: relative;
    border: 2px solid var(--primary-yellow);
    padding: 0;
    overflow: hidden;
    border-radius: 0;
}

.experience-panel img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.experience-image-container {
    position: relative;
    overflow: visible;
    height: 100%;
}

.experience-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.experience-overlay-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 20px 25px;
    text-align: left;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.experience-number-large {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.experience-text {
    font-size: 0.95rem;
    font-weight: 400;
    color: #1a1a1a;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    letter-spacing: 0.5px;
}

.experience-image-wrapper {
    position: relative;
}

.experience-badge {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(0, 0, 0, 0.9) 100%);
    padding: 35px 45px;
    text-align: center;
    border-top: 4px solid var(--primary-yellow);
    min-width: 240px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    z-index: 10;
    backdrop-filter: blur(5px);
}

.experience-number {
    color: #fff;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.experience-label {
    color: var(--primary-yellow);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Styles for Services Section */
@media (max-width: 991px) {
    .services-section {
        padding: 60px 0;
    }

    .ct-fancybox-inner {
        padding: 1.5rem;
    }

    .vc_empty_space {
        height: 24px;
    }

    .experience-image-container {
        max-width: 320px;
        margin: 0 auto;
    }

    .experience-bg-image {
        max-height: 500px;
    }

    .experience-overlay-content {
        bottom: 25px;
        left: 25px;
        right: 25px;
        padding: 18px 22px;
    }

    .experience-number-large {
        font-size: 3.5rem;
    }
}

@media (max-width: 767px) {
    .ct-fancybox-inner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .ct-fancybox-icon {
        margin: 0 auto;
    }

    .experience-panel {
        margin-top: 3rem;
    }

    .experience-image-container {
        max-width: 280px;
        margin: 0 auto;
        height: auto;
    }

    .experience-bg-image {
        width: 100%;
        height: auto;
        max-height: 450px;
        object-fit: cover;
    }

    .experience-overlay-content {
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .experience-number-large {
        font-size: 3rem;
    }

    .experience-text {
        font-size: 0.85rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 100px 0;
    background-color: #fff;
}

.ct-heading-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #666;
    margin-top: 1.5rem;
    font-family: 'Roboto', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.h-gap {
    margin: 1.5rem 0;
    text-align: center;
}

.h-gap span {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
}

.h-gap i {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
}

.ct-carousel-service-layout1 {
    margin-top: 0;
}

.ct-carousel-item {
    margin-bottom: 2rem;
    padding: 0 15px;
}

.grid-item-inner {
    position: relative;
    height: 100%;
    min-height: 400px;
    perspective: 1000px;
}

.item-featured {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.item-featured a {
    display: block;
    width: 100%;
    height: 100%;
}

.item-body-front,
.item-body-back {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    color: #fff;
    transition: all 0.5s ease;
    backface-visibility: hidden;
}

.item-body-back {
    transform: rotateY(180deg);
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-item-inner:hover .item-body-front {
    transform: rotateY(180deg);
}

.grid-item-inner:hover .item-body-back {
    transform: rotateY(0deg);
}

.grid-item-inner:hover .item-featured img {
    transform: scale(1.1);
}

.item-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
    text-align: center;
}

.item-icon i {
    display: inline-block;
}

.item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.item-body-inner {
    text-align: center;
}

.item-except {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.item-more {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    text-decoration: none;
}

/* Responsive Styles for Services Grid */
@media (min-width: 768px) and (max-width: 991px) {
    #ct-heading-2 .ct-heading-tag {
        font-size: 24px !important;
    }
}

@media (max-width: 991px) {
    .services-grid-section {
        padding: 60px 0;
    }

    .vc_empty_space {
        height: 40px;
    }

    .grid-item-inner {
        min-height: 350px;
    }

    .item-featured {
        height: 250px;
    }

    .item-body-front,
    .item-body-back {
        padding: 1.5rem;
    }

    .item-icon {
        font-size: 2.5rem;
    }

    .item-title {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    #ct-heading-2 .ct-heading-tag {
        font-size: 24px !important;
    }

    .services-grid-section {
        padding: 40px 0;
    }

    .vc_empty_space {
        height: 30px;
    }

    .ct-carousel-item {
        margin-bottom: 2rem;
    }

    .grid-item-inner {
        min-height: 300px;
    }

    .item-featured {
        height: 200px;
    }

    .item-body-front,
    .item-body-back {
        padding: 1.25rem;
    }

    .item-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .item-title {
        font-size: 1.1rem;
    }

    .item-except {
        font-size: 0.85rem;
    }

    .ct-heading-desc {
        font-size: 0.9rem;
        padding: 0 15px;
    }
}

/* Exclusive Listings Section */
.listings-section {
    padding: 100px 0;
    background-color: #fff;
}

.listings-section .houzez-spacer {
    margin: 2rem 0;
}

.listings-section .houzez-spacer-inner {
    height: 50px;
}

.listings-section .houzez_section_title_wrap {
    margin-bottom: 3rem;
}

.listings-section .houzez_section_title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.listings-section .houzez_section_subtitle {
    font-size: 1rem;
    color: #666;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.listings-section .property-cards-module {
    margin-top: 0;
}

/* Listing Carousel Items Responsive Styling */
.listings-section .owl-carousel,
.listings-section .listing-view,
.listings-section .just-listed-view {
    position: relative;
}

/* Override Bootstrap row/grid classes when carousel is active */
.listings-section .owl-carousel.row,
.listings-section .owl-carousel.grid-view,
.listings-section .owl-carousel[class*="row-cols"] {
    display: block !important;
    margin: 0 !important;
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

.listings-section .owl-carousel > * {
    margin: 0 !important;
}

.listings-section .owl-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
}

.listings-section .owl-carousel .owl-stage {
    display: flex !important;
    align-items: stretch;
    flex-wrap: nowrap !important;
}


/* Ensure items don't overflow */
.listings-section .owl-carousel .owl-item .item-listing-wrap,
.listings-section .owl-carousel .owl-item .item-wrap {
    max-width: 100%;
    overflow: hidden;
}

/* Override Bootstrap row-cols classes */
.listings-section .owl-carousel[class*="row-cols"] {
    --bs-columns: 1 !important;
}

.listings-section .owl-carousel[class*="row-cols-md"] {
    --bs-columns: 1 !important;
}

.listings-section .owl-carousel[class*="row-cols-lg"] {
    --bs-columns: 1 !important;
}

/* Responsive item sizing */
@media (max-width: 767px) {
    .listings-section .owl-carousel .owl-item {
        padding: 0 10px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .listings-section .owl-carousel .owl-item {
        padding: 0 15px;
    }
}

@media (min-width: 992px) {
    .listings-section .owl-carousel .owl-item {
        padding: 0 15px;
    }
}

/* Modern Listing Carousel Navigation Icons */
.listings-section .owl-carousel .owl-nav {
    position: relative;
    width: 100%;
    pointer-events: none;
    margin: 30px auto 0;
    padding: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.listings-section .owl-carousel .owl-nav button {
    pointer-events: all;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 101;
    position: absolute;
    margin: 0;
    padding: 0;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
}

.listings-section .owl-carousel .owl-nav button * {
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.listings-section .owl-carousel .owl-nav button span,
.listings-section .owl-carousel .owl-nav button i {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

.listings-section .owl-carousel .owl-nav button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
    transition: opacity 0.3s ease;
}



.listings-section .owl-carousel .owl-nav button span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
    visibility: visible !important;
    opacity: 1 !important;
}

.listings-section .owl-carousel .owl-nav button i {
    font-size: 20px !important;
    line-height: 1 !important;
    display: inline-block !important;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-weight: 900 !important;
}

/* Force visibility for all icon elements */
.listings-section .owl-carousel .owl-nav button i.fa,
.listings-section .owl-carousel .owl-nav button i.fas,
.listings-section .owl-carousel .owl-nav button i.fa-chevron-left,
.listings-section .owl-carousel .owl-nav button i.fa-chevron-right {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 20px !important;
    z-index: 10 !important;
}

/* Ensure navigation buttons have visible content */
.listings-section .owl-carousel .owl-nav button.owl-prev,
.listings-section .owl-carousel .owl-nav button.owl-next {
    font-size: 20px;
}

.listings-section .owl-carousel .owl-nav button.owl-prev span,
.listings-section .owl-carousel .owl-nav button.owl-next span {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.listings-section .owl-carousel .owl-nav button.owl-prev span i,
.listings-section .owl-carousel .owl-nav button.owl-next span i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    font-size: 20px !important;
    color: #fff !important;
}

/* Ensure icons are always visible, not just on hover */
.listings-section .owl-carousel .owl-nav button i.fa-chevron-left,
.listings-section .owl-carousel .owl-nav button i.fa-chevron-right,
.listings-section .owl-carousel .owl-nav button span i {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

/* Fallback arrows using CSS if icons are not present */
.listings-section .owl-carousel .owl-nav .owl-prev:empty::before,
.listings-section .owl-carousel .owl-nav .owl-prev:not(:has(span))::before {
    content: '\f053';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: inherit;
}

.listings-section .owl-carousel .owl-nav .owl-next:empty::before,
.listings-section .owl-carousel .owl-nav .owl-next:not(:has(span))::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: inherit;
}

.listings-section .owl-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c05a 100%);
    color: #000;
    border-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 179, 88, 0.4),
                0 4px 12px rgba(197, 179, 88, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.listings-section .owl-carousel .owl-nav button:hover i {
    transform: scale(1.15);
    color: #000 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Ensure icons are always visible, not just on hover */
.listings-section .owl-carousel .owl-nav button:not(:hover) i,
.listings-section .owl-carousel .owl-nav button i {
    opacity: 1 !important;
    visibility: visible !important;
    color: #fff !important;
    display: inline-block !important;
}

.listings-section .owl-carousel .owl-nav button:active {
    transform: scale(1.05);
    box-shadow: 0 2px 10px rgba(197, 179, 88, 0.3);
}

.listings-section .owl-carousel .owl-nav button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: scale(1);
    background: linear-gradient(135deg, #666 0%, #888 100%);
}

.listings-section .owl-carousel .owl-nav button.disabled:hover {
    transform: scale(1);
    background: linear-gradient(135deg, #666 0%, #888 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Navigation positioning - below on small screens, absolute on large screens */
.listings-section .owl-carousel .owl-nav .owl-prev {
    position: relative;
    left: auto;
    right: auto;
}

.listings-section .owl-carousel .owl-nav .owl-next {
    position: relative;
    left: auto;
    right: auto;
}

/* Small screens - navigation below items */
@media (max-width: 1365px) {
    .listings-section .owl-carousel .owl-nav {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        margin: 30px auto 0 !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .listings-section .owl-carousel .owl-nav button {
        width: 48px;
        height: 48px;
        font-size: 18px;
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }

    .listings-section .owl-carousel .owl-nav button i {
        font-size: 18px;
    }

    .listings-section .owl-carousel .owl-nav .owl-prev {
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }

    .listings-section .owl-carousel .owl-nav .owl-next {
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }
}

@media (max-width: 767px) {
    .listings-section .owl-carousel .owl-nav {
        margin: 25px auto 0 !important;
        gap: 15px;
    }

    .listings-section .owl-carousel .owl-nav button {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .listings-section .owl-carousel .owl-nav button i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .listings-section .owl-carousel .owl-nav {
        margin: 20px auto 0 !important;
        gap: 12px;
    }

    .listings-section .owl-carousel .owl-nav button {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .listings-section .owl-carousel .owl-nav button i {
        font-size: 14px;
    }
}

/* Large screens - absolute positioning */
@media (min-width: 1366px) {
    .listings-section .owl-carousel .owl-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        display: block !important;
    }

    .listings-section .owl-carousel .owl-nav button {
        position: absolute !important;
    }

    .listings-section .owl-carousel .owl-nav .owl-prev {
        left: 10px !important;
        right: auto !important;
    }

    .listings-section .owl-carousel .owl-nav .owl-next {
        right: 10px !important;
        left: auto !important;
    }
}

@media (min-width: 1200px) {
    .listings-section .owl-carousel .owl-nav .owl-prev {
        left: -28px !important;
    }

    .listings-section .owl-carousel .owl-nav .owl-next {
        right: -28px !important;
    }
}

.listings-section .item-listing-wrap {
    margin-bottom: 2rem;
}

/* Carousel items should be full width within their container */
.listings-section .owl-carousel .item-listing-wrap {
    width: 100%;
    margin: 0 auto;
}

.listings-section .item-wrap {
    background-color: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.listings-section .item-wrap:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.listings-section .item-header {
    position: relative;
    overflow: hidden;
}

.listings-section .listing-image-wrap {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.listings-section .listing-gallery-wrap {
    width: 100%;
    height: 100%;
}

.listings-section .listing-gallery-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.listings-section .hover-effect:hover img {
    transform: scale(1.1);
}

.listings-section .label-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
    background-color: #28a745;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.listings-section .labels-wrap {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
}

.listings-section .label-status {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.listings-section .label-status:hover {
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
}

.listings-section .status-color-7 {
    background-color: rgba(0, 0, 0, 0.7);
}

.listings-section .status-color-8 {
    background-color: rgba(197, 179, 88, 0.9);
}

.listings-section .status-color-9 {
    background-color: rgba(197, 179, 88, 0.9);
    color: #000;
}

/* Coming Soon Label */
.image-top-left {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 5 !important;
}

.coming-soon {
    background: linear-gradient(135deg, #c5b358 0%, #d4c05a 100%) !important;
    color: #000 !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-radius: 4px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
    display: inline-block !important;
}

/* Just Listed Section Styles */
.background-light-grey {
    background-color: #f5f5f5 !important;
}

.border-grey {
    border: 1px solid #e5e5e5 !important;
}

.boxjustlisted {
    border-radius: 8px !important;
    overflow: hidden !important;
    position: relative !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: #f5f5f5 !important;
    border: 1px solid #e5e5e5 !important;
}

.boxjustlisted .listingimg {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.padding-left-right {
    padding: 20px !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.divider-top-3x {
    margin-top: 20px !important;
}

.divider-bottom-2x {
    margin-bottom: 15px !important;
}

.divider-top {
    margin-top: 15px !important;
    padding-top: 15px !important;
    border-top: 1px solid #e5e5e5 !important;
}

.theme-blue {
    color: #007bff !important;
}

.font-size-09 {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
}

.su-spacer {
    display: block !important;
}

.su-button-center {
    text-align: center !important;
}

.su-button {
    display: inline-block !important;
    text-decoration: none !important;
    border: 1px solid !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
}

.su-button:hover {
    opacity: 0.9 !important;
}

.featuredlistings {
    background-color: #007bff !important;
    border-color: #007bff !important;
    color: #fff !important;
}

.featuredlistings:hover {
    background-color: #0056b3 !important;
    border-color: #0056b3 !important;
    color: #fff !important;
}

.featuredlistings span {
    color: #fff !important;
}

.separator-line {
    height: 2px !important;
    background-color: #000 !important;
    width: 10% !important;
    margin: 0 auto !important;
    position: relative !important;
}

.separator-line::before,
.separator-line::after {
    content: '' !important;
    position: absolute !important;
    top: 50% !important;
    width: 50px !important;
    height: 1px !important;
    background-color: #000 !important;
}

.separator-line::before {
    left: -60px !important;
}

.separator-line::after {
    right: -60px !important;
}

/* Just Listed Carousel Item Styling */
.just-listed-view .owl-item {
    padding: 0 15px !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: stretch !important;
    height: 100% !important;
}

.just-listed-view .item-listing-wrap {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.just-listed-view .boxjustlisted {
    width: 100% !important;
    height: 100% !important;
    min-height: 600px !important;
}

.just-listed-view .boxjustlisted h5 {
    color: #007bff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

.just-listed-view .boxjustlisted h5 a {
    color: #007bff !important;
    text-decoration: none !important;
}

.just-listed-view .boxjustlisted h5 a:hover {
    text-decoration: underline !important;
}

.just-listed-view .boxjustlisted strong {
    color: #333 !important;
    font-weight: 600 !important;
}

.just-listed-view .boxjustlisted em {
    color: #666 !important;
    font-style: italic !important;
}

/* Ensure carousel items have equal height */
.just-listed-view .owl-stage {
    display: flex !important;
    align-items: stretch !important;
}

.just-listed-view .owl-item {
    display: flex !important;
    align-items: stretch !important;
}

/* Button styling improvements */
.just-listed-view .su-button {
    margin-top: 15px !important;
}

.just-listed-view .su-button span {
    display: inline-block !important;
}

/* Image container */
.just-listed-view .boxjustlisted > a {
    display: block !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.just-listed-view .boxjustlisted .listingimg {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    transition: transform 0.3s ease !important;
    display: block !important;
}

.just-listed-view .boxjustlisted > a:hover .listingimg {
    transform: scale(1.05) !important;
}

/* Just Listed Carousel Navigation - Apply same styles as listing-view */
.just-listed-view .owl-nav {
    position: relative;
    width: 100%;
    pointer-events: none;
    margin: 30px auto 0;
    padding: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.just-listed-view .owl-nav button {
    pointer-events: all;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    color: #fff !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    z-index: 101;
    position: absolute;
    margin: 0;
    padding: 0;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2),
                0 2px 8px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    overflow: visible;
    opacity: 1 !important;
    visibility: visible !important;
}

.just-listed-view .owl-nav button * {
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.just-listed-view .owl-nav button i {
    font-size: 20px !important;
    line-height: 1 !important;
    display: inline-block !important;
    transition: transform 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #fff !important;
    font-weight: 900 !important;
}

.just-listed-view .owl-nav button:hover {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c05a 100%);
    color: #000;
    border-color: rgba(0, 0, 0, 0.2);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 179, 88, 0.4),
                0 4px 12px rgba(197, 179, 88, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.just-listed-view .owl-nav button:hover i {
    transform: scale(1.15);
    color: #000 !important;
}

/* Small screens - navigation below items */
@media (max-width: 1365px) {
    .just-listed-view .owl-nav {
        position: relative !important;
        top: auto !important;
        transform: none !important;
        margin: 30px auto 0 !important;
        display: flex !important;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .just-listed-view .owl-nav button {
        width: 48px;
        height: 48px;
        font-size: 18px;
        position: relative !important;
        left: auto !important;
        right: auto !important;
    }

    .just-listed-view .owl-nav button i {
        font-size: 18px;
    }
}

/* Large screens - absolute positioning */
@media (min-width: 1366px) {
    .just-listed-view .owl-nav {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        display: block !important;
    }

    .just-listed-view .owl-nav button {
        position: absolute !important;
    }

    .just-listed-view .owl-nav .owl-prev {
        left: -28px !important;
        right: auto !important;
    }

    .just-listed-view .owl-nav .owl-next {
        right: -28px !important;
        left: auto !important;
    }
}

.listings-section .item-tools {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.listings-section .item-header:hover .item-tools {
    opacity: 1;
}

.listings-section .item-tool {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.listings-section .item-tool:hover {
    background-color: #fff;
    transform: scale(1.1);
}

.listings-section .item-tool i {
    color: #333;
    font-size: 1rem;
}

.listings-section .item-tool:hover i {
    color: var(--primary-yellow);
}

.listings-section .item-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listings-section .owl-carousel .item-body {
    flex: 1 1 auto;
    min-height: 0;
}

.listings-section .item-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.listings-section .item-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.listings-section .item-title a:hover {
    color: var(--primary-yellow);
}

.listings-section .item-v5-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-yellow);
    font-family: 'Roboto', sans-serif;
}

.listings-section .item-v5-type {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.listings-section .item-description {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

.listings-section .item-amenities {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: #666;
    font-family: 'Roboto', sans-serif;
}

.listings-section .item-amenities li {
    display: flex;
    align-items: center;
}

.listings-section .item-amenities i {
    color: #999;
    font-size: 0.9rem;
}

.listings-section .item-amenities-text {
    margin-right: 5px;
}

.listings-section .hz-figure {
    font-weight: 600;
    color: #333;
}

.listings-view-all-wrapper {
    margin-top: 3rem;
    margin-bottom: 2rem;
}

.listings-view-all-btn {
    display: inline-block;
    padding: 14px 50px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
    border: 2px solid #000;
}

.listings-view-all-btn:hover {
    background-color: var(--primary-yellow);
    color: #000;
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 179, 88, 0.3);
}

.review {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
 .review h2{
    text-align: center;
 }
.review .review-container, .review .review-item, .review .review-list {
    display: flex;
    flex-direction: column;
}
.review .review-list::before {
    content: '';
    border-top: 1px solid #e6e6e6;
    width: 100%;
    position: absolute;
    top: 27%;
}
.review .review-item {
    align-items: center;
    text-align: center;
}
.review .review-item p, .review .review-item img, .review .review-item .designation {
    display: none;
}
.review .review-item::before {
    content: '';
    background: url(../images/client.svg) no-repeat center / 40% 40%, #fbfbfb;
    width: 60px;
    height: 60px;
    border-radius: 50px;
    box-shadow: 0px 0px 14px;
    margin: 3.5rem 0 2rem;
}
.review .owl-nav {
    display: flex !important;
    justify-content: space-between;
    position: absolute;
    top: 24%;
    width: 100%;
}
.review .owl-nav .owl-prev, .review .owl-nav .owl-next {
    background-image: url(../images/nav-arrow.svg), linear-gradient(#c7c7c7, #c7c7c7) !important;
    background-size: 50% 50%, 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    display: block;
}
.review .owl-nav .owl-next {
    transform: rotate(180deg);
}
.review .owl-nav .owl-prev.active,
.review .owl-nav .owl-next.active,
.review .owl-carousel .owl-nav .owl-prev.active,
.review .owl-carousel .owl-nav .owl-next.active {
    background-image: url(../images/nav-arrow.svg), linear-gradient(180deg, #c5b358 0, #c5b358 100%) !important;
    background-size: 50% 50%, 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
.review .owl-nav .owl-next.active {
    transform: rotate(180deg);
}
.review .active.center .review-item::before {
    background-image: url(../images/customer.svg);
    transform: scale(1.2);
}
.review .active.center .review-item p {
    display: flex;
    width: 810px;
}
.review .active.center .review-item img {
    display: flex;
    width: 118px;
    height: 21px;
}
.review .active.center .review-item .designation {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 810px;
    margin: 1.5rem 0 1.2rem;
}
.review .active.center .review-item .designation span {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 400;
    color: #888;
}
.review .active.center .review-item .designation span::before {
    content: '';
    border: 1px solid;
    width: 10px;
    margin: 0 4px;
}
.review .active.center .review-item .designation strong {
   color: black;
    font-size: 22px;
}

/* Latest Articles Section */
.latest-articles-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.latest-articles-section .houzez_section_title_wrap {
    margin-bottom: 60px;
}

.latest-articles-section .houzez_section_title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.latest-articles-section .houzez_section_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--primary-yellow);
    margin: 15px auto 0;
}

.articles-row {
    margin-top: 0;
}

.article-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.article-image-wrapper {
    width: 100%;
    height: 260px;
    overflow: hidden;
    position: relative;
}

.article-category {
    position: absolute;
    top: 15px;
    left: 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c468 100%);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
    white-space: nowrap;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.article-card:hover .article-image {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.article-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 1rem 0;
    line-height: 1.3;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-card:hover .article-title {
    color: var(--primary-yellow);
}

.article-excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-read-more {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: inline-block;
    margin-top: auto;
    transition: all 0.3s ease;
}

.article-read-more:hover {
    color: var(--primary-yellow);
}

.article-date {
    display: none;
}

/* Responsive Styles for Articles */
@media (max-width: 1199px) {
    .latest-articles-section {
        padding: 80px 0;
    }

    .latest-articles-section .houzez_section_title {
        font-size: 2.25rem;
    }

    .article-image-wrapper {
        height: 240px;
    }
}

@media (max-width: 991px) {
    .latest-articles-section {
        padding: 60px 0;
    }

    .latest-articles-section .houzez_section_title {
        font-size: 2rem;
    }

    .latest-articles-section .houzez_section_title_wrap {
        margin-bottom: 40px;
    }

    .article-image-wrapper {
        height: 220px;
    }

    .article-title {
        font-size: 1.35rem;
    }

    .article-content {
        padding: 1.25rem;
    }
}

@media (max-width: 767px) {
    .latest-articles-section {
        padding: 50px 0;
    }

    .latest-articles-section .houzez_section_title {
        font-size: 1.75rem;
    }

    .latest-articles-section .houzez_section_title_wrap {
        margin-bottom: 30px;
    }

    .article-card {
        margin-bottom: 2rem;
    }

    .article-image-wrapper {
        height: 200px;
    }

    .article-content {
        padding: 1.25rem;
    }

    .article-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }

    .article-excerpt {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .article-category {
        font-size: 0.65rem;
        padding: 0.35rem 0.75rem;
        top: 12px;
        left: 12px;
    }
}

@media (max-width: 575px) {
    .latest-articles-section {
        padding: 40px 0;
    }

    .latest-articles-section .houzez_section_title {
        font-size: 1.5rem;
    }

    .article-image-wrapper {
        height: 180px;
    }

    .article-title {
        font-size: 1.15rem;
    }

    .article-excerpt {
        font-size: 0.85rem;
    }

    .article-content {
        padding: 1rem;
    }
}

/* Footer Section */
.main-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.3), transparent);
}

.footer-content {
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

/* Footer Branding */
.footer-brand {
    margin-bottom: 0;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-logo-img {
    max-height: 60px;
    width: auto;
    transition: opacity 0.3s ease;
}


.footer-about {
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-description {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0;
}

.footer-contact-info {
    margin-top: 20px;
}

.footer-phone,
.footer-email {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #cccccc;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-phone strong,
.footer-email strong {
    color: #ffffff;
    font-weight: 600;
    margin-right: 5px;
}

.footer-phone a,
.footer-email a {
    color: #aaaaaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone a:hover,
.footer-email a:hover {
    color: var(--primary-yellow);
}

.company-name-light {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.company-name-bold {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
}

.footer-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #aaaaaa;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
}

/* Footer Links */
.footer-links {
    margin-bottom: 0;
    padding: 0 15px;
}

.footer-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 22px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background-color: var(--primary-yellow);
}

.footer-links-grid {
    display: flex;
    gap: 30px;
}

.footer-links-column {
    flex: 1;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.footer-link-list li {
    margin-bottom: 10px;
    position: relative;
}

.footer-link-list li::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-link-list li:hover::before {
    opacity: 1;
}

.footer-link-list a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.5;
}

.footer-link-list a:hover {
    color: var(--primary-yellow);
    transform: translateX(8px);
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact {
    margin-bottom: 0;
    padding-left: 15px;
}

.footer-contact .footer-title {
    margin-bottom: 25px;
}

.footer-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.footer-office {
    margin-bottom: 0;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.footer-office:last-child {
    border-bottom: none;
}

.footer-office:hover {
    padding-left: 3px;
}

.office-location {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.office-location strong {
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 3px;
}

.office-address {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin-bottom: 8px;
}

.office-contact {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #aaaaaa;
    margin-bottom: 4px;
    line-height: 1.5;
}

.office-contact a {
    color: #aaaaaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.office-contact a:hover {
    color: var(--primary-yellow);
    transform: translateX(3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    background-color: #0a0a0a;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.2), transparent);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    position: relative;
    z-index: 1;
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    margin: 0;
    letter-spacing: 0.3px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #888888;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-legal a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-yellow);
}

.footer-legal a:hover::after {
    width: 100%;
}

.footer-separator {
    color: #555555;
    font-size: 0.9rem;
    margin: 0 4px;
}

/* Responsive Footer Styles */
@media (max-width: 1199px) {
    .main-footer {
        padding: 50px 0 0;
    }

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



    .footer-links {
        padding: 0 12px;
    }

    .footer-contact {
        padding-left: 12px;
    }

    .footer-links-grid {
        gap: 25px;
    }
}

/* Tablet Styles (768px - 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .main-footer {
        padding: 60px 0 0;
    }

    .footer-content {
        margin-bottom: 50px;
    }

    .footer-brand {
        margin-bottom: 40px;
        text-align: left;
    }

    .footer-about {
        text-align: left;
        margin-top: 20px;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-links {
        margin-bottom: 40px;
        padding: 0;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: left;
    }

    .footer-title::after {
        left: 0;
        transform: none;
        margin: 0;
    }

    .footer-links-grid {
        gap: 40px;
        justify-content: flex-start;
    }

    .footer-link-list {
        align-items: flex-start;
    }

    .footer-link-list li::before {
        left: -12px;
    }

    .footer-link-list a {
        text-align: left;
    }

    .footer-contact {
        margin-bottom: 0;
        padding-left: 0;
    }

    .footer-contact .footer-title {
        text-align: left;
    }

    .footer-contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .footer-office {
        text-align: left;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-office:last-child {
        border-bottom: none;
    }

    .footer-office:hover {
        padding-left: 5px;
        transform: none;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 45px 0 0;
    }

    .main-footer .container,
    .footer-bottom .container {
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .footer-brand {
        margin-bottom: 45px;
        text-align: center;
    }

    .footer-about {
        text-align: center;
    }

    .footer-contact-info {
        text-align: center;
    }

    .footer-links {
        margin-bottom: 45px;
        padding: 0;
    }

    .footer-contact {
        margin-bottom: 0;
        padding-left: 0;
    }

    .footer-contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-office {
        text-align: center;
        padding: 25px 0;
    }

    .footer-office:hover {
        padding-left: 0;
        transform: translateY(-2px);
    }

    .footer-links-grid {
        gap: 50px;
        justify-content: center;
    }

    .company-name-light,
    .company-name-bold {
        font-size: 1.1rem;
    }

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

    .footer-title {
        font-size: 1rem;
        margin-bottom: 25px;
        text-align: center;
    }



    .footer-links-grid {
        flex-direction: column;
        gap: 0;
        align-items: center;
    }

    .footer-links-column {
        width: 100%;
        max-width: 300px;
    }

    .footer-link-list {
        align-items: center;
    }

    .footer-link-list li::before {
        left: -15px;
    }

    .footer-link-list a {
        text-align: center;
    }

    .footer-office {
        padding: 20px 0;
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .main-footer {
        padding: 40px 0 0;
    }

    .footer-content {
        margin-bottom: 35px;
    }


    .company-name-light,
    .company-name-bold {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .footer-tagline {
        font-size: 0.75rem;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .footer-link-list a {
        font-size: 0.9rem;
    }

    .office-location {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .office-address,
    .office-contact {
        font-size: 0.85rem;
    }

    .footer-copyright,
    .footer-legal a {
        font-size: 0.85rem;
    }
}

/* Responsive Styles for Listings */
@media (max-width: 991px) {
    .listings-section {
        padding: 60px 0;
    }

    .listings-section .houzez_section_title {
        font-size: 2rem;
    }

    .listings-section .listing-image-wrap {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .listings-section {
        padding: 40px 0;
    }

    .listings-section .houzez_section_title {
        font-size: 1.75rem;
    }

    .listings-section .houzez_section_subtitle {
        font-size: 0.85rem;
    }

    .listings-section .listing-image-wrap {
        height: 180px;
    }

    .listings-section .item-body {
        padding: 1.25rem;
    }

    .listings-section .item-title {
        font-size: 1.1rem;
    }

    .listings-section .item-v5-price {
        font-size: 1.25rem;
    }

    .listings-section .item-amenities {
        font-size: 0.8rem;
    }

    .listings-view-all-wrapper {
        margin-top: 2rem;
    }

    .listings-view-all-btn {
        padding: 12px 40px;
        font-size: 0.9rem;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: #fafafa;
}

.agent-info-wrapper {
    padding: 2rem 0;
}

.agent-photo {
    margin-bottom: 2rem;
    text-align: center;
}

.agent-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.agent-details {
    text-align: left;
}

.contact-section .houzez_section_title_wrap {
    text-align: left;
    margin-bottom: 1.5rem;
}

.contact-section .houzez_section_title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.contact-section .houzez_section_subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

.agent-location {
    margin-bottom: 2rem;
}

.agent-location p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.agent-location p strong {
    font-weight: 700;
    color: #000;
}

.agent-contact {
    margin-top: 1.5rem;
}

.elementor-icon-list-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elementor-icon-list-item {
    display: flex;
    align-items: center;
}

.elementor-icon-list-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.elementor-icon-list-icon {
    font-size: 1.5rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    margin-right: 1rem;
}

.elementor-icon-list-item:first-child .elementor-icon-list-icon i {
    color: #25D366;
}

.elementor-icon-list-item:last-child .elementor-icon-list-icon i {
    color: #00AFF0;
}

.elementor-icon-list-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}

.contact-form-wrapper {
    padding: 2rem 0;
}

.contact-form-heading {
    margin-bottom: 2.5rem;
}

.contact-form-heading .houzez_section_title_wrap {
    text-align: left;
}

.contact-form-box {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.elementor-form-fields-wrapper {
    width: 100%;
}

.elementor-field-group {
    margin-bottom: 1.5rem;
}

.elementor-field-group.form-group {
    margin-bottom: 1.5rem;
}

.elementor-field-label,
.contact-form .form-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.elementor-field,
.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.elementor-field::placeholder,
.contact-form .form-control::placeholder {
    color: #999;
    opacity: 1;
}

.elementor-field:focus,
.contact-form .form-control:focus {
    border-color: var(--primary-yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 179, 88, 0.1);
}

.elementor-field-textual {
    resize: vertical;
    min-height: 100px;
}

.contact-submit-btn,
.houzez-submit-button {
    width: 100%;
    padding: 14px 30px;
    background-color: var(--primary-yellow);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.contact-submit-btn:hover,
.houzez-submit-button:hover {
    background-color: #d4c266;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 179, 88, 0.3);
}

.elementor-field-type-submit {
    margin-top: 0.5rem;
}

/* Responsive Styles for Contact Section */
@media (max-width: 991px) {
    .contact-section {
        padding: 60px 0;
    }

    .agent-info-wrapper {
        margin-bottom: 3rem;
        text-align: center;
    }

    .agent-details {
        text-align: center;
    }

    .contact-section .houzez_section_title_wrap {
        text-align: center;
    }

    .contact-section .houzez_section_title {
        font-size: 1.75rem;
    }

    .contact-form-heading .houzez_section_title_wrap {
        text-align: center;
    }

    .contact-form-box {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-section .houzez_section_title {
        font-size: 1.5rem;
    }

    .contact-section .houzez_section_subtitle {
        font-size: 0.85rem;
    }

    .contact-form-box {
        padding: 1.5rem;
    }

    .elementor-field-group {
        margin-bottom: 1.25rem;
    }

    .agent-contact {
        align-items: flex-start;
    }

    .elementor-icon-list-items {
        align-items: flex-start;
    }
}

/* Request for Quote Section */
.request-quote-section {
    position: relative;
    overflow: hidden;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    overflow: hidden;
}

.wpb_map_wraper {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

.wpb_map_wraper iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    position: relative;
}


.quote-form-wrapper {
    position: relative;
    background-image: url(../images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 64px 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.84);
    z-index: 1;
}

.quote-form-inner {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 2;
}

.request-quote-section .ct-heading {
    margin-bottom: 2rem;
}

.request-quote-section .ct-heading-tag {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.request-quote-section .ct-heading-tag cite {
    color: var(--primary-yellow);
    font-style: normal;
}

.request-quote-section .ct-heading-desc {
    font-size: 1rem;
    line-height: 1.8;
    font-family: 'Roboto', sans-serif;
    margin-top: 1rem;
    opacity: 0.95;
}

.request-quote-section .ct-contact-form-default {
    margin-top: 1.5rem;
}

.request-quote-section .input-filled {
    margin-bottom: 1.5rem;
}

.request-quote-section .form-control,
.request-quote-section .wpcf7-form-control {
    width: 100%;
    padding: 15px 20px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    color: #fff;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
    height: auto;
}

.request-quote-section .form-control::placeholder,
.request-quote-section .wpcf7-form-control::placeholder {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
}

.request-quote-section .form-control:focus,
.request-quote-section .wpcf7-form-control:focus {
    background-color: rgba(255, 255, 255, 0.18);
    border-color: var(--primary-yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 179, 88, 0.25);
    color: #fff;
}

.request-quote-section .form-control:hover,
.request-quote-section .wpcf7-form-control:hover {
    border-color: rgba(255, 255, 255, 0.35);
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-submit,
.wpcf7-submit-custom {
    width: 100%;
    padding: 15px 30px;
    background-color: #8B4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 53px;
    height: 100%;
}

.wpcf7-submit:hover,
.wpcf7-submit-custom:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
    color: #fff;
}

.wpcf7-submit i,
.wpcf7-submit-custom i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.wpcf7-submit:hover i,
.wpcf7-submit-custom:hover i {
    transform: translateX(3px);
}

.vc_empty_space {
    height: 37px;
}

.vc_empty_space_inner {
    display: block;
}

/* Responsive Styles for Request Quote Section */
@media (max-width: 1199px) {
    .request-quote-section .ct-heading-tag {
        font-size: 30px !important;
    }
}

@media (max-width: 991px) {
    .map-wrapper {
        height: 400px;
    }

    .wpb_map_wraper iframe {
        min-height: 400px;
    }

    .quote-form-wrapper {
        min-height: auto;
        padding: 60px 40px;
        background-attachment: scroll;
    }

    .request-quote-section .ct-heading-tag {
        font-size: 28px !important;
    }

    .request-quote-section .quote-form .row {
        margin-bottom: 0;
    }

    .request-quote-section .input-filled {
        margin-bottom: 1.25rem;
    }
}

@media (max-width: 767px) {
    .map-wrapper {
        height: 350px;
    }

    .wpb_map_wraper iframe {
        min-height: 350px;
    }

    .quote-form-wrapper {
        padding: 50px 25px;
    }

    .request-quote-section .ct-heading-tag {
        font-size: 24px !important;
        margin-bottom: 20px !important;
    }

    .request-quote-section .ct-heading-desc {
        font-size: 0.9rem;
    }

    .request-quote-section .input-filled {
        margin-bottom: 1.25rem;
    }

    .request-quote-section .form-control {
        padding: 13px 18px;
        font-size: 0.95rem;
    }

    .quote-submit-btn {
        padding: 13px 25px;
        font-size: 0.9rem;
        min-height: 50px;
    }

    .vc_empty_space {
        height: 25px;
    }

    .request-quote-section .quote-form .row {
        margin-bottom: 0;
    }

    .request-quote-section .quote-form .row > div {
        margin-bottom: 1rem;
    }
}

/* Clients Carousel Section */
.clients-carousel-section {
    background-color: #fff;
}

.ct-client-carousel {
    padding: 40px 0;
}

.ct-client-item {
    text-align: center;
    transition: all 0.3s ease;
    padding: 10px;
}

.ct-client-item:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}

.ct-client-item a {
    display: inline-block;
    text-decoration: none;
}

.ct-client-item img {
    max-width: 100%;
    height: auto;
    transition: all 0.3s ease;
}


@media (max-width: 767px) {

    .ct-client-item {
        padding: 15px;
    }
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .menu {
        gap: 0.25rem;
    }

    .ct-menu-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }



    .default-logo {
        max-height: 50px;
    }
}

@media (max-width: 575.98px) {
    .hero-name {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }

    .social-icons {
        gap: 1rem;
    }

    .social-icons a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .hero-btn {
        padding: 10px 30px;
        font-size: 0.8rem;
    }

    .hero-buttons {
        gap: 1rem;
    }
}
@media screen and (min-width:1024px){
    .hero-btn{
         min-width:400px;
    }
}


@media screen and (min-width:1366px){
    .review .review-container {
        width: 84%;
        margin: 0 auto;
   }

}

/* Sell Business CTA Section - Thinking About Selling Your Business */
@keyframes cta-gradient-move {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(20%, 20%) scale(1.2);
        opacity: 0.5;
    }
    50% {
        transform: translate(-20%, 20%) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(20%, -20%) scale(1.1);
        opacity: 0.5;
    }
}

.sell-business-cta-section {
    position: relative !important;
    padding: 60px 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background-color: #000000 !important;
    min-height: auto !important;
}

.sell-business-cta-background {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    filter: blur(3px) !important;
    transform: scale(1.05) !important;
    opacity: 0.6 !important;
    z-index: 0 !important;
    background-color: #000000 !important;
    display: block !important;
}

.sell-business-cta-background[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.sell-business-cta-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(26, 26, 26, 0.7) 100%) !important;
    z-index: 1 !important;
    display: block !important;
}

.sell-business-cta-overlay::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(197, 179, 88, 0.15) 0%, transparent 70%);
    animation: cta-gradient-move 20s ease-in-out infinite;
    pointer-events: none;
}

.sell-business-cta-section .container {
    position: relative;
    z-index: 2;
}

.sell-business-cta-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    color: #ffffff !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 20px 20px !important;
}

.sell-business-cta-heading {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 25px !important;
    color: #ffffff !important;
    text-transform: none !important;
    letter-spacing: -0.5px !important;
    display: block !important;
}

.sell-business-cta-questions {
    font-size: 17px !important;
    line-height: 1.7 !important;
    margin-bottom: 35px !important;
    color: #ffffff !important;
    display: block !important;
}

.sell-business-cta-questions p {
    margin-bottom: 15px;
    color: #ffffff;
}

.sell-business-cta-questions p:last-child {
    margin-bottom: 0;
}

.sell-business-cta-button-wrapper {
    margin-top: 20px;
}

.sell-business-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 18px 40px !important;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c066 100%) !important;
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    border: 2px solid var(--primary-yellow) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.sell-business-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.sell-business-cta-button:hover::before {
    left: 100%;
}

.sell-business-cta-button:hover {
    background: linear-gradient(135deg, #d4c066 0%, var(--primary-yellow) 100%);
    color: #000000;
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 179, 88, 0.4);
}

.sell-business-cta-button:active {
    transform: translateY(0);
}

.sell-business-cta-button span {
    position: relative;
    z-index: 1;
}

.sell-business-cta-button i {
    font-size: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.sell-business-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Styles for Sell Business CTA */
@media screen and (max-width: 991px) {
    .sell-business-cta-section {
        padding: 60px 0;
        min-height: 380px;
    }

    .sell-business-cta-heading {
        font-size: 2rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .sell-business-cta-questions {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .sell-business-cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 768px) {
    .sell-business-cta-section {
        padding: 50px 0;
        min-height: 350px;
    }

    .sell-business-cta-heading {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .sell-business-cta-questions {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .sell-business-cta-button {
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .sell-business-cta-section {
        padding: 40px 0;
        min-height: 320px;
    }

    .sell-business-cta-heading {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .sell-business-cta-questions {
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .sell-business-cta-button {
        padding: 12px 25px;
        font-size: 0.85rem;
    }

    .sell-business-cta-button i {
        font-size: 16px;
    }
}

/* Need Help Selling CTA Section */
.need-help-cta-section {
    background-color: #000000;
    padding: 54px 0;
    position: relative;
    overflow: hidden;
}

.need-help-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.5), transparent);
    z-index: 1;
}

.need-help-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.5), transparent);
    z-index: 1;
}

.need-help-cta-section .container {
    position: relative;
}


.need-help-cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.need-help-cta-heading {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    line-height: 1.2;
    font-family: 'Roboto', sans-serif;
    position: relative;
    display: inline-block;
}

.need-help-cta-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
}

.need-help-cta-button-wrapper {
    margin-top: 30px;
}

.need-help-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 50px;
    background-color: #ffffff;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0;
    border: 2px solid #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

.need-help-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 179, 88, 0.2), transparent);
    transition: left 0.6s ease;
}

.need-help-cta-button:hover::before {
    left: 100%;
}

.need-help-cta-button:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(197, 179, 88, 0.4);
}

.need-help-cta-button:active {
    transform: translateY(-1px);
}

.need-help-cta-button span {
    position: relative;
    z-index: 1;
}

.cta-button-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.need-help-cta-button:hover .cta-button-arrow {
    transform: translateX(5px);
}

/* Responsive Styles for Need Help CTA Section */
@media screen and (max-width: 1199px) {
    .need-help-cta-heading {
        font-size: 36px;
        letter-spacing: 1.5px;
    }

    .need-help-cta-button {
        padding: 18px 45px;
        font-size: 16px;
    }
}

@media screen and (max-width: 991px) {
    .need-help-cta-section {
        padding: 60px 0;
    }

    .need-help-cta-heading {
        font-size: 32px;
        margin-bottom: 35px;
        letter-spacing: 1px;
    }

    .need-help-cta-button-wrapper {
        margin-top: 30px;
    }

    .need-help-cta-button {
        padding: 16px 40px;
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .need-help-cta-section {
        padding: 50px 0;
    }

    .need-help-cta-heading {
        font-size: 28px;
        margin-bottom: 30px;
        letter-spacing: 0.5px;
    }

    .need-help-cta-heading::after {
        width: 60px;
        bottom: -12px;
    }

    .need-help-cta-button-wrapper {
        margin-top: 30px;
    }

    .need-help-cta-button {
        padding: 15px 35px;
        font-size: 14px;
        gap: 12px;
    }

    .cta-button-arrow {
        width: 18px;
        height: 18px;
    }
}

@media screen and (max-width: 480px) {
    .need-help-cta-section {
        padding: 40px 0;
    }

    .need-help-cta-heading {
        font-size: 24px;
        margin-bottom: 25px;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .need-help-cta-heading::after {
        width: 50px;
        height: 2px;
        bottom: -10px;
    }

    .need-help-cta-button-wrapper {
        margin-top: 30px;
    }

    .need-help-cta-button {
        padding: 14px 25px;
        font-size: 13px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .cta-button-arrow {
        width: 16px;
        height: 16px;
        transform: rotate(90deg);
    }

    .need-help-cta-button:hover .cta-button-arrow {
        transform: rotate(90deg) translateY(5px);
    }
}

/* Franchise Sell Page Styles */
:root {
    --primary-yellow: #c5b358;
    --dark-bg: #1a1a1a;
}

/* Sell Business Banner Section */
.sell-business-banner {
    background-color: #f5f5f5;
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 0;
    overflow: hidden;
    width: 100%;
}

/* Ensure banner container matches header/footer container width */
/* Remove default container padding to allow edge-to-edge columns */
.sell-business-banner .container {
    padding-left: 0;
    padding-right: 0;
}


.sell-business-banner .row {
    margin: 0;
    width: 100%;
    max-width: 100%;
}

.sell-business-banner .col-lg-6,
.sell-business-banner .col-md-12 {
    padding: 0;
    overflow: hidden;
}

.sell-business-banner-content {
    padding: 30px 15px;
    height: 100%;
    display: flex;
    align-items: center;
    background-color: #f5f5f5;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.banner-content-inner {
    max-width: 100%;
    width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.banner-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.heading-underline {
    position: relative;
    display: inline-block;
}

.heading-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-yellow);
}

.banner-question-section {
    margin-bottom: 35px;
}

.banner-question {
    font-size: 17px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
}

.banner-buttons-wrapper {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
}

.banner-action-btn {
    flex: 1;
    min-width: 200px;
    max-width: 100%;
    padding: 14px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    background-color: transparent;
    border: 2px solid #000000;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    text-transform: none;
    word-wrap: break-word;
    overflow-wrap: break-word;
    box-sizing: border-box;
    display: inline-block;
    text-decoration: none;
}

.banner-action-btn:hover {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 179, 88, 0.3);
}

.banner-action-btn.active {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000000;
}

.banner-info-section {
    margin-top: 35px;
}

.banner-info-heading {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 18px;
    font-family: 'Roboto', sans-serif;
}

.banner-info-content {
    color: #333333;
    line-height: 1.7;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.banner-info-content p {
    font-size: 15px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.banner-info-content p:last-child {
    margin-bottom: 0;
}

.sell-business-banner-image {
    min-height: auto;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-portrait-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive Styles for Sell Business Banner */
@media screen and (min-width: 1200px) {
    .sell-business-banner {
        padding-top: 80px;
        padding-bottom: 0;
        max-height: 100vh;
        overflow-y: hidden;
    }

    .sell-business-banner-content {
        padding: 25px 40px 25px 15px;
    }

    .banner-main-heading {
        font-size: 36px;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .banner-question-section {
        margin-bottom: 25px;
    }

    .banner-question {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .banner-action-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .banner-info-section {
        margin-top: 25px;
    }

    .banner-info-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .banner-info-content p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .sell-business-banner-image {
        overflow: hidden;
    }
}

/* Extra large screens (1400px+) - further reduce to fit viewport */
@media screen and (min-width: 1400px) {
    .sell-business-banner {
        padding-top: 70px;
        padding-bottom: 0;
        /* max-height: 95vh; */
    }
    .banner-action-btn {
        font-size: 20px !important;
    }

    .sell-business-banner-content {
        padding: 20px 50px 20px 15px;
    }

    .banner-main-heading {
        font-size: 34px;
        margin-bottom: 18px;
    }

    .banner-question-section {
        margin-bottom: 20px;
    }

    .banner-info-section {
        margin-top: 20px;
    }

    .banner-info-content p {
        font-size: 13px;
        margin-bottom: 10px;
    }

}

@media screen and (max-width: 1199px) {
    .banner-main-heading {
        font-size: 38px;
    }
}

@media screen and (max-width: 991px) {
    .sell-business-banner {
        padding-top: 20px;
        padding-bottom: 0;
    }

    .sell-business-banner-content {
        padding: 35px 30px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .banner-main-heading {
        font-size: 32px;
        margin-bottom: 25px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .banner-question-section {
        margin-bottom: 30px;
    }

    .banner-buttons-wrapper {
        flex-direction: column;
    }

    .banner-action-btn {
        width: 100%;
        min-width: 100%;
    }

    .banner-info-section {
        margin-top: 30px;
    }

    .sell-business-banner-image {
        height: auto;
        overflow: hidden;
    }

    .banner-portrait-img {
        width: 100%;
        height: 100%;
        max-height: 450px;
        object-fit: contain;
        object-position: center;
    }
}

/* Tablet specific (768px to 991px) */
@media screen and (min-width: 768px) and (max-width: 991px) {

    .banner-portrait-img {
        max-height: 400px;
        object-fit: contain;
        object-position: center;
    }
}

@media screen and (max-width: 768px) {
    .sell-business-banner {
        padding-top: 60px;
    }

    .sell-business-banner-content {
        padding: 30px 25px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .banner-main-heading {
        font-size: 28px;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .banner-question {
        font-size: 15px;
    }

    .banner-action-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .banner-info-heading {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .banner-info-content p {
        font-size: 14px;
    }


    .banner-portrait-img {
        height: 100%;
        max-height: 400px;
        object-fit: cover;
        object-position: center;
    }
}

@media screen and (max-width: 480px) {
    .sell-business-banner {
        padding-top: 20px;
    }

    .sell-business-banner-content {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .banner-main-heading {
        font-size: 24px;
        margin-bottom: 18px;
        letter-spacing: 0.5px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .banner-question {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .banner-action-btn {
        padding: 11px 18px;
        font-size: 13px;
    }

    .banner-info-section {
        margin-top: 25px;
    }

    .banner-info-heading {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .banner-info-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .sell-business-banner-image {
        height: auto;
    }

    .banner-portrait-img {
        height: 100%;
        max-height: 350px;
        object-fit: cover;
        object-position: center;
    }
}


/* Seller Resources Section */
.seller-resources-section {
    background-color: #ffffff;
    padding: 80px 0;
    position: relative;
}

.seller-resources-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px;
}

.seller-resource-card {
    height: 100%;
    margin-bottom: 30px;
}

.seller-resource-card-inner {
    background-color: #f5f5f5;
    padding: 40px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.seller-resource-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-yellow), transparent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.seller-resource-card:hover .seller-resource-card-inner {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(197, 179, 88, 0.3);
}

.seller-resource-card:hover .seller-resource-card-inner::before {
    transform: scaleX(1);
}

.seller-resource-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    position: relative;
}

.seller-resource-title-underline {
    width: 60px;
    height: 2px;
    background-color: #000000;
    margin-bottom: 25px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.seller-resource-card:hover .seller-resource-title-underline {
    width: 80px;
    background-color: var(--primary-yellow);
}

.seller-resource-content {
    flex: 1;
    margin-bottom: 30px;
}

.seller-resource-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.seller-resource-content p strong {
    font-weight: 600;
    color: #000000;
}

.seller-resource-button-wrapper {
    margin-top: auto;
}

.seller-resource-button {
    display: inline-block;
    padding: 14px 30px;
    background-color: transparent;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #000000;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

.seller-resource-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--primary-yellow);
    transition: left 0.3s ease;
    z-index: -1;
}

.seller-resource-button:hover {
    color: #000000;
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 179, 88, 0.3);
}

.seller-resource-button:hover::before {
    left: 0;
}

/* Responsive Styles for Seller Resources Section */
@media screen and (max-width: 1199px) {
    .seller-resources-section {
        padding: 70px 0;
    }

    .seller-resources-heading {
        font-size: 28px;
        margin-bottom: 45px;
    }

    .seller-resource-card-inner {
        padding: 35px 30px;
    }
}

@media screen and (max-width: 991px) {
    .seller-resources-section {
        padding: 60px 0;
    }

    .seller-resources-heading {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .seller-resource-card {
        margin-bottom: 25px;
    }

    .seller-resource-card-inner {
        padding: 30px 25px;
    }

    .seller-resource-title {
        font-size: 22px;
    }

    .seller-resource-content p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .seller-resources-section {
        padding: 50px 0;
    }

    .seller-resources-heading {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .seller-resource-card-inner {
        padding: 30px 25px;
    }

    .seller-resource-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .seller-resource-title-underline {
        width: 50px;
        margin-bottom: 20px;
    }

    .seller-resource-content {
        margin-bottom: 25px;
    }

    .seller-resource-content p {
        font-size: 14px;
        line-height: 1.6;
    }

    .seller-resource-button {
        padding: 12px 25px;
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .seller-resources-section {
        padding: 40px 0;
    }

    .seller-resources-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .seller-resource-card-inner {
        padding: 25px 20px;
    }

    .seller-resource-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .seller-resource-title-underline {
        width: 40px;
        height: 1.5px;
        margin-bottom: 18px;
    }

    .seller-resource-content {
        margin-bottom: 20px;
    }

    .seller-resource-content p {
        font-size: 13px;
    }

    .seller-resource-button {
        padding: 11px 20px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }
}



/* Why Work with Us Section */
.why-work-with-us-section {
    background-color: #ffffff;
    padding: 100px 0;
    position: relative;
}


.why-work-with-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(197, 179, 88, 0.03) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

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

/* Image Wrapper */
.why-work-image-wrapper {
    position: relative;
    height: 100%;
    border-radius: 0 20px 20px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-work-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 179, 88, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.why-work-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.why-work-image-wrapper:hover .why-work-image {
    transform: scale(1.05);
}

.why-work-image-badge {
    position: absolute;
    top: 30px;
    left: 30px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c066 100%);
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 25px rgba(197, 179, 88, 0.4);
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.why-work-image-badge i {
    font-size: 18px;
    color: #000000;
}

.why-work-image-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

/* Content Wrapper */
.why-work-content {
    padding: 60px 50px 60px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-work-heading-wrapper {
    margin-bottom: 30px;
}

.why-work-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.why-work-heading-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, #d4c066 100%);
    border-radius: 2px;
    margin-top: 10px;
}

.why-work-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 50px;
    font-family: 'Roboto', sans-serif;
}

/* Services List */
.why-work-services {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.why-work-service-item {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-work-service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, #d4c066 100%);
    transition: height 0.3s ease;
}

.why-work-service-item:hover {
    background: #ffffff;
    border-left-color: var(--primary-yellow);
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-work-service-item:hover::before {
    height: 100%;
}

.service-icon-wrapper {
    flex-shrink: 0;
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c066 100%);
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(197, 179, 88, 0.3);
    transition: all 0.3s ease;
}

.why-work-service-item:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(197, 179, 88, 0.5);
}

.service-icon i {
    font-size: 28px;
    color: #000000;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 12px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design for Why Work with Us Section */
@media (max-width: 1199px) {
    .why-work-content {
        padding: 50px 40px 50px 50px;
    }

    .why-work-heading {
        font-size: 36px;
    }

    .why-work-intro {
        font-size: 17px;
    }
}

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

    .why-work-image-wrapper {
        border-radius: 20px 20px 0 0;
        margin-bottom: 40px;
    }

    .why-work-content {
        padding: 0 30px 40px 30px;
    }

    .why-work-heading {
        font-size: 32px;
        text-align: center;
    }

    .why-work-heading-underline {
        margin: 10px auto 0;
    }

    .why-work-intro {
        text-align: center;
        font-size: 16px;
        margin-bottom: 40px;
    }

    .why-work-services {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .why-work-service-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
        gap: 20px;
    }

    .why-work-service-item:hover {
        transform: translateY(-5px);
    }

    .service-icon-wrapper {
        margin: 0 auto;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .why-work-with-us-section {
        padding: 60px 0;
    }

    .why-work-image-wrapper {
        min-height: 400px;
        border-radius: 15px 15px 0 0;
    }

    .why-work-image-badge {
        top: 20px;
        left: 20px;
        padding: 10px 16px;
    }

    .why-work-image-badge i {
        font-size: 16px;
    }

    .why-work-image-badge span {
        font-size: 12px;
    }

    .why-work-content {
        padding: 0 20px 30px 20px;
    }

    .why-work-heading {
        font-size: 28px;
    }

    .why-work-intro {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .why-work-services {
        gap: 20px;
    }

    .why-work-service-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .service-icon i {
        font-size: 24px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 15px;
    }
}

 @media screen and (min-width:768px){
    .image-container {
        position: sticky;
        top: 60px;
    }
 }
@media (max-width: 576px) {
    .why-work-with-us-section {
        padding: 50px 0;
    }

    .why-work-image-wrapper {
        min-height: 350px;
    }

    .why-work-heading {
        font-size: 24px;
    }

    .why-work-intro {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .why-work-service-item {
        padding: 18px;
        gap: 15px;
    }

    .service-icon {
        width: 55px;
        height: 55px;
    }

    .service-icon i {
        font-size: 22px;
    }

    .service-title {
        font-size: 18px;
    }

    .service-description {
        font-size: 14px;
    }
}

@media screen and (min-width:768px){
    .step-info{
        position: sticky;
        top: 60px;
    }
}

/* Steps to Selling Your Franchise Business Section */
.steps-selling-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 100px 0;
    position: relative;
    max-width: 100%;
}

.steps-selling-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: 0;
    width: 50%;
    max-width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 179, 88, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.steps-selling-section .container {
    position: relative;
    z-index: 1;
}

/* Content Wrapper */
.steps-content-wrapper {
    max-width: 100%;
}

.steps-heading-wrapper {
    margin-bottom: 30px;
}

.steps-main-heading {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.steps-heading-separator {
    display: flex;
    align-items: center;
    width: 138px;
}

.separator-line {
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-yellow) 0%, #d4c066 100%);
    border-radius: 2px;
}

.steps-intro-text {
    margin-bottom: 50px;
}

.steps-intro-text p {
    font-size: 18px;
    line-height: 1.8;
    color: #555555;
    font-family: 'Roboto', sans-serif;
    margin: 0;
}

/* Steps List */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 50px;
    max-width: 100%;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.step-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--primary-yellow) 0%, #d4c066 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.step-item:hover::before {
    transform: scaleY(1);
}

.step-number-wrapper {
    position: relative;
    flex-shrink: 0;
    width: 100px;
    height: 100px;
}

.step-number {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    color: rgba(197, 179, 88, 0.15);
    font-family: 'Roboto', sans-serif;
    z-index: 1;
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c066 100%);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(197, 179, 88, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 35px rgba(197, 179, 88, 0.5);
}

.step-icon i {
    font-size: 28px;
    color: #000000;
}

.step-content {
    flex: 1;
    padding-top: 5px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.step-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin: 0;
    font-family: 'Roboto', sans-serif;
}

.steps-conclusion {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid var(--primary-yellow);
}

.steps-conclusion p {
    font-size: 16px;
    line-height: 1.8;
    color: #555555;
    font-family: 'Roboto', sans-serif;
    margin-bottom: 20px;
}

.steps-conclusion p:last-child {
    margin-bottom: 0;
}

.steps-link {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.steps-link:hover {
    color: #d4c066;
    border-bottom-color: #d4c066;
}

/* Image Wrapper */
.steps-image-wrapper {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-width: 100%;
}

.steps-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    max-width: 100%;
}

.steps-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(197, 179, 88, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.steps-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.steps-image-container:hover .steps-image {
    transform: scale(1.02);
}

.steps-image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 2;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 3px solid var(--primary-yellow);
    opacity: 0.3;
    animation: pulse-circle 3s ease-in-out infinite;
}

.decoration-circle-1 {
    width: 100px;
    height: 100px;
    top: 20px;
    right: 20px;
    animation-delay: 0s;
}

.decoration-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 30px;
    left: 30px;
    animation-delay: 1s;
}

.decoration-circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse-circle {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.5;
    }
}

.steps-stats-card {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c066 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(197, 179, 88, 0.3);
    display: flex;
    justify-content: space-around;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.steps-stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.stats-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stats-number {
    font-size: 48px;
    font-weight: 800;
    color: #000000;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

.stats-label {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
}

/* Responsive Design for Steps Section */
@media (max-width: 1199px) {
    .steps-main-heading {
        font-size: 36px;
    }

    .step-number-wrapper {
        width: 90px;
        height: 90px;
    }

    .step-number {
        width: 90px;
        height: 90px;
        font-size: 32px;
    }

    .step-icon {
        width: 65px;
        height: 65px;
    }

    .step-icon i {
        font-size: 26px;
    }
}

@media (max-width: 992px) {
    .steps-selling-section {
        padding: 80px 0;
    }

    .steps-content-wrapper {
        margin-bottom: 50px;
    }

    .steps-main-heading {
        font-size: 32px;
        text-align: center;
    }

    .steps-heading-separator {
        margin: 0 auto;
    }

    .steps-intro-text {
        text-align: center;
    }

    .steps-image-wrapper {
        position: relative;
        top: 0;
    }

    .steps-image {
        height: 400px;
    }

    .steps-stats-card {
        flex-direction: column;
        gap: 25px;
    }
}

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

    .steps-main-heading {
        font-size: 28px;
    }

    .steps-intro-text p {
        font-size: 16px;
    }

    .steps-list {
        gap: 30px;
        margin-bottom: 40px;
    }

    .step-item {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
        text-align: center;
    }

    .step-number-wrapper {
        margin: 0 auto;
    }

    .step-item:hover {
        transform: translateY(-5px);
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 15px;
    }

    .steps-conclusion {
        padding: 30px 20px;
    }

    .steps-image {
        height: 350px;
    }

    .stats-number {
        font-size: 40px;
    }
}

@media (max-width: 576px) {
    .steps-selling-section {
        padding: 50px 0;
    }

    .steps-main-heading {
        font-size: 24px;
    }

    .steps-intro-text p {
        font-size: 15px;
    }

    .steps-list {
        gap: 25px;
    }

    .step-item {
        padding: 20px;
    }

    .step-number-wrapper {
        width: 80px;
        height: 80px;
    }

    .step-number {
        width: 80px;
        height: 80px;
        font-size: 28px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
    }

    .step-icon i {
        font-size: 24px;
    }

    .step-title {
        font-size: 18px;
    }

    .step-description {
        font-size: 14px;
    }

    .steps-conclusion {
        padding: 25px 18px;
    }

    .steps-conclusion p {
        font-size: 15px;
    }

    .steps-image {
        height: 300px;
    }

    .steps-stats-card {
        padding: 30px 20px;
    }

    .stats-number {
        font-size: 36px;
    }

    .stats-label {
        font-size: 12px;
    }
}

/* Contact Info Section - Uses styles from index.css */
.contact-info-section {
    background-color: #ffffff;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */
html {
    scroll-behavior: smooth;
}

#contact-form {
    scroll-margin-top: 100px;
}

/* Contact Form & Offices Section */
.contact-form-offices-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-form-wrapper {
    margin-bottom: 0;
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.contact-form-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.contact-form-box {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-label .required {
    color: #e74c3c;
}

.contact-form .form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    border-color: var(--primary-yellow);
    outline: none;
    box-shadow: 0 0 0 3px rgba(197, 179, 88, 0.1);
}

.contact-form .form-control::placeholder {
    color: #999;
    opacity: 1;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.contact-form .form-check-input {
    margin-top: 4px;
    cursor: pointer;
}

.contact-form .form-check-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    cursor: pointer;
    margin: 0;
}

.contact-submit-btn {
    width: 100%;
    padding: 14px 30px;
    background-color: var(--primary-yellow);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.contact-submit-btn:hover {
    background-color: #d4c266;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(197, 179, 88, 0.3);
}

/* Office Locations Styles */
.office-locations-wrapper {
    height: 100%;
}

.office-locations-heading {
    margin-bottom: 30px;
}

.office-locations-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
}

.office-locations-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.office-locations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.office-location-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.office-location-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.office-location-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.office-location-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 5px 0;
}

.office-location-city {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    margin: 0;
}

.office-location-city strong {
    color: #000;
    font-weight: 600;
}

.office-location-details {
    font-family: 'Roboto', sans-serif;
}

.office-address {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0 0 12px 0;
}

.office-contact {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.office-contact strong {
    color: #000;
    font-weight: 600;
}

.office-contact a {
    color: var(--primary-yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.office-contact a:hover {
    color: #d4c266;
    text-decoration: underline;
}

/* Contact Page Responsive Styles */
@media (max-width: 991px) {
    .contact-form-offices-section {
        padding: 60px 0;
    }

    .contact-form-box {
        padding: 30px;
    }

    .office-locations-wrapper {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contact-form-title,
    .office-locations-title {
        font-size: 1.75rem;
    }

    .contact-form-box {
        padding: 25px;
    }

    .office-location-card {
        padding: 20px;
    }

    .office-location-name {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .contact-form-offices-section {
        padding: 40px 0;
    }

    .contact-form-box {
        padding: 20px;
    }

    .contact-form-title,
    .office-locations-title {
        font-size: 1.5rem;
    }

    .office-location-card {
        padding: 18px;
    }
}

/* ============================================
   LISTINGS PAGE STYLES
   ============================================ */
/* Listings Search and Filter Section */
.listings-search-filter-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Filters Sidebar */
.listings-filters-sidebar {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 25px;
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.filters-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
}

.filters-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-sidebar-title i {
    color: var(--primary-yellow, #c5b358);
}

.btn-reset-filters {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid #ccc;
    color: #666;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-reset-filters:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}

.filter-group-modern {
    margin-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 15px;
}

.filter-group-modern:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.filter-group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 10px 0;
    transition: all 0.3s;
}

.filter-group-header:hover {
    color: var(--primary-yellow, #c5b358);
}

.filter-group-title-modern {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-group-title-modern i {
    color: var(--primary-yellow, #c5b358);
    font-size: 14px;
}

.filter-arrow {
    color: #999;
    transition: transform 0.3s;
    font-size: 12px;
}

.filter-group-header[aria-expanded="false"] .filter-arrow {
    transform: rotate(-90deg);
}

.filter-group-body {
    padding-top: 15px;
}

.filter-checkboxes-modern {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.filter-checkbox-modern {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.filter-checkbox-modern input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #fff;
    border: 2px solid #ccc;
    border-radius: 3px;
    transition: all 0.3s;
}

.filter-checkbox-modern:hover input ~ .checkmark {
    border-color: var(--primary-yellow, #c5b358);
}

.filter-checkbox-modern input:checked ~ .checkmark {
    background-color: var(--primary-yellow, #c5b358);
    border-color: var(--primary-yellow, #c5b358);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #1a1a1a;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox-modern input:checked ~ .checkmark:after {
    display: block;
}

.filter-text {
    color: #333;
}

.filter-text .count {
    color: #999;
    margin-left: 5px;
}

/* Listings Results */
.listings-results-wrapper {
    padding-left: 20px;
}

.listings-sort-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.results-count {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
}

.results-count span {
    color: var(--primary-yellow, #c5b358);
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-label-modern {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sort-label-modern i {
    color: var(--primary-yellow, #c5b358);
}

.sort-select-modern {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    color: #333;
    transition: all 0.3s;
}

.sort-select-modern:hover,
.sort-select-modern:focus {
    border-color: var(--primary-yellow, #c5b358);
    outline: none;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.listing-item-modern {
    display: block;
}

.listing-card-modern {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.listing-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-yellow, #c5b358);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.listing-card-modern:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-color: var(--primary-yellow, #c5b358);
}

.listing-card-modern:hover::before {
    transform: scaleY(1);
}

.listing-badge {
    display: inline-block;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 12px;
    margin-right: 5px;
    letter-spacing: 0.5px;
}

.listing-badge.coming-soon {
    background: #ffa500;
    color: #fff;
}

.listing-badge.price-change {
    background: #4caf50;
    color: #fff;
}

.listing-badge.m-a {
    background: #2196f3;
    color: #fff;
}

.listing-badge.new {
    background: #f44336;
    color: #fff;
}

.listing-badge.sold-conditionally {
    background: #9e9e9e;
    color: #fff;
}

.listing-id {
    font-size: 13px;
    color: #999;
    margin-bottom: 12px;
    font-weight: 500;
}

.listing-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
}

.listing-price {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-yellow, #c5b358);
    margin-bottom: 10px;
}

.listing-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.listing-location::before {
    content: '\f3c5';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-yellow, #c5b358);
}

.listing-details {
    margin-bottom: 20px;
    flex-grow: 1;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.listing-detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e0e0e0;
}

.listing-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.detail-label {
    color: #666;
    font-weight: 500;
}

.detail-value {
    font-weight: 700;
    color: #1a1a1a;
}

.listing-view-btn-modern {
    display: block;
    text-align: center;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.listing-view-btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-yellow, #c5b358);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
    z-index: -1;
}

.listing-view-btn-modern:hover {
    color: #1a1a1a;
    background: var(--primary-yellow, #c5b358);
}

.listing-view-btn-modern:hover::before {
    transform: scaleX(1);
}

.listings-pagination-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-link-modern {
    padding: 12px 18px;
    border: 1px solid #e0e0e0;
    color: #666;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
    min-width: 45px;
    text-align: center;
}

.pagination-link-modern:hover,
.pagination-link-modern.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Listings Page Responsive Design */
@media (max-width: 992px) {
    .listings-results-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }

    .listings-filters-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .listings-search-filter-section {
        padding: 40px 0;
    }

    .listings-sort-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .sort-wrapper {
        width: 100%;
    }

    .sort-select-modern {
        width: 100%;
    }

    .listings-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .filters-sidebar-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-reset-filters {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .listing-card-modern {
        padding: 20px;
    }

    .listing-title {
        font-size: 16px;
        min-height: auto;
    }

    .listing-price {
        font-size: 22px;
    }
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */
/* Blog Posts Section Styles */
.blog-posts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.blog-posts-list {
    max-width: 900px;
    margin: 0 auto;
}

.blog-post-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-post-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.blog-post-content {
    width: 100%;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.blog-post-category {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.9rem;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c468 100%);
    border-radius: 4px;
    display: inline-block;
}

.blog-post-date {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.blog-post-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-yellow);
}

.blog-post-excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-post-excerpt p {
    margin: 0;
}

.blog-post-read-more {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 20px;
}

.blog-post-read-more::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.blog-post-read-more:hover {
    color: var(--primary-yellow);
}

.blog-post-read-more:hover::after {
    transform: translateX(5px);
}

/* Pagination Styles */
.blog-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

.blog-pagination .pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 5px;
}

.blog-pagination .page-item {
    margin: 0;
}

.blog-pagination .page-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #000;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    min-width: 45px;
    text-align: center;
    display: block;
}

.blog-pagination .page-item.active .page-link {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
    font-weight: 600;
}

.blog-pagination .page-link:hover:not(.active) {
    background-color: #f8f9fa;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.blog-pagination .page-item span.page-link {
    cursor: default;
    border: none;
    background: transparent;
    color: #666;
}

/* Blog Page Responsive Styles */
@media (max-width: 768px) {
    .blog-post-item {
        padding: 20px;
    }

    .blog-post-title {
        font-size: 1.5rem;
    }

    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .blog-pagination .pagination {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Hide posts by default (will be shown by JavaScript) */
.blog-post-item[data-page] {
    display: block;
}

/* ============================================
   GLOSSARY PAGE STYLES
   ============================================ */
/* Glossary Section Styles */
.glossary-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.glossary-filter-wrapper {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.glossary-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.glossary-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.glossary-reset-btn {
    padding: 10px 20px;
    background-color: var(--primary-yellow);
    color: #000;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.glossary-reset-btn:hover {
    background-color: #d4c266;
    transform: translateY(-2px);
}

.glossary-alphabet-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    justify-content: center;
}

.alphabet-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #ddd;
    background-color: #fff;
    color: #000;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alphabet-btn:hover {
    border-color: var(--primary-yellow);
    background-color: #fff;
    color: var(--primary-yellow);
}

.alphabet-btn.active {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
    color: #000;
}

.glossary-count {
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

.glossary-count span {
    font-weight: 600;
    color: #000;
}

.glossary-table-wrapper {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.glossary-table {
    width: 100%;
    border-collapse: collapse;
}

.glossary-table thead {
    background-color: #f8f9fa;
}

.glossary-table th {
    padding: 15px;
    text-align: left;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    border-bottom: 2px solid #ddd;
}

.glossary-term-col {
    width: 30%;
}

.glossary-desc-col {
    width: 70%;
}

.glossary-term-row {
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.glossary-term-row:hover {
    background-color: #f8f9fa;
}

.glossary-term-row.hidden {
    display: none;
}

.glossary-term {
    padding: 20px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #000;
    vertical-align: top;
}

.glossary-term strong {
    font-weight: 600;
    color: #000;
}

.glossary-description {
    padding: 20px 15px;
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    vertical-align: top;
}

.glossary-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow);
}

.glossary-note p {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

/* Glossary Page Responsive Styles */
@media (max-width: 768px) {
    .glossary-section {
        padding: 60px 0;
    }

    .glossary-filter-wrapper {
        padding: 20px;
    }

    .glossary-main-title {
        font-size: 1.75rem;
    }

    .glossary-table-wrapper {
        padding: 20px;
    }

    .glossary-table {
        font-size: 0.9rem;
    }

    .glossary-term,
    .glossary-description {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .alphabet-btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }

    .glossary-filter-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .glossary-section {
        padding: 40px 0;
    }

    .glossary-table-wrapper {
        padding: 15px;
    }

    .glossary-table th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }

    .glossary-term,
    .glossary-description {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
}

/* ============================================
   MERGERS & ACQUISITIONS PAGE STYLES
   ============================================ */
/* M&A Listing Section */
.ma-listing-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.ma-listing-content {
    max-width: 900px;
    margin: 0 auto;
}

.ma-listing-heading {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ma-listing-text {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* M&A Page Responsive Styles */
@media (max-width: 768px) {
    .ma-listing-heading {
        font-size: 2rem;
    }

    .ma-listing-text {
        font-size: 1rem;
    }
}

/* ============================================
   LISTING DETAIL PAGE STYLES
   ============================================ */
/* Listing Detail Banner - Using Standard Layout */
.listing-detail-breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb-link {
    color: #333;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: var(--primary-yellow, #c5b358);
}

.breadcrumb-link i {
    font-size: 12px;
}

.listing-badges-header {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.listing-badge-detail {
    display: inline-block;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.listing-badge-detail.coming-soon {
    background: #ffa500;
    color: #fff;
}

.listing-badge-detail.m-a {
    background: #2196f3;
    color: #fff;
}

.listing-badge-detail.price-change {
    background: #4caf50;
    color: #fff;
}

.listing-id-header {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    font-weight: 500;
}

.listing-detail-location {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: #333;
    margin-top: 10px;
    font-weight: 500;
}

.listing-detail-location i {
    color: var(--primary-yellow, #c5b358);
}

/* Listing Key Info Section */
.listing-key-info-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.listing-detail-content {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.listing-price-section {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-yellow, #c5b358) 0%, #d4c468 100%);
    border-radius: 8px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.listing-price-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.price-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.price-value {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
}

.section-title-modern {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow, #c5b358);
}

.listing-financial-overview {
    margin-bottom: 40px;
}

.financial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.financial-item {
    padding: 25px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-yellow, #c5b358);
    transition: all 0.3s;
}

.financial-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.financial-label {
    font-size: 13px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    font-weight: 600;
}

.financial-value {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.listing-description-section {
    margin-bottom: 40px;
}

.description-content {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.description-content p {
    margin-bottom: 15px;
}

.listing-highlights-section {
    margin-bottom: 40px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    transition: all 0.3s;
}

.highlight-item:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.highlight-item i {
    color: var(--primary-yellow, #c5b358);
    font-size: 18px;
    flex-shrink: 0;
}

.listing-details-section {
    margin-bottom: 20px;
}

.details-grid {
    display: grid;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    align-items: center;
    transition: all 0.3s;
}

.detail-row:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Sidebar */
.listing-sidebar {
    position: sticky;
    top: 100px;
}

.listing-contact-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-card-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.form-group-modern {
    margin-bottom: 20px;
}

.form-group-modern label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control-modern {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-control-modern:focus {
    outline: none;
    border-color: var(--primary-yellow, #c5b358);
    box-shadow: 0 0 0 3px rgba(197, 179, 88, 0.1);
}

.form-control-modern::placeholder {
    color: #999;
}

.listing-inquiry-btn {
    width: 100%;
    padding: 14px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.listing-inquiry-btn:hover {
    background: var(--primary-yellow, #c5b358);
    color: #1a1a1a;
}

.listing-quick-info-card {
    background: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 25px;
}

.quick-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

.quick-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quick-info-item i {
    font-size: 20px;
    color: var(--primary-yellow, #c5b358);
    width: 30px;
    text-align: center;
}

.quick-info-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.quick-info-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.listing-contact-info-card {
    background: #fff;
    border: 2px solid var(--primary-yellow, #c5b358);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info-header {
    margin-bottom: 25px;
}

.contact-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-info-separator {
    width: 50px;
    height: 3px;
    background: var(--primary-yellow, #c5b358);
    border-radius: 2px;
}

.contact-info-list {
    margin-bottom: 25px;
}

.contact-info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s;
}

.contact-info-item-modern:last-child {
    margin-bottom: 0;
}

.contact-info-item-modern:hover {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.contact-icon-wrapper {
    width: 45px;
    height: 45px;
    background: var(--primary-yellow, #c5b358);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-wrapper i {
    color: #1a1a1a;
    font-size: 18px;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 11px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.contact-info-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.3s;
    display: block;
    word-break: break-word;
}

.contact-info-link:hover {
    color: var(--primary-yellow, #c5b358);
}

.contact-page-link-modern {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    width: 100%;
}

.contact-page-link-modern:hover {
    background: var(--primary-yellow, #c5b358);
    color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 179, 88, 0.3);
}

.contact-page-link-modern i {
    transition: transform 0.3s;
}

.contact-page-link-modern:hover i {
    transform: translateX(5px);
}

/* Related Listings */
.related-listings-section {
    padding: 60px 0;
    background: #fff;
}

.related-listings-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
    text-align: center;
}

.related-listings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-listing-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.related-listing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-yellow, #c5b358);
    transform: scaleY(0);
    transition: transform 0.3s;
}

.related-listing-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-color: var(--primary-yellow, #c5b358);
}

.related-listing-card:hover::before {
    transform: scaleY(1);
}

.related-listing-id {
    font-size: 13px;
    color: #999;
    margin-bottom: 10px;
    font-weight: 500;
}

.related-listing-title {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 50px;
}

.related-listing-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-yellow, #c5b358);
    margin-bottom: 8px;
}

.related-listing-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.related-listing-link {
    display: block;
    text-align: center;
    padding: 12px;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.related-listing-link:hover {
    background: var(--primary-yellow, #c5b358);
    color: #1a1a1a;
}

/* Listing Detail Page Responsive Design */
@media (max-width: 992px) {
    .listing-sidebar {
        position: static;
        margin-top: 40px;
    }

    .financial-grid {
        grid-template-columns: 1fr;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .related-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .listing-detail-title {
        font-size: 28px;
    }

    .price-value {
        font-size: 36px;
    }

    .listing-detail-content {
        padding: 25px;
    }

    .related-listings-grid {
        grid-template-columns: 1fr;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 576px) {
    .listing-detail-banner {
        padding: 40px 0 30px;
    }

    .listing-detail-title {
        font-size: 24px;
    }

    .price-value {
        font-size: 32px;
    }
}

/* ============================================
   HEADER HERO BANNER STYLE
   Note: Background image is set inline in header.blade.php
   ============================================ */

/* ============================================
   BLOG DETAIL PAGE STYLES
   ============================================ */
.blog-detail-meta-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-detail-content-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.blog-detail-article {
    background: #ffffff;
}

.blog-detail-body {
    font-family: 'Roboto', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-detail-body p {
    margin-bottom: 20px;
}

.blog-detail-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.blog-detail-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 30px 0 15px 0;
    line-height: 1.3;
}

.blog-detail-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.blog-detail-body ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.blog-detail-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}

.blog-tag {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    padding: 5px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background-color: var(--primary-yellow);
    color: #000;
}

.blog-detail-share {
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
}

.share-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 50%;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-icon:hover {
    background-color: var(--primary-yellow);
    color: #000;
}

/* Sidebar Styles */
.blog-detail-sidebar {
    padding-left: 30px;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-widget-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-yellow);
}

.related-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-post-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.related-post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-title {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.related-post-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-post-title a:hover {
    color: var(--primary-yellow);
}

.related-post-date {
    font-family: 'Roboto', sans-serif;
    font-size: 0.85rem;
    color: #666;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories li:last-child {
    margin-bottom: 0;
}

.sidebar-categories a {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.sidebar-categories a:hover {
    color: var(--primary-yellow);
}

.sidebar-categories a span {
    color: #999;
    font-size: 0.9rem;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c468 100%);
    text-align: center;
}

.sidebar-cta .sidebar-widget-title {
    color: #000;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}

.sidebar-cta p {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #000;
    margin-bottom: 20px;
}

.sidebar-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sidebar-cta-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Related Blog Posts Section */
.related-blog-posts-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.related-blog-posts-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 50px;
}

.related-blog-posts-section {
    position: relative;
    padding: 80px 0;
}

.related-blog-posts-carousel {
    margin-top: 40px;
    position: relative;
}

.related-blog-posts-carousel .owl-stage-outer {
    padding: 0;
}

.related-blog-posts-carousel .owl-item {
    padding: 0 15px;
}

/* Navigation Arrows */
.related-blog-posts-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    margin: 0;
    padding: 0;
}

.related-blog-posts-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #000000 0%, #2c2c2c 100%);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 20px;
    pointer-events: all;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.related-blog-posts-carousel .owl-nav button span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.related-blog-posts-carousel .owl-nav button i {
    color: #fff;
    font-size: 20px;
    line-height: 1;
}

.related-blog-posts-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #d4c05a 100%);
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(197, 179, 88, 0.4);
}

.related-blog-posts-carousel .owl-nav button:hover i {
    color: #000;
}

.related-blog-posts-carousel .owl-nav button.owl-prev {
    left: -70px;
    position: absolute;
}

.related-blog-posts-carousel .owl-nav button.owl-next {
    right: -70px;
    position: absolute;
}

.related-blog-posts-carousel .owl-nav button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Dots Navigation */
.related-blog-posts-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.related-blog-posts-carousel .owl-dots button.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
}

.related-blog-posts-carousel .owl-dots button.owl-dot.active {
    background-color: var(--primary-yellow);
    width: 30px;
    border-radius: 6px;
}

.related-blog-posts-carousel .owl-dots button.owl-dot:hover {
    background-color: var(--primary-yellow);
    opacity: 0.7;
}

.related-blog-post-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.related-blog-post-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.related-blog-post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.related-blog-post-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.related-blog-post-title a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-blog-post-title a:hover {
    color: var(--primary-yellow);
}

.related-blog-post-excerpt {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.related-blog-post-link {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-right: 20px;
}

.related-blog-post-link::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: transform 0.3s ease;
}

.related-blog-post-link:hover {
    color: var(--primary-yellow);
}

.related-blog-post-link:hover::after {
    transform: translateX(5px);
}

/* Responsive Styles for Blog Detail */
@media (max-width: 992px) {
    .blog-detail-sidebar {
        padding-left: 0;
        margin-top: 50px;
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .blog-detail-content-section {
        padding: 50px 0;
    }

    .blog-detail-body {
        font-size: 1rem;
    }

    .blog-detail-body h2 {
        font-size: 1.75rem;
    }

    .blog-detail-body h3 {
        font-size: 1.25rem;
    }

    .blog-detail-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .related-blog-posts-carousel .owl-nav {
        position: relative;
        top: auto;
        transform: none;
        margin: 30px auto 0;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    .related-blog-posts-carousel .owl-nav button.owl-prev,
    .related-blog-posts-carousel .owl-nav button.owl-next {
        position: relative;
        left: auto;
        right: auto;
    }

    .related-blog-posts-title {
        font-size: 2rem;
    }
}

@media (max-width: 575px) {
    .related-blog-posts-carousel .owl-nav button {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .related-blog-posts-carousel .owl-nav button i {
        font-size: 18px;
    }
}



