/* ============================================================
   FDRVC UI Enhancements — Orange & Light Green Theme
   Color Palette: Orange (#FF6B35), Light Green (#4ADE80)
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
    --fdrvc-primary: #FF6B35;
    --fdrvc-primary-dark: #E55A25;
    --fdrvc-primary-light: #FF8F5E;
    --fdrvc-accent: #4ADE80;
    --fdrvc-accent-dark: #22C55E;
    --fdrvc-accent-light: #86EFAC;
    --fdrvc-gold: #FFB703;
    --fdrvc-light-bg: #FFF8F3;
    --fdrvc-green-bg: #F0FDF4;
    --fdrvc-card-shadow: 0 4px 24px rgba(255, 107, 53, 0.10);
    --fdrvc-card-shadow-hover: 0 12px 40px rgba(255, 107, 53, 0.22);
    --fdrvc-radius: 16px;
    --fdrvc-transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------------
   2. GLOBAL POLISH
   ---------------------------------------------------------- */
body {
    background-color: #FFFCFA;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--fdrvc-accent);
    color: #fff;
}

/* ----------------------------------------------------------
   3. HEADER — Glassmorphism sticky header
   ---------------------------------------------------------- */
header.header.sticky-bar.stick {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 107, 53, 0.12) !important;
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.08) !important;
}

header.header {
    transition: all 0.3s ease !important;
    border-bottom: none !important;
}

/* Clear float on header for proper flow */
header.header + .section,
header.header + section {
    clear: both;
}

.header .main-header .header-left .header-logo {
    max-width: 180px !important;
}

.header .main-header .header-left .header-logo a img {
    max-height: 52px;
    width: auto;
}

/* Nav link styling */
.header .main-menu > li > a {
    position: relative;
    font-weight: 600 !important;
    letter-spacing: 0.2px;
    transition: color 0.3s ease !important;
    padding-right: 15px !important;
}

/* Dropdown arrow fix — proper alignment */
.header .main-menu li.has-children > a {
    padding-right: 28px !important;
}

.header .main-menu li.has-children > a::after {
    content: "" !important;
    background: none !important;
    width: 0 !important;
    height: 0 !important;
    border-left: 5px solid transparent !important;
    border-right: 5px solid transparent !important;
    border-top: 5px solid #555 !important;
    position: absolute !important;
    right: 8px !important;
    top: 50% !important;
    margin-top: -2px !important;
    transition: transform 0.3s ease, border-color 0.3s ease !important;
}

.header .main-menu li.has-children:hover > a::after {
    border-top-color: var(--fdrvc-primary) !important;
    transform: rotate(180deg) !important;
}

/* Hover underline — only for non-dropdown items */
.header .main-menu > li:not(.has-children) > a::after {
    content: "";
    position: absolute;
    bottom: 20px;
    left: 15px;
    right: 15px;
    height: 3px;
    background: linear-gradient(90deg, var(--fdrvc-primary), var(--fdrvc-accent));
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border: none;
    width: auto;
    margin: 0;
}

.header .main-menu > li:not(.has-children) > a:hover::after,
.header .main-menu > li:not(.has-children).active > a::after {
    transform: scaleX(1);
}

/* Active underline for dropdown items via border-bottom */
.header .main-menu > li.has-children.active > a,
.header .main-menu > li.has-children > a:hover {
    color: var(--fdrvc-primary) !important;
}

.header .main-menu > li > a:hover {
    color: var(--fdrvc-primary) !important;
}

.header .main-menu > li.active > a {
    color: var(--fdrvc-primary) !important;
}

/* Submenu dropdown styling */
.header .main-menu li ul {
    border: 1px solid rgba(255, 107, 53, 0.12) !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10) !important;
    padding: 8px 0 !important;
    overflow: hidden;
}

.header .main-menu li ul li a {
    padding: 10px 20px !important;
    transition: all 0.2s ease !important;
}

.header .main-menu li ul li a:hover {
    background: #FFF2EB !important;
    color: var(--fdrvc-primary) !important;
    padding-left: 24px !important;
}

/* ----------------------------------------------------------
   4. HERO BANNER — Modern full-height slider with overlay
   ---------------------------------------------------------- */
.banner-11 {
    position: relative;
    margin-top: -1px;
}

.section.banner-11 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Remove gap between header and banner */
section.section:has(.banner-11),
section.section:has(.box-banner-home11) {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* The layout wraps content in section.section — remove its top padding */
section.section:first-child {
    padding-top: 0 !important;
}

/* Slider wrapper */
.box-banner-home11 {
    position: relative;
    overflow: hidden;
}

/* Each slide */
.banner-slide-11-wrap {
    position: relative;
    overflow: hidden;
    background: transparent;
}

/* Full-width image — preserves natural aspect ratio */
.banner-slide-11-img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
    transition: transform 8s ease-out;
}

/* Ken Burns zoom on active */
.swiper-slide-active .banner-slide-11-img {
    transform: scale(1.08);
}

/* Gradient overlay: removed to show original images */
.banner-slide-11-wrap::before {
    content: none;
}

.banner-slide-11-wrap::after {
    content: none;
}

/* Text overlay container */
.banner-slide-11-wrap .banner-abs {
    position: absolute !important;
    top: 50% !important;
    left: 0 !important;
    right: 0 !important;
    transform: translateY(-50%) !important;
    z-index: 2 !important;
    padding: 0 !important;
}

/* Banner text */
.banner-slide-11-wrap .box-info-banner11 {
    padding: 40px 0 !important;
    background-color: transparent !important;
}

