/* V3 ETIKA - Scoped V2 (Consulter) Component Styles
 * This file contains styles for V2 components used in V3:
 * - Header (.header-1.header-3)
 * - Hero Banner (.banner-home)
 * - Portfolio (.our-portfolio-home)
 * - Can Help (.can-help)
 * - Footer (.footer-1.footer-3)
 */

/* ============================================
   V2 HEADER STYLES
   ============================================ */
.v3-consulter.header.header-1.header-3 {
    position: relative;
    z-index: 999;
}

/* Top Header Bar - Dark Navy - Fixed positioning */
.v3-consulter .top-header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    position: fixed !important;
    background-color: #1e3a5f;
    transition: all 0.3s ease;
}

/* Main Header Wrapper - Fixed below top header */
.v3-consulter .main-header-wraper {
    left: 0;
    top: 50px;
    width: 100%;
    z-index: 1030;
    position: fixed !important;
    background: #fff;
    padding: 15px 0;
    transition: all 0.3s ease;
}

/* Sticky Header - When scrolling (stop class added by JS) */
.v3-consulter.stop .top-header {
    -webkit-transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    -o-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

.v3-consulter.stop .main-header-wraper {
    top: 0;
    background: #FFF;
    filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.16));
}

/* Responsive - Hide top header on smaller screens */
@media (max-width: 1399px) {
    .v3-consulter .top-header {
        display: none !important;
    }

    .v3-consulter .main-header-wraper {
        top: 0;
        padding: 18px 0;
    }
}

.v3-consulter .top-header .header-right-socail h6 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    margin-right: 15px;
}

.v3-consulter .top-header .social-profile ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.v3-consulter .top-header .social-profile ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    transition: all 0.3s ease;
}

.v3-consulter .top-header .social-profile ul li a:hover {
    background: #448600;
}

.v3-consulter .top-header .header-cta ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.v3-consulter .top-header .header-cta ul li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.v3-consulter .top-header .header-cta ul li a:hover {
    color: #fff;
}

.v3-consulter .top-header .header-cta ul li a i {
    color: #448600;
    font-size: 16px;
}

.v3-consulter .header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.v3-consulter .header-logo .logo img {
    max-height: 118px;
    width: auto;
}

.v3-consulter .header-logo .celebrate-badge {
    position: absolute;
    top: -5px;
    left: calc(100% - 10px);
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 0 6px rgba(68, 134, 0, 0.3));
    animation: celebrateBounce 2.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes celebrateBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-4px) rotate(3deg); }
    75% { transform: translateY(-2px) rotate(-2deg); }
}

/* Main Menu */
.v3-consulter .header-menu .main-menu > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.v3-consulter .header-menu .main-menu > ul > li {
    position: relative;
}

.v3-consulter .header-menu .main-menu > ul > li > a {
    color: #222;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    transition: color 0.3s ease;
}

.v3-consulter .header-menu .main-menu > ul > li.active > a,
.v3-consulter .header-menu .main-menu > ul > li:hover > a {
    color: #448600;
}

/* Dropdown Menu */
.v3-consulter .header-menu .main-menu > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    z-index: 100;
}

.v3-consulter .header-menu .main-menu > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v3-consulter .header-menu .main-menu > ul > li > ul > li > a {
    display: block;
    padding: 10px 25px;
    color: #444;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.v3-consulter .header-menu .main-menu > ul > li > ul > li > a:hover {
    color: #448600;
    background: rgba(68, 134, 0, 0.05);
    padding-left: 30px;
}

/* Header Button */
.v3-consulter .header-right .header-btn {
    background: #448600;
    color: #fff;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.v3-consulter .header-right .header-btn:hover {
    background: #3d7600;
}

.v3-consulter .header-right .header-btn i {
    font-size: 12px;
}

/* Mobile Nav Button */
.v3-consulter .mobile-nav-bar #hamburger {
    font-size: 24px;
    cursor: pointer;
    color: #222;
}

/* Hide mobile nav by default */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-nav.show {
    left: 0;
}

.mobile-nav .close-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #222;
}

.mobile-nav .sidebar-nav {
    padding: 80px 30px 30px;
}

.mobile-nav .consulter-mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav .consulter-mobile-nav ul li {
    margin-bottom: 15px;
}

