/* =============================================
   Sahel Mining Solutions Group - Custom Styles
   Colors: Primary #202B59 | Secondary #F27329
   Font: Poppins
   ============================================= */

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #202B59; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #F27329; }

/* ---- Selection ---- */
::selection { background: #F27329; color: #fff; }

/* ---- Smooth scroll ---- */
html { scroll-behavior: smooth; }

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

/* ---- Navbar (White) ---- */
.nav-link {
    position: relative;
    padding: 0.5rem 1rem;
    color: #202B59;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: #F27329; }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: #F27329;
    transition: transform 0.3s ease;
    border-radius: 1px;
}
.nav-link:hover::after, .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}
.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}
/* Mobile side-panel links */
.mob-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 0;
    font-size: 0.95rem;
    font-weight: 500;
    color: #202B59;
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: color 0.3s ease;
}
.mob-link:last-child { border-bottom: none; }
.mob-link:hover { color: #F27329; }
.mob-link-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid #ddd;
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.mob-link-active { color: #F27329; font-weight: 600; }
.mob-link-active .mob-link-dot {
    background: #F27329;
    border-color: #F27329;
    box-shadow: 0 0 0 3px rgba(242, 115, 41, 0.15);
}
.mob-link:hover .mob-link-dot { border-color: #F27329; }

/* ---- Hero Compact ---- */
.hero-compact {
    position: relative;
    min-height: auto;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(20, 28, 58, 0.96) 0%, rgba(25, 40, 75, 0.92) 40%, rgba(18, 30, 62, 0.88) 100%);
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; }
.hero-page { min-height: 40vh; }

/* ---- Hero Stat Cards (glassmorphism + icon) ---- */
.hero-stat-card {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: 0.375rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.hero-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F27329, #f5943e);
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(242, 115, 41, 0.3);
}

/* Hide scrollbar utility */
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* Mobile hero adjustments */
@media (max-width: 639px) {
    .hero-stat-card {
        gap: 0.55rem;
        padding: 0.85rem 0.7rem;
        border-radius: 0.375rem;
    }
    .hero-stat-icon {
        width: 34px;
        height: 34px;
        border-radius: 0.375rem;
    }
}

/* ---- Scroll Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-scale.active { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ---- Section Label ---- */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #F27329;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
    .section-label { font-size: 0.8rem; }
}
.section-label::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: #F27329;
    border-radius: 1px;
}
/* Larger variant for section headers */
.section-label-lg {
    font-size: 1rem;
    font-weight: 700;
}
@media (min-width: 640px) {
    .section-label-lg { font-size: 0.95rem; font-weight: 700; }
}

/* ---- Section Heading (no underline) ---- */
.section-heading {
    font-size: 1.55rem;
    font-weight: 700;
    color: #202B59;
    line-height: 1.25;
}
@media (min-width: 640px) {
    .section-heading { font-size: 2rem; }
}
@media (min-width: 1024px) {
    .section-heading { font-size: 2.5rem; }
}

/* ---- Bento Service Cards ---- */
.svc-bento {
    position: relative;
    border-radius: 0.375rem;
    overflow: hidden;
    display: block;
    text-decoration: none;
    cursor: pointer;
}
.svc-bento img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}
.svc-bento:hover img {
    transform: scale(1.06);
    filter: brightness(0.85);
}
.svc-bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 45%, transparent 65%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.4rem;
    transition: background 0.4s ease;
}
.svc-bento:hover .svc-bento-overlay {
    background: linear-gradient(0deg, rgba(32,43,89,0.9) 0%, rgba(32,43,89,0.35) 55%, rgba(32,43,89,0.1) 100%);
}
.svc-bento-num {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 800;
    color: #fff;
    background: #F27329;
    padding: 0.2rem 0.5rem;
    border-radius: 0.25rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
    width: fit-content;
}
.svc-bento-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0.85rem;
    border-radius: 0.375rem;
    display: inline-block;
    transition: transform 0.3s ease, background 0.3s ease;
}
.svc-bento:hover .svc-bento-title {
    transform: translateY(-6px);
    background: rgba(242,115,41,0.8);
}
.svc-bento-desc {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.55;
    margin-top: 0.35rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}
.svc-bento:hover .svc-bento-desc {
    max-height: 80px;
    opacity: 1;
}
.svc-bento-arrow {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
}
.svc-bento:hover .svc-bento-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Mobile Service Card (full image) ---- */
.svc-mob-full {
    display: block;
    text-decoration: none;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.svc-mob-full:active {
    transform: scale(0.98);
}
.svc-mob-full-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}
.svc-mob-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ---- About button (compact, fits content) ---- */
.about-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #202B59;
    color: #fff;
    padding: 0.65rem 1.25rem;
    border-radius: 0.375rem;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}
.about-btn-link:hover {
    background: #2a3770;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 43, 89, 0.2);
}
@media (max-width: 639px) {
    .about-btn-link {
        display: flex;
        width: 100%;
        justify-content: center;
        font-size: 15px;
        padding: 0.85rem 1.25rem;
    }
}

