/**
 * Max Property Finance - Component Styles
 * All UI components consolidated
 * Version: 2.0.0 (Optimized)
 */

/* ==========================================================================
   SECTION HEADERS (Consolidated - was 15 duplicates)
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--mpf-secondary-color);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--mpf-primary-color) 0%, var(--mpf-secondary-color) 100%);
    border-radius: 3px;
}

.section-title--primary {
    color: var(--mpf-primary-color);
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--mpf-primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-description {
    font-size: 16px;
    color: var(--mpf-text-color);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   HEADER STYLES - COMPLETE UPDATED VERSION
   Replace all existing header CSS with this
   ========================================================================== */

/* ==========================================================================
   TOP BAR
   ========================================================================== */

.top-bar {
    font-size: 0.875rem;
    background-color: var(--mpf-secondary-color);
}

.top-bar a {
    transition: all 0.3s ease;
}

.top-bar a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.top-bar .contact-item {
    display: inline-flex;
    align-items: center;
}

.top-bar .contact-item i {
    color: var(--mpf-primary-color);
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.top-bar-social a:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* ==========================================================================
   MAIN HEADER / NAVBAR
   ========================================================================== */

.site-header {
    position: relative;
    z-index: 1000;
}

.site-header .navbar {
    padding: 12px 0;
    transition: all 0.3s ease;
    background: #fff;
}

/* ==========================================================================
   STICKY HEADER
   ========================================================================== */

.site-header .navbar.sticky-top {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Scrolled State - Compact Header */
.site-header .navbar.sticky-top.scrolled {
    padding: 8px 0 !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   HOMEPAGE - TRANSPARENT HEADER OVERLAY
   ========================================================================== */

body.home .site-header,
body.page-template-front-page .site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

body.home .site-header .navbar.sticky-top,
body.page-template-front-page .site-header .navbar.sticky-top {
    position: absolute;
    background: transparent;
    box-shadow: none;
}

/* When scrolled - fixed and white background */
body.home .site-header .navbar.sticky-top.scrolled,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled {
    position: fixed !important;
    background: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}

/* ==========================================================================
   LOGO / BRANDING
   ========================================================================== */

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

.navbar-brand {
    padding: 5px 0;
    margin-right: 20px;
}

.navbar-brand img,
.navbar-brand .custom-logo {
    max-height: 65px;
    width: auto;
    transition: all 0.3s ease;
    display: block;
}

/* Logo - Scrolled/Sticky State */
.site-header .navbar.sticky-top.scrolled .navbar-brand img,
.site-header .navbar.sticky-top.scrolled .navbar-brand .custom-logo {
    max-height: 50px;
}

/* Text Logo Fallback */
.navbar-brand .h3 {
    margin-bottom: 0;
    color: var(--mpf-secondary-color);
    font-weight: 700;
}

/* ==========================================================================
   NAVIGATION MENU - BLACK TEXT, GREEN ON HOVER/ACTIVE
   ========================================================================== */

.navbar-nav {
    align-items: center;
    gap: 5px;
}

.navbar-nav .nav-item {
    position: relative;
    margin: 0 5px;
}

/* Menu Links - BLACK Color */
.navbar-nav .nav-link {
    font-weight: 600;
    font-size: 15px;
    padding: 12px 20px !important;
    color: #000 !important;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    opacity: 1 !important;
}

/* Underline Effect */
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--mpf-primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

/* Hover & Active States - GREEN Color */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-item.current-menu-item .nav-link::after,
.navbar-nav .nav-item.current_page_item .nav-link::after {
    width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-item.current-menu-item .nav-link,
.navbar-nav .nav-item.current_page_item .nav-link {
    color: var(--mpf-primary-color) !important;
}

/* ==========================================================================
   HOMEPAGE MENU - WHITE ON TRANSPARENT, BLACK AFTER SCROLL
   ========================================================================== */

/* Homepage - White text on transparent header (before scroll) */
body.home .site-header .navbar.sticky-top:not(.scrolled) .nav-link,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .nav-link {
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0);
}

body.home .site-header .navbar.sticky-top:not(.scrolled) .nav-link:hover,
body.home .site-header .navbar.sticky-top:not(.scrolled) .nav-item.current-menu-item .nav-link,
body.home .site-header .navbar.sticky-top:not(.scrolled) .nav-item.current_page_item .nav-link,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .nav-link:hover,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .nav-item.current-menu-item .nav-link,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .nav-item.current_page_item .nav-link {
    color: var(--mpf-primary-color) !important;
}

/* Homepage - After scroll, BLACK text */
body.home .site-header .navbar.sticky-top.scrolled .nav-link,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .nav-link {
    color: #000 !important;
    text-shadow: none;
}

body.home .site-header .navbar.sticky-top.scrolled .nav-link:hover,
body.home .site-header .navbar.sticky-top.scrolled .nav-item.current-menu-item .nav-link,
body.home .site-header .navbar.sticky-top.scrolled .nav-item.current_page_item .nav-link,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .nav-link:hover,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .nav-item.current-menu-item .nav-link,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .nav-item.current_page_item .nav-link {
    color: var(--mpf-primary-color) !important;
}

/* ==========================================================================
   DROPDOWN MENU
   ========================================================================== */

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    border-radius: 10px;
    margin-top: 10px;
    padding: 12px 0;
    min-width: 220px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-nav .dropdown-item {
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    color: #000;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
    background-color: var(--mpf-primary-color);
    color: #fff;
    padding-left: 28px;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background-color: var(--mpf-primary-color);
    color: #fff;
}

/* Dropdown Arrow */
.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
    border-top-width: 5px;
    border-right-width: 5px;
    border-left-width: 5px;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown-toggle.show::after {
    transform: rotate(180deg);
}

/* ==========================================================================
   HEADER CTA BUTTON
   ========================================================================== */

.header-cta {
    margin-left: 15px;
}

.header-cta .btn {
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--mpf-primary-color) 0%, var(--mpf-primary-dark) 100%);
    border: none;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(152, 179, 50, 0.4);
    background: linear-gradient(135deg, var(--mpf-primary-dark) 0%, var(--mpf-primary-color) 100%);
    color: #fff;
}

.header-cta .btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.header-cta .btn:hover i {
    transform: translateX(3px);
}

/* ==========================================================================
   HEADER SEARCH BUTTON (Optional)
   ========================================================================== */

.header-search .btn {
    width: 45px;
    height: 45px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 2px solid var(--mpf-primary-color);
    color: var(--mpf-primary-color);
    transition: all 0.3s ease;
}

.header-search .btn:hover {
    background: var(--mpf-primary-color);
    color: #fff;
}

/* ==========================================================================
   MOBILE MENU TOGGLE - HAMBURGER & CLOSE (X) ICON
   ========================================================================== */

.navbar-toggler {
    border: 2px solid #000;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    width: 50px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(152, 179, 50, 0.25);
    outline: none;
}

/* Custom Hamburger Lines */
.navbar-toggler-icon {
    background-image: none !important;
    position: relative;
    width: 24px;
    height: 2px;
    background-color: #000;
    display: block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: #000;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

/* Close Icon (X) when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-color: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
    background-color: var(--mpf-primary-color);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
    background-color: var(--mpf-primary-color);
}

/* Homepage - White hamburger on transparent header */
body.home .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler {
    border-color: #fff;
}

body.home .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler-icon,
body.home .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler-icon::before,
body.home .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler-icon::after,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler-icon,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler-icon::before,
body.page-template-front-page .site-header .navbar.sticky-top:not(.scrolled) .navbar-toggler-icon::after {
    background-color: #fff;
}

/* After scroll - Black hamburger */
body.home .site-header .navbar.sticky-top.scrolled .navbar-toggler,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .navbar-toggler {
    border-color: #000;
}

body.home .site-header .navbar.sticky-top.scrolled .navbar-toggler-icon,
body.home .site-header .navbar.sticky-top.scrolled .navbar-toggler-icon::before,
body.home .site-header .navbar.sticky-top.scrolled .navbar-toggler-icon::after,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .navbar-toggler-icon,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .navbar-toggler-icon::before,
body.page-template-front-page .site-header .navbar.sticky-top.scrolled .navbar-toggler-icon::after {
    background-color: #000;
}

/* ==========================================================================
   BODY PADDING FOR FIXED HEADER
   ========================================================================== */

body {
    padding-top: 90px;
}

/* Homepage - No padding (header overlays hero) */
body.home,
body.page-template-front-page {
    padding-top: 0;
}

/* ==========================================================================
   HERO SECTION ADJUSTMENTS
   ========================================================================== */

.hero-slide-enhanced {
    min-height: 100vh;
    padding-top: 90px;
    padding-bottom: 0;
}
.hero-section-enhanced + section,
.hero-section-enhanced + .services-section,
.hero-section-enhanced + .section-padding {
    margin-top: 0;
    padding-top: 80px;
}
/* Swiper specific fixes */
.swiper,
.swiper-container {
    background: transparent;
}

.swiper-wrapper {
    background: transparent;
}

.swiper-slide {
    background: transparent;
}

/* ==========================================================================
   SKIP LINK (Accessibility)
   ========================================================================== */

.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--mpf-primary-color);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    z-index: 9999;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
    color: #fff;
}

