/* ---------------------------------------------------------- */
/* GCI-ICC Public Site Styles                                 */
/* ---------------------------------------------------------- */

:root {
    --primary-500: #6b46c1;        /* Pure purple */
    --primary-600: #553c9a;        /* Darker purple */
    --primary-400: #8b5cf6;        /* Lighter purple */
    --primary-300: #a78bfa;        /* Very light purple */
    --accent-500: #dc2626;         /* Pure red */
    --accent-600: #b91c1c;         /* Darker red */
    --accent-400: #ef4444;         /* Lighter red */
    --accent-100: rgba(220, 38, 38, 0.08);  /* Light red background */
    --neutral-900: #101321;
    --neutral-700: #3a4157;
    --neutral-500: #6f7490;
    --neutral-300: #c5c9d8;
    --neutral-200: #e4e6ee;
    --neutral-100: #f7f8fb;
    --white: #ffffff;
    --shadow-soft: 0 18px 40px rgba(16, 19, 33, 0.08);
    --shadow-card: 0 20px 55px rgba(107, 70, 193, 0.12);  /* Purple shadow */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --transition-base: all 0.25s ease;
    --font-sans: 'Montserrat', 'Roboto', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--neutral-700);
    background-color: var(--white);
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

.site-body {
    position: relative;
    overflow-x: hidden;
}

.background-shapes {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: -1;
}

.background-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.48;
}

.background-shapes .shape-1 {
    top: -220px;
    left: -120px;
    width: 420px;
    height: 420px;
    background: rgba(107, 70, 193, 0.22);  /* Purple gradient */
}

.background-shapes .shape-2 {
    top: 40vh;
    right: -260px;
    width: 520px;
    height: 520px;
    background: rgba(220, 38, 38, 0.16);   /* Red accent */
}

.background-shapes .shape-3 {
    bottom: -300px;
    left: 20%;
    width: 480px;
    height: 480px;
    background: rgba(85, 60, 154, 0.18);   /* Darker purple */
}

.container {
    width: min(1120px, 92vw);
    margin: 0 auto;
}

.topbar {
    background: var(--primary-600);
    color: var(--neutral-200);
    font-size: 0.85rem;
}

.topbar .container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    justify-content: center;
    align-items: center;
    padding: 0.6rem 0;
}

.topbar a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.87);
    box-shadow: 0 1px 0 rgba(16, 19, 33, 0.06);
}

.navbar {
    position: relative;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.logo img {
    height: 54px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    width: 46px;
    height: 46px;
    border: 1px solid var(--neutral-200);
    border-radius: 14px;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: var(--transition-base);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--primary-500);
    border-radius: 999px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--neutral-700);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.2s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: var(--accent-500);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.nav-menu a:focus,
.nav-menu a:hover {
    color: var(--primary-500);
}

.nav-menu a:hover::after,
.nav-menu a:focus::after,
.nav-menu a.active::after {
    transform: scaleX(1);
}

.nav-menu a.active {
    color: var(--primary-500);
    font-weight: 600;
}

.nav-cta {
    display: flex;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.75rem 1.45rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-base);
}

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

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-600);
}

.btn-secondary {
    background: var(--accent-500);
    color: var(--white);
}

.btn-secondary:hover,
.btn-secondary:focus {
    filter: brightness(0.92);
}

.btn-outline {
    background: transparent;
    border-color: var(--neutral-200);
    color: var(--primary-500);
}

.btn-outline:hover,
.btn-outline:focus {
    border-color: var(--primary-500);
    color: var(--primary-500);
    background: rgba(107, 70, 193, 0.06);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-500);
}

/* Page Hero Section */
.page-hero {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--accent-500) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.95) 0%, rgba(220, 38, 38, 0.90) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    max-width: 900px;
}

.page-hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin: 0 0 1.25rem 0;
    line-height: 1.2;
}

.page-hero p {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.hero {
    position: relative;
    padding: 6rem 0 5rem;
}

.hero-layout {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
}

.hero-copy .eyebrow,
.section-eyebrow,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.65rem;
    border-radius: 999px;
    background: rgba(107, 70, 193, 0.08);
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero h1,
.section-header h2,
.sub-hero h1 {
    color: var(--neutral-900);
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.6rem, 4vw, 3.5rem);
    margin: 1rem 0 1.5rem;
}

.hero p {
    font-size: 1.05rem;
    max-width: 560px;
    color: var(--neutral-700);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0 2.5rem;
}

.hero-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--neutral-700);
    font-size: 0.95rem;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 1.5rem;
    justify-items: end;
}

.floating-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    width: min(320px, 100%);
    border: 1px solid rgba(29, 39, 70, 0.08);
}

