/* ============================================
   AMT ORGANISATION - CSS PRINCIPAL v2
   ============================================ */

/* Variables */
:root {
    --primary: #e63946;
    --primary-dark: #c1121f;
    --primary-light: #ff6b6b;
    --secondary: #1d3557;
    --secondary-light: #457b9d;
    --accent: #a8dadc;
    --light: #f1faee;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-500: #6c757d;
    --gray-700: #495057;
    --gray-900: #212529;
    --gradient-primary: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
    --gradient-secondary: linear-gradient(135deg, #1d3557 0%, #457b9d 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
    --shadow-md: 0 5px 30px rgba(0,0,0,0.12);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50px;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
    padding-top: 110px;
}

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

ul, ol {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   BOUTONS GLOBAUX
   ============================================ */
.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.8);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary) !important;
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--secondary);
    padding: 0.5rem 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

.contact-link:hover {
    color: var(--white);
}

.separator {
    color: rgba(255,255,255,0.3);
    margin: 0 0.5rem;
}

.agences-quick {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
}

.agences-quick span {
    color: rgba(255,255,255,0.5);
}

.agences-quick a {
    color: rgba(255,255,255,0.85);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.agences-quick a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}

.main-nav {
    padding: 0.75rem 0;
}

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-menu > li > a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
}

.nav-menu > li > a:hover {
    color: var(--primary);
    background: var(--gray-100);
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: '▾';
    margin-left: 0.4rem;
    font-size: 0.7rem;
    opacity: 0.6;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 0.7rem 1rem;
    color: var(--gray-700);
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
}

.dropdown li a:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 1.3rem;
}

.nav-cta {
    margin-left: 1rem;
}

.btn-nav {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

/* ============================================
   HERO SLIDER - CORRIGÉ
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 53, 87, 0.85) 0%, rgba(29, 53, 87, 0.5) 50%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 8%;
    color: var(--white);
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(230, 57, 70, 0.9);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: fit-content;
}

.slide-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.slide-content h1 strong {
    color: var(--primary-light);
}

.slide-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.6;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.slider-nav button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.badges-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-text {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.95rem;
}

/* ============================================
   SECTIONS COMMUNES
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--light);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.section-header p {
    color: var(--gray-500);
    font-size: 1.1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   SERVICES B2B
   ============================================ */
.services-b2b {
    padding: 6rem 0;
    background: var(--gray-100);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: block;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    height: 220px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.8rem;
}

.service-content p {
    color: var(--gray-500);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-features {
    margin-bottom: 1.5rem;
}

.service-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card:hover .service-link {
    gap: 1rem;
}

/* ============================================
   VALUE PROPOSITION
   ============================================ */
.value-prop {
    padding: 6rem 0;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.value-content .section-tag {
    margin-bottom: 1rem;
}

.value-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.value-content > p {
    color: var(--gray-500);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.value-points {
    margin-bottom: 2rem;
}

.value-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.3rem;
}

.point-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.value-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.value-image img {
    width: 100%;
    height: auto;
}

/* ============================================
   TEAM BUILDING CATEGORIES
   ============================================ */
.tb-categories {
    padding: 6rem 0;
    background: var(--gray-100);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.category-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: block;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(29, 53, 87, 0.9), rgba(29, 53, 87, 0.3));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--white);
    transition: var(--transition);
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(230, 57, 70, 0.9), rgba(29, 53, 87, 0.5));
}

.category-overlay h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.category-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--gradient-primary);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    display: inline;
}

.stat-suffix {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   REALISATIONS
   ============================================ */
.realisations {
    padding: 6rem 0;
    background: var(--white);
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.realisation-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 300px;
}

.realisation-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.realisation-card:hover img {
    transform: scale(1.1);
}

.realisation-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(29, 53, 87, 0.95), transparent);
    color: var(--white);
}

.realisation-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.realisation-info p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.realisation-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS B2B
   ============================================ */
.testimonials-b2b {
    padding: 6rem 0;
    background: var(--secondary);
    color: var(--white);
}

.testimonials-b2b .section-header h2 {
    color: var(--white);
}

.testimonials-b2b .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 250px;
}