/* ==========================================================================
   SEARCH MODAL
   ========================================================================== */

#searchModal .modal-content {
    border: none;
    border-radius: 12px;
}

#searchModal .modal-header {
    border-bottom: 1px solid #eee;
    padding: 20px 25px;
}

#searchModal .modal-body {
    padding: 25px;
}

#searchModal .search-form {
    display: flex;
    gap: 10px;
}

#searchModal .search-field {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

#searchModal .search-field:focus {
    outline: none;
    border-color: var(--mpf-primary-color);
}

#searchModal .search-submit {
    padding: 12px 25px;
    background: var(--mpf-primary-color);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

#searchModal .search-submit:hover {
    background: var(--mpf-primary-dark);
}

/* ==========================================================================
   RESPONSIVE - LARGE DESKTOP (1400px+)
   ========================================================================== */

@media (min-width: 1400px) {
    .navbar-nav .nav-link {
        padding: 12px 24px !important;
        font-size: 16px;
    }
    
    .navbar-brand img,
    .navbar-brand .custom-logo {
        max-height: 70px;
    }
}

/* ==========================================================================
   RESPONSIVE - DESKTOP (1200px - 1399px)
   ========================================================================== */

@media (max-width: 1399px) {
    .navbar-nav .nav-item {
        margin: 0 3px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 16px !important;
        font-size: 14px;
    }
    
    .header-cta .btn {
        padding: 10px 22px;
        font-size: 13px;
    }
}

