@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --ink: #182620;
    --paper: #F6F7F2;
    --paper-alt: #EEF0E9;
    --pine: #1F4D3A;
    --pine-dark: #123527;
    --hazard: #E8A63D;
    --hazard-dark: #C97F1E;
    --line: #D8DFD8;
    --muted: #57685F;
    --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
    font-family: var(--font-display);
    line-height: 1.15;
    margin: 0 0 0.5em;
    font-weight: 600;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--muted); }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Skip link / focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--hazard);
    outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
    background: var(--pine-dark);
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 50;
}
.site-header .container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 16px;
}
.header-row { display: flex; align-items: center; gap: 16px; }
.site-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.site-logo .logo-mark {
    width: 34px; height: 34px; border-radius: 8px;
    background: var(--hazard);
    color: var(--pine-dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-family: var(--font-body); font-size: 0.95rem;
}
.site-logo .logo-mark-img {
    height: 42px;
    width: auto;
}
.site-nav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.site-nav a {
    position: relative;
    text-decoration: none; color: #DCE8E0; font-size: 0.95rem; font-weight: 600;
    letter-spacing: 0.01em; padding: 6px 2px; transition: color 0.2s ease;
}
.site-nav a::after {
    content: ''; position: absolute; left: 50%; bottom: 0;
    width: 0; height: 2px; background: var(--hazard);
    transform: translateX(-50%); border-radius: 2px;
    transition: width 0.25s ease;
}
.site-nav a:hover, .site-nav a.active { color: #fff; }
.site-nav a:hover::after, .site-nav a.active::after { width: 100%; }
.header-cta {
    background: var(--hazard);
    color: var(--pine-dark);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    white-space: nowrap;
}
.header-cta:hover { background: var(--hazard-dark); }

/* Petit effet de brillance périodique pour attirer l'oeil, toutes les 6 secondes */
@keyframes cta-scintille {
    0%, 92%, 100% { box-shadow: 0 0 0 0 rgba(232,166,61,0); transform: scale(1); }
    95% { box-shadow: 0 0 14px 4px rgba(232,166,61,0.7); transform: scale(1.05); }
}
.header-cta { animation: cta-scintille 6s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
    .header-cta { animation: none; }
}
.nav-toggle {
    display: none;
    background: none; border: none; color: #fff; cursor: pointer;
    padding: 8px; margin-left: -8px;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    padding: 64px 0 90px;
}
.hero-bg-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 30%;
    opacity: 0.55;
    z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(18,53,39,0.68) 0%, rgba(31,77,58,0.7) 55%, rgba(18,53,39,0.75) 100%);
    z-index: 1;
}
.hero .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.hero-eyebrow {
    display: inline-block;
    background: rgba(232,166,61,0.15);
    color: var(--hazard);
    border: 1px solid rgba(232,166,61,0.4);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: 18px; }
.hero p.lead { color: #CFE0D6; font-size: 1.1rem; max-width: 46ch; }
.hero-stats { display: flex; gap: 40px; margin-top: 28px; }
.hero-stats div { }
.hero-stats strong {
    display: block; font-family: var(--font-display); font-weight: 700;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem); color: var(--hazard);
    font-variant-numeric: tabular-nums; line-height: 1;
}
.hero-stats > div > span { font-size: 0.9rem; color: #B9CBC0; }

/* Form card */
.intervention-form {
    background: #fff;
    color: var(--ink);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.intervention-form h2 { font-size: 1.3rem; margin-bottom: 4px; }
.intervention-form .subtitle { font-size: 0.9rem; color: var(--muted); margin-bottom: 18px; }
.intervention-form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 14px; }
.intervention-form input, .intervention-form select, .intervention-form textarea {
    width: 100%; padding: 11px 12px; margin-top: 6px; border: 1px solid var(--line);
    border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: #fcfdfb;
}
.intervention-form .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-hazard {
    background: var(--hazard); color: var(--pine-dark); border: none;
    padding: 14px 20px; border-radius: 8px; font-weight: 700; font-size: 1rem;
    cursor: pointer; width: 100%; margin-top: 6px;
}
.btn-hazard:hover { background: var(--hazard-dark); }
.form-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; text-align: center; }