.floating-card.secondary {
    justify-self: start;
    background: var(--accent-100);
    border: none;
    text-align: center;
    padding: 1.5rem;
    font-size: 1rem;
    font-weight: 500;
}

.floating-card.secondary strong {
    font-size: 2.3rem;
    color: var(--accent-500);
}

.floating-card ul {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.65rem;
}

.metrics {
    padding: 4rem 0;
}

.metrics-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 19, 33, 0.08);
    padding: 2.2rem 1.6rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.metric-card h2 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: 0.65rem;
    font-family: var(--font-sans);
}

.metric-card p {
    color: var(--neutral-700);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-family: var(--font-sans);
}

.mission-section,
.services-preview,
.news-preview,
.partners {
    padding: 4.5rem 0;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0.7rem 0 0.85rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--neutral-700);
    font-size: 1.05rem;
    line-height: 1.6;
    font-family: var(--font-sans);
}

.card-grid {
    display: grid;
    gap: 1.8rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(16, 19, 33, 0.08);
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card.accent {
    border-color: rgba(220, 38, 38, 0.25);
    background: rgba(220, 38, 38, 0.06);
}

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

.card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.card p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
}

.card ul {
    margin: 1.2rem 0 0;
    padding-left: 1.1rem;
    color: var(--neutral-700);
}

.timeline {
    padding: 4.5rem 0;
    background: var(--neutral-100);
}

.timeline-track {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.timeline-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    border: 1px solid rgba(16, 19, 33, 0.08);
    position: relative;
}

.timeline-step {
    position: absolute;
    top: -18px;
    left: 24px;
    background: var(--primary-500);
    color: var(--white);
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
}

.services-preview .trio {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.partners {
    background: var(--neutral-100);
    padding: 4.5rem 0;
}

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

.partners-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.partners-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: var(--white);
    border: 1px solid rgba(16, 19, 33, 0.08);
}

.partner-card {
    background: var(--white);
    border: 1px solid rgba(16, 19, 33, 0.08);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 140px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card:hover {
    background: var(--neutral-100);
    transform: scale(1.02);
}

.partner-card img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--primary-500), var(--primary-600));
    color: var(--white);
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-name {
    transform: translateY(0);
}

@media (max-width: 968px) {
    .partners .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .partners-content {
        text-align: center;
    }
    
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* Latest News Section */
.latest-news {
    padding: 4.5rem 0;
    background: var(--white);
}

.news-actions {
    text-align: center;
    margin-bottom: 3rem;
}

.news-header .section-intro {
    font-size: 1.125rem;
    color: var(--neutral-700);
    margin-top: 0.5rem;
}

.news-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

@media (max-width: 968px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 19, 33, 0.08);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
    border-color: var(--primary-400);
}

.news-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

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

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-500);
    color: var(--white);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.news-meta {
    display: flex;
    gap: 1.2rem;
    font-size: 0.85rem;
    color: var(--neutral-500);
    flex-wrap: wrap;
}

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

.news-meta i {
    font-size: 0.8rem;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--neutral-900);
    margin: 0;
    transition: color 0.3s ease;
}

.news-card:hover .news-title {
    color: var(--primary-500);
}

.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
    flex-grow: 1;
}

.news-content .link {
    color: var(--accent-500);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.news-content .link:hover {
    color: var(--accent-600);
    gap: 0.7rem;
}

.news-content .link i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

/* Pages Styles */
.contact-page,
.job-offers-page,
.news-page {
    padding: 4rem 0;
    font-family: var(--font-sans);
}

.contact-page h1,
.job-offers-page h1,
.news-page h1 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 2rem;
}

.contact-content {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-top: 2rem;
}

.contact-info {
    font-family: var(--font-sans);
}

.contact-info h2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 1rem;
}

.contact-info p {
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0.75rem 0;
}

.contact-form h2 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-family: var(--font-sans);
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    font-family: var(--font-sans);
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filters select {
    font-family: var(--font-sans);
    padding: 0.75rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.filters select:focus {
    outline: none;
    border-color: var(--primary-500);
}

.jobs-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    margin-bottom: 2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 3rem;
}

.pagination button {
    font-family: var(--font-sans);
    padding: 0.75rem 1.5rem;
    background: var(--primary-500);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.pagination button:hover:not(:disabled) {
    background: var(--primary-600);
}

.pagination button:disabled {
    background: var(--neutral-300);
    cursor: not-allowed;
}

.pagination span {
    font-family: var(--font-sans);
    color: var(--neutral-700);
    font-weight: 600;
}

.cta {
    padding: 4.5rem 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(107, 70, 193, 0.92), rgba(85, 60, 154, 0.92));
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 4vw, 4rem);
    color: var(--white);
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: center;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

/* Presentation Page */
.sub-hero {
    padding: 5rem 0 3rem;
}