/* ==========================================================================
   RESPONSIVE - LAPTOP (992px - 1199px)
   ========================================================================== */

@media (max-width: 1199px) {
    .navbar-nav .nav-item {
        margin: 0 2px;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 12px !important;
        font-size: 14px;
    }
    
    .navbar-brand img,
    .navbar-brand .custom-logo {
        max-height: 55px;
    }
    
    .site-header .navbar.sticky-top.scrolled .navbar-brand img,
    .site-header .navbar.sticky-top.scrolled .navbar-brand .custom-logo {
        max-height: 45px;
    }
    
    .header-cta {
        margin-left: 10px;
    }
    
    .header-cta .btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ==========================================================================
   RESPONSIVE - TABLET & MOBILE (991px and below)
   ========================================================================== */

@media (max-width: 991px) {
    /* Body Padding */
    body {
        padding-top: 75px;
    }
    
    body.home,
    body.page-template-front-page {
        padding-top: 0;
    }
    
    /* Navbar */
    .site-header .navbar {
        padding: 10px 0;
    }
    
    .site-header .navbar.sticky-top.scrolled {
        padding: 8px 0 !important;
    }
    
    /* Logo */
    .navbar-brand img,
    .navbar-brand .custom-logo {
        max-height: 50px;
    }
    
    .site-header .navbar.sticky-top.scrolled .navbar-brand img,
    .site-header .navbar.sticky-top.scrolled .navbar-brand .custom-logo {
        max-height: 45px;
    }
    
    /* Mobile Menu Container */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        border-radius: 0 0 12px 12px;
        padding: 0;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .navbar-nav {
        padding: 15px 0;
        gap: 0;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Mobile menu - BLACK text */
    .navbar-nav .nav-link {
        padding: 15px 20px !important;
        font-size: 15px;
        color: #000 !important;
        text-shadow: none !important;
    }
    
    .navbar-nav .nav-link:hover {
        color: var(--mpf-primary-color) !important;
        background: #f8f9fa;
    }
    
    .navbar-nav .nav-link::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .navbar-nav .dropdown-menu {
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        margin: 0;
        background: #f8f9fa;
    }
    
    .navbar-nav .dropdown-item {
        padding: 12px 30px;
        color: #000;
    }
    
    .navbar-nav .dropdown-item:hover {
        background-color: var(--mpf-primary-color);
        color: #fff;
    }
    
    /* Header CTA on Mobile */
    .header-cta {
        padding: 15px 20px;
        margin-left: 0;
        border-top: 1px solid #f0f0f0;
    }
    
    .header-cta .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }
    
    /* Hero padding adjustment */
    .hero-slide-enhanced {
        padding-top: 80px;
    }
}

/* ==========================================================================
   RESPONSIVE - MOBILE (575px and below)
   ========================================================================== */

@media (max-width: 575px) {
    body {
        padding-top: 70px;
    }
    
    .site-header .navbar {
        padding: 8px 0;
    }
    
    .navbar-brand img,
    .navbar-brand .custom-logo {
        max-height: 45px;
    }
    
    .site-header .navbar.sticky-top.scrolled .navbar-brand img,
    .site-header .navbar.sticky-top.scrolled .navbar-brand .custom-logo {
        max-height: 40px;
    }
    
    .navbar-toggler {
        width: 45px;
        height: 40px;
        padding: 6px 10px;
    }
    
    .navbar-toggler-icon {
        width: 20px;
    }
    
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 20px;
    }
    
    .navbar-toggler-icon::before {
        top: -6px;
    }
    
    .navbar-toggler-icon::after {
        top: 6px;
    }
    
    .navbar-nav .nav-link {
        padding: 12px 15px !important;
        font-size: 14px;
    }
    
    .header-cta {
        padding: 12px 15px;
    }
    
    .hero-slide-enhanced {
        padding-top: 70px;
    }
}