/* ---- Car driving animation ---- */
.car-drive-container {
    position: relative;
}
.car-driving {
    animation: car-drive 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}
@keyframes car-drive {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-6px) rotate(-0.3deg); }
    50% { transform: translateY(-2px) rotate(0.2deg); }
    75% { transform: translateY(-8px) rotate(-0.2deg); }
}

/* ---- Avantage Card (3D push effect) ---- */
.avantage-card {
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 0.375rem;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    gap: 0.85rem;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    box-shadow:
        0 1px 0 rgba(255,255,255,0.1) inset,
        0 4px 12px rgba(0,0,0,0.08);
}
.avantage-card:hover {
    background: rgba(255,255,255,1);
    transform: translateY(-5px) scale(1.02);
    border-color: rgba(255,255,255,0.9);
    box-shadow:
        0 0 0 rgba(255,255,255,0) inset,
        0 20px 40px rgba(0,0,0,0.15),
        0 8px 16px rgba(0,0,0,0.08);
}
.avantage-icon {
    width: 38px;
    height: 38px;
    border-radius: 0.375rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F27329;
    flex-shrink: 0;
    transition: all 0.35s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}
.avantage-card:hover .avantage-icon {
    background: #F27329;
    color: #fff;
    box-shadow: 0 4px 12px rgba(242,115,41,0.3);
}
.avantage-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    transition: color 0.35s ease;
}
.avantage-card:hover .avantage-title {
    color: #202B59;
}
.avantage-desc {
    display: none;
}

/* ---- Actualite Card ---- */
.actualite-card {
    background: #fff;
    border-radius: 0.375rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(32, 43, 89, 0.06);
}
.actualite-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(32, 43, 89, 0.1);
}
.actualite-card .card-img { overflow: hidden; }
.actualite-card:hover .card-img img { transform: scale(1.08); }
.actualite-card .card-img img { transition: transform 0.6s ease; }

/* ---- Buttons ---- */
.btn-primary {
    background: #202B59;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: #2a3770;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(32, 43, 89, 0.3);
}
.btn-secondary {
    background: #F27329;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
}
.btn-secondary:hover {
    background: #d45f1a;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(242, 115, 41, 0.3);
}
.btn-outline {
    background: transparent;
    color: #fff;
    padding: 0.875rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
}
.btn-outline:hover {
    background: #fff;
    color: #202B59;
    border-color: #fff;
    transform: translateY(-2px);
}

/* ---- Form Inputs ---- */
.form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid rgba(32, 43, 89, 0.1);
    border-radius: 0.375rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    outline: none;
    background: #fff;
}
.form-input:focus {
    border-color: #F27329;
    box-shadow: 0 0 0 4px rgba(242, 115, 41, 0.1);
}

/* ---- Loading animation — modern ---- */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #202B59 0%, #1a2347 50%, #202B59 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    overflow: hidden;
}
.loading-overlay::before,
.loading-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.loading-overlay::before {
    top: -20%; right: -15%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(242,115,41,0.15) 0%, transparent 65%);
    animation: loaderBlob 6s ease-in-out infinite;
}
.loading-overlay::after {
    bottom: -25%; left: -15%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(242,115,41,0.1) 0%, transparent 65%);
    animation: loaderBlob 6s ease-in-out infinite reverse;
}
@keyframes loaderBlob {
    0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.8; }
    50%      { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}
.loading-overlay.hidden { opacity: 0; visibility: hidden; }