.sub-hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(2.3rem, 3.6vw, 3.1rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 1rem 0;
    line-height: 1.2;
}

.sub-hero p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--neutral-700);
}

.content-section {
    padding: 4rem 0;
}

.content-section h2,
.content-section h3 {
    font-family: var(--font-sans);
    font-weight: 600;
    color: var(--neutral-900);
}

.content-section p,
.content-section ul,
.content-section li {
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.6;
}

strong.highlight,
.highlight {
    color: var(--primary-500);
    font-weight: 600;
    transition: color 0.2s ease;
}

strong.highlight:hover,
.highlight:hover {
    color: var(--primary-600);
}

.two-columns {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
}

.two-columns.reverse {
    direction: rtl;
}

.two-columns.reverse > * {
    direction: ltr;
}

.presentation-image {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.25), 0 4px 10px rgba(107, 70, 193, 0.15);
    background: var(--neutral-100);
}

.presentation-image img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

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

@media (max-width: 768px) {
    .two-columns,
    .two-columns.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .presentation-image {
        order: -1;
    }
}

.highlight-card,
.list-block {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 19, 33, 0.08);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
}

.highlight-card ul,
.list-block ul {
    margin: 1.2rem 0 0;
    padding-left: 1.2rem;
}

.quote-card {
    background: var(--accent-100);
    border-radius: var(--radius-lg);
    padding: clamp(2.5rem, 4vw, 3.5rem);
    border: 1px solid rgba(220, 38, 38, 0.22);
    text-align: center;
    font-size: 1.1rem;
    font-style: italic;
}

.quote-card cite {
    display: block;
    margin-top: 1.4rem;
    font-weight: 600;
    color: var(--primary-500);
}

/* Service Pro Page */
.hero--services {
    padding: 5.5rem 0 4.5rem;
}

.hero--services .hero-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(16, 19, 33, 0.08);
    max-width: 320px;
    align-self: center;
}

.hero-card__title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary-500);
    margin-bottom: 1rem;
}

.hero-card__list {
    list-style: none;
    display: grid;
    gap: 0.7rem;
    padding: 0;
    margin: 0;
    color: var(--neutral-700);
}

.feature-grid {
    display: grid;
    gap: 1.6rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(16, 19, 33, 0.08);
    padding: 1.8rem;
    box-shadow: var(--shadow-soft);
}

.journey-timeline {
    list-style: none;
    padding: 0;
    margin: 2rem auto 0;
    position: relative;
    max-width: 800px;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-500), var(--accent-500));
}

.journey-timeline li {
    position: relative;
    padding-left: 90px;
    margin-bottom: 3rem;
}

.journey-timeline li::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--primary-500);
    border-radius: 50%;
    z-index: 2;
}

.journey-timeline li:nth-child(even)::before {
    border-color: var(--accent-500);
}

.journey-timeline li h3 {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.journey-timeline li p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
}

@media (max-width: 768px) {
    .journey-timeline::before {
        left: 20px;
    }
    
    .journey-timeline li {
        padding-left: 60px;
    }
    
    .journey-timeline li::before {
        left: 10px;
        width: 20px;
        height: 20px;
        border-width: 3px;
    }
}

/* Section styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-500);
    background: rgba(107, 70, 193, 0.1);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.section-header h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.section-header p {
    font-family: var(--font-sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-700);
    margin: 0;
}

.section--accent {
    background: var(--neutral-100);
}

.pricing-card {
    display: grid;
    gap: 2.4rem;
    align-items: start;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.pricing-card__body {
    display: grid;
    gap: 1.5rem;
}

.pricing-tag {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(220, 38, 38, 0.3);
    text-align: center;
}

.pricing-tag__current {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--accent-500);
}

.pricing-tag__duration {
    display: block;
    margin: 0.6rem 0;
    color: var(--neutral-700);
    font-weight: 500;
}

.pricing-tag__old {
    color: var(--neutral-500);
    text-decoration: line-through;
}

.pricing-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.steps-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid rgba(16, 19, 33, 0.08);
    box-shadow: var(--shadow-soft);
    position: relative;
}

.step-card__number {
    position: absolute;
    top: -16px;
    left: 24px;
    width: 42px;
    height: 42px;
    background: var(--accent-500);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 700;
    font-size: 1.1rem;
}

.step-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.75rem 0;
}

.step-card p {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
}

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

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

.btn-large i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(4px);
}

.section--light {
    background: var(--white);
}

.form-grid {
    display: grid;
    gap: 2rem;
}

.form-section {
    border: 1px solid rgba(16, 19, 33, 0.08);
    border-radius: var(--radius-md);
    padding: 1.8rem;
    background: var(--white);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.1rem;
}

.form-section legend {
    font-weight: 600;
    color: var(--primary-500);
    padding: 0 0.25rem;
}

.form-row {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.form-group {
    display: grid;
    gap: 0.6rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--neutral-200);
    padding: 0.75rem 0.9rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.15);
}

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

.form-submit {
    justify-self: flex-start;
}

/* FAQ */
.faq-section {
    padding: 4rem 0;
}