/* ==========================================================================
   HERO SLIDER (Enhanced)
   ========================================================================== */

/* Base Hero Section - CRITICAL */
.hero-section-enhanced {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent;
}

.hero-slider-enhanced {
    position: relative;
    overflow: hidden;
}

/* Hero Slide Container */
.hero-slide-enhanced {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 1;
    object-fit: cover;
}

/* Image Background */
.hero-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Background Layers */
.hero-bg-image-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-video-enhanced {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Overlay Styles */
.hero-overlay-enhanced {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    /* Enhanced visibility - darker overlay */
    background: linear-gradient(
        135deg,
        rgba(3, 77, 102, 0.92) 0%,
        rgba(3, 77, 102, 0.88) 30%,
        rgba(152, 179, 50, 0.85) 70%,
        rgba(152, 179, 50, 0.82) 100%
    );
}
.hero-section-enhanced::after {
    display: none;
}
#primary,
.site-main {
    margin-top: 0;
    padding-top: 0;
}

body.home #primary,
body.page-template-front-page #primary {
    margin-top: 0;
    padding-top: 0;
}

/* Alternative overlay for better text visibility */
.hero-overlay-enhanced.hero-overlay-dark {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(3, 77, 102, 0.85) 40%,
        rgba(152, 179, 50, 0.75) 100%
    );
}

.hero-overlay-enhanced.overlay-gradient {
    background: linear-gradient(
        135deg,
        rgba(3, 77, 102, 0.9) 0%,
        rgba(3, 77, 102, 0.85) 50%,
        rgba(152, 179, 50, 0.8) 100%
    );
}