.banner-slide-11-wrap .box-info-banner11 h2 {
    color: #fff !important;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
    font-size: 48px !important;
    line-height: 58px !important;
    font-weight: 800 !important;
    margin-bottom: 16px !important;
    max-width: 550px;
}

.banner-slide-11-wrap .box-info-banner11 p {
    color: rgba(255, 255, 255, 0.88) !important;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
    font-size: 16px !important;
    line-height: 26px !important;
    max-width: 480px;
}

/* Orange accent line above title */
.banner-slide-11-wrap .box-info-banner11 h2::before {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--fdrvc-primary), var(--fdrvc-accent));
    border-radius: 2px;
    margin-bottom: 20px;
}

/* Pagination — bottom-center, modern pills */
.swiper-pagination-group-11 {
    bottom: 28px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    z-index: 5 !important;
    display: flex;
    gap: 8px;
}

.swiper-pagination-group-11 .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 12px !important;
    height: 12px !important;
    opacity: 1 !important;
    transition: all 0.35s ease !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 50% !important;
}

.swiper-pagination-group-11 .swiper-pagination-bullet-active {
    background: var(--fdrvc-primary) !important;
    border-color: var(--fdrvc-primary) !important;
    width: 36px !important;
    border-radius: 6px !important;
    box-shadow: 0 0 16px rgba(255, 107, 53, 0.6);
}

/* Navigation arrows — sleek rounded rectangles */
.box-banner-home11 .swiper-button-prev-group-1,
.box-banner-home11 .swiper-button-next-group-1 {
    width: 52px !important;
    height: 52px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 14px !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;
    z-index: 5 !important;
}

.box-banner-home11 .swiper-button-prev-group-1:hover,
.box-banner-home11 .swiper-button-next-group-1:hover {
    background: var(--fdrvc-primary) !important;
    border-color: var(--fdrvc-primary) !important;
    transform: translateY(-50%) scale(1.08) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.5) !important;
}

.box-banner-home11 .swiper-button-prev-group-1::after,
.box-banner-home11 .swiper-button-next-group-1::after {
    color: #fff !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

.box-banner-home11 .swiper-button-prev-group-1 {
    left: 28px !important;
    right: auto !important;
}
.box-banner-home11 .swiper-button-next-group-1 {
    right: 28px !important;
    left: auto !important;
}

/* Banner responsive — Tablet */
@media (max-width: 991.98px) {
    .banner-slide-11-wrap .box-info-banner11 h2 {
        font-size: 32px !important;
        line-height: 40px !important;
        max-width: 100% !important;
    }
    .banner-slide-11-wrap .box-info-banner11 p {
        font-size: 15px !important;
        line-height: 24px !important;
        max-width: 100% !important;
    }
    .banner-slide-11-wrap .banner-abs {
        position: relative !important;
        top: auto !important;
        transform: none !important;
    }
    .box-banner-home11 .swiper-button-prev-group-1,
    .box-banner-home11 .swiper-button-next-group-1 {
        width: 40px !important;
        height: 40px !important;
        border-radius: 10px !important;
    }
}

/* Banner responsive — Mobile */
@media (max-width: 767.98px) {
    .box-banner-home11 .swiper-button-prev-group-1,
    .box-banner-home11 .swiper-button-next-group-1 {
        display: none !important;
    }
    .banner-slide-11-wrap .box-info-banner11 h2 {
        font-size: 24px !important;
        line-height: 32px !important;
    }
    .banner-slide-11-wrap .box-info-banner11 p {
        font-size: 14px !important;
        line-height: 22px !important;
    }
}

/* Banner responsive — Small mobile */
@media (max-width: 575.98px) {
    .banner-slide-11-wrap .box-info-banner11 h2 {
        font-size: 20px !important;
        line-height: 28px !important;
    }
    .banner-slide-11-wrap .box-info-banner11 p {
        font-size: 13px !important;
        line-height: 20px !important;
    }
}

/* ----------------------------------------------------------
   5. SECTION HEADINGS — Decorative & Modern
   ---------------------------------------------------------- */
.section h2,
.section h3 {
    position: relative;
}

.text-center h3.color-brand-1,
.text-center h2.color-brand-1 {
    display: inline-block;
    color: var(--fdrvc-primary) !important;
}

.font-lg.color-grey-500 {
    color: #5a5a5a !important;
    line-height: 1.7 !important;
    max-width: 680px;
    margin: 0 auto;
}

/* ----------------------------------------------------------
   6. PARTNER / BRAND LOGOS — Warm gradient strip
   ---------------------------------------------------------- */
.box-radius-bottom {
    background: linear-gradient(135deg, #FFF2EB 0%, #F0FDF4 100%) !important;
    border-radius: 0 0 80px 80px !important;
    box-shadow: 0 8px 40px rgba(255, 107, 53, 0.06) inset;
    padding: 60px 0 70px !important;
}

.box-radius-bottom .swiper-container .item-logo,
.box-swiper .swiper-container .item-logo {
    border: 1px solid rgba(255, 107, 53, 0.12) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.90) !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.06) !important;
    transition: all var(--fdrvc-transition) !important;
    padding: 24px 20px !important;
}

.box-swiper .swiper-container .item-logo:hover {
    border-color: var(--fdrvc-accent) !important;
    box-shadow: 0 8px 28px rgba(74, 222, 128, 0.18) !important;
    transform: translateY(-4px) scale(1.03);
}

/* ----------------------------------------------------------
   7. SERVICE / OFFER CARDS — Modern elevated cards
   ---------------------------------------------------------- */