.faq-section h2,
.faq-section h3 {
    font-family: var(--font-sans);
}

.faq-grid {
    display: grid;
    gap: 1.4rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 0;
    border: 1px solid rgba(16, 19, 33, 0.08);
    box-shadow: var(--shadow-soft);
}

.faq-item summary {
    cursor: pointer;
    padding: 1.4rem 1.8rem;
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--primary-500);
    list-style: none;
    position: relative;
}

.faq-item summary:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(107, 70, 193, 0.15);
}

.faq-item summary::marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3rem;
    color: var(--neutral-500);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '-';
    transform: translateY(-50%);
}

.faq-item p,
.faq-item ul {
    padding: 0 1.8rem 1.6rem;
    margin: 0;
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.6;
}

.faq-item ul {
    margin-top: 0.8rem;
    padding-left: 1.4rem;
}

/* FAQ with button/accordion style */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.8rem;
    background: var(--white);
    border: 1px solid rgba(16, 19, 33, 0.08);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-family: var(--font-sans);
    color: var(--neutral-900);
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: left;
    font-size: 1rem;
}

.faq-question:hover {
    background: var(--neutral-100);
    border-color: var(--primary-400);
}

.faq-question i {
    color: var(--primary-500);
    transition: transform var(--transition-base);
    font-size: 0.875rem;
}

.faq-item.active .faq-question {
    background: var(--neutral-100);
    border-color: var(--primary-500);
    color: var(--primary-500);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: var(--white);
    border: 1px solid rgba(16, 19, 33, 0.08);
    border-top: none;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    margin-top: -0.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 1.8rem;
}

.faq-answer p {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.7;
}

/* Legal pages */
.legal-section {
    padding: 4rem 0;
}

.legal-section h2,
.legal-section h3 {
    font-family: var(--font-sans);
}

.legal-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(16, 19, 33, 0.08);
    box-shadow: var(--shadow-soft);
    padding: clamp(2.5rem, 4vw, 4rem);
    display: grid;
    gap: 2.5rem;
}

.legal-block {
    display: grid;
    gap: 1rem;
}

.legal-block h3 {
    color: var(--primary-500);
    font-family: var(--font-sans);
    font-weight: 600;
    margin: 0;
}

.legal-block p {
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.6;
}