.hero-overlay-enhanced.overlay-dark {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

/* Hero Content */
.hero-content-enhanced {
    position: relative;
    z-index: 10;
    color: #ffffff;
    padding: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-badge-enhanced {
    display: inline-flex;
    align-items: center;
    background: rgba(152, 179, 50, 0.25);
    border: 2px solid var(--mpf-primary-color);
    color: var(--mpf-primary-color);
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: slideInDown 0.8s ease;
    box-shadow: 0 4px 20px rgba(152, 179, 50, 0.3);
}

.hero-title-enhanced {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    animation: slideInLeft 0.8s ease 0.2s both;
}

.hero-subtitle-enhanced {
    font-size: 1.75rem;
    color: var(--mpf-primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: slideInLeft 0.8s ease 0.4s both;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-description-enhanced {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: slideInLeft 0.8s ease 0.6s both;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Hero Buttons */
.hero-buttons-enhanced {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: slideInUp 0.8s ease 0.8s both;
}

.btn-hero-primary-enhanced {
    background: var(--mpf-primary-color);
    color: #ffffff;
    border: 3px solid var(--mpf-primary-color);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(152, 179, 50, 0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-primary-enhanced:hover {
    background: var(--mpf-primary-dark);
    border-color: var(--mpf-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(152, 179, 50, 0.5);
    color: #ffffff;
}

.btn-hero-secondary-enhanced {
    background: transparent;
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.8);
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-hero-secondary-enhanced:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
    color: #ffffff;
}

/* Trust Badges */
.trust-badges-enhanced {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: fadeIn 1s ease 1s both;
}

.trust-item-enhanced {
    text-align: center;
    padding: 1rem;
}

.trust-icon-enhanced {
    width: 70px;
    height: 70px;
    background: rgba(152, 179, 50, 0.25);
    border: 2px solid var(--mpf-primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.trust-icon-enhanced i {
    font-size: 1.75rem;
    color: var(--mpf-primary-color);
}

.trust-item-enhanced:hover .trust-icon-enhanced {
    background: var(--mpf-primary-color);
    transform: scale(1.1);
}

.trust-item-enhanced:hover .trust-icon-enhanced i {
    color: #ffffff;
}

.trust-number-enhanced {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.trust-label-enhanced {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0.85;
    line-height: 1.4;
}

/* Carousel Controls */
.carousel-control-prev-enhanced,
.carousel-control-next-enhanced {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 15;
}

.carousel-control-prev-enhanced { left: 30px; }
.carousel-control-next-enhanced { right: 30px; }

/* Carousel Control Icons */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 28px;
    height: 28px;
    background-size: 100% 100%;
}

.carousel-control-prev-enhanced:hover,
.carousel-control-next-enhanced:hover {
    background: var(--mpf-primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(152, 179, 50, 0.5);
    border-color: var(--mpf-primary-color);
}

/* Carousel Indicators */
.carousel-indicators-enhanced {
    bottom: 30px;
    margin: 0;
    z-index: 15;
}

.carousel-indicators-enhanced [data-bs-target] {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    opacity: 1;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.carousel-indicators-enhanced .active {
    background-color: var(--mpf-primary-color);
    border-color: #ffffff;
    transform: scale(1.3);
}

/* Video Controls */
.hero-video-controls {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 20;
}

.video-control-btn {
    width: 50px;
    height: 50px;
    background: rgba(152, 179, 50, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.video-control-btn:hover {
    background: var(--mpf-primary-color);
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: #ffffff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.scroll-indicator i {
    font-size: 2rem;
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.service-card {
    background: var(--mpf-white);
    border-radius: var(--mpf-border-radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--mpf-transition-base);
    border: 1px solid var(--mpf-border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--mpf-shadow-lg);
    border-color: var(--mpf-primary-color);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mpf-primary-color) 0%, var(--mpf-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--mpf-transition-base);
}

.service-card:hover .service-icon {
    transform: rotate(360deg);
}

.service-card .service-icon i {
    font-size: 2rem;
    color: var(--mpf-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--mpf-secondary-color);
}

.service-card .subtitle {
    font-size: 0.875rem;
    color: var(--mpf-primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--mpf-text-color);
    margin-bottom: 1.5rem;
}

/* Service Filters */
.service-filters {
    margin-bottom: 3rem;
    text-align: center;
}

.service-filters .btn {
    margin: 0.25rem;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials-section-v2 {
    background-color: var(--mpf-light-bg);
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-card,
.testimonial-card-v2 {
    background-color: #fff;
    border-radius: 8px;
    padding: 35px;
    height: 100%;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card-v2 {
    border-left: 4px solid var(--mpf-primary-color);
}

.testimonial-card:hover,
.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    color: var(--mpf-primary-color);
    opacity: 0.1;
}

.quote-icon {
    color: var(--mpf-primary-color);
    font-size: 28px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.testimonial-text,
.testimonial-content {
    font-size: 15px;
    color: var(--mpf-text-color);
    line-height: 1.8;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-content {
    font-style: italic;
}

.client-info,
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.client-avatar,
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border: 3px solid var(--mpf-primary-color);
}

.client-avatar {
    background-color: var(--mpf-secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 600;
}

.client-avatar img,
.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4,
.testimonial-info h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 2px;
}

.client-details span,
.testimonial-info .position {
    font-size: 13px;
    color: #999;
}

.star-rating {
    margin-top: 0.5rem;
}

.star-rating i {
    font-size: 0.875rem;
    color: var(--mpf-warning);
}

/* ==========================================================================
   BLOG CARDS
   ========================================================================== */
.blog-section {
    background-color: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.blog-card,
.post-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover,
.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.blog-thumbnail,
.post-thumbnail {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.post-thumbnail {
    height: 250px;
}

.blog-thumbnail img,
.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-thumbnail img,
.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--mpf-primary-color);
    color: #fff;
    padding: 5px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-content,
.post-content-wrapper {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.post-content-wrapper {
    padding: 1.5rem;
}

.blog-meta,
.post-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    color: #888;
}

.blog-meta span,
.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i,
.post-meta i {
    color: var(--mpf-primary-color);
    font-size: 14px;
}

.blog-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-title a,
.post-card h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover,
.post-card h3 a:hover {
    color: var(--mpf-primary-color);
}

.blog-excerpt {
    font-size: 14px;
    color: var(--mpf-text-color);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--mpf-primary-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--mpf-primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   CONTACT SECTION (Consolidated)
   ========================================================================== */
.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-info-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 35px 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.contact-info-card:hover {
    background-color: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--mpf-primary-color);
    transform: translateY(-5px);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--mpf-primary-color) 0%, var(--mpf-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon i {
    font-size: 28px;
    color: #fff;
}

.contact-info-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.7;
}

/* Contact Form Wrapper (Consolidated) */
.contact-form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-form-wrapper h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 25px;
}

/* Office Info (Consolidated) */
.office-info {
    background: linear-gradient(135deg, var(--mpf-secondary-color) 0%, var(--mpf-secondary-dark) 100%);
    padding: 40px;
    border-radius: 12px;
    height: 100%;
    color: #fff;
}

.office-info-box {
    background-color: var(--mpf-secondary-color);
    border-radius: 12px;
    padding: 35px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.office-info h3,
.office-info-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
}

.office-info h3::after,
.office-info-box h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background-color: var(--mpf-primary-color);
}

.office-info-box h4 {
    font-size: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    color: var(--mpf-primary-color);
    font-size: 20px;
    margin-top: 3px;
    min-width: 24px;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.info-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--mpf-primary-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--mpf-primary-color);
    transform: translateY(-3px);
}

/* Map */
.map-wrapper {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    height: auto;
    min-height: 300px;
}

.map-wrapper iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Privacy Note */
.privacy-note {
    font-size: 13px;
    color: #888;
    margin-top: 15px;
}

.privacy-note a {
    color: var(--mpf-primary-color);
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-section .section-title {
    color: var(--mpf-primary-color);
}

.faq-section .section-subtitle {
    color: var(--mpf-primary-color);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
}

.accordion-item {
    border: 1px solid #e0e0e0;
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    padding: 20px 25px;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: var(--mpf-primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #e0e0e0;
}

.accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    background-color: #f8f9fa;
}

/* ==========================================================================
   CTA SECTIONS
   ========================================================================== */
.cta-section {
    background: linear-gradient(135deg, var(--mpf-primary-color) 0%, var(--mpf-primary-dark) 100%);
    padding: 60px 0;
}

.cta-section .cta-content {
    text-align: center;
}

.cta-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--mpf-secondary-color);
    color: var(--mpf-white);
}

.footer-widget-area {
    margin-bottom: 2rem;
}

.footer-widget-area .widget-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--mpf-white);
}

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

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu a {
    color: var(--mpf-white);
    text-decoration: none;
    transition: var(--mpf-transition-base);
    display: inline-flex;
    align-items: center;
}

.footer-menu a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--mpf-primary-color);
}

.footer-menu a:hover {
    color: var(--mpf-primary-color);
    padding-left: 0.5rem;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info i {
    margin-right: 1rem;
    margin-top: 0.25rem;
    width: 20px;
    color: var(--mpf-primary-color);
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--mpf-white);
    transition: var(--mpf-transition-base);
    margin-right: 0.5rem;
}

.footer-social a:hover {
    background-color: var(--mpf-primary-color);
    transform: translateY(-3px);
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    visibility: hidden;
    transition: var(--mpf-transition-base);
    z-index: 999;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   PAGE BANNER
   ========================================================================== */
.mpf-page-banner {
    background: linear-gradient(135deg, var(--mpf-secondary-color) 0%, var(--mpf-secondary-dark) 100%);
    padding: 80px 0;
    position: relative;
}

.mpf-page-banner::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><polygon fill="rgba(255,255,255,0.02)" points="100,0 100,100 0,100"/></svg>');
    background-size: cover;
}

.mpf-page-banner .container {
    position: relative;
    z-index: 1;
}

.mpf-page-banner__title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.mpf-page-banner__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
    max-width: 650px;
}

.mpf-page-banner__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mpf-page-banner__crumbs a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.mpf-page-banner__crumbs a:hover {
    color: var(--mpf-primary-color);
}

.mpf-page-banner__crumbs span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.mpf-page-banner__crumbs .active {
    color: var(--mpf-primary-color);
}

/* ==========================================================================
   SWIPER CUSTOMIZATION
   ========================================================================== */
.swiper-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.swiper-button-prev,
.swiper-button-next {
    position: static;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 2px solid var(--mpf-secondary-color);
    border-radius: 50%;
    color: var(--mpf-secondary-color);
    transition: all 0.3s ease;
    margin: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: 700;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--mpf-secondary-color);
    color: #fff;
}

.swiper-pagination {
    position: static;
    margin-top: 30px;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--mpf-primary-color);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================================================
   DIFFERENCE & SOLUTION SECTIONS
   ========================================================================== */
.difference-section {
    background-color: #fff;
}

.difference-section .section-image img,
.solution-section .section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 500px;
}

.difference-section .section-content {
    padding-left: 50px;
}

.feature-item {
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--mpf-secondary-color);
    margin-bottom: 8px;
    display: inline;
}

.feature-item p {
    display: inline;
    font-size: 15px;
}

.highlight-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--mpf-secondary-color);
    margin-top: 25px;
    margin-bottom: 25px;
    font-style: italic;
}

.solution-section {
    background-color: #f8f9fa;
}

.solution-section .section-content {
    padding-right: 50px;
}

.solution-section .intro-text {
    font-size: 16px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.solution-section .feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.solution-section .feature-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 15px;
}

.solution-section .feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: var(--mpf-primary-color);
    border-radius: 50%;
}

/* ==========================================================================
   DISCLAIMER SECTION
   ========================================================================== */
.disclaimer-section,
.mpf-disclaimer {
    background: linear-gradient(135deg, var(--mpf-secondary-color) 0%, var(--mpf-secondary-dark) 100%);
    padding: 50px 0;
}

.mpf-disclaimer {
    background-color: var(--mpf-primary-color);
}

.disclaimer-content,
.mpf-disclaimer__content {
    text-align: center;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content p,
.mpf-disclaimer__text {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.disclaimer-content p:last-child,
.mpf-disclaimer__text:last-child {
    margin-bottom: 0;
}

.disclaimer-content .divider,
.mpf-disclaimer__divider {
    width: 80px;
    height: 2px;
    background-color: var(--mpf-primary-color);
    margin: 25px auto;
}

.mpf-disclaimer__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}