/* ============================================================
   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;
    height: 600px;
    background: #1a1a1a;
}

/* Full-cover image */
.banner-slide-11-img {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    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: orange tint from left, dark from bottom */
.banner-slide-11-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(30, 15, 5, 0.80) 0%,
        rgba(255, 107, 53, 0.15) 50%,
        rgba(0, 0, 0, 0.05) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.banner-slide-11-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.50) 0%,
        transparent 40%
    );
    z-index: 1;
    pointer-events: 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;
}

.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 */
@media (max-width: 991.98px) {
    .banner-slide-11-wrap {
        height: 450px;
    }
    .banner-slide-11-wrap .box-info-banner11 h2 {
        font-size: 32px !important;
        line-height: 40px !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;
    }
}

@media (max-width: 575.98px) {
    .banner-slide-11-wrap {
        height: 380px;
    }
    .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;
    }
    .box-banner-home11 .swiper-button-prev-group-1,
    .box-banner-home11 .swiper-button-next-group-1 {
        display: none !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: 80px !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;
}