.legal-block ul,
.legal-block ol {
    margin: 0;
    padding-left: 1.4rem;
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--primary-600);
    color: var(--neutral-200);
    padding: 4rem 0 2.5rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    gap: 3rem;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.footer h4 {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    margin-top: 0;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer ul li i {
    color: var(--accent-400);
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.footer-logo img {
    height: 52px;
}

.footer p {
    color: var(--neutral-200);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer a {
    color: var(--neutral-100);
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.footer-badges span {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.85rem;
}

.footer-cta {
    margin-top: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--neutral-100);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--accent-500);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright,
.footer-legal-links {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-legal-links span {
    color: var(--text-muted);
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

.footer-note {
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: min(95vw, 1200px);
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: 0 25px 70px rgba(107, 70, 193, 0.25), 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-400);
    z-index: 100;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr auto;
    gap: 1.5rem;
    align-items: start;
}

@media (max-width: 1200px) {
    .cookie-banner .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.cookie-copy h3 {
    margin: 0 0 0.5rem 0;
    color: var(--primary-500);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

.cookie-copy p {
    margin: 0;
    color: var(--neutral-700);
    line-height: 1.5;
    font-size: 0.95rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
}

.cookie-option span {
    color: var(--neutral-700);
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    justify-content: center;
}

.cookie-actions .btn {
    padding: 0.7rem 1.2rem;
    font-weight: 600;
    white-space: nowrap;
    font-size: 0.95rem;
    text-align: center;
}

.cookie-banner .btn-outline {
    border-color: var(--primary-300);
    color: var(--primary-500);
    background: transparent;
}

.cookie-banner .btn-outline:hover {
    border-color: var(--primary-500);
    background: var(--primary-400);
    color: var(--white);
}

.cookie-banner.is-visible {
    display: block;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Flash messages */
.flash-messages {
    position: fixed;
    top: 90px;
    right: 20px;
    display: grid;
    gap: 0.75rem;
    z-index: 100;
}

.alert {
    padding: 0.9rem 1.2rem;
    border-radius: 12px;
    color: var(--white);
    font-weight: 500;
    box-shadow: var(--shadow-card);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.alert-success { background: #16a34a; }
.alert-error { background: #dc2626; }
.alert-info { background: var(--primary-500); }

.alert.is-fading {
    opacity: 0;
    transform: translateY(-8px);
}

/* Animations */
[data-animate],
.animate {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 1rem;
        background: var(--white);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-card);
        padding: 1.5rem;
        display: none;
        flex-direction: column;
        gap: 1.5rem;
        min-width: 240px;
    }

    .nav-links.is-open {
        display: flex;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .nav-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-layout {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        justify-items: center;
    }

    .cta-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .topbar .container {
        justify-content: flex-start;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .metrics,
    .mission-section,
    .services-preview,
    .news-preview,
    .partners,
    .cta,
    .content-section,
    .timeline {
        padding: 3.2rem 0;
    }

    .cta-box {
        text-align: left;
    }

    .cookie-banner {
        bottom: 10px;
        width: min(960px, 96vw);
        padding: 1.5rem;
    }
    
    .cookie-banner .container {
        flex-direction: column;
        gap: 1.2rem;
    }
    
    .cookie-copy {
        margin-right: 0;
        text-align: center;
    }
    
    .cookie-actions {
        flex-direction: column;
        min-width: auto;
    }
    
    .cookie-actions .btn {
        min-width: auto;
        width: 100%;
    }
}

/* ---------------------------------------------------------- */
/* Hero Section Modern Design (inspired by provided image)    */
/* ---------------------------------------------------------- */

.hero-modern {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--neutral-100);
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-text {
    animation: slideUpFade 1.2s ease-out 0.2s both;
}

.hero-main-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--neutral-900);
    font-family: var(--font-sans);
    margin: 0 0 2rem 0;
    letter-spacing: -0.03em;
}

.hero-accent {
    color: var(--primary-500);
    font-style: italic;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.hero-accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-500);
    animation: slideUpDelayed 1s ease-out 1.2s both;
}

.hero-description {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: var(--neutral-700);
    font-family: var(--font-sans);
    margin: 0 0 2.5rem 0;
    max-width: 580px;
    animation: slideUpFade 1.2s ease-out 0.5s both;
}

.hero-modern .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: slideUpFade 1.2s ease-out 0.8s both;
}

.hero-modern .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-modern .btn-dark {
    background-color: var(--neutral-900);
    color: var(--white);
    border-color: var(--neutral-900);
}

.hero-modern .btn-dark:hover {
    background-color: var(--primary-500);
    border-color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.3);
}

.hero-modern .btn-light {
    background-color: transparent;
    color: var(--neutral-900);
    border: 2px solid var(--neutral-300);
}

.hero-modern .btn-light:hover {
    background-color: var(--white);
    border-color: var(--primary-500);
    color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-visual {
    position: relative;
    animation: slideUpFade 1.2s ease-out 0.4s both;
    display: flex;
    align-items: center;
    height: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    max-height: 750px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.7) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 1) 20%, rgba(0, 0, 0, 1) 80%, rgba(0, 0, 0, 0.7) 100%);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-main-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: clamp(0.95rem, 3vw, 1.125rem);
        margin-bottom: 2rem;
    }
    
    .hero-modern .hero-actions {
        flex-direction: column;
    }
    
    .hero-modern .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-modern {
        padding: 4rem 0 3rem;
        min-height: auto;
    }
    
    .hero-grid {
        gap: 2rem;
        padding: 0 1rem;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg, 
        rgba(107, 70, 193, 0.85) 0%, 
        rgba(220, 38, 38, 0.75) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 2rem;
    font-family: var(--font-sans);
}

/* Animation keyframes pour l'effet de glissement vers le haut */
@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpDelayed {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1,
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
    color: var(--white);
    font-family: var(--font-sans);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    animation: slideUpFade 1.2s ease-out 0.3s both;
}

.hero-title .highlight {
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-500), var(--primary-400));
    border-radius: 2px;
    animation: slideUpDelayed 1s ease-out 1.2s both;
}

.hero-content p,
.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin: 0 0 2.5rem 0;
    color: var(--white);
    opacity: 1;
    line-height: 1.4;
    font-family: var(--font-sans);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    animation: slideUpFade 1.2s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    animation: slideUpFade 1.2s ease-out 0.9s both;
}

.hero-buttons .btn {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 220px;
    font-family: var(--font-sans);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-buttons .btn:hover::before {
    left: 100%;
}

.hero-buttons .btn-primary {
    background-color: var(--accent-500);
    color: var(--white);
    border: 2px solid var(--accent-500);
}

.hero-buttons .btn-primary:hover {
    background-color: var(--accent-600);
    border-color: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
}

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

.hero-buttons .btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-500);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 320px;
        padding: 1rem 2rem;
    }
    
    .hero-content h1,
    .hero-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
        margin-bottom: 1.25rem;
    }
    
    .hero-content p,
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.375rem);
        margin-bottom: 2rem;
    }
}