/* ---------- Services / Activités ---------- */
.section { padding: 72px 0; }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head .eyebrow { color: var(--pine); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.04em; text-transform: uppercase; }

.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.service-card {
    background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 26px;
    text-decoration: none; color: inherit; transition: transform 0.15s ease, box-shadow 0.15s ease;
    display: flex; flex-direction: column; gap: 10px;
    overflow: hidden;
}
.service-card .service-photo {
    margin: -26px -26px 4px;
    height: 150px;
    object-fit: cover;
    width: calc(100% + 52px);
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(24,38,32,0.1); }
.service-icon {
    width: 46px; height: 46px; border-radius: 10px; background: var(--paper-alt);
    display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.service-card h3 { margin-bottom: 2px; font-size: 1.1rem; }
.service-card p { font-size: 0.9rem; margin: 0; }
.service-card .link-arrow { color: var(--pine); font-weight: 600; font-size: 0.85rem; margin-top: auto; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step .step-num {
    font-family: var(--font-display); font-size: 1rem; color: var(--hazard-dark);
    font-weight: 700; margin-bottom: 8px;
}
.step h3 { margin-bottom: 6px; }
.step p { font-size: 0.92rem; }

/* ---------- Department finder ---------- */
.dept-finder { background: var(--pine); color: #fff; border-radius: 18px; padding: 46px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.dept-finder h2 { color: #fff; margin-bottom: 8px; }
.dept-finder p { color: #CFE0D6; margin: 0; max-width: 42ch; }
.dept-finder form { display: flex; gap: 10px; }
.dept-finder select {
    padding: 12px 14px; border-radius: 8px; border: none; min-width: 220px; font-family: inherit; font-size: 0.95rem;
}
.dept-finder button {
    background: var(--hazard); color: var(--pine-dark); border: none; padding: 12px 20px;
    border-radius: 8px; font-weight: 700; cursor: pointer;
}

/* ---------- Partner vitrine ---------- */
.partner-band {
    position: relative; overflow: hidden; color: #fff; padding: 40px 0 70px;
}
.partner-band-video {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%;
    opacity: 0.4; z-index: 0;
}
.partner-band-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, rgba(18,53,39,0.85) 0%, rgba(31,77,58,0.88) 55%, rgba(18,53,39,0.92) 100%);
    z-index: 1;
}
.partner-band .container { position: relative; z-index: 2; }
.partner-band .breadcrumb { color: #B9CBC0; }
.partner-band .breadcrumb a { color: #DCE8E0; }
.partner-band .partner-hero .badge-dept { background: rgba(232,166,61,0.15); color: var(--hazard); border: 1px solid rgba(232,166,61,0.4); }
.partner-band .partner-hero h1 { color: #fff; }
.partner-band .partner-hero p { color: #CFE0D6; }
.partner-band .partner-hero .tag-activite { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }

.partner-contact-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; max-width: 380px; }
.partner-contact-list .contact-line {
    background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.15); color: #fff;
    margin-bottom: 0;
}
.partner-contact-list .contact-line:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.3); }
.partner-contact-list .contact-icon { background: rgba(255,255,255,0.1); color: var(--hazard); }
.partner-contact-list .contact-line:hover .contact-icon { background: var(--hazard); color: var(--pine-dark); }
.partner-contact-list .contact-line-label { color: #B9CBC0; }

.partner-hero {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start;
}
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; }
.breadcrumb a { color: var(--pine); text-decoration: none; }
.partner-hero .badge-dept {
    display: inline-block; background: var(--paper-alt); color: var(--pine);
    padding: 5px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; margin-bottom: 14px;
}
.partner-photo {
    max-width: 220px;
    max-height: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    margin-bottom: 16px;
    display: block;
}
.partner-activites { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.tag-activite {
    background: var(--paper-alt); border: 1px solid var(--line); padding: 5px 12px;
    border-radius: 999px; font-size: 0.82rem; font-weight: 600; color: var(--pine-dark);
}
.contact-card {
    background: #fff; color: var(--ink); border-radius: 14px; padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.contact-card h3, .contact-card h4 { color: var(--ink); }
.contact-card label { color: var(--ink); }
a.contact-line {
    display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink);
    padding: 13px; margin-bottom: 10px; font-weight: 600; font-size: 0.95rem;
    border: 1px solid var(--line); border-radius: 10px;
    transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
a.contact-line:last-of-type { margin-bottom: 0; }
a.contact-line:hover {
    border-color: var(--pine); background: var(--paper-alt); transform: translateX(3px);
}
.contact-icon {
    width: 38px; height: 38px; min-width: 38px; border-radius: 9px;
    background: var(--paper-alt); color: var(--pine);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s ease, color 0.15s ease;
}
a.contact-line:hover .contact-icon { background: var(--pine); color: #fff; }
.contact-line-text { display: flex; flex-direction: column; gap: 1px; }
.contact-line-label { font-size: 0.72rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.03em; }
.partner-logo-card {
    max-width: 100%;
    max-height: 130px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
}

.prose h1, .prose h2, .prose h3 { color: var(--pine-dark); margin-top: 1em; }
.prose h1:first-child, .prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { color: var(--ink); }
.prose strong { color: var(--pine-dark); }
.prose ul, .prose ol { padding-left: 22px; margin: 0 0 1em; }
.prose li { margin-bottom: 6px; color: var(--ink); }
.prose a { color: var(--pine); }

.seo-paragraph { margin-top: 30px; background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 30px; }

/* ---------- Blog cards ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.blog-card {
    background: #fff; border-radius: 12px;
    overflow: hidden; text-decoration: none; color: inherit; display: flex; flex-direction: column;
    box-shadow: 0 2px 10px rgba(24,38,32,0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(24,38,32,0.12); }
.blog-card-img { width: 100%; height: 170px; object-fit: cover; display: block; }
.blog-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-date { color: var(--hazard-dark); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.blog-card-title {
    font-size: 1.05rem; margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-excerpt {
    font-size: 0.88rem; color: var(--muted); margin: 0 0 14px;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-card-link { margin-top: auto; color: var(--pine); font-weight: 700; font-size: 0.85rem; }

/* ---------- Pivot page (activité + département) ---------- */
.pivot-hero { padding: 50px 0 20px; }
.pivot-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.pivot-card {
    background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px;
}
.pivot-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.partner-list-stack { display: flex; flex-direction: column; gap: 14px; }
.partner-list-card {
    background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px 22px;
    display: flex; align-items: center; justify-content: center; gap: 20px;
}
.partner-list-card .partner-list-logo {
    max-width: 160px; max-height: 90px; width: auto; height: auto; object-fit: contain; flex-shrink: 0;
}
.partner-list-card h3 { margin: 0; font-size: 1.05rem; flex: 0 1 auto; }
.btn-outline-pine {
    display: inline-block; text-decoration: none; white-space: nowrap;
    color: var(--pine); background: transparent; border: 1.5px solid var(--pine);
    font-weight: 700; font-size: 0.85rem; padding: 9px 18px; border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
    flex-shrink: 0;
}
.btn-outline-pine:hover { background: var(--pine); color: #fff; }

@media (max-width: 560px) {
    .partner-list-card { flex-direction: column; text-align: center; }
}
.empty-state {
    background: #fff; border: 1px dashed var(--line); border-radius: 12px; padding: 40px; text-align: center; color: var(--muted);
}

/* ---------- Activity detail blocks ---------- */
.activity-detail-block {
    display: grid; grid-template-columns: 440px 1fr; gap: 50px; align-items: start;
    margin-bottom: 64px;
}
.activity-detail-block:last-child { margin-bottom: 0; }
.activity-detail-block img {
    border-radius: 12px; width: 100%; aspect-ratio: 4/3; object-fit: cover; margin-bottom: 18px;
}
.btn-red {
    display: block; width: 100%; text-align: center;
    background: var(--hazard); color: var(--pine-dark); padding: 15px 20px; border-radius: 8px;
    font-weight: 700; text-decoration: none; font-size: 1rem;
}
.btn-red:hover { background: var(--hazard-dark); }
.activity-detail-block h2 { margin-bottom: 14px; }
.activity-detail-block h4 { margin: 20px 0 10px; font-size: 1rem; }
.activity-detail-block ul { padding-left: 20px; margin: 0 0 6px; }
.activity-detail-block ul li { margin-bottom: 8px; color: var(--muted); }

.activity-detail-block.intro-block { grid-template-columns: 480px 1fr; }

@media (max-width: 860px) {
    .activity-detail-block, .activity-detail-block.intro-block { grid-template-columns: 1fr; }
}
/* ---------- Candidature form (adhésion) ---------- */
.candidature-form {
    background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 32px;
}
.candidature-form label { display: block; margin-bottom: 18px; font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.candidature-form input, .candidature-form select, .candidature-form textarea {
    width: 100%; padding: 11px 12px; margin-top: 6px; border: 1px solid var(--line);
    border-radius: 8px; font-family: inherit; font-size: 0.95rem; background: #fcfdfb; font-weight: normal;
}
.candidature-form fieldset { border: 1px solid var(--line); border-radius: 8px; padding: 14px 16px; margin-bottom: 18px; }
.candidature-form legend { font-weight: 700; font-size: 0.85rem; padding: 0 6px; }
.candidature-form .checkbox-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 10px 16px;
}
.candidature-form .checkbox-grid .checkbox-inline {
    display: flex; align-items: flex-start; gap: 8px; margin-right: 0; font-weight: normal;
}
.candidature-form .checkbox-inline input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; }
.candidature-form .form-actions { margin-top: 10px; }

#photoPresentationWrap:hover span { background: var(--pine-dark); transform: scale(1.08); }
#photoPresentationWrap span { transition: transform 0.15s ease, background 0.15s ease; }

/* ---------- Lecteur vidéo moderne ---------- */
.video-player-wrap { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; }
.video-play-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 72px; height: 72px; border-radius: 50%; border: none;
    background: var(--hazard); display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35); cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.video-play-btn svg { margin-left: 3px; }
.video-play-btn:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--hazard-dark); }

.site-footer { background: var(--pine-dark); color: #CFE0D6; padding: 50px 0 26px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 30px; }
.footer-grid h4 { color: #fff; font-size: 0.95rem; margin-bottom: 12px; }
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { text-decoration: none; color: #B9CBC0; font-size: 0.9rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; font-size: 0.8rem; color: #8FA79A; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
    position: fixed; bottom: 16px; left: 16px; z-index: 100;
    max-width: 360px;
    background: var(--pine-dark); color: #DCE8E0;
    padding: 16px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.cookie-banner-inner {
    display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
.cookie-banner p { margin: 0; font-size: 0.8rem; line-height: 1.45; color: #DCE8E0; }
.cookie-banner a { color: var(--hazard); text-decoration: underline; }
.cookie-banner .btn-hazard { width: auto; padding: 8px 18px; font-size: 0.85rem; margin: 0; }

@media (max-width: 480px) {
    .cookie-banner { left: 10px; right: 10px; max-width: none; bottom: 10px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
    .hero .container { grid-template-columns: 1fr; }
    .partner-hero { grid-template-columns: 1fr; }
    .dept-finder { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .site-nav {
        display: none;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--pine-dark);
        padding: 10px 24px 20px;
        box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; gap: 4px; }
    .site-nav a { display: block; padding: 12px 4px; }
    .site-nav a::after { display: none; }
    .nav-toggle { display: flex; align-items: center; }
    .site-header .container { flex-direction: column; align-items: stretch; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
    .header-cta { order: -1; text-align: center; padding: 11px 14px; font-size: 0.9rem; width: 100%; }
    .header-row { justify-content: space-between; width: 100%; }
    .site-logo { font-size: 1.05rem; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; flex-shrink: 1; }
    .site-logo .logo-mark-img { height: 34px; flex-shrink: 0; }
}
@media (max-width: 500px) {
    .intervention-form .row2 { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .service-card { transition: none; }
}
