/* ============================================
   WEBIT AI - CSS COMPLET
   Style professionnel inspiré d'IMPROVE US
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: #333;
    background: #fff;
}

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

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
}

.logo strong {
    font-weight: 700;
    color: #2563eb;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #2563eb;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1a1a1a;
    transition: 0.3s;
}

/* ============================================
   HERO FULLSCREEN (Page d'accueil)
   ============================================ */

.hero-fullscreen {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.85) 0%, rgba(37, 99, 235, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    color: white;
    font-size: 32px;
    opacity: 0.8;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ============================================
   HERO PAGES (Services, Infogérance, Contact)
   ============================================ */

.page-hero {
    height: 60vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1544197150-b99a580bb7a8?q=80&w=2000');
    background-size: cover;
    background-position: center;
}

.page-hero.infogerance-hero {
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2000');
}

.page-hero.contact-hero {
    background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=2000');
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 40px;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: white;
    color: #2563eb;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.btn-outline:hover {
    background: white;
    color: #2563eb;
}

.btn-primary-large {
    padding: 18px 50px;
    font-size: 16px;
}

.btn-large {
    width: 100%;
    padding: 18px;
    font-size: 16px;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e7f3ff 100%);
}

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

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.15);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 15px;
    color: #6b7280;
    font-weight: 500;
}

/* ============================================
   BANDE COLORÉE
   ============================================ */

.banner-section {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.banner-content h2 {
    color: white;
    font-size: 32px;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
}

.banner-arrow {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 30px solid #3b82f6;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 18px;
    color: #6b7280;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

/* ============================================
   SERVICES GRID (Page d'accueil)
   ============================================ */

.services-minimal {
    padding: 100px 0;
    background: white;
}

.services-grid-minimal {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-minimal {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
    position: relative;
}

.service-card-minimal:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.service-card-minimal.featured-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #2563eb;
}

.service-icon-minimal {
    font-size: 56px;
    margin-bottom: 20px;
    display: block;
}

.service-card-minimal h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-card-minimal p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-minimal ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-card-minimal li {
    font-size: 14px;
    color: #6b7280;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.service-card-minimal li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2563eb;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.service-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.service-link:hover {
    gap: 10px;
}

/* ============================================
   SECTION CLIENTS
   ============================================ */

.clients-section {
    padding: 80px 0;
    background: #f9fafb;
    text-align: center;
}

.clients-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 50px;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.client-logo {
    background: white;
    padding: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.client-placeholder {
    color: #9ca3af;
    font-size: 14px;
    font-weight: 500;
}

.clients-note {
    color: #6b7280;
    font-size: 14px;
    margin-top: 30px;
}

/* ============================================
   INTRO SECTION
   ============================================ */

.intro-section {
    padding: 80px 0;
    background: white;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content.centered {
    text-align: center;
}

.intro-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.intro-large {
    font-size: 22px !important;
    line-height: 1.8;
    color: #1a1a1a !important;
    font-weight: 500;
}

/* ============================================
   SERVICES DÉTAILLÉS (Page Services)
   ============================================ */

.services-detailed {
    padding: 100px 0;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 50px;
    padding: 60px 0;
    border-bottom: 1px solid #e5e7eb;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail.featured-service {
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
    padding: 60px 40px;
    margin: 40px 0;
    border-radius: 12px;
    border: 2px solid #2563eb;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #2563eb;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-detail-icon {
    text-align: center;
}

.icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto;
    border: 3px solid #2563eb;
}

.icon-circle.featured {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.service-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-intro {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1e40af;
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    list-style: none;
    padding: 0;
}

.service-detail-content li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #4b5563;
    line-height: 1.7;
}

.service-detail-content li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
    font-style: italic;
    color: #6b7280;
}

/* ============================================
   PAGE INFOGÉRANCE
   ============================================ */

.objectifs-section {
    padding: 100px 0;
    background: #f9fafb;
}

.objectifs-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.objectifs-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #4b5563;
}

.diagram-container {
    display: flex;
    justify-content: center;
    margin: 60px 0;
    padding: 60px 0;
}

.piliers-diagram-animated {
    position: relative;
    width: 600px;
    height: 600px;
    margin: 0 auto;
}

/* Centre - Performance */
.pilier-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
}

.pilier-center .pilier-icon-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
    margin: 0 auto 15px;
    color: white;
    position: relative;
}

.pilier-center .pilier-icon-circle::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    z-index: -1;
}

.pilier-center p {
    font-size: 18px;
    font-weight: 700;
    color: #1e40af;
}

/* Animation pulse au centre */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 40px rgba(37, 99, 235, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 50px rgba(37, 99, 235, 0.6);
    }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Piliers autour */
.pilier-item {
    position: absolute;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

.pilier-item .pilier-icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    margin: 0 auto 15px;
    color: white;
    transition: all 0.3s;
    position: relative;
}