.loader-modern {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: loaderFadeIn 0.6s ease-out;
}
@keyframes loaderFadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}
.loader-logo {
    width: 90px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: loaderLogoPulse 2.2s ease-in-out infinite;
}
@keyframes loaderLogoPulse {
    0%, 100% { transform: scale(1); opacity: 1; filter: brightness(0) invert(1) drop-shadow(0 0 0 rgba(242,115,41,0)); }
    50%      { transform: scale(1.05); opacity: 0.95; filter: brightness(0) invert(1) drop-shadow(0 6px 20px rgba(242,115,41,0.4)); }
}
.loader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 0.25rem;
}
.loader-brand-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.loader-brand-sub {
    color: #F27329;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.loader-bar {
    margin-top: 1.25rem;
    width: 180px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 9999px;
    overflow: hidden;
    position: relative;
}
.loader-bar-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, #F27329, #f5a623, #F27329, transparent);
    border-radius: 9999px;
    animation: loaderBarSlide 1.4s ease-in-out infinite;
}
@keyframes loaderBarSlide {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.loader-tagline {
    color: rgba(255,255,255,0.55);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: 0.35rem;
    animation: loaderTaglinePulse 1.8s ease-in-out infinite;
}
@keyframes loaderTaglinePulse {
    0%, 100% { opacity: 0.55; }
    50%      { opacity: 0.95; }
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (max-width: 639px) {
    .loader-logo { width: 78px; }
    .loader-brand-name { font-size: 0.95rem; }
    .loader-brand-sub  { font-size: 0.6rem; letter-spacing: 0.25em; }
    .loader-bar { width: 150px; }
}

/* ---- Pulse animation for WhatsApp ---- */
@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}
a[aria-label="WhatsApp"] { animation: pulse-green 2s infinite; }

/* ---- Hero text animation ---- */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-animate {
    animation: slideUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    opacity: 0;
}
.hero-animate-delay-1 { animation-delay: 0.2s; }
.hero-animate-delay-2 { animation-delay: 0.4s; }
.hero-animate-delay-3 { animation-delay: 0.6s; }
.hero-animate-delay-4 { animation-delay: 0.8s; }

/* ---- Hero In-View Animation System ---- */
.h-anim {
    opacity: 0;
    will-change: transform, opacity;
}
.h-from-bottom { transform: translateY(45px); }
.h-from-top    { transform: translateY(-45px); }
.h-from-left   { transform: translateX(-60px); }
.h-from-right  { transform: translateX(60px); }
.h-from-tl     { transform: translate(-50px, -45px); }
.h-from-tr     { transform: translate(50px, -45px); }

@keyframes hSettleBottom {
    0%   { opacity: 0; transform: translateY(45px); }
    60%  { opacity: 1; transform: translateY(-10px); }
    80%  { transform: translateY(4px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes hSettleTop {
    0%   { opacity: 0; transform: translateY(-45px); }
    60%  { opacity: 1; transform: translateY(10px); }
    80%  { transform: translateY(-4px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes hSettleLeft {
    0%   { opacity: 0; transform: translateX(-60px); }
    60%  { opacity: 1; transform: translateX(12px); }
    80%  { transform: translateX(-4px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes hSettleRight {
    0%   { opacity: 0; transform: translateX(60px); }
    60%  { opacity: 1; transform: translateX(-12px); }
    80%  { transform: translateX(4px); }
    100% { opacity: 1; transform: translateX(0); }
}
@keyframes hSettleTL {
    0%   { opacity: 0; transform: translate(-50px, -45px); }
    60%  { opacity: 1; transform: translate(8px, 8px); }
    80%  { transform: translate(-3px, -3px); }
    100% { opacity: 1; transform: translate(0, 0); }
}
@keyframes hSettleTR {
    0%   { opacity: 0; transform: translate(50px, -45px); }
    60%  { opacity: 1; transform: translate(-8px, 8px); }
    80%  { transform: translate(3px, -3px); }
    100% { opacity: 1; transform: translate(0, 0); }
}

.hero-compact.in-view .h-from-bottom { animation: hSettleBottom 1s ease-out forwards; }
.hero-compact.in-view .h-from-top    { animation: hSettleTop    1s ease-out forwards; }
.hero-compact.in-view .h-from-left   { animation: hSettleLeft   1s ease-out forwards; }
.hero-compact.in-view .h-from-right  { animation: hSettleRight  1s ease-out forwards; }
.hero-compact.in-view .h-from-tl     { animation: hSettleTL     1s ease-out forwards; }
.hero-compact.in-view .h-from-tr     { animation: hSettleTR     1s ease-out forwards; }

.h-delay-1 { animation-delay: 0.10s; }
.h-delay-2 { animation-delay: 0.25s; }
.h-delay-3 { animation-delay: 0.40s; }
.h-delay-4 { animation-delay: 0.55s; }
.h-delay-5 { animation-delay: 0.70s; }
.h-delay-6 { animation-delay: 0.85s; }
.h-delay-7 { animation-delay: 1.00s; }

/* Keep old classes for backward compat */
.section-title { position: relative; display: inline-block; font-weight: 700; }
.section-title::after { display: none; }
.section-title-center::after { display: none; }
.counter-number { font-weight: 800; line-height: 1; }
.text-gradient {
    background: linear-gradient(135deg, #F27329, #f5a623);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Service Avantage Card ---- */
.svc-avantage-card {
    background: rgba(255,255,255,0.95);
    border-radius: 0.375rem;
    padding: 1.15rem 1rem;
    transition: all 0.3s ease;
}
.svc-avantage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.svc-avantage-icon {
    width: 36px;
    height: 36px;
    border-radius: 0.375rem;
    background: #F27329;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-bottom: 0.7rem;
    box-shadow: 0 4px 12px rgba(242,115,41,0.25);
}

/* ---- Footer ---- */
.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 0.375rem;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    transition: all 0.3s ease;
}
.footer-social:hover {
    background: #F27329;
    border-color: #F27329;
    color: #fff;
    transform: translateY(-2px);
}
.footer-link {
    color: rgba(255,255,255,0.35);
    font-size: 0.78rem;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}
.footer-link:hover {
    color: #F27329;
    transform: translateX(3px);
}
.footer-link-static {
    color: rgba(255,255,255,0.3);
    font-size: 0.78rem;
}