/* Effet de pulsation subtile pour attirer l'attention */
@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

.hero-buttons .btn:hover {
    animation: subtlePulse 2s ease-in-out infinite;
}

/* ---------------------------------------------------------- */
/* Latest News Section                                        */
/* ---------------------------------------------------------- */

.latest-news {
    padding: 6rem 0;
    background-color: var(--neutral-100);
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-intro {
    font-size: 1.25rem;
    color: var(--neutral-500);
    margin: 0.5rem 0 0 0;
    font-family: var(--font-sans);
}

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

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(107, 70, 193, 0.12);
}

.news-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
    width: 100%;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0;
    display: block;
}

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

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--primary-500);
    color: var(--white);
    padding: 0.5rem 1.125rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    font-family: var(--font-sans);
    text-transform: capitalize;
    z-index: 2;
}

.news-content {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
}

.news-meta {
    display: flex;
    gap: 1.25rem;
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin-bottom: 0.875rem;
    font-family: var(--font-sans);
    flex-wrap: wrap;
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.news-meta i {
    color: var(--neutral-500);
    font-size: 0.875rem;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    font-family: var(--font-sans);
}

.news-excerpt {
    color: var(--neutral-700);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
    flex: 1;
    font-family: var(--font-sans);
    font-size: 0.95rem;
}

.news-card .link {
    color: var(--primary-500);
    font-weight: 700;
    font-size: 0.975rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    text-decoration: none;
}

.news-card .link:hover {
    color: var(--accent-500);
    gap: 0.75rem;
}

.news-card .link i {
    transition: transform 0.3s ease;
    font-size: 0.875rem;
}

.news-card:hover .link i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
}

@media (max-width: 768px) {
    .latest-news {
        padding: 4rem 0;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 2rem;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-image-wrapper {
        height: 220px;
    }
    
    .news-content {
        padding: 1.5rem 1.25rem;
    }
    
    .news-title {
        font-size: 1.125rem;
    }
}

/* Feature Sections - Presentation Page */
.feature-section {
    padding: 5rem 0;
    position: relative;
}

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

.feature-reverse .feature-layout {
    direction: rtl;
}

.feature-reverse .feature-layout > * {
    direction: ltr;
}

.feature-content {
    max-width: 540px;
}

.feature-content h2 {
    font-family: var(--font-sans);
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    color: var(--neutral-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.feature-content p {
    font-size: 1.05rem;
    font-family: var(--font-sans);
    color: var(--neutral-700);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.feature-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    list-style: none;
    font-family: var(--font-sans);
}

.feature-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--neutral-700);
    line-height: 1.6;
    font-family: var(--font-sans);
}

.feature-content ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-500);
    font-size: 1.2rem;
    line-height: 1;
}

.btn-feature {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    background: var(--accent-500);
    color: var(--white);
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.25);
}

.btn-feature:hover {
    background: var(--accent-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.35);
}

.feature-visual {
    position: relative;
    margin: 0;
}

.feature-blob {
    position: relative;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    aspect-ratio: 1;
    background: var(--neutral-100);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 70, 193, 0.15);
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0%, 100% {
        border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 30% 65% 35% 70%;
    }
}

.feature-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.feature-decoration {
    position: absolute;
    z-index: -1;
}

/* Decorations - étoile */
.feature-decoration.star-1,
.feature-decoration.star-2 {
    width: 40px;
    height: 40px;
}

.feature-decoration.star-1::before,
.feature-decoration.star-2::before {
    content: '✦';
    font-size: 2.5rem;
    color: var(--primary-400);
    opacity: 0.6;
}

.feature-decoration.star-1 {
    top: -20px;
    right: 60px;
}

.feature-decoration.star-2 {
    top: 20%;
    left: -30px;
}

/* Decorations - diamant */
.feature-decoration.diamond-1,
.feature-decoration.diamond-2 {
    width: 30px;
    height: 30px;
    background: var(--accent-400);
    opacity: 0.3;
    transform: rotate(45deg);
}

.feature-decoration.diamond-1 {
    top: 60%;
    right: -15px;
}

.feature-decoration.diamond-2 {
    bottom: 15%;
    right: 50px;
}

/* Decorations - squiggle */
.feature-decoration.squiggle-1,
.feature-decoration.squiggle-2 {
    width: 80px;
    height: 40px;
    border: 3px solid var(--primary-500);
    border-color: var(--primary-500) transparent transparent transparent;
    border-radius: 50%/80px 80px 0 0;
    opacity: 0.4;
}

.feature-decoration.squiggle-1 {
    bottom: -10px;
    right: 30%;
    transform: rotate(-15deg);
}

