/********** Template CSS **********/
:root {
    --primary: #FF6B00; /* Orange color from the logo */
    --primary-dark: #E55A00; /* Darker orange for hover states */
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button - Orange Theme ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #FFFFFF !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #FFFFFF !important;
}

.btn-secondary {
    background-color: #2A2A2A !important;
    border-color: #2A2A2A !important;
    color: #FFFFFF !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
    background-color: #1A1A1A !important;
    border-color: #1A1A1A !important;
    color: #FFFFFF !important;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

/*** Additional Orange Theme Elements ***/
.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #FFFFFF;
}

/* Form elements */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 0, 0.25);
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: .3s;
}

a:hover {
    color: var(--primary-dark);
}

/* Custom orange accent classes */
.text-primary {
    color: var(--primary) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.border-primary {
    border-color: var(--primary) !important;
}

/*** Contact Hours Section - Clear and Readable Text ***/
.contact-hours {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary); /* Orange accent border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.contact-hours h5 {
    color: var(--dark) !important; /* Dark color for heading */
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px !important;
}

.contact-hours h5 i {
    color: var(--primary); /* Orange icon */
}

.contact-hours p {
    color: #333333 !important; /* Dark gray for optimal readability */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px !important;
    padding-left: 26px; /* Align with icon */
    position: relative;
}

.contact-hours p.mb-0 {
    margin-bottom: 0 !important;
}

.contact-hours p:before {
    content: "•";
    color: var(--primary); /* Orange bullet */
    font-weight: bold;
    position: absolute;
    left: 10px;
}

/* Alternative version with white background */
.contact-hours.bg-white {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 4px solid var(--primary);
}

/* Dark version for dark backgrounds */
.contact-hours.bg-dark {
    background-color: #2d3748;
    border-left: 4px solid var(--primary);
}

.contact-hours.bg-dark h5 {
    color: #ffffff !important;
}

.contact-hours.bg-dark p {
    color: #e2e8f0 !important; /* Light gray for dark background */
}

/* Mobile optimization */
@media (max-width: 768px) {
    .contact-hours {
        padding: 15px;
    }
    
    .contact-hours h5 {
        font-size: 16px;
    }
    
    .contact-hours p {
        font-size: 15px;
        padding-left: 22px;
    }
}

#whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#whatsapp-icon img {
    width: 60px;
    height: 60px;
}

/* Styles pour le bouton consultation premium */
.consultation-premium-btn {
    background: linear-gradient(135deg, #2a5c9a 0%, #1e4785 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(42, 92, 154, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    margin-left: 15px;
    min-width: 220px;
}

.consultation-premium-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(42, 92, 154, 0.4);
    background: linear-gradient(135deg, #1e4785 0%, #163a6e 100%);
    color: white;
}

.consultation-premium-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(42, 92, 154, 0.3);
}

.btn-content-wrapper {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    position: relative;
}

.btn-icon {
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.consultation-premium-btn:hover .btn-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.btn-text {
    text-align: left;
    flex: 1;
}

.btn-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.btn-subtitle {
    display: block;
    font-size: 11px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.btn-arrow {
    margin-left: 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
    font-size: 14px;
}

.consultation-premium-btn:hover .btn-arrow {
    opacity: 1;
    transform: translateX(5px);
}

/* Animation pulsante subtile */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 6px 20px rgba(42, 92, 154, 0.3);
    }
    50% {
        box-shadow: 0 6px 20px rgba(42, 92, 154, 0.5);
    }
    100% {
        box-shadow: 0 6px 20px rgba(42, 92, 154, 0.3);
    }
}

.consultation-premium-btn {
    animation: pulse-glow 4s infinite;
}

/* Pour mobile - version simplifiée */
@media (max-width: 991px) {
    .consultation-premium-btn {
        margin: 15px 20px;
        width: calc(100% - 40px);
        min-width: auto;
        animation: none;
    }
    
    .btn-content-wrapper {
        justify-content: center;
    }
    
    .btn-text {
        text-align: center;
    }
}

/* Badge gratuit sur le bouton */
.consultation-premium-btn::before {
    content: 'GRATUIT';
    position: absolute;
    top: -8px;
    right: 15px;
    background: #ff6b35;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 10px;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(255, 107, 53, 0.3);
    z-index: 1;
}

/* Alternative: version avec badge intégré */
.consultation-premium-btn-alt {
    background: linear-gradient(135deg, #2a5c9a 0%, #1e4785 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(42, 92, 154, 0.3);
    transition: all 0.3s ease;
}

.consultation-premium-btn-alt .badge-free {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff6b35;
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 8px;
    transform: rotate(15deg);
}

.consultation-premium-btn-alt i {
    margin-right: 8px;
}

.consultation-premium-btn-alt:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(42, 92, 154, 0.4);
}

/* Option bouton avec effet 3D */
.btn-consultation-3d {
    background: linear-gradient(145deg, #2a5c9a, #1e4785);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-weight: 600;
    box-shadow: 
        0 8px 0 #163a6e,
        0 15px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-consultation-3d:hover {
    transform: translateY(3px);
    box-shadow: 
        0 5px 0 #163a6e,
        0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #1e4785, #163a6e);
}

.btn-consultation-3d:active {
    transform: translateY(6px);
    box-shadow: 
        0 2px 0 #163a6e,
        0 5px 15px rgba(0, 0, 0, 0.05);
}

.btn-consultation-3d i {
    margin-right: 10px;
    font-size: 1.1em;
}

/* Version avec nombre de consultations restantes (optionnel) */
.consultation-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #ff6b35;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 3px 8px rgba(255, 107, 53, 0.4);
}

.consultation-mobile-btn {
    background: linear-gradient(135deg, #2a5c9a 0%, #1e4785 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 15px 20px;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(42, 92, 154, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.consultation-mobile-btn:hover {
    background: linear-gradient(135deg, #1e4785 0%, #163a6e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 92, 154, 0.4);
    color: white;
}

.consultation-mobile-btn .badge {
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 20px;
}



/* ============================
   Premium Language Switch Button
============================ */

.lang-switch-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 107, 0, 0.4);
    color: var(--primary);
    background: rgba(255, 107, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Flag icon */
.lang-switch-btn .flag {
    font-size: 16px;
}

/* Hover effect */
.lang-switch-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

/* Smooth active click */
.lang-switch-btn:active {
    transform: scale(0.96);
}

[data-reveal] { opacity: 0; transform: translateY(18px); transition: .7s ease; }
[data-reveal].show { opacity: 1; transform: translateY(0); }

/* WOW-lite animations (no jQuery) */
.wow-animated { opacity: 1 !important; }

.wow-fadeInUp {
  animation: wowFadeInUp .9s ease forwards;
}
@keyframes wowFadeInUp {
  from { opacity: 0; transform: translate3d(0, 22px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

.wow-fadeIn {
  animation: wowFadeIn .9s ease forwards;
}
@keyframes wowFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.wow-zoomIn {
  animation: wowZoomIn .9s ease forwards;
}
@keyframes wowZoomIn {
  from { opacity: 0; transform: scale(.92); }
  to   { opacity: 1; transform: scale(1); }
}