.pilier-item:hover .pilier-icon-circle {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.pilier-item p {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
}

/* Positions des piliers */
.pilier-top {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pilier-right {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.pilier-bottom {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.pilier-left {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

/* Lignes de connexion */
.connecting-line {
    position: absolute;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    z-index: 1;
}

.line-top {
    width: 3px;
    height: 80px;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    animation: lineGrow 1s ease-out forwards;
    transform-origin: top;
}

.line-right {
    width: 80px;
    height: 3px;
    left: -95px;
    top: 50%;
    transform: translateY(-50%);
    animation: lineGrowHorizontal 1s ease-out 0.2s forwards;
    transform-origin: right;
}

.line-bottom {
    width: 3px;
    height: 80px;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    animation: lineGrow 1s ease-out 0.4s forwards;
    transform-origin: bottom;
}

.line-left {
    width: 80px;
    height: 3px;
    right: -95px;
    top: 50%;
    transform: translateY(-50%);
    animation: lineGrowHorizontal 1s ease-out 0.6s forwards;
    transform-origin: left;
}

@keyframes lineGrow {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: 80px;
        opacity: 1;
    }
}

@keyframes lineGrowHorizontal {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Animation au scroll */
.pilier-item {
    opacity: 0;
    animation: fadeInScale 0.6s ease-out forwards;
}

.pilier-top {
    animation-delay: 0.2s;
}

.pilier-right {
    animation-delay: 0.4s;
}

.pilier-bottom {
    animation-delay: 0.6s;
}

.pilier-left {
    animation-delay: 0.8s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive diagramme */
@media (max-width: 768px) {
    .piliers-diagram-animated {
        width: 400px;
        height: 400px;
    }
    
    .pilier-center .pilier-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .pilier-item .pilier-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .pilier-item p {
        font-size: 13px;
    }
    
    .line-top,
    .line-bottom {
        height: 50px;
        bottom: -65px;
    }
    
    .line-bottom {
        top: -65px;
    }
    
    .line-right,
    .line-left {
        width: 50px;
    }
    
    .line-right {
        left: -65px;
    }
    
    .line-left {
        right: -65px;
    }
}

.piliers-diagram {
    max-width: 100%;
    height: auto;
}

.objectifs-questions {
    max-width: 900px;
    margin: 60px auto 0;
}

.objectifs-questions h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.objectifs-questions > p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 30px;
}

.questions-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.questions-list li {
    padding: 15px;
    background: white;
    border-left: 3px solid #2563eb;
    font-size: 15px;
    color: #4b5563;
}

.piliers-section {
    padding: 100px 0;
    background: white;
}

.pilier-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    padding: 50px 0;
    border-bottom: 1px solid #e5e7eb;
}

.pilier-card:last-child {
    border-bottom: none;
}

.pilier-icon {
    text-align: center;
}

.icon-circle-large {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.pilier-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 20px;
}

.pilier-content p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.7;
}

.pilier-content .note {
    font-size: 14px;
    font-style: italic;
    color: #6b7280;
}

.infogerance-services {
    padding: 100px 0;
    background: #f9fafb;
}

.infogerance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.infogerance-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
}

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

.infogerance-card.featured-card {
    border: 2px solid #2563eb;
    background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
}

.infogerance-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.infogerance-card ul {
    list-style: none;
    padding: 0;
}

.infogerance-card li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    color: #6b7280;
    font-size: 14px;
}

.infogerance-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

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

.contact-page {
    padding: 100px 0;
    background: white;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.contact-intro h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.contact-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
}

.contact-layout-page {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info-page h3,
.contact-form-page h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.contact-item-page {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon-page {
    font-size: 32px;
    min-width: 50px;
}

.contact-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-details a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-details p {
    color: #6b7280;
    font-size: 15px;
    margin: 5px 0;
}

.contact-note {
    font-size: 14px !important;
    font-style: italic;
}

.contact-social {
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.social-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.social-link:hover {
    color: #1e40af;
}

.form-contact {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

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

.form-group-page {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group-page label {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.form-group-page input,
.form-group-page select,
.form-group-page textarea {
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
    background: white;
}

.form-group-page input:focus,
.form-group-page select:focus,
.form-group-page textarea:focus {
    outline: none;
    border-color: #2563eb;
}

.form-group-page textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    cursor: pointer;
}

.form-note-page {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    margin-top: 20px;
}

.faq-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.faq-item p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-minimal {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    text-align: center;
}

.cta-content-center h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

/* ============================================
   FOOTER
   ============================================ */

.footer-minimal {
    background: #1a1a1a;
    color: #9ca3af;
    padding: 60px 0 30px;
}

.footer-content-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #374151;
}

.footer-brand h3 {
    color: white;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.footer-brand h3 strong {
    font-weight: 700;
    color: #60a5fa;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-brand small {
    font-size: 12px;
    color: #6b7280;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
}

.footer-bottom a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: white;
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .page-hero-content h1 {
        font-size: 36px;
    }

    .services-grid-minimal,
    .infogerance-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clients-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-layout-page {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-detail,
    .pilier-card {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .questions-list {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container,
    .container-large {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 30px 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-fullscreen {
        background-attachment: scroll;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 1px;
    }

    .hero-subtitle,
    .page-hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .banner-content h2 {
        font-size: 24px;
    }

    .services-grid-minimal,
    .infogerance-grid {
        grid-template-columns: 1fr;
    }

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .form-row-page {
        grid-template-columns: 1fr;
    }

    .footer-content-minimal {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .section-header-center h2,
    .section-title-center {
        font-size: 32px;
    }

    .service-detail-content h2 {
        font-size: 24px;
    }

    .pilier-content h3 {
        font-size: 20px;
    }
}

/* ============================================
   UTILITIES
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