.mobile-nav .consulter-mobile-nav ul li a {
    color: #222;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.mobile-nav .consulter-mobile-nav ul li a:hover {
    color: #448600;
}

.mobile-nav .consulter-mobile-nav ul li ul {
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-nav .consulter-mobile-nav ul li ul li a {
    font-size: 14px;
    font-weight: 500;
}

.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.offcanvas-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Header Gutter */
.header-gutter {
    min-height: 135px;
}

.header-gutter.home {
    min-height: 0;
}

@media (max-width: 1399px) {
    .header-gutter,
    .header-gutter.home {
        min-height: 0;
    }
}

/* ============================================
   V2 HERO BANNER - Exact V2 Style
   ============================================ */
.v3-consulter.banner-home {
    z-index: 1;
    background-color: #04213F;
    position: relative;
    overflow: hidden;
}

/* Decorative plus signs pattern on left side */
.v3-consulter.banner-home:before {
    left: -28px;
    content: "";
    z-index: -1;
    bottom: -280px;
    width: 545.24px;
    height: 545.24px;
    position: absolute;
    background-image: url('../img/banner/pattern.svg');
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.95;
}

.v3-consulter.banner-home .container {
    z-index: 1;
    position: relative;
}

/* Decorative star element */
.v3-consulter.banner-home .container:after {
    top: 42px;
    content: "";
    z-index: -1;
    width: 60px;
    height: 60px;
    right: 50%;
    position: absolute;
    background-image: url('../img/banner/banner-start.svg');
    background-repeat: no-repeat;
    background-size: contain;
}

.v3-consulter .banner-home__content .sub-title {
    border-radius: 2px;
    padding: 10.5px 19px;
    background-color: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

.v3-consulter .banner-home__content .sub-title span {
    color: #448600;
    font-weight: 700;
}

.v3-consulter .banner-home__content .title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 25px;
}

.v3-consulter .banner-home__content .sub-title {
    font-family: 'Caveat', cursive;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

@media (max-width: 1199px) {
    .v3-consulter .banner-home__content .title {
        font-size: 52px;
        line-height: 1.2;
    }
}

@media (max-width: 991px) {
    .v3-consulter .banner-home__content .title {
        font-size: 44px;
        line-height: 1.2;
    }
}

@media (max-width: 380px) {
    .v3-consulter .banner-home__content .title {
        font-size: 38px;
        line-height: 1.2;
    }
}

.v3-consulter .banner-home__content .description p {
    font-size: 18px;
    line-height: 28px;
    opacity: 1;
    color: rgba(255, 255, 255, 0.9);
}

.v3-consulter .banner-home__content .theme-btn__wrapper {
    gap: 30px;
}

/* Hero image container with diagonal overlay */
.v3-consulter .banner-home__media {
    z-index: -1;
    max-height: 815px;
    position: relative;
    margin-right: calc(-50vw + 50%) !important;
}

@media (min-width: 1200px) {
    .v3-consulter .banner-home__media {
        margin-left: -239px;
    }
}

/* THE KEY DIAGONAL OVERLAY - creates the angled cut effect */
.v3-consulter .banner-home__media:after {
    top: 0;
    width: 100%;
    left: -1px;
    content: "";
    z-index: 2;
    height: 100%;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url('../img/banner/banner-home-overly.png');
}

/* Plus signs pattern overlay on image */
.v3-consulter .banner-home__media:before {
    left: 1074px;
    content: "";
    top: -340px;
    z-index: 2;
    width: 144.86px;
    height: 1194.97px;
    position: absolute;
    background: rgba(239, 5, 72, 0.2);
    transform: rotate(-30.99deg);
}

@media (max-width: 1199px) {
    .v3-consulter .banner-home__media:before {
        top: 0;
        height: 100%;
        left: -9999px;
        width: 9999px;
        transform: inherit;
        background-color: #04213F;
    }
}

/* Floating star decoration */
.v3-consulter .banner-home__media .start {
    z-index: 3;
    left: 301px;
    bottom: 110px;
    position: absolute;
}

@media (max-width: 1199px) {
    .v3-consulter .banner-home__media .start {
        left: 247px;
        bottom: 96px;
    }
}

@media (max-width: 991px) {
    .v3-consulter .banner-home__media .start {
        left: 200px;
        bottom: 70px;
    }
}

@media (max-width: 767px) {
    .v3-consulter .banner-home__media .start {
        left: 100px;
        bottom: 40px;
    }
}

@media (max-width: 480px) {
    .v3-consulter .banner-home__media .start {
        left: 50px;
        bottom: 30px;
    }
}

/* Theme Button Styles */
.v3-consulter .theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.v3-consulter .theme-btn.btn-red,
.v3-consulter .theme-btn.btn-sm.btn-red {
    background: #448600;
    color: #fff;
    border: 2px solid #448600;
}

.v3-consulter .theme-btn.btn-red:hover {
    background: #3d7600;
    border-color: #3d7600;
}

.v3-consulter .theme-btn.btn-white-border {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.v3-consulter .theme-btn.btn-white-border:hover {
    background: #fff;
    color: #1e3a5f;
    border-color: #fff;
}

.v3-consulter .theme-btn.btn-border {
    background: transparent;
    color: #222;
    border: 2px solid #222;
}

.v3-consulter .theme-btn.btn-border:hover {
    background: #448600;
    color: #fff;
    border-color: #448600;
}

/* ============================================
   V2 PORTFOLIO / REALISATIONS
   ============================================ */
.v3-consulter.our-portfolio-home {
    background: #fff;
}

.v3-consulter .our-portfolio-home__content .sub-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #448600;
}

.v3-consulter .our-portfolio-home__content .sub-title img {
    width: 30px;
    margin-right: 10px;
}

.v3-consulter .our-portfolio-home__content .title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #222;
}

.v3-consulter .our-portfolio-home__item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.v3-consulter .our-portfolio-home__item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.v3-consulter .our-portfolio-home__item .featured-thumb .media {
    height: 250px;
}

.v3-consulter .our-portfolio-home__item .featured-thumb .media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.v3-consulter .our-portfolio-home__item:hover .featured-thumb .media img {
    transform: scale(1.1);
}

.v3-consulter .our-portfolio-home__item .content {
    padding: 25px;
}

.v3-consulter .our-portfolio-home__item .content .post-author a {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #448600;
    text-decoration: none;
}

.v3-consulter .our-portfolio-home__item .content h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.v3-consulter .our-portfolio-home__item .content h5 a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.v3-consulter .our-portfolio-home__item .content h5 a:hover {
    color: #448600;
}

.v3-consulter .our-portfolio-home__item .content .description p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 0;
}