.card-offer {
    border-radius: var(--fdrvc-radius) !important;
    border: 1px solid rgba(255, 107, 53, 0.10) !important;
    background: #fff !important;
    box-shadow: var(--fdrvc-card-shadow) !important;
    transition: all var(--fdrvc-transition) !important;
    position: relative;
    overflow: hidden;
    padding: 36px 28px 28px !important;
}

.card-offer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--fdrvc-primary) 0%,
        var(--fdrvc-accent) 100%
    );
    opacity: 0;
    transition: opacity var(--fdrvc-transition);
}

.card-offer:hover {
    border-color: var(--fdrvc-primary) !important;
    box-shadow: var(--fdrvc-card-shadow-hover) !important;
    transform: translateY(-6px);
}

.card-offer:hover::before {
    opacity: 1;
}

.card-offer .card-image {
    height: 72px !important;
    display: flex;
    align-items: center;
    margin-bottom: 20px !important;
    padding: 12px;
    background: linear-gradient(135deg, #FFF2EB 0%, #F0FDF4 100%);
    border-radius: 12px;
    width: fit-content;
}

.card-offer .card-image img {
    max-height: 48px !important;
    transition: transform var(--fdrvc-transition);
}

.card-offer:hover .card-image img {
    transform: scale(1.1) rotate(-2deg);
}

.card-offer .card-info h4 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #2D2D2D !important;
    margin-bottom: 10px !important;
}

.card-offer .card-info p {
    color: #5a5a5a !important;
    line-height: 1.6 !important;
    font-size: 15px !important;
}

.card-offer .box-button-offer .btn {
    color: var(--fdrvc-primary) !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding-left: 0 !important;
    letter-spacing: 0.3px;
    transition: all 0.25s ease !important;
}

.card-offer .box-button-offer .btn:hover {
    color: var(--fdrvc-accent-dark) !important;
    letter-spacing: 0.6px;
}

/* Section "What We Offer" heading area */
.section.mt-50 h2.color-brand-1 {
    font-size: 40px !important;
    line-height: 48px !important;
}

/* ----------------------------------------------------------
   8. FAQ SECTION — Elevated accordion
   ---------------------------------------------------------- */
.accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    margin-bottom: 12px !important;
    box-shadow: 0 2px 12px rgba(255, 107, 53, 0.06) !important;
    border: 1px solid rgba(255, 107, 53, 0.1) !important;
}

.accordion-button {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #2D2D2D !important;
    background: #fff !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    transition: background var(--fdrvc-transition) !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #FFF2EB 0%, #F0FDF4 100%) !important;
    color: var(--fdrvc-primary) !important;
    border-radius: 12px 12px 0 0 !important;
    box-shadow: none !important;
}

.accordion-collapse.show {
    border-top: 1px solid rgba(255, 107, 53, 0.08);
}

.accordion-body {
    background: #fff !important;
    padding: 16px 24px 24px !important;
    color: #5a5a5a;
    font-size: 15px;
    line-height: 1.7;
}

/* FAQ tab list */
.list-faqs li a {
    border-radius: 10px !important;
    border: 1px solid rgba(255, 107, 53, 0.15) !important;
    transition: all 0.25s ease !important;
    font-size: 15px !important;
}

.list-faqs li a:hover,
.list-faqs li a.active {
    background: linear-gradient(
        135deg,
        var(--fdrvc-primary) 0%,
        var(--fdrvc-primary-light) 100%
    ) !important;
    color: #fff !important;
    border-color: var(--fdrvc-primary) !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25) !important;
}

.list-faqs li a:hover *,
.list-faqs li a.active * {
    color: #fff !important;
}

/* ----------------------------------------------------------
   9. TESTIMONIAL CARDS
   ---------------------------------------------------------- */
.card-testimonial-grid {
    border-radius: 16px !important;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.08) !important;
    transition: all var(--fdrvc-transition) !important;
    border: 1px solid rgba(255, 107, 53, 0.08) !important;
}

.card-testimonial-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.16) !important;
    border-color: var(--fdrvc-accent) !important;
}

/* ----------------------------------------------------------
   10. BLOG CARDS
   ---------------------------------------------------------- */
.card-blog-grid {
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(255, 107, 53, 0.06) !important;
    transition: all var(--fdrvc-transition) !important;
    background: #fff;
}

.card-blog-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.16) !important;
}

.card-blog-grid .card-image img {
    border-radius: 12px 12px 0 0 !important;
    transition: transform 0.5s ease !important;
}

.card-blog-grid:hover .card-image img {
    transform: scale(1.05);
}

/* ----------------------------------------------------------
   11. BUTTONS — Orange gradient primary buttons
   ---------------------------------------------------------- */
.btn.btn-brand-1 {
    background: linear-gradient(
        135deg,
        var(--fdrvc-primary) 0%,
        var(--fdrvc-primary-light) 100%
    ) !important;
    border: none !important;
    border-radius: 50px !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3) !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    font-weight: 700 !important;
    padding: 14px 28px !important;
    color: #fff !important;
}

.btn.btn-brand-1:hover {
    background: linear-gradient(
        135deg,
        var(--fdrvc-primary-dark) 0%,
        var(--fdrvc-primary) 100%
    ) !important;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.45) !important;
    transform: translateY(-2px) !important;
}

.btn.btn-brand-lg {
    border-radius: 50px !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.25) !important;
    transition: all 0.3s ease !important;
}