.feature-decoration.squiggle-2 {
    bottom: 20%;
    left: -20px;
    transform: rotate(25deg);
}

/* Responsive */
@media (max-width: 968px) {
    .feature-layout,
    .feature-reverse .feature-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr;
    }
    
    .feature-visual {
        order: -1;
    }
    
    .feature-content {
        max-width: 100%;
    }
    
    .feature-blob {
        max-width: 400px;
    }
}

@media (max-width: 640px) {
    .feature-section {
        padding: 3rem 0;
    }
    
    .feature-blob {
        max-width: 320px;
    }
    
    .feature-decoration {
        display: none;
    }
    
    .btn-feature {
        width: 100%;
        padding: 0.875rem 2rem;
    }
}

/* Values Mosaic Section */
.values-mosaic {
    padding: 5rem 0;
    position: relative;
}

.section-header-mosaic {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header-mosaic h2 {
    font-family: var(--font-sans);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--neutral-900);
    letter-spacing: 0.02em;
    margin: 0 0 0.5rem 0;
    line-height: 1;
}

.section-header-mosaic .brand-name {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-500);
    display: block;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.mosaic-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mosaic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.2);
}

.mosaic-card.mosaic-beige {
    background: var(--neutral-100);
    grid-column: span 6;
    grid-row: span 1;
}

.mosaic-card.mosaic-olive {
    background: rgba(107, 70, 193, 0.12);
    grid-column: span 6;
    grid-row: span 2;
}

.mosaic-card.mosaic-pink {
    background: rgba(220, 38, 38, 0.1);
    grid-column: span 6;
    grid-row: span 2;
}

.mosaic-card.mosaic-blue {
    background: rgba(107, 70, 193, 0.08);
    grid-column: span 6;
    grid-row: span 1;
}

.mosaic-number {
    width: 45px;
    height: 45px;
    border: 2px solid var(--primary-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--primary-500);
}

.mosaic-number i {
    font-size: 1.1rem;
}

.mosaic-card h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    line-height: 1.2;
}

.mosaic-card p {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--neutral-700);
    margin: 0;
}

/* Responsive pour mosaïque */
@media (max-width: 968px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mosaic-card.mosaic-beige,
    .mosaic-card.mosaic-olive,
    .mosaic-card.mosaic-pink,
    .mosaic-card.mosaic-blue {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .values-mosaic {
        padding: 3rem 0;
    }
    
    .mosaic-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .mosaic-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .mosaic-card h3 {
        font-size: 1.5rem;
    }
}

/* Services Pro Grid Section */
.services-pro-grid {
    padding: 5rem 0;
    position: relative;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3.5rem;
}

.services-intro h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.services-intro p {
    font-family: var(--font-sans);
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--neutral-700);
    margin: 0;
}

.services-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-pro-card {
    background: var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.service-pro-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(107, 70, 193, 0.15);
    background: var(--white);
}

.service-pro-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 1.25rem;
    background: var(--primary-500);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-pro-card:hover .service-pro-icon {
    transform: scale(1.05);
}

.service-pro-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.service-pro-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.service-pro-card p {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--neutral-700);
    margin: 0;
}

/* Responsive services pro */
@media (max-width: 968px) {
    .services-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-pro-grid {
        padding: 3rem 0;
    }
    
    .services-intro {
        margin-bottom: 2.5rem;
    }
    
    .services-cards {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .service-pro-card {
        padding: 2rem 1.5rem;
    }
    
    .service-pro-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-pro-icon i {
        font-size: 1.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .feature-blob {
        animation: none;
    }
}

/* ---------------------------------------------------------- */
/* Contact Page Styles                                        */
/* ---------------------------------------------------------- */

/* Contact Info Cards Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

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

.contact-info-card {
    background: var(--neutral-100);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(107, 70, 193, 0.12);
    background: var(--white);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.25rem;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 0.75rem 0;
}

.contact-info-card a {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--primary-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--primary-600);
}

.contact-info-card p {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* Info Box */
.info-box {
    background: linear-gradient(135deg, var(--neutral-100), var(--white));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--neutral-200);
}

.info-box h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
}

/* Form Styles */
.form-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.form-control {
    font-family: var(--font-sans);
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--neutral-300);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    font-family: var(--font-sans);
    display: block;
    font-weight: 600;
    color: var(--neutral-900);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-section-title {
    font-family: var(--font-sans);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin: 2rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--neutral-200);
}

/* Collapsible Form Section */
.form-toggle {
    cursor: pointer;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    font-family: var(--font-sans);
    font-size: 1.25rem;
    font-weight: 700;
    width: 100%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1rem;
}

.form-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.25);
}

.form-toggle i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.form-toggle.active i {
    transform: rotate(180deg);
}