.v3-consulter .our-portfolio-home__item .content .read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #448600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.v3-consulter .our-portfolio-home__item .content .read-more-link:hover {
    color: #3d7600;
    gap: 12px;
}

.v3-consulter .our-portfolio-home__item .content .read-more-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.v3-consulter .our-portfolio-home__item .content .read-more-link:hover i {
    transform: translateX(4px);
}

.v3-consulter .our-portfolio-home__item .btn-link-share .theme-btn {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #222;
    font-size: 18px;
    transition: all 0.3s ease;
}

.v3-consulter .our-portfolio-home__item .btn-link-share .theme-btn:hover {
    background: #448600;
    color: #fff;
}

/* ============================================
   V2 CAN HELP / PRE-FOOTER
   ============================================ */
.v3-consulter.can-help-overly-home {
    position: relative;
}

.v3-consulter .can-help {
    position: relative;
}

.v3-consulter .can-help-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.v3-consulter .can-help-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.95) 0%, rgba(21, 44, 74, 0.95) 100%);
}

.v3-consulter .can-help__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.v3-consulter .can-help__content .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

@media (max-width: 1199px) {
    .v3-consulter .can-help__content .title {
        font-size: 42px;
    }
}

@media (max-width: 991px) {
    .v3-consulter .can-help__content .title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .v3-consulter .can-help__content .title {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .v3-consulter .can-help__content .title {
        font-size: 28px;
        line-height: 1.3;
    }
}

.v3-consulter .can-help__content .description {
    font-size: 17px;
    line-height: 1.7;
    opacity: 1;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.v3-consulter .can-help__content-btn-group {
    gap: 20px;
}

.v3-consulter .can-help__content-btn-group .theme-btn {
    width: 100%;
    max-width: 320px;
    background: transparent;
    padding: 20px 25px;
    gap: 15px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.v3-consulter .can-help__content-btn-group .theme-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.v3-consulter .can-help__content-btn-group .theme-btn .icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(68, 134, 0, 0.2);
    border: 1px solid rgba(68, 134, 0, 0.4);
    border-radius: 8px;
}

.v3-consulter .can-help__content-btn-group .theme-btn .icon svg {
    width: 22px;
    height: 22px;
    stroke: #448600;
    stroke-width: 2;
}

.v3-consulter .can-help__content-btn-group .theme-btn .icon i {
    font-size: 22px;
    color: #448600;
    line-height: 1;
}

.v3-consulter .can-help__content-btn-group .theme-btn .text {
    text-align: left;
}

.v3-consulter .can-help__content-btn-group .theme-btn .text span {
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.8;
    margin-bottom: 4px;
    display: block;
}

.v3-consulter .can-help__content-btn-group .theme-btn .text h5 {
    font-size: 17px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Can Help Container - ensure content is above background */
.can-help .container {
    position: relative;
    z-index: 5;
}

.can-help .row {
    position: relative;
    z-index: 5;
}

.can-help-background {
    z-index: 1 !important;
}

/* Contact Form in Can Help */
.can-help .contact-form {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(4, 33, 63, 0.05);
    position: relative;
    z-index: 10;
}

.v3-consulter .contact-form__header .sub-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #448600;
}

.v3-consulter .contact-form__header .sub-title img {
    width: 30px;
    margin-right: 10px;
}

.v3-consulter .contact-form__header .title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
}

.v3-consulter .contact-form .single-personal-info input,
.v3-consulter .contact-form .single-personal-info textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    font-size: 15px;
    margin-bottom: 15px;
    transition: border-color 0.3s ease;
}