/* Secondary / outline buttons */
.btn.btn-brand-1-outline,
.btn.btn-outline {
    border: 2px solid var(--fdrvc-primary) !important;
    color: var(--fdrvc-primary) !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.btn.btn-brand-1-outline:hover,
.btn.btn-outline:hover {
    background: var(--fdrvc-primary) !important;
    color: #fff !important;
}

/* Green accent button */
.btn.btn-green,
.btn.btn-success {
    background: linear-gradient(135deg, var(--fdrvc-accent-dark) 0%, var(--fdrvc-accent) 100%) !important;
    color: #fff !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(74, 222, 128, 0.3) !important;
}

.btn.btn-green:hover,
.btn.btn-success:hover {
    box-shadow: 0 8px 24px rgba(74, 222, 128, 0.45) !important;
    transform: translateY(-2px) !important;
}

/* ----------------------------------------------------------
   12. SECTION DIVIDERS / BACKGROUNDS
   ---------------------------------------------------------- */
section.section:has(.card-blog-grid) {
    background: linear-gradient(180deg, #FFFCFA 0%, #fff 100%);
    padding: 60px 0 80px !important;
}

section.section:has(.card-testimonial-grid),
section.section:has(.card-testimonial-list) {
    background: linear-gradient(135deg, #FFF8F3 0%, #F0FDF4 100%);
    padding: 60px 0 80px !important;
}

/* ----------------------------------------------------------
   13. LOADING / PRELOADER — Branded
   ---------------------------------------------------------- */
.preloader {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8F5E 100%) !important;
}

.page-loading-inner div:first-child {
    background: #fff !important;
}

.page-loading-inner div:nth-child(2) {
    background: var(--fdrvc-accent) !important;
}

/* ----------------------------------------------------------
   14. PLAN / PRICING CARDS
   ---------------------------------------------------------- */
.card-plan {
    border-radius: 20px !important;
    border: 1px solid rgba(255, 107, 53, 0.1) !important;
    box-shadow: 0 4px 24px rgba(255, 107, 53, 0.08) !important;
    transition: all var(--fdrvc-transition) !important;
}

.card-plan:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 48px rgba(255, 107, 53, 0.18) !important;
    border-color: var(--fdrvc-primary) !important;
}

.card-plan .card-plan-top {
    background: linear-gradient(135deg, #FFF2EB 0%, #FFF8F3 100%) !important;
}

.card-plan.active,
.card-plan.popular {
    border-color: var(--fdrvc-primary) !important;
    box-shadow: 0 8px 32px rgba(255, 107, 53, 0.2) !important;
}

/* ----------------------------------------------------------
   15. SCROLL-TO-TOP BUTTON
   ---------------------------------------------------------- */
.scrollup {
    background: linear-gradient(
        135deg,
        var(--fdrvc-primary) 0%,
        var(--fdrvc-primary-light) 100%
    ) !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.4) !important;
    transition: all 0.3s ease !important;
}

.scrollup:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.55) !important;
}

/* ----------------------------------------------------------
   16. FOOTER ENHANCEMENTS
   ---------------------------------------------------------- */
footer.footer {
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--fdrvc-primary), var(--fdrvc-accent)) 1;
}

.footer-2 .footer-bottom {
    padding: 20px 0 !important;
}

footer.footer a:hover {
    color: var(--fdrvc-primary) !important;
}

/* ----------------------------------------------------------
   17. ANIMATED SECTION ENTRY
   ---------------------------------------------------------- */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ----------------------------------------------------------
   18. SITE STATISTICS / COUNTER CARDS
   ---------------------------------------------------------- */
.cardNumber {
    border-radius: 20px !important;
    background: linear-gradient(135deg, #FFF2EB 0%, #F0FDF4 100%) !important;
    border: 1px solid rgba(255, 107, 53, 0.10) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08) !important;
    transition: all var(--fdrvc-transition) !important;
    padding: 36px 24px !important;
}

.cardNumber:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(255, 107, 53, 0.18) !important;
}

