/* GCC Méditerranée – Design v1 Corporate & Épuré */

:root {
    --blue:       #1a75b5;
    --blue-dark:  #0d5a90;
    --blue-light: #e8f2fb;
    --dark:       #1a2332;
    --gray:       #6c757d;
    --light:      #f5f7fa;
    --border:     #dde4ee;
    --shadow:     0 4px 20px rgba(26,117,181,0.10);
}

/* ── BASE ───────────────────────────────────────────── */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #2c3e50;
    background: #fff;
    margin: 0;
}

a { color: var(--blue); }
a:hover { color: var(--blue-dark); }

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar-v1 {
    background: #fff;
    border: none;
    border-bottom: 3px solid var(--blue);
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.navbar-v1 .navbar-brand { padding: 6px 15px; }
.navbar-v1 .navbar-brand img { height: 100px; }

.navbar-v1 .navbar-toggle { margin-top: 18px; border-color: var(--blue); }
.navbar-v1 .navbar-toggle .icon-bar { background: var(--blue); }

.navbar-v1 .nav > li > a {
    color: #2c3e50;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 48px 16px 45px;
    transition: color 0.2s;
    border-bottom: 3px solid transparent;
    margin-bottom: -3px;
}
.navbar-v1 .nav > li > a:hover,
.navbar-v1 .nav > li > a:focus { background: transparent; color: var(--blue); }
.navbar-v1 .nav > li.active > a,
.navbar-v1 .nav > li.active > a:hover { background: transparent; color: var(--blue); border-bottom-color: var(--blue); }

/* ── HERO (accueil) ─────────────────────────────────── */
.hero {
    background: var(--light);
    padding: 80px 0 70px;
    border-bottom: 1px solid var(--border);
}

.hero h1 {
    font-family: 'Oswald', 'Segoe UI', Arial, sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.25;
    margin: 0 0 18px;
}

.hero h1 span { color: var(--blue); }

.hero .lead {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 540px;
}

.btn-v1 {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: 3px;
    border: 2px solid var(--blue);
    text-decoration: none;
    transition: all 0.2s;
    margin-right: 12px;
    margin-bottom: 10px;
}
.btn-v1:hover, .btn-v1:focus { background: var(--blue-dark); border-color: var(--blue-dark); color: #fff; text-decoration: none; }

.btn-v1-outline {
    display: inline-block;
    background: transparent;
    color: var(--blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 12px 28px;
    border-radius: 3px;
    border: 2px solid var(--blue);
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 10px;
}
.btn-v1-outline:hover { background: var(--blue); color: #fff; text-decoration: none; }

/* ── PILLARS (mini-cards sous hero) ─────────────────── */
.pillars { padding: 50px 0; background: #fff; }

.pillar-card {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.pillar-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }

.pillar-card .icon-wrap {
    width: 60px; height: 60px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--blue);
}

.pillar-card h3 {
    font-family: 'Oswald', 'Segoe UI', Arial, sans-serif;
    font-size: 16px; font-weight: 700;
    color: var(--dark); margin: 0 0 10px;
}
.pillar-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin: 0; }

/* ── PARTNERS STRIP ─────────────────────────────────── */
.partners-strip {
    background: var(--light);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}
.partners-strip .partner-logo {
    text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 8px 0;
}
.partner-name {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 10px;
}
.partners-strip img {
    max-height: 38px; max-width: 80%;
    object-fit: contain;
    filter: grayscale(100%); opacity: 0.45;
    transition: all 0.3s;
}
.partners-strip img:hover { filter: grayscale(0%); opacity: 1; }

/* ── CLIENTS STRIP (accueil) ────────────────────────── */
.clients-strip {
    background: var(--blue);
    padding: 60px 0;
}
.clients-strip .section-title { color: #fff; }
.clients-strip .divider { background: rgba(255,255,255,0.4); }

.client-logo-box {
    background: #fff;
    border-radius: 4px;
    padding: 16px;
    margin-bottom: 16px;
    min-height: 78px;
    display: flex; align-items: center; justify-content: center;
}
.client-logo-box img {
    max-height: 48px; max-width: 100%;
    object-fit: contain;
    opacity: 0.9;
}

.clients-strip .btn-v1 { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.5); margin-top: 30px; }
.clients-strip .btn-v1:hover { background: #fff; color: var(--blue); border-color: #fff; }

/* ── CONTACT SECTION ────────────────────────────────── */
.contact-section { padding: 70px 0; background: #fff; }

.contact-info-item { margin-bottom: 22px; }
.contact-info-item h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--blue); margin: 0 0 4px;
}
.contact-info-item p { font-size: 15px; color: var(--dark); margin: 0; line-height: 1.5; }
.contact-info-item a { color: var(--blue); font-weight: 600; text-decoration: none; }
.contact-info-item a:hover { text-decoration: underline; }

.map-wrap iframe { width: 100%; height: 260px; border: 0; border-radius: 4px; }

/* ── SECTIONS ────────────────────────────────────────── */
.section      { padding: 70px 0; }
.section-alt  { padding: 70px 0; background: var(--light); }

.section-title {
    font-family: 'Oswald', 'Segoe UI', Arial, sans-serif;
    font-size: 26px; font-weight: 700;
    color: var(--dark); text-align: center; margin: 0 0 10px;
}
.section-sub {
    text-align: center; color: var(--gray);
    font-size: 15px; margin: 0 0 0;
}
.divider {
    width: 48px; height: 3px;
    background: var(--blue);
    margin: 16px auto 44px;
    border: none;
}

/* ── PAGE HEADER (pages internes) ───────────────────── */
.page-header-v1 {
    background: linear-gradient(135deg, var(--dark) 0%, #1a4a78 100%);
    padding: 50px 0 42px;
    margin: 0;
    border: none;
}
.page-header-v1 h1 {
    font-family: 'Oswald', 'Segoe UI', Arial, sans-serif;
    font-size: 30px; font-weight: 700;
    color: #fff; margin: 0 0 10px;
}
.page-header-v1 .breadcrumb {
    background: transparent; padding: 0; margin: 0;
    font-size: 13px;
}
.page-header-v1 .breadcrumb > li + li:before { color: rgba(255,255,255,0.4); }
.page-header-v1 .breadcrumb a { color: rgba(255,255,255,0.65); }
.page-header-v1 .breadcrumb .active { color: #fff; }

/* ── EXPERTISE GRID ─────────────────────────────────── */
.expertise-grid { padding: 60px 0; }

.expertise-item {
    text-align: center;
    padding: 28px 16px;
    border: 1px solid var(--border);
    border-radius: 4px;
    margin-bottom: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
    background: #fff;
}
.expertise-item:hover { box-shadow: var(--shadow); border-color: var(--blue); }

.expertise-item .icon-wrap {
    width: 56px; height: 56px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    font-size: 22px; color: var(--blue);
}
.expertise-item h4 {
    font-size: 14px; font-weight: 700;
    color: var(--dark); margin: 0;
}

/* ── SUPPORT LEVELS ─────────────────────────────────── */
.support-level {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 40px 30px;
    text-align: center;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.support-level:hover { box-shadow: var(--shadow); }

.support-level .badge-level {
    display: inline-block;
    background: var(--blue);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 12px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 6px 20px; border-radius: 20px;
    margin-bottom: 22px;
}
.support-level .icon-wrap {
    width: 68px; height: 68px;
    background: var(--blue-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px; color: var(--blue);
}
.support-level h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 16px; font-weight: 700;
    color: var(--dark); margin-bottom: 10px;
}
.support-level p { color: var(--gray); font-size: 14px; margin: 0; }

.support-note {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    padding: 20px 24px;
    border-radius: 0 4px 4px 0;
    margin-top: 40px;
    color: var(--dark);
    font-size: 15px;
    line-height: 1.6;
}

/* ── INTERVENANTS ───────────────────────────────────── */
.tech-block {
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
}
.tech-block:last-child { border-bottom: none; }

.tech-block h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 19px; font-weight: 700;
    color: var(--dark); text-align: center;
    margin-bottom: 36px;
}
.tech-logo { text-align: center; padding: 10px 20px; }
.tech-logo img {
    max-height: 55px; max-width: 140px;
    object-fit: contain;
    filter: grayscale(40%); opacity: 0.75;
    transition: all 0.3s;
}
.tech-logo img:hover { filter: grayscale(0%); opacity: 1; }
.tech-logo span {
    display: block;
    font-size: 12px; font-weight: 600;
    color: var(--gray); margin-bottom: 10px;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.storage-item {
    text-align: center; padding: 24px 16px;
    border: 1px solid var(--border); border-radius: 4px;
    margin-bottom: 20px;
}
.storage-item img { max-height: 64px; max-width: 100%; object-fit: contain; margin-bottom: 12px; }
.storage-item h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin: 0; }

/* ── CLIENTS PAGE ───────────────────────────────────── */
.clients-grid {
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}
.clients-grid > [class*="col-"] {
    float: none;
}
.client-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 18px 12px;
    margin-bottom: 18px;
    text-align: center;
    min-height: 96px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.client-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.client-card img { max-height: 52px; max-width: 100%; object-fit: contain; margin-bottom: 8px; }
.client-card span { font-size: 11px; color: var(--gray); font-weight: 600; }

/* ── FOOTER ─────────────────────────────────────────── */
.footer-v1 {
    background: var(--dark);
    color: rgba(255,255,255,0.55);
    padding: 28px 0;
    font-size: 13px;
    text-align: center;
}
.footer-v1 a { color: rgba(255,255,255,0.75); text-decoration: none; }
.footer-v1 a:hover { color: #fff; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
    .hero h1 { font-size: 26px; }
    .hero { padding: 55px 0; }
    .navbar-v1 .nav > li > a { padding: 12px 15px; border-bottom: none; }
    .navbar-v1 .nav > li.active > a { border-bottom: none; border-left: 3px solid var(--blue); }
    .navbar-v1 .navbar-brand img { height: 60px; }
    .navbar-v1 .navbar-toggle { margin-top: 12px; }
}
@media (max-width: 767px) {
    .section, .section-alt { padding: 50px 0; }
    .page-header-v1 { padding: 35px 0; }
    .page-header-v1 h1 { font-size: 24px; }
    .partners-strip .partner-logo { margin-bottom: 16px; }
    .hero { padding: 40px 0 36px; }
    .hero .lead { max-width: 100%; font-size: 15px; margin-bottom: 24px; }
    .hero h1 { font-size: 22px; }
    .client-logo-box { min-height: 60px; }
    .section-title { font-size: 22px; }
    /* Boutons empilés sur mobile */
    .btn-v1, .btn-v1-outline { display: block; text-align: center; margin-right: 0; }
    /* Expertise items : icône plus petite sur mobile */
    .expertise-item { padding: 18px 10px; }
    .expertise-item .icon-wrap { width: 44px; height: 44px; font-size: 18px; }
    .expertise-item h4 { font-size: 12px; }
    /* Pillar cards : compactes */
    .pillar-card { padding: 20px 12px; }
    .pillar-card h3 { font-size: 13px; }
    .pillar-card p { display: none; }
    /* Client card texte lisible */
    .client-card span { font-size: 10px; }
}