.v3-consulter .contact-form .single-personal-info input:focus,
.v3-consulter .contact-form .single-personal-info textarea:focus {
    outline: none;
    border-color: #448600;
}

.v3-consulter .contact-form .single-personal-info textarea {
    min-height: 120px;
    resize: vertical;
}

/* ============================================
   V2 FOOTER
   ============================================ */
.v3-consulter.footer-1.footer-3 {
    background-color: #0E1E36 !important;
    background-image: none !important;
    position: relative;
    padding-top: 100px;
}

.v3-consulter.footer-1.footer-3::before {
    display: none !important;
}

.v3-consulter.footer-1.footer-3::after {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    z-index: 0;
    position: absolute;
    background: rgba(4, 33, 63, 0.95);
}

.v3-consulter.footer-1.footer-3 > * {
    position: relative;
    z-index: 1;
}

.v3-consulter.footer-1 .single-footer-wid .wid-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.v3-consulter.footer-1 .single-footer-wid .wid-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #448600;
}

.v3-consulter.footer-1 .single-footer-wid ul li {
    margin-bottom: 12px;
}

.v3-consulter.footer-1 .single-footer-wid ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.v3-consulter.footer-1 .single-footer-wid ul li a:hover {
    color: #448600;
    padding-left: 5px;
}