.cardNumber .card-head {
    font-size: 52px !important;
    line-height: 1.1 !important;
    background: linear-gradient(135deg, var(--fdrvc-primary) 0%, var(--fdrvc-accent-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----------------------------------------------------------
   19. FORM CONTROLS — Polished inputs
   ---------------------------------------------------------- */
.form-control {
    border: 1.5px solid rgba(255, 107, 53, 0.18) !important;
    border-radius: 10px !important;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease !important;
}

.form-control:focus {
    border-color: var(--fdrvc-primary) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15) !important;
}

/* ----------------------------------------------------------
   20. MOBILE RESPONSIVE TWEAKS
   ---------------------------------------------------------- */
@media (max-width: 991.98px) {
    .card-offer::before {
        opacity: 1;
    }

    .btn.btn-brand-1 {
        padding: 12px 22px !important;
    }
}

@media (max-width: 575.98px) {
    .section h2 {
        font-size: 28px !important;
        line-height: 36px !important;
    }

    .section h3 {
        font-size: 24px !important;
        line-height: 32px !important;
    }

    .card-offer {
        padding: 24px 20px 20px !important;
    }
}

/* ----------------------------------------------------------
   21. SWIPER GROUP-8 (logos) — Larger items
   ---------------------------------------------------------- */
.swiper-group-8 .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
}

/* ----------------------------------------------------------
   22. HOMEPAGE SPECIFIC SECTION SPACING
   ---------------------------------------------------------- */
.section.mt-50 {
    padding-top: 20px !important;
    padding-bottom: 60px !important;
    background: #fff;
}

section.section:has(.accordion) {
    background: linear-gradient(180deg, #FFFCFA 0%, #FFF8F3 100%) !important;
    padding-top: 60px !important;
    padding-bottom: 30px !important;
}

.section:has(.cardNumber) {
    background: #fff;
    padding: 60px 0 !important;
}

/* ----------------------------------------------------------
   23. FEATURED BRAND HEADING FIX
   ---------------------------------------------------------- */
.box-radius-bottom .text-center h3 {
    font-size: 30px !important;
    line-height: 40px !important;
    padding-bottom: 12px;
    position: relative;
    display: inline-block;
}

.box-radius-bottom .text-center h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(
        90deg,
        var(--fdrvc-primary) 0%,
        var(--fdrvc-accent) 100%
    );
    border-radius: 2px;
}

/* ----------------------------------------------------------
   24. "WHAT WE OFFER" HEADING — Accent line on the left
   ---------------------------------------------------------- */
.section.mt-50 .col-lg-8 h2 {
    padding-left: 20px;
    border-left: 4px solid var(--fdrvc-primary);
    margin-left: 0;
}

/* ----------------------------------------------------------
   25. GENERAL SECTION HEADINGS
   ---------------------------------------------------------- */
.section > div > .row > div > h2,
.section > div > .container > div > .row > div > h2 {
    font-weight: 800 !important;
    letter-spacing: -0.5px;
}

.section h2.color-brand-1 {
    color: var(--fdrvc-primary) !important;
}

.color-brand-1 {
    color: var(--fdrvc-primary) !important;
}

/* ----------------------------------------------------------
   26. INTRO VIDEO SECTION
   ---------------------------------------------------------- */
.box-cover-video {
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 12px 48px rgba(255, 107, 53, 0.15) !important;
}

.box-info-video {
    padding: 20px 40px 20px 20px !important;
}

/* ----------------------------------------------------------
   27. SWIPER NAVIGATION (global)
   ---------------------------------------------------------- */
.swiper-button-next:not(.swiper-button-next-group-1):not(
        .swiper-button-prev-group-1
    ),
.swiper-button-prev:not(.swiper-button-prev-group-1):not(
        .swiper-button-next-group-1
    ) {
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 107, 53, 0.08) !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    top: 20px !important;
}

.swiper-button-next:not(.swiper-button-next-group-1):not(
        .swiper-button-prev-group-1
    ):hover,
.swiper-button-prev:not(.swiper-button-prev-group-1):not(
        .swiper-button-next-group-1
    ):hover {
    background: rgba(255, 107, 53, 0.18) !important;
}

/* ----------------------------------------------------------
   28. TAG CHIPS
   ---------------------------------------------------------- */
.btn-tag {
    border-radius: 50px !important;
    font-size: 13px !important;
    padding: 6px 14px !important;
    background: linear-gradient(135deg, #FFF2EB 0%, #F0FDF4 100%) !important;
    color: var(--fdrvc-primary) !important;
    border: 1px solid rgba(255, 107, 53, 0.15) !important;
    transition: all 0.25s ease !important;
}

.btn-tag:hover {
    background: linear-gradient(
        135deg,
        var(--fdrvc-primary) 0%,
        var(--fdrvc-primary-light) 100%
    ) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3) !important;
}

/* ----------------------------------------------------------
   29. SMOOTH IMAGE TRANSITIONS
   ---------------------------------------------------------- */
img {
    transition: opacity 0.3s ease;
}

.card-offer img,
.card-blog-grid img,
.card-testimonial-grid img,
.card-team img {
    transition:
        transform 0.4s ease,
        opacity 0.3s ease !important;
}

/* ----------------------------------------------------------
   30. CUSTOM SCROLLBAR (Webkit)
   ---------------------------------------------------------- */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #FFF8F3;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 107, 53, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 107, 53, 0.55);
}

/* ----------------------------------------------------------
   31. DECORATIVE GRADIENT ACCENT BAR
   ---------------------------------------------------------- */
.section .container .row .text-center h2::after,
.section .container .row .text-center h3::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    margin: 12px auto 0;
    background: linear-gradient(90deg, var(--fdrvc-primary), var(--fdrvc-accent));
    border-radius: 2px;
}

/* ----------------------------------------------------------
   32. BADGE / LABEL STYLES
   ---------------------------------------------------------- */
