:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-color: #ff3b00;
    --accent-hover: #e03500;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-dark);
    color: var(--text-primary);
    overflow-x: hidden;
}

.navbar {
    background-color: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(255, 59, 0, 0.1);
}

.nav-link {
    color: var(--text-primary) !important;
    font-weight: 500;
    margin: 0 10px;
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f4c30d;
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-menu {
    background-color: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    padding: 10px 0;
    min-width: 200px;
}

.dropdown-item {
    color: var(--text-primary);
    padding: 10px 20px;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
}

.dropdown-item:hover {
    background-color: rgba(255, 59, 0, 0.1);
    color: #f4c30d;
    transform: translateX(5px);
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Ensure dropdown stays open when hovering over menu items */
.dropdown:hover .dropdown-menu,
.dropdown-menu:hover {
    display: block !important;
    opacity: 1;
    visibility: visible;
}

/* Close other dropdowns when hovering a different one */
.dropdown:not(:hover) .dropdown-menu {
    display: none !important;
    opacity: 0;
    visibility: hidden;
}

/* Smooth transitions */
.dropdown-menu {
    transition: opacity 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

/* Add a small gap to prevent menu from closing when moving mouse */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.dropdown-toggle::after {
    margin-left: 5px;
    transition: transform 0.3s ease;
    color: #f4c30d; /* Couleur orange pour la flèche */
}


/* Responsive dropdown adjustments */
@media (max-width: 991.98px) {
    .dropdown-menu {
        background-color: transparent;
        border: none;
        box-shadow: none;
        margin-top: 0;
        padding-left: 20px;
    }
    
    .dropdown-item {
        color: var(--text-secondary);
        padding: 8px 15px;
    }
    
    .dropdown-item:hover {
        background-color: transparent;
        color: var(--accent-color);
        transform: none;
    }
}

.btn-accent {
    background-color: #f4c30d;
    color: white;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px #f4c30d;
}

.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9));
    z-index: -1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 50%, rgba(255, 59, 0, 0.2), transparent 50%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 4px;
    background-color: #f4c30d;
    bottom: -15px;
    left: 0;
}

.dark-section {
    background-color: var(--secondary-dark);
    padding: 100px 0;
}

.gradient-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, #2a0a00 100%);
    padding: 100px 0;
}

.feature-card {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 59, 0, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    color: #f4c30d;
    margin-bottom: 20px;
}

.roi-bar {
    height: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    margin: 15px 0;
    overflow: hidden;
}

.roi-progress {
    height: 100%;
    background-color: #f4c30d;
    border-radius: 5px;
}

.testimonial-card {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 30px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 59, 0, 0.1);
    font-family: serif;
    line-height: 1;
}

.client-logo {
    filter: grayscale(100%) brightness(2);
    opacity: 0.7;
    transition: all 0.3s ease;
    max-width: 150px;
    height: auto;
}

.client-logo:hover {
    filter: grayscale(0) brightness(1);
    opacity: 1;
    transform: scale(1.05);
}

/* Styles spécifiques pour les logos SVG */
.client-logo svg {
    transition: all 0.3s ease;
}

.client-logo:hover svg {
    filter: drop-shadow(0 0 10px rgba(255, 59, 0, 0.3));
}

.world-map {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.world-map img {
    max-height: 100%;
    width: auto;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(255, 59, 0, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #f4c30d;
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 59, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 0, 0);
    }
}

.social-post {
    background-color: var(--primary-dark);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.social-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    background-color: var(--accent-color);
}

.footer {
    background-color: var(--primary-dark);
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 10px;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.video-fallback .card-overlay {
    background: rgba(10, 10, 10, 0.7);
    opacity: 1;
}

.video-fallback:hover .card-overlay {
    background: rgba(10, 10, 10, 0.8);
}

.interactive-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    min-height: 400px;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 2;
}

.interactive-card:hover .card-overlay {
    background: rgba(10, 10, 10, 0.9);
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 10px;
    bottom: 5px;
    left: 0;
    background-color: #f4c30d;
    z-index: -1;
    transition: all 0.3s ease;
}

.highlight-text:hover:after {
    height: 15px;
    background-color: #f4c30d;
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 600px;
    }
    
    .section-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
    }
    
    .dark-section, .gradient-section {
        padding: 60px 0;
    }
}

/* Scroll Animation Styles */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.animate-on-scroll-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-scale.animate-in {
    opacity: 1;
    transform: scale(1);
}

.animate-on-scroll-rotate {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-rotate.animate-in {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 59, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 1;
}

.text-reveal {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.text-reveal::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
    z-index: 1;
}

.text-reveal.animate-in::after {
    transform: translateX(100%);
}

.text-reveal span {
    position: relative;
    z-index: 2;
}

.progress-bar-animate {
    width: 0;
    transition: width 1.5s ease-out;
}

.progress-bar-animate.animate-in {
    width: var(--progress-width);
}

.the_gold{
    color: #f4c30d;
}

/* Partner Targets Section */
.partner-target-content {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.partner-target-content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-target-icon {
    text-align: center;
    margin-bottom: 20px;
}

.partner-target-icon i {
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-target-content:hover .partner-target-icon i {
    opacity: 1;
    transform: scale(1.1);
}

.partner-target-content h3 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.partner-target-content .lead {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.partner-benefits h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.partner-benefits ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.partner-benefits ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.partner-target-image {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-target-image img {
    transition: all 0.3s ease;
}

.partner-target-image:hover img {
    transform: scale(1.05);
}

/* Partnership Modal Styles */
.modal-content {
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 0 0;
}

.modal-header .modal-title {
    font-weight: 600;
    font-size: 1.3rem;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 0 20px 20px;
    padding: 20px 30px;
}

/* Modal Form Styles */
.modal .form-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal .form-control,
.modal .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.modal .form-control:focus,
.modal .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 0, 0.25);
    color: white;
}

.modal .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.modal .form-select option {
    background: var(--primary-dark);
    color: white;
}

.modal .form-check-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
}

.modal .form-check-label a {
    color: var(--accent-color);
    text-decoration: none;
}

.modal .form-check-label a:hover {
    text-decoration: underline;
}

.modal .form-check-input {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.modal .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.modal .form-check-input:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 59, 0, 0.25);
}

/* Section Headers in Modal */
.modal h6.text-accent {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 59, 0, 0.3);
}

/* Responsive Modal Adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-footer {
        padding: 15px 20px;
    }
    
    .partner-target-content {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .partner-target-content h3 {
        font-size: 1.5rem;
    }
}
