:root {
    --primary-color: #37726E;
    --primary-dark: #2a5654;
    --primary-light: #488785;
    --secondary-color: #7EC7A8;
    --secondary-dark: #6ab08f;
    --accent-color: #F2FC32;
    --accent-dark: #d8e12c;
    --text-color: #333333;
    --text-light: #666666;
    --text-white: #ffffff;
    --background-light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
    --header-height: 70px;
}

/* Wrapper to isolate page styles */
.partenaire-content-wrap * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.partenaire-content-wrap {
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--gray-100);
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 20px auto 0;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    font-size: 14px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--white);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-color) 0%, #d8e12c 100%);
    color: var(--primary-dark);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(242, 252, 50, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background: linear-gradient(135deg, #d8e12c 0%, var(--accent-color) 100%);
    color: var(--primary-dark);
    box-shadow: 0 6px 25px rgba(242, 252, 50, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-white-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-white-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: 50px;
    margin-right: 12px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.2;
}

.brand-tagline {
    font-size: 0.75rem;
    color: var(--text-light);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    margin-left: 25px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-button {
    margin-left: 25px;
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2332 0%, #2a3f54 30%, #37726E 70%, #5a9d94 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    color: var(--white);
}

/* Animated gradient overlay */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(242, 252, 50, 0.25) 0%, rgba(126, 199, 168, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(126, 199, 168, 0.2) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-reverse 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-50px, 30px) scale(1.1);
    }
}

@keyframes float-reverse {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(40px, -30px) scale(1.05);
    }
}

/* Decorative geometric shapes */
.hero .geometric-shape {
    position: absolute;
    z-index: 1;
    opacity: 0.08;
}

.hero .shape-1 {
    top: 15%;
    left: 8%;
    width: 150px;
    height: 150px;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

.hero .shape-2 {
    bottom: 20%;
    right: 12%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    animation: rotate-reverse 25s linear infinite;
}

.hero .shape-3 {
    top: 40%;
    right: 5%;
    width: 80px;
    height: 80px;
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-reverse {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.2); opacity: 0.15; }
}

.hero-container {
    display: flex;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    z-index: 2;
    gap: 80px;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    max-width: 650px;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
}

.hero-content * {
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 3.8rem !important;
}

.hero-content .hero-badge {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-content p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
}

.hero-badge {
    display: inline-block !important;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d8e12c 100%) !important;
    color: #1a2332 !important;
    padding: 10px 24px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 0.85rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 4px 15px rgba(242, 252, 50, 0.3) !important;
    animation: pulse-glow 2s ease-in-out infinite !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 100 !important;
    position: relative !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(242, 252, 50, 0.3);
    }
    50% {
        box-shadow: 0 6px 25px rgba(242, 252, 50, 0.5);
    }
}

.hero .hero-title,
.hero-container .hero-title,
.hero-content .hero-title {
    display: block !important;
    font-size: 3.8rem !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
    line-height: 1.1 !important;
    font-weight: 800 !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    z-index: 100 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #ffffff !important;
    margin-bottom: 35px;
    max-width: 580px;
    font-weight: 400;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
}

.hero-title .highlight {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.3);
    }
}

.hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 25px !important;
    margin: 40px 0 !important;
    padding: 0 !important;
    background: transparent !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.stat-item {
    text-align: center !important;
    padding: 35px 20px !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.09) 100%) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color) 0%, #fff 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(242, 252, 50, 0.5);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: none;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.4;
    font-weight: 500;
}

.hero-value-prop {
    font-size: 1.1rem;
    line-height: 2;
    margin: 30px 0;
    opacity: 1;
    padding-left: 10px;
    position: relative;
}

.hero-value-prop::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.hero-value-prop i {
    color: var(--accent-color);
    margin-right: 12px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(242, 252, 50, 0.5));
}