.form-collapsible {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.form-collapsible.active {
    max-height: 5000px;
}

/* Responsive Contact Page */
@media (max-width: 968px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .contact-info-card {
        padding: 1.75rem 1.25rem;
    }
    
    .info-box {
        padding: 1.75rem;
    }
    
    .form-section {
        padding: 1.5rem;
    }
    
    .form-toggle {
        padding: 1.25rem 1.5rem;
        font-size: 1.1rem;
    }
}

/* ---------------------------------------------------------- */
/* Services Showcase Section                                  */
/* ---------------------------------------------------------- */

.services-showcase {
    padding: 5rem 0;
    background: var(--white);
    color: var(--neutral-900);
    position: relative;
}

.services-showcase__header {
    text-align: center;
    margin-bottom: 3rem;
}

.services-showcase__header .eyebrow {
    background: rgba(107, 70, 193, 0.08);
    color: var(--primary-500);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    margin-bottom: 1rem;
}

.services-showcase__header h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.services-showcase__header p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-700);
    margin: 0 auto;
    max-width: 700px;
}

.services-showcase__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

.services-showcase__image {
    position: sticky;
    top: 120px;
    margin: 0;
    overflow: hidden;
    height: 100%;
    min-height: 600px;
}

.services-showcase__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-showcase__list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-showcase-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--neutral-200);
    transition: var(--transition-base);
}

.service-showcase-item:hover {
    padding-left: 1rem;
    border-bottom-color: var(--primary-400);
}

.service-showcase-item__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--neutral-200);
    border-radius: var(--radius-sm);
    transition: var(--transition-base);
}

.service-showcase-item:hover .service-showcase-item__icon {
    background: rgba(107, 70, 193, 0.08);
    border-color: var(--primary-400);
}

.service-showcase-item__icon i {
    font-size: 1.75rem;
    color: var(--primary-500);
}

.service-showcase-item__content h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.service-showcase-item__content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--neutral-700);
    margin: 0;
}

/* Responsive Services Showcase */
@media (max-width: 968px) {
    .services-showcase__layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-showcase__image,
    .services-showcase__carousel {
        position: static;
        order: 2;
    }
    
    .services-showcase__list {
        order: 1;
    }
    
    .service-showcase-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .services-showcase {
        padding: 3.5rem 0;
    }
    
    .services-showcase__header {
        margin-bottom: 2rem;
    }
    
    .service-showcase-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }
    
    .service-showcase-item__icon {
        width: 50px;
        height: 50px;
    }
    
    .service-showcase-item__icon i {
        font-size: 1.5rem;
    }
}

/* ---------------------------------------------------------- */
/* Mission Vision Section (Image + Tabs)                      */
/* ---------------------------------------------------------- */

.mission-vision {
    padding: 5rem 0;
    background: var(--white);
}

.mission-vision__content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    max-width: 100%;
    margin-bottom: 3rem;
}

.mission-vision__content .eyebrow {
    background: rgba(107, 70, 193, 0.08);
    color: var(--primary-500);
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-block;
    align-self: center;
}

.mission-vision__content h2 {
    font-family: var(--font-sans);
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 700;
    color: var(--neutral-900);
    margin: 0;
    line-height: 1.2;
}

.mission-vision__intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--neutral-700);
    margin: 0 auto;
    max-width: 800px;
}

.mission-vision__tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    border-bottom: 2px solid var(--neutral-200);
    padding-bottom: 0.5rem;
}

.mission-tab {
    background: transparent;
    border: none;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--neutral-700);
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: var(--transition-base);
    position: relative;
    bottom: -0.5rem;
}

.mission-tab:hover {
    color: var(--primary-500);
}

.mission-tab.active {
    color: var(--primary-500);
    font-weight: 600;
    border-bottom-color: var(--primary-500);
}

.mission-vision__tab-content {
    min-height: 180px;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.tab-panel {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-panel.active {
    display: block;
}

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

.tab-panel h3 {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutral-900);
    margin: 0 0 1rem 0;
}

.tab-panel p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--neutral-700);
    margin: 0;
}

.mission-vision__image {
    margin: 3rem 0 0 0;
    width: 100%;
}

.mission-vision__image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    display: block;
}

/* Responsive Mission Vision */
@media (max-width: 968px) {
    .mission-vision__content {
        margin-bottom: 2rem;
    }
    
    .mission-vision__tab-content {
        min-height: 200px;
    }
}

@media (max-width: 640px) {
    .mission-vision {
        padding: 3.5rem 0;
    }
    
    .mission-vision__tabs {
        gap: 0.25rem;
    }
    
    .mission-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .mission-vision__tab-content {
        text-align: left;
    }
    
    .tab-panel h3 {
        font-size: 1.25rem;
    }
    
    .tab-panel p {
        font-size: 1rem;
    }
}