.v3-consulter.footer-1 .widget-description .description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
    text-decoration: none;
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post .thumb {
    width: 80px;
    height: 60px;
    border-radius: 5px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post .post-data h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post:hover .post-data h5 {
    color: #448600;
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post .post-data span {
    font-size: 13px;
    opacity: 0.7;
}

.v3-consulter.footer-1 .recent-post-list .single-recent-post .post-data span i {
    margin-right: 8px;
}

/* Footer Contact Info */
.v3-consulter.footer-1 .footer-contact-info .contact-info-item {
    margin-bottom: 20px;
}

.v3-consulter.footer-1 .footer-contact-info .contact-info-item i {
    color: #448600;
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.v3-consulter.footer-1 .footer-contact-info .contact-info-item p {
    margin: 0;
    font-size: 14px;
}

.v3-consulter.footer-1 .footer-contact-info .contact-info-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.v3-consulter.footer-1 .footer-contact-info .contact-info-item a:hover {
    color: #448600;
}

/* Footer Bottom */
.v3-consulter.footer-1 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

.v3-consulter.footer-1 .footer-bottom .coppyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.v3-consulter.footer-1 .footer-bottom .coppyright a {
    color: #448600;
    text-decoration: none;
}

.v3-consulter.footer-1 .footer-bottom-list ul {
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.v3-consulter.footer-1 .footer-bottom-list ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.v3-consulter.footer-1 .footer-bottom-list ul li a:hover {
    color: #448600;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
    .v3-consulter .banner-home__content {
        text-align: center;
    }

    .v3-consulter .banner-home__content .description {
        margin: 0 auto 30px;
    }

    .v3-consulter .theme-btn__wrapper {
        justify-content: center;
    }

    .v3-consulter .banner-home__media {
        margin-top: 50px;
    }

    .v3-consulter .can-help__content {
        text-align: center;
    }

    .v3-consulter .can-help__content-btn-group {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .v3-consulter .banner-home__content .title {
        font-size: 2.4rem;
    }

    .v3-consulter .our-portfolio-home__item .content {
        flex-direction: column;
    }

    .v3-consulter .our-portfolio-home__item .btn-link-share {
        margin-top: 20px;
    }

    .v3-consulter.footer-1 .single-footer-wid {
        margin-bottom: 40px;
    }

    .v3-consulter.footer-1 .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ============================================
   TRICOLOR ICON MODIFIERS (red / bleu)
   ============================================ */

/* Engagement cards */
.tmp-single-service-style-three.icon-red .icon { color: var(--etika-red, #C1272D); }
.tmp-single-service-style-three.icon-bleu .icon { color: var(--etika-bleu, #0055A4); }

/* Service list icon background */
.single-service-list-area.service-red .inner-content .head .icon { background: var(--etika-red, #C1272D); }
.single-service-list-area.service-bleu .inner-content .head .icon { background: var(--etika-bleu, #0055A4); }

/* Feature list icon color variants */
.feature-list-service .single-feature.icon-red .icon i { color: var(--etika-red, #C1272D); }
.feature-list-service .single-feature.icon-bleu .icon i { color: var(--etika-bleu, #0055A4); }

/* ============================================
   UTILITY CLASSES FROM V2
   ============================================ */
.v3-consulter .color-white { color: #fff !important; }
.v3-consulter .color-red { color: #448600 !important; }
.v3-consulter .color-pd_black { color: #222 !important; }
.v3-consulter .bg-red { background-color: #448600 !important; }
.v3-consulter .font-la { font-family: 'Plus Jakarta Sans', sans-serif; }
.v3-consulter .fw-500 { font-weight: 500; }
.v3-consulter .fw-600 { font-weight: 600; }
.v3-consulter .fw-bold { font-weight: 700; }

/* Spacing */
.v3-consulter .mb-5 { margin-bottom: 5px !important; }
.v3-consulter .mb-10 { margin-bottom: 10px !important; }
.v3-consulter .mb-15 { margin-bottom: 15px !important; }
.v3-consulter .mb-20 { margin-bottom: 20px !important; }
.v3-consulter .mb-25 { margin-bottom: 25px !important; }
.v3-consulter .mb-30 { margin-bottom: 30px !important; }
.v3-consulter .mb-40 { margin-bottom: 40px !important; }
.v3-consulter .mb-45 { margin-bottom: 45px !important; }
.v3-consulter .mb-50 { margin-bottom: 50px !important; }
.v3-consulter .mb-60 { margin-bottom: 60px !important; }

.v3-consulter .mt-20 { margin-top: 20px !important; }
.v3-consulter .mt-30 { margin-top: 30px !important; }
.v3-consulter .mt-40 { margin-top: 40px !important; }
.v3-consulter .mt-50 { margin-top: 50px !important; }
.v3-consulter .mt-60 { margin-top: 60px !important; }

.v3-consulter .pt-45 { padding-top: 45px !important; }
.v3-consulter .pt-100 { padding-top: 100px !important; }
.v3-consulter .pt-120 { padding-top: 120px !important; }
.v3-consulter .pb-60 { padding-bottom: 60px !important; }
.v3-consulter .pb-100 { padding-bottom: 100px !important; }
.v3-consulter .pb-120 { padding-bottom: 120px !important; }
.v3-consulter .pb-130 { padding-bottom: 130px !important; }

.v3-consulter .pl-50 { padding-left: 50px !important; }
.v3-consulter .pl-65 { padding-left: 65px !important; }
.v3-consulter .pl-85 { padding-left: 85px !important; }
.v3-consulter .pr-50 { padding-right: 50px !important; }
.v3-consulter .pr-85 { padding-right: 85px !important; }

.v3-consulter .mr-10 { margin-right: 10px !important; }
.v3-consulter .mr-15 { margin-right: 15px !important; }
.v3-consulter .ml-3 { margin-left: 1rem !important; }

/* Responsive spacing */
@media (max-width: 991px) {
    .v3-consulter .pt-md-100 { padding-top: 100px !important; }
    .v3-consulter .pb-md-100 { padding-bottom: 100px !important; }
    .v3-consulter .mt-md-50 { margin-top: 50px !important; }
    .v3-consulter .mb-md-25 { margin-bottom: 25px !important; }
}

@media (max-width: 767px) {
    .v3-consulter .pt-sm-100 { padding-top: 100px !important; }
    .v3-consulter .pb-sm-100 { padding-bottom: 100px !important; }
    .v3-consulter .pt-sm-80 { padding-top: 80px !important; }
    .v3-consulter .pb-sm-80 { padding-bottom: 80px !important; }
    .v3-consulter .mt-sm-40 { margin-top: 40px !important; }
    .v3-consulter .mb-sm-40 { margin-bottom: 40px !important; }
}

@media (max-width: 575px) {
    .v3-consulter .pt-xs-80 { padding-top: 80px !important; }
    .v3-consulter .pb-xs-80 { padding-bottom: 80px !important; }
    .v3-consulter .pt-xs-70 { padding-top: 70px !important; }
    .v3-consulter .mt-xs-35 { margin-top: 35px !important; }
    .v3-consulter .mb-xs-40 { margin-bottom: 40px !important; }
}

/* ============================================
   MOBILE MENU VISIBILITY FIX (992px - 1399px)
   ============================================ */
/* Show hamburger and hide main menu between 992px and 1399px */
@media (min-width: 992px) and (max-width: 1399px) {
    .v3-consulter .header-menu {
        display: none !important;
    }

    .v3-consulter .mobile-menu-bar {
        display: block !important;
    }

    .v3-consulter .hamberger-button {
        display: flex !important;
    }

    /* Override display:none - use same approach as mobile for smooth transitions */
    .popup-mobile-menu {
        display: block !important;
        /* Keep hidden state using visibility/opacity (allows transitions) */
        visibility: hidden;
        opacity: 0;
    }

    .popup-mobile-menu.active {
        visibility: visible;
        opacity: 1;
    }

    .popup-mobile-menu.active .inner {
        opacity: 1;
        left: 0;
    }
}

/* ============================================
   ABOUT SECTION - Blue Accent Override
   ============================================ */
#about .subtitle {
    color: var(--etika-bleu, #0055A4) !important;
}

#about .tmp-default-tab .nav-link.active {
    background: var(--etika-bleu, #0055A4) !important;
    border-color: var(--etika-bleu, #0055A4) !important;
}

#about .tmp-btn {
    background: var(--etika-bleu, #0055A4);
    border-color: var(--etika-bleu, #0055A4);
}

#about .tmp-btn:hover {
    background: var(--navy-dark, #152c4a);
    border-color: var(--navy-dark, #152c4a);
}

.tmp-tab-area .subtitle {
    color: var(--etika-bleu, #0055A4) !important;
}

.tmp-tab-area .tmp-default-tab .nav-link.active {
    background: var(--etika-bleu, #0055A4) !important;
    border-color: var(--etika-bleu, #0055A4) !important;
}

/* ============================================
   SERVICE LIST - Color-matched buttons
   ============================================ */
.single-service-list-area.service-red .tmp-btn {
    background: var(--etika-red, #C1272D);
    border-color: var(--etika-red, #C1272D);
}

.single-service-list-area.service-red .tmp-btn:hover {
    background: #a0202a;
    border-color: #a0202a;
}

.single-service-list-area.service-bleu .tmp-btn {
    background: var(--etika-bleu, #0055A4);
    border-color: var(--etika-bleu, #0055A4);
}

.single-service-list-area.service-bleu .tmp-btn:hover {
    background: #004080;
    border-color: #004080;
}