.badge-orange {
    background: var(--fdrvc-primary) !important;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.badge-green {
    background: var(--fdrvc-accent-dark) !important;
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

/* ----------------------------------------------------------
   33. COLOR UTILITY CLASSES
   ---------------------------------------------------------- */
.text-orange { color: var(--fdrvc-primary) !important; }
.text-green { color: var(--fdrvc-accent-dark) !important; }
.bg-orange-light { background: #FFF2EB !important; }
.bg-green-light { background: #F0FDF4 !important; }
.bg-gradient-warm {
    background: linear-gradient(135deg, #FFF2EB 0%, #F0FDF4 100%) !important;
}

/* ----------------------------------------------------------
   34. COOKIE BANNER
   ---------------------------------------------------------- */
.cookie-consent-popup,
.alert-cookie {
    border-top: 3px solid var(--fdrvc-primary) !important;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1) !important;
}

/* ----------------------------------------------------------
   35. MOBILE MENU
   ---------------------------------------------------------- */
.mobile-header-active .mobile-header-wrapper-inner {
    border-right: 3px solid var(--fdrvc-primary) !important;
}

.mobile-header-active .main-menu li a.active,
.mobile-header-active .main-menu li a:hover {
    color: var(--fdrvc-primary) !important;
}

/* ----------------------------------------------------------
   36. LINK COLORS
   ---------------------------------------------------------- */
a:hover {
    color: var(--fdrvc-primary) !important;
}

a.color-brand-1 {
    color: var(--fdrvc-primary) !important;
}

/* ----------------------------------------------------------
   37. OVERRIDES FOR THEME OPTION CSS VARS
   ---------------------------------------------------------- */
:root {
    --primary-color: #FF6B35 !important;
    --primary-hover-color: #4ADE80 !important;
    --secondary-color: #8D99AE !important;
    --success-color: #22C55E !important;
    --danger-color: #EF476F !important;
    --warning-color: #FFB703 !important;
}

/* ----------------------------------------------------------
   38. BOX STORY SECTION
   ---------------------------------------------------------- */
.box-story-section {
    background: #fff;
}

.box-story-section .box-story-content {
    padding: 20px 0;
}

.box-story-section .box-story-content .ck-content {
    line-height: 1.8;
    color: #4e6770;
}

.box-story-section .box-story-content .ck-content p {
    margin-bottom: 15px;
}

.box-story-section .box-story-content .ck-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 10px 0;
}

.box-story-section .box-story-content .ck-content ul,
.box-story-section .box-story-content .ck-content ol {
    padding-left: 20px;
    margin-bottom: 15px;
}

.box-story-section .box-story-content .ck-content blockquote {
    border-left: 4px solid var(--fdrvc-primary);
    padding-left: 16px;
    margin: 15px 0;
    color: #666;
    font-style: italic;
}

.box-story-section .box-story-image img {
    border-radius: var(--fdrvc-radius);
    box-shadow: var(--fdrvc-card-shadow);
}

@media (max-width: 767.98px) {
    .box-story-section .box-story-image {
        margin-bottom: 30px;
    }
    .box-story-section .order-md-1,
    .box-story-section .order-md-2 {
        order: unset !important;
    }
}

/* ==============================================================
   31. PAGE SECTION TIGHTENING — Remove excess gaps & padding
   ============================================================== */

/* --- Box Story Section: reduce vertical padding --- */
.box-story-section.pt-80 {
    padding-top: 30px !important;
}
.box-story-section.pb-80 {
    padding-bottom: 10px !important;
}
.box-story-section .row {
    --bs-gutter-x: 1.5rem;
}
.box-story-section .box-story-content {
    padding-right: 10px;
}
.box-story-section .box-story-content .ck-content {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
}
.box-story-section .box-story-image img {
    border-radius: var(--fdrvc-radius);
    box-shadow: var(--fdrvc-card-shadow);
}

/* --- Press-Media / Gallery Section: remove margins & tighten cards --- */
.section.mt-50.mb-50 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 25px;
    padding-bottom: 25px;
}
.section.mt-50.mb-50 .row {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
    padding: 20px 10px !important;
    border-radius: var(--fdrvc-radius) !important;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
}
.section.mt-50.mb-50 .row > [class*='col-'] {
    margin-bottom: 10px !important;
}
.section.mt-50.mb-50 .row > [class*='col-'] .text-center {
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform var(--fdrvc-transition), box-shadow var(--fdrvc-transition);
    height: 100%;
}
.section.mt-50.mb-50 .row > [class*='col-'] .text-center:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.section.mt-50.mb-50 .row > [class*='col-'] .text-center img {
    border-radius: 8px;
    max-height: 240px !important;
}
.section.mt-50.mb-50 .row > [class*='col-'] .text-center h6 {
    font-size: 14px;
    font-weight: 700;
    margin-top: 8px !important;
}
.section.mt-50.mb-50 .row > [class*='col-'] .text-center p {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
    margin-top: 6px !important;
}

/* --- Have-a-Question / Stats Section: tighten & style --- */
.section.mt-50 > .container > .row.mt-50 {
    margin-top: 0 !important;
}
.section.mt-50 {
    margin-top: 10px !important;
    padding-bottom: 30px;
}
.section.mt-50 h2.color-brand-1 {
    font-size: 2rem;
    margin-bottom: 15px !important;
}
.section.mt-50 .ck-content p {
    margin-bottom: 6px !important;
    font-size: 15px;
    line-height: 1.6;
}
.section.mt-50 .box-video-business {
    gap: 10px;
}
.section.mt-50 .box-video-business img {
    border-radius: var(--fdrvc-radius);
    box-shadow: var(--fdrvc-card-shadow);
}

/* --- Global section separator tightening --- */
.section hr {
    margin: 15px 0;
    border-color: rgba(0, 100, 0, 0.2);
}

/* --- Responsive: mobile further tightening --- */
@media (max-width: 991.98px) {
    .box-story-section.pt-80 {
        padding-top: 20px !important;
    }
    .box-story-section.pb-80 {
        padding-bottom: 10px !important;
    }
    .section.mt-50.mb-50 .row > [class*='col-'] {
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 575.98px) {
    .section.mt-50.mb-50 .row > [class*='col-'] {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ==============================================================
   40. 10K FPO PAGE — Premium UI Enhancements
   ============================================================== */

/* --- 40.1 HERO BOX-STORY: Gradient background & elevated card --- */
.box-story-section {
    background: linear-gradient(135deg, #FFF8F3 0%, #F0FDF4 40%, #F5F9FF 100%) !important;
    position: relative;
    overflow: hidden;
}

.box-story-section::before {
    content: "";
    position: absolute;
    top: -60%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.box-story-section::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.box-story-section .box-story-content {
    position: relative;
    z-index: 2;
    padding: 30px 25px !important;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.04);
}

.box-story-section .box-story-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fdrvc-primary) 0%, var(--fdrvc-accent) 50%, var(--fdrvc-gold) 100%);
    border-radius: 20px 20px 0 0;
}

/* Override Google Docs inline styles for modern typography */
.box-story-section .box-story-content .ck-content p,
.box-story-section .box-story-content .ck-content span,
.box-story-section .box-story-content .ck-content li {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-size: 15.5px !important;
    line-height: 1.85 !important;
    color: #374151 !important;
    letter-spacing: 0.01em;
}

.box-story-section .box-story-content .ck-content p strong span,
.box-story-section .box-story-content .ck-content strong span,
.box-story-section .box-story-content .ck-content span strong {
    color: #1a1a2e !important;
    font-weight: 700 !important;
}

/* First paragraph — emphasis intro style */
.box-story-section .box-story-content .ck-content p:first-child {
    position: relative;
    padding-left: 20px !important;
    border-left: 3px solid var(--fdrvc-primary) !important;
    margin-bottom: 24px !important;
}

/* Numbered list — modern accent cards */
.box-story-section .box-story-content .ck-content ol {
    list-style: none !important;
    padding-left: 0 !important;
    counter-reset: fpo-list !important;
    margin: 20px 0 24px !important;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.box-story-section .box-story-content .ck-content ol li {
    counter-increment: fpo-list !important;
    position: relative;
    padding: 14px 16px 14px 55px !important;
    background: linear-gradient(135deg, #fff 0%, #FFF8F3 100%);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    transition: all 0.3s ease;
    margin: 0 !important;
}

.box-story-section .box-story-content .ck-content ol li::before {
    content: counter(fpo-list) !important;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--fdrvc-primary) 0%, var(--fdrvc-primary-light) 100%);
    color: #fff;
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter', sans-serif !important;
    line-height: 32px;
    text-align: center;
}

.box-story-section .box-story-content .ck-content ol li:hover {
    border-color: var(--fdrvc-primary);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

/* Bullet list — styled checkmarks */
.box-story-section .box-story-content .ck-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 20px 0 24px !important;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.box-story-section .box-story-content .ck-content ul li {
    position: relative;
    padding: 12px 16px 12px 48px !important;
    background: linear-gradient(135deg, #F0FDF4 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid rgba(74, 222, 128, 0.15);
    transition: all 0.3s ease;
    margin: 0 !important;
}

.box-story-section .box-story-content .ck-content ul li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--fdrvc-accent-dark) 0%, var(--fdrvc-accent) 100%);
    color: #fff;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    text-align: center;
}

.box-story-section .box-story-content .ck-content ul li:hover {
    border-color: var(--fdrvc-accent-dark);
    transform: translateX(6px);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.12);
}

/* --- Box Story Image — elevated with decorative frame --- */
.box-story-section .box-story-image {
    position: relative;
    z-index: 2;
}

.box-story-section .box-story-image img {
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease !important;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.box-story-section .box-story-image::before {
    content: "";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--fdrvc-primary);
    border-radius: 20px;
    opacity: 0.15;
    z-index: -1;
    transition: all 0.4s ease;
}

.box-story-section .box-story-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.16) !important;
}