.testimonial-card {
    display: none;
    text-align: center;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.author-info strong {
    display: block;
    font-size: 1.1rem;
}

.author-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.testimonials-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-nav button:hover {
    background: var(--primary);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.clients-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.clients-logos img {
    height: 40px;
    width: auto;
    opacity: 0.7;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.clients-logos img:hover {
    opacity: 1;
}

/* ============================================
   AGENCES SECTION
   ============================================ */
.agences-section {
    padding: 6rem 0;
    background: var(--gray-100);
}

.agences-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.agence-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.agence-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.agence-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.agence-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.agence-card p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.agence-card a {
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    background: var(--gradient-secondary);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-full);
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-phone:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

.phone-icon {
    font-size: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary);
}

.footer-text {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

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

.footer-social a:hover {
    background: var(--primary);
}

.footer-col {}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary);
    padding-left: 0.5rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    opacity: 0.7;
    font-size: 0.9rem;
}

.footer-legal a:hover {
    opacity: 1;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .agences-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .realisations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .agences-quick {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-menu > li > a {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .header-top {
        display: none;
    }
    
    .main-nav {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        max-height: calc(100vh - 60px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu > li {
        width: 100%;
    }
    
    .nav-menu > li > a {
        padding: 1rem;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .dropdown {
        position: static;
        box-shadow: none;
        background: var(--gray-100);
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 0;
    }
    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .nav-cta {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .btn-nav {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Hero Mobile */
    .hero-slider {
        height: 100vh;
        min-height: 500px;
    }
    
    .slide-content {
        padding: 0 5%;
        justify-content: center;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn-primary,
    .hero-ctas .btn-secondary {
        width: 100%;
        text-align: center;
    }
    
    .slider-nav {
        bottom: 2rem;
    }
    
    .slider-nav button {
        width: 40px;
        height: 40px;
    }
    
    /* Sections Mobile */
    .services-grid,
    .categories-grid,
    .realisations-grid {
        grid-template-columns: 1fr;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
    }
    
    .value-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .agences-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2,
    .value-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .badges-grid {
        gap: 1.5rem;
    }
    
    .badge-item {
        flex: 0 0 45%;
    }
    
    .clients-logos {
        gap: 2rem;
    }
    
    .clients-logos img {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .slide-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .badge-item {
        flex: 0 0 100%;
        justify-content: center;
    }
}
/* ============================================
   AJOUTS CSS - À ajouter à style.css
   ============================================ */

/* Skip Link - Accessibilité */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 1rem;
}

/* Icônes SVG inline */
.icon {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.5rem;
    flex-shrink: 0;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon svg,
.agence-icon svg {
    width: 24px;
    height: 24px;
}

/* Bouton secondary dark (pour fond clair) */
.btn-secondary-dark {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--white) !important;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-secondary-dark:hover {
    background: var(--secondary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 53, 87, 0.3);
}

/* Focus states améliorés */
a:focus,
button:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn-primary:focus,
.btn-secondary:focus,
.btn-nav:focus {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

/* Picture element */
picture {
    display: block;
}

picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Header contact bar avec icônes */
.contact-bar a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-bar svg {
    flex-shrink: 0;
}

/* Footer icons */
.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Slider navigation avec SVG */
.slider-nav button svg,
.testimonials-nav button svg {
    display: block;
}

/* Logo responsive avec picture */
.logo picture {
    display: flex;
    align-items: center;
}

.logo picture img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo picture img {
        height: 40px;
    }
}

/* === SOCIAL LINKS === */
.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 1024px) {
    .header-right {
        flex-direction: column;
        align-items: flex-end;
        gap: 0.5rem;
    }
    
    .social-links {
        gap: 0.5rem;
    }
    
    .social-links a {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 768px) {
    .social-links {
        display: none;
    }
}

/* === TEAM PAGE === */
.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
}

.team-stat {
    text-align: center;
}

.team-stat .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.team-stat .stat-label {
    display: block;
    margin-top: 0.5rem;
    color: var(--secondary);
    font-weight: 500;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.team-card-featured {
    border: 2px solid var(--primary);
}

.team-photo {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100) 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.photo-placeholder {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
}

.photo-placeholder svg {
    width: 60px;
    height: 60px;
}

.team-info {
    padding: 1.5rem;
    text-align: center;
}

.team-info h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.team-role {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--primary);
    color: white;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.team-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.value-icon svg {
    width: 28px;
    height: 28px;
}

.value-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    color: var(--secondary);
}

.value-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 1024px) {
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-stat .stat-number {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================================
   PAGE RECRUTEMENT
   =========================================== */

/* Why Join Grid */
.why-join-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.why-icon svg {
    width: 32px;
    height: 32px;
    color: white;
    stroke: white;
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Jobs List */
.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.job-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.job-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.job-card-alt .job-type {
    background: var(--gradient-secondary) !important;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.5rem 2rem;
    background: var(--gray-100);
    border-bottom: 1px solid #eee;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.job-title h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin: 0;
}

.job-type {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.job-location svg {
    color: var(--primary);
    stroke: var(--primary);
    flex-shrink: 0;
}

.job-content {
    padding: 1.5rem 2rem;
}

.job-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.job-requirements li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.job-requirements li::before {
    content: ">";
    color: var(--primary);
    font-weight: 700;
}

.job-footer {
    padding: 1.25rem 2rem;
    background: var(--gray-100);
    border-top: 1px solid #eee;
}

.job-footer .btn {
    padding: 0.75rem 2rem;
}

/* No Job Match */
.no-job-match {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-md);
    border: 2px dashed #ddd;
}

.no-job-match p {
    margin: 0.5rem 0;
    color: #666;
}

.no-job-match strong {
    color: var(--primary);
}

/* Spontaneous Application */
.spontaneous-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.spontaneous-content h2 {
    margin: 1rem 0;
    color: var(--secondary);
}

.spontaneous-content > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.spontaneous-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.spontaneous-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #555;
}

.spontaneous-list svg {
    color: var(--primary);
    stroke: var(--primary);
    flex-shrink: 0;
}

.contact-emails {
    background: var(--gray-100);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary);
}

.email-item {
    padding: 0.5rem 0;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.email-item strong {
    color: var(--secondary);
}

.email-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-item a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.spontaneous-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.spontaneous-image .image-placeholder {
    width: 100%;
    max-width: 350px;
    aspect-ratio: 1;
    background: var(--gradient-secondary);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 1rem;
}

.spontaneous-image .image-placeholder svg {
    opacity: 0.9;
}

.spontaneous-image .image-placeholder span {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Responsive Recrutement */
@media (max-width: 1024px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .spontaneous-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .spontaneous-image {
        order: -1;
    }
    
    .spontaneous-image .image-placeholder {
        max-width: 250px;
        aspect-ratio: auto;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .why-join-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-header {
        padding: 1.25rem 1.5rem;
    }
    
    .job-content {
        padding: 1.25rem 1.5rem;
    }
    
    .job-requirements {
        grid-template-columns: 1fr;
    }
    
    .job-footer {
        padding: 1rem 1.5rem;
    }
}


/* ===========================================
   PAGE HEADERS & ABOUT SECTIONS
   =========================================== */

/* Page Header */
.page-header {
    background: var(--gradient-secondary);
    padding: 6rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" xmlns=\"http://www.w3.org/2000/svg\"%3E%3Cg fill=\"none\" fill-rule=\"evenodd\"%3E%3Cg fill=\"%23ffffff\" fill-opacity=\"0.03\"%3E%3Cpath d=\"M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z\"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header .page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header .page-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 600px;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    color: #555;
    line-height: 1.8;
}

.about-title {
    color: var(--secondary);
    font-size: 1.75rem;
    font-weight: 600;
}

.about-images {
    position: relative;
}

.about-img-main {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.about-feature-text h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.about-feature-text p {
    color: #666;
    font-size: 0.9rem;
}

.about-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--gray-100);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
}

.about-badge-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.about-badge-label {
    color: #666;
    font-size: 0.9rem;
}

/* ===========================================
   ACTIVITIES GRID (Team Building)
   =========================================== */

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.activity-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.activity-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.activity-card:hover .activity-image img {
    transform: scale(1.05);
}

.activity-image .photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.7;
}

.activity-content {
    padding: 1.5rem;
}

.activity-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--light);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.activity-title {
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.activity-meta {
    display: flex;
    gap: 1rem;
    color: #888;
    font-size: 0.85rem;
}

.activity-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

/* ===========================================
   RESPONSIVE ADDITIONS
   =========================================== */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-images {
        order: -1 !important;
    }
    
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 4rem 0 3rem;
    }
    
    .page-header .page-title {
        font-size: 1.75rem;
    }
    
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-image {
        height: 180px;
    }
}


/* ===========================================
   PAGE CONTACT
   =========================================== */

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.breadcrumb span {
    color: #999;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-info-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid #eee;
}

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

.contact-item-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-item-icon i,
.contact-item-icon svg {
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
}

.contact-item-content h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-content a:hover {
    color: var(--primary-dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-title {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

/* Contact Section Styling */
.contact-section {
    padding: 5rem 0;
}

/* Responsive Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        order: 2;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info,
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .contact-item-icon {
        width: 45px;
        height: 45px;
    }
}


/* ===========================================
   PAGE ADN - VALUES
   =========================================== */

.adn-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.adn-value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.adn-value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.adn-value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.adn-value-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.adn-value-card h3 {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.adn-value-card p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-item .stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-item .stat-number::after {
    content: "+";
    font-size: 2rem;
}

.stat-item .stat-label {
    color: #666;
    font-size: 1rem;
}

/* Responsive ADN */
@media (max-width: 1024px) {
    .adn-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .adn-values-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item .stat-number {
        font-size: 2.5rem;
    }
}


/* ===========================================
   SITEMAP PAGE
   =========================================== */

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.sitemap-column h3 {
    color: var(--secondary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.sitemap-column h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
}

.sitemap-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-column li {
    padding: 0.4rem 0;
}

.sitemap-column a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.sitemap-column a::before {
    content: "→";
    color: var(--primary);
    font-size: 0.8rem;
}

.sitemap-column a:hover {
    color: var(--primary);
}

@media (max-width: 1024px) {
    .sitemap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