.hero-buttons {
    display: flex !important;
    gap: 20px !important;
    margin-top: 40px !important;
    position: relative !important;
    z-index: 100 !important;
    flex-wrap: wrap !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-hero-main {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 20px 40px !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-hero-main i {
    transition: transform 0.3s ease;
    font-size: 1rem;
}

.btn-hero-main:hover i {
    transform: translateX(5px);
}

.btn-hero-secondary {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 20px 30px !important;
    font-size: 1.05rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.btn-hero-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.hero-trust {
    margin-top: 35px !important;
    display: flex !important;
    gap: 25px !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.trust-item i {
    color: var(--accent-color);
    font-size: 1rem;
    filter: drop-shadow(0 0 6px rgba(242, 252, 50, 0.4));
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    object-fit: cover;
    min-height: 520px;
    border-radius: 20px 0 0 20px;
    position: relative;
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: calc(100% - 50px);
    height: calc(100% + 30px);
    background: linear-gradient(135deg, rgba(242, 252, 50, 0.4) 0%, rgba(126, 199, 168, 0.3) 50%, transparent 100%);
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 20px 0 0 20px;
    z-index: -1;
    animation: glow-pulse 3s ease-in-out infinite;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(242, 252, 50, 0.5) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.hero-image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.hero-image-placeholder i {
    color: var(--accent-color);
    margin-bottom: 20px;
    opacity: 0.8;
}

.hero-image-placeholder p {
    font-size: 1.2rem;
    color: var(--white);
    opacity: 0.9;
    margin: 0;
}

/* Value Proposition Banner */
.value-banner {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 40%, #2a3f54 100%);
    padding: 90px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.value-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(242, 252, 50, 0.15) 0%, rgba(126, 199, 168, 0.08) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 25s ease-in-out infinite;
}

.value-banner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    right: -5%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(126, 199, 168, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: float-reverse 20s ease-in-out infinite;
}

.value-banner-content {
    position: relative;
    z-index: 1;
}

.value-banner-content h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.value-banner-content h2 span {
    color: var(--accent-color);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.value-problem,
.value-solution {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.value-problem {
    border-left: 5px solid #e74c3c;
}

.value-solution {
    border-left: 5px solid var(--accent-color);
}

.value-problem h3,
.value-solution h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-problem h3 i {
    color: #e74c3c;
}

.value-solution h3 i {
    color: var(--accent-color);
}

.value-problem ul,
.value-solution ul {
    list-style: none;
    padding: 0;
}

.value-problem ul li,
.value-solution ul li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.value-problem ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
}

.value-solution ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.value-cta {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.value-cta p {
    font-size: 1.3rem;
    margin: 0;
    color: var(--white);
}

.value-cta strong {
    color: var(--accent-color);
}

/* Features Section */
.features {
    background-color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    padding: 25px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 24px;
}

.feature-icon i {
    font-size: 24px;
}

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-light);
    flex-grow: 1;
}

/* Packages Section */
.packages {
    background-color: var(--gray-100);
}

.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.package-featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.package-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.package-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 5px 40px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.package-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.package-title {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: var(--white);
}

.package-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
}

.package-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-features {
    list-style: none;
    margin-bottom: 25px;
    flex-grow: 1;
}

.package-features li {
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 16px;
    margin-top: 5px;
}

.package-price {
    text-align: center;
    margin-top: auto;
}

.package-regular-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.package-discount-price {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.package-footer {
    padding: 0 25px 25px;
    text-align: center;
}

/* Services complémentaires */
.services-complementaires {
    padding-top: 0;
}

.section-heading {
    font-size: 1.8rem;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    position: relative;
}

.section-heading:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .package-title {
    background-color: var(--primary-light);
    padding: 15px;
    text-align: center;
    font-size: 1.2rem;
    color: var(--white);
}

.service-card .package-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card .package-price {
    margin-top: auto;
    text-align: center;
}

.service-card .regular-price {
    display: block;
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 1rem;
}

.service-card .discount-price {
    display: block;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 5px;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--gray-100);
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    position: relative;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin: 10px auto;
    text-align: center;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    max-width: 700px;
}

.testimonial-card.active {
    display: block;
    opacity: 1;
}

.testimonial-quote {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-quote::before {
    content: '"';
    font-size: 70px;
    font-family: Georgia, serif;
    color: var(--gray-200);
    position: absolute;
    top: -20px;
    left: -15px;
    z-index: -1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.author-info {
    text-align: left;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 3px;
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

.slider-controls {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--gray-300);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: var(--primary-color);
}

/* Process Section */
.process {
    background-color: var(--white);
}

.process-container {
    max-width: 900px;
    margin: 0 auto;
}

.process-items {
    position: relative;
}

.process-items::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: var(--gray-300);
}

.process-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-item:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 22px;
    font-weight: 700;
    margin-right: 25px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.process-content {
    flex: 1;
    padding-top: 10px;
}

.process-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-description {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Call to action section */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-description {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Broker Contact Section - Clean Modern Design */
.broker-contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
    padding: 80px 0;
    position: relative;
}

.broker-form-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    margin-top: 40px;
}

/* Sidebar */
.contact-sidebar {
    background-color: var(--primary-color);
    border-radius: 16px;
    padding: 35px;
    color: var(--white);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--white);
}

.sidebar-content > p {
    opacity: 0.9;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.sidebar-item {
    display: flex;
    gap: 15px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item i {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-top: 3px;
    flex-shrink: 0;
}

.sidebar-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
}

.sidebar-item a {
    color: var(--white);
    text-decoration: none;
}

.sidebar-item small {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Main Form */
.broker-form-main {
    background-color: var(--white);
    border-radius: 16px;
    padding: 45px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.broker-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.broker-form .form-group {
    display: flex;
    flex-direction: column;
}

.broker-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
    font-size: 0.95rem;
}

.broker-form .required {
    color: #e74c3c;
}

.broker-form input[type="text"],
.broker-form input[type="email"],
.broker-form input[type="tel"],
.broker-form select,
.broker-form textarea {
    padding: 12px 16px;
    border: 2px solid #e0e5e8;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.broker-form input:focus,
.broker-form select:focus,
.broker-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.broker-form textarea {
    resize: vertical;
    min-height: 100px;
}

.broker-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    appearance: none;
}

.form-actions {
    margin-top: 35px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
    width: 100%;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-large:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 500;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer - DÉSACTIVÉ: Utilise maintenant le footer WordPress global */
/*
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 25px;
    position: relative;
    z-index: 1;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about {
    padding-right: 30px;
}

.footer-logo {
    height: 80px;
    width: 80px;
    margin-bottom: 15px;
    object-fit: contain;
}

.footer-description {
    opacity: 0.8;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--primary-dark);
}

.footer-heading {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-contact-item {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.9rem;
    align-items: center;
}

.footer-contact-icon {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 25px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.7;
}
*/

/* Responsive Styles */
@media (max-width: 1024px) {
    .features-container,
    .packages-container {
        grid-template-columns: repeat(2, 1fr);
    }

    /* .footer-top {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
    } */

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .value-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        background-color: var(--white);
        width: 100%;
        flex-direction: column;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 15px 0;
        height: calc(100vh - var(--header-height));
        overflow-y: auto;
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 12px 0;
    }

    .nav-button {
        margin: 15px 0;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .hero-trust {
        gap: 15px;
        margin-top: 25px;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .btn-hero-main {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-banner-content h2 {
        font-size: 1.8rem;
    }

    .value-problem,
    .value-solution {
        padding: 25px;
    }

    .process-items::before {
        left: 35px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .process-number {
        width: 60px;
        height: 60px;
        font-size: 20px;
    }

    .process-items::before {
        left: 30px;
    }

    .broker-form-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-sidebar {
        position: static;
    }

    .broker-form-main {
        padding: 35px 25px;
    }

    .broker-form .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .features-container,
    .packages-container {
        grid-template-columns: 1fr;
    }

    /* .footer-top {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    } */

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero-main,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .process-number {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .process-items::before {
        left: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .broker-form-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-sidebar {
        padding: 25px 20px;
    }

    .broker-form-main {
        padding: 30px 20px;
    }

    .broker-form .form-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 18px;
    }

    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

/* Mobile Menu Animation */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

body.mobile-menu-open {
    overflow: hidden;
}

/* Testimonial dots animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-card.active {
    animation: fadeIn 0.5s ease forwards;
}