.box-story-section .box-story-image:hover::before {
    top: -8px;
    right: -8px;
    opacity: 0.25;
}

/* ==============================================================
   40.2 GALLERY/ALLOCATION CARDS — Premium glass cards
   ============================================================== */
.section.mt-50.mb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

.section.mt-50.mb-50 .row {
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 40%, #FFF8F3 100%) !important;
    border: 1px solid rgba(0, 100, 0, 0.08) !important;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.06) !important;
    padding: 30px 20px !important;
    border-radius: 24px !important;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center {
    background: #fff !important;
    border-radius: 16px !important;
    padding: 20px !important;
    border: 1px solid rgba(0, 100, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #006400 0%, var(--fdrvc-accent) 50%, var(--fdrvc-gold) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 16px 48px rgba(0, 100, 0, 0.12) !important;
    border-color: rgba(0, 100, 0, 0.15);
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center:hover::before {
    opacity: 1;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center img {
    border-radius: 12px !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    max-height: 260px !important;
    object-fit: contain !important;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center:hover img {
    transform: scale(1.04);
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center h6 {
    font-size: 16px !important;
    font-weight: 700 !important;
    margin-top: 14px !important;
    letter-spacing: 0.3px;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center h6 a {
    color: #006400 !important;
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center h6 a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #006400, var(--fdrvc-accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center:hover h6 a::after {
    transform: scaleX(1);
    transform-origin: left;
}

.section.mt-50.mb-50 .row > [class*='col-'] .text-center p {
    font-size: 14px !important;
    line-height: 1.7 !important;
    color: #4b5563 !important;
    margin-top: 10px !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
}

/* ==============================================================
   40.3 STATS / "AT A GLANCE" — Gradient stat cards
   ============================================================== */
.section.mt-50 > .container > .row.align-items-center > .col-xl-5 {
    position: relative;
}

.section.mt-50 > .container > .row.align-items-center > .col-xl-5 h2.color-brand-1 {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: #006400 !important;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
    margin-bottom: 24px !important;
}

.section.mt-50 > .container > .row.align-items-center > .col-xl-5 h2.color-brand-1::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--fdrvc-primary) 0%, var(--fdrvc-accent) 100%);
    border-radius: 2px;
}

/* Stats text — transform into card-like appearance */
.section.mt-50 .ck-content .oKdM2c {
    width: 100% !important;
}

.section.mt-50 .ck-content .oKdM2c .tyJCtd {
    padding: 0 !important;
    width: 100% !important;
}

.section.mt-50 .ck-content .oKdM2c .tyJCtd p,
.section.mt-50 .ck-content .oKdM2c p {
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-size: 15px !important;
    padding: 12px 18px !important;
    margin: 0 0 8px 0 !important;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border-radius: 12px;
    border-left: 4px solid var(--fdrvc-accent-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    line-height: 1.6 !important;
}

.section.mt-50 .ck-content .oKdM2c p:hover {
    transform: translateX(6px);
    border-left-color: var(--fdrvc-primary);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.08);
}

.section.mt-50 .ck-content .oKdM2c p span {
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    color: #4b5563 !important;
}

.section.mt-50 .ck-content .oKdM2c p strong,
.section.mt-50 .ck-content .oKdM2c p span strong {
    color: var(--fdrvc-primary) !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
}

/* Alternate stat card colors */
.section.mt-50 .ck-content .oKdM2c p:nth-child(even) {
    border-left-color: var(--fdrvc-primary) !important;
    background: linear-gradient(135deg, #ffffff 0%, #FFF8F3 100%) !important;
}

.section.mt-50 .ck-content .oKdM2c p:nth-child(even) strong {
    color: var(--fdrvc-accent-dark) !important;
}

/* Images in the At a Glance section — elevated gallery feel */
.box-video-business.box-images-team {
    position: relative;
}

.box-video-business.box-images-team .item-video img,
.box-video-business.box-images-team .box-image-right img {
    border-radius: 20px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease !important;
    border: 3px solid rgba(255, 255, 255, 0.9);
}

.box-video-business.box-images-team .item-video img:hover,
.box-video-business.box-images-team .box-image-right img:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.15) !important;
}

/* ==============================================================
   40.4 GOOGLE MAP SECTION — Premium container
   ============================================================== */
.embed-map-wrapper {
    border-radius: 20px !important;
    border: 2px solid rgba(0, 100, 0, 0.1) !important;
    box-shadow: 0 16px 56px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
}

.embed-map-wrapper:hover {
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12) !important;
    border-color: rgba(0, 100, 0, 0.18) !important;
}

.embed-map-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #006400 0%, var(--fdrvc-accent) 50%, var(--fdrvc-gold) 100%);
    z-index: 5;
}

/* Map section heading */
.section.mt-50.mb-50 .text-center.mb-20 h2 {
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-size: 1.8rem !important;
    font-weight: 800 !important;
    color: #006400 !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em;
}

.section.mt-50.mb-50 .text-center.mb-20 hr {
    border-top: 3px solid transparent !important;
    background: linear-gradient(90deg, var(--fdrvc-primary) 0%, #006400 50%, var(--fdrvc-accent) 100%) !important;
    height: 3px !important;
    border: none !important;
    border-radius: 2px;
    max-width: 120px !important;
    margin: 16px auto 30px !important;
}

/* ==============================================================
   40.5 SECTION DIVIDERS — Beautiful wave/gradient separators
   ============================================================== */
.box-story-section + .section.mt-50.mb-50 {
    position: relative;
}

.box-story-section + .section.mt-50.mb-50::before {
    content: "";
    position: absolute;
    top: -2px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 100, 0, 0.15), var(--fdrvc-primary), rgba(0, 100, 0, 0.15), transparent);
}

/* ==============================================================
   40.6 SCROLL ANIMATIONS — Subtle entrance effects
   ============================================================== */
@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 107, 53, 0); }
    50% { box-shadow: 0 0 20px 4px rgba(255, 107, 53, 0.08); }
}

.box-story-section .box-story-content {
    animation: fadeSlideUp 0.8s ease-out both;
}

.box-story-section .box-story-image {
    animation: fadeSlideUp 0.8s 0.2s ease-out both;
}

.section.mt-50.mb-50 .row > [class*='col-']:nth-child(1) .text-center {
    animation: fadeSlideUp 0.6s 0.1s ease-out both;
}
.section.mt-50.mb-50 .row > [class*='col-']:nth-child(2) .text-center {
    animation: fadeSlideUp 0.6s 0.25s ease-out both;
}
.section.mt-50.mb-50 .row > [class*='col-']:nth-child(3) .text-center {
    animation: fadeSlideUp 0.6s 0.4s ease-out both;
}

/* ==============================================================
   40.7 RESPONSIVE — Mobile adjustments for 10K FPO page
   ============================================================== */
@media (max-width: 991.98px) {
    .box-story-section .box-story-content {
        padding: 20px 18px !important;
        margin-bottom: 24px;
    }
    .box-story-section .box-story-image::before {
        display: none;
    }
    .section.mt-50 > .container > .row.align-items-center > .col-xl-5 h2.color-brand-1 {
        font-size: 1.8rem !important;
    }
    .section.mt-50.mb-50 .text-center.mb-20 h2 {
        font-size: 1.4rem !important;
    }
}

@media (max-width: 767.98px) {
    .box-story-section .box-story-content .ck-content ol li {
        padding: 12px 14px 12px 48px !important;
    }
    .box-story-section .box-story-content .ck-content ul li {
        padding: 10px 14px 10px 44px !important;
    }
    .section.mt-50 .ck-content .oKdM2c p {
        padding: 10px 14px !important;
    }
    .section.mt-50 > .container > .row.align-items-center > .col-xl-5 h2.color-brand-1 {
        font-size: 1.5rem !important;
    }
    .embed-map-wrapper {
        border-radius: 12px !important;
    }
}

@media (max-width: 575.98px) {
    .box-story-section .box-story-content .ck-content p,
    .box-story-section .box-story-content .ck-content span,
    .box-story-section .box-story-content .ck-content li {
        font-size: 14px !important;
    }
    .box-story-section .box-story-content .ck-content p:first-child {
        padding-left: 14px !important;
    }
    .section.mt-50.mb-50 .text-center.mb-20 h2 {
        font-size: 1.2rem !important;
    }
}
