/* ---------------------------------------------------------
   GLOBAL SETTINGS
--------------------------------------------------------- */
body {
    font-family: "Manrope", "Segoe UI", Arial, sans-serif;
    color: #0f2f25;
    background-color: #ffffff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #0f2f25;
}

p {
    color: #11352b;
}

a{
    color: var(--text-dark);
}

.section-padding {
    padding: 60px 0;
}

.btn-rounded {
    border-radius: 50px;
}

/* ---------------------------------------------------------
   COLORS
--------------------------------------------------------- */
:root {
    --green-dark: #0e6f5c;
    --green-deep: #0a5b4a;
    --green-soft: #d7ece7;
    --gold: #e7c56f;
    --text-dark: #0f2f25;
    --text-muted: #527a6f;
}

.big-img {
    height: 600px !important;
    object-fit: cover;
    border-radius: 18px;
}

.med-img {
    height: 300px !important;
    object-fit: cover;
    border-radius: 18px;
}

/* ---------------------------------------------------------
   HEADER MENU
--------------------------------------------------------- */
.site-header {
    background: white;
    border-bottom: 1px solid #e5e5e5;
}

.site-header .nav-link {
    color: #0f2f25;
    font-weight: 500;
    font-size: 14px;
}

.site-header .nav-link:hover {
    color: var(--green-dark);
}

.header-phone {
    background: var(--green-dark);
    padding: 8px 18px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 14px;
}

/* ---------------------------------------------------------
   PREMIUM HEADER
--------------------------------------------------------- */
.premium-header {
    background: #36847B;
    position: sticky;
    top: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Logo */
.header-logo {
    height: 64px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    transition: 0.3s ease;
}

@media (max-width: 768px) {
    .header-logo {
        height: 48px;
        max-width: 230px;
    }
}

.header-logo:hover {
    opacity: 0.9;
    transform: scale(1.03);
}

/* Premium Nav */
.nav-premium {
    position: relative;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    color: white !important;
    text-decoration: none;
    padding: 5px 0;
    transition: 0.3s;
}

.nav-premium::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.35s;
    border-radius: 5px;
}

.nav-premium:hover::after {
    width: 100%;
}

.btn-phone-cta {
    background: #f8e9a1;
    color: #1b2b27;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

.btn-phone-cta:hover {
    background: #f5dd7a;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}

.btn-mobile-menu { color: white; }
.mobile-menu { background: #36847B; }

.mobile-link {
    font-weight: 600;
    font-size: 16px;
    color: white;
    padding: 10px 0;
    text-transform: uppercase;
    text-decoration: none;
}
.mobile-link:hover { opacity: 0.85; }

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
    background: linear-gradient(rgba(14, 111, 92, 0.80), rgba(10, 91, 74, 0.90)), url('../img/traitement-extermination-anthrene.jpg') center/cover no-repeat;
    padding: 140px 20px 120px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 15px;
    color:#fff;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
}

.hero-highlight { color: var(--gold); }

.hero-subtitle {
    font-size: 20px;
    margin-top: 15px;
    font-weight: 500;
    opacity: 0.9;
    color:#fff;
}

/* Buttons */
.hero .btn-cta {
    background: var(--gold);
    color: #1b2b27;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 17px;
    transition: 0.3s ease;
    text-decoration: none;
}

.hero .btn-cta:hover {
    background: #d4b362;
    transform: translateY(-3px);
}

.hero .btn-secondary-cta {
    background: rgba(255,255,255,0.15);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(3px);
    transition: 0.3s ease;
}

.hero .btn-secondary-cta:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.18);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(6px);
    margin-bottom: 20px;
}

.hero-badge i { color: var(--gold); }

/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */
.text-block p { font-size: 15px; margin-bottom: 15px; }

.image-round {
    border-radius: 12px;
    width: 100%;
}

/* ---------------------------------------------------------
   SERVICE BOX — MERGED FINAL
--------------------------------------------------------- */
.service-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    transition: 0.35s ease;
    border: 1px solid #e7eceb;
    cursor: default;
    animation: fadeUpSoft 0.7s ease forwards;
    opacity: 0;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.11);
    border-color: var(--green-dark);
}

.service-icon {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    background: var(--green-soft);
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 20px;
    transition: 0.35s ease;
}

.service-box:hover .service-icon {
    background: var(--green-dark);
    color: #ffffff;
}

.service-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.service-box:hover h3 {
    color: var(--green-deep);
    transform: translateX(4px);
}

/* ---------------------------------------------------------
   INFO BOX — MERGED FINAL
--------------------------------------------------------- */
.info-box {
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e7eceb;
    text-align: center;
    transition: 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
    animation: fadeUpSoft 0.7s ease forwards;
    opacity: 0;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.10);
    border-color: var(--green-dark);
}

.info-box .icon {
    font-size: 30px;
    color: var(--green-dark);
    transition: 0.35s ease;
}

.info-box:hover .icon {
    transform: scale(1.14) rotate(3deg);
    color: var(--green-deep);
}

.info-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
    transition: 0.3s ease;
}

.info-box:hover h3 {
    color: var(--green-deep);
    transform: translateY(-2px);
}

/* ---------------------------------------------------------
   SECTION TITLES
--------------------------------------------------------- */
.section-title {
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-title span {
    color: var(--green-dark);
}

/* Mobile (max-width: 576px) */
@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
        line-height: 1.3;
    }
}


.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

/* ---------------------------------------------------------
   ACCORDION — FINAL MERGED
--------------------------------------------------------- */
.accordion-item {
    border-radius: 16px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e7eceb;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    animation: fadeUpSoft 0.7s ease forwards;
    opacity: 0;
}

.accordion-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.09);
    border-color: var(--green-dark);
}

.accordion-button {
    background: #ffffff;
    padding: 20px 24px;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--green-soft);
    color: var(--green-deep);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.accordion-button i {
    color: var(--green-dark);
    font-size: 20px;
    transition: 0.3s;
}

.accordion-button:not(.collapsed) i {
    transform: rotate(15deg);
    color: var(--green-deep);
}

.accordion-body {
    padding: 22px 28px;
    background: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

/* ---------------------------------------------------------
   ANIMATIONS — FINAL VERSION
--------------------------------------------------------- */
@keyframes fadeUpSoft {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.info-box,
.service-box,
.accordion-item {
    animation: fadeUpSoft 0.7s ease forwards;
    opacity: 0;
}

.info-box:nth-child(1),
.service-box:nth-child(1),
.accordion-item:nth-child(1) { animation-delay: .10s; }
.info-box:nth-child(2),
.service-box:nth-child(2),
.accordion-item:nth-child(2) { animation-delay: .18s; }
.info-box:nth-child(3),
.service-box:nth-child(3),
.accordion-item:nth-child(3) { animation-delay: .26s; }
.info-box:nth-child(4),
.service-box:nth-child(4),
.accordion-item:nth-child(4) { animation-delay: .34s; }
.info-box:nth-child(5),
.service-box:nth-child(5),
.accordion-item:nth-child(5) { animation-delay: .42s; }
.info-box:nth-child(6),
.service-box:nth-child(6),
.accordion-item:nth-child(6) { animation-delay: .50s; }

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.footer-premium {
    background: #0F2D28;
    color: #ffffff;
}

.footer-logo { filter: brightness(1.15); }

.footer-title {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links { list-style: none; padding: 0; }

.footer-link {
    display: block;
    padding: 4px 0;
    font-size: 15px;
    color: #d3ebe4;
    text-decoration: none;
    transition: 0.3s;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-contact i { color: #e7c56f; }

.footer-social {
    color: #d0e7df;
    background: rgba(255,255,255,0.08);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 18px;
    transition: 0.3s;
}

.footer-social:hover {
    background: #e7c56f;
    color: #0f2d28;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 16px;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    margin: 0 4px;
}

.footer-bottom a:hover {
    color: inherit;
}

/* ---------------------------------------------------------
   PREMIUM CTA SECTION
--------------------------------------------------------- */
.cta-premium {
    background: var(--green-dark);
    color: white;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    animation: fadeUpSoft 0.7s ease forwards;
}

.cta-title {
    font-size: 35px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .cta-title { font-size: 26px; }
}

.cta-subtitle {
    font-size: 18px;
    opacity: 0.92;
    margin-bottom: 30px;
    color: #ffffff;
}

/* Main CTA */
.btn-cta-big {
    background: var(--gold);
    color: #1b2b27 !important;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-cta-big:hover {
    background: #d4b362;
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.15);
}

/* Phone CTA */
.btn-cta-phone {
    background: rgba(255,255,255,0.22);
    color: white !important;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.35);
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: 0.3s ease;
}

.btn-cta-phone:hover {
    background: rgba(255,255,255,0.30);
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* ---------------------------------------------------------
   CONTACT SECTION — PREMIUM LUXURY VERSION
--------------------------------------------------------- */

.contact-premium {
    position: relative;
}

.contact-info-box {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    padding: 22px 26px;
    border-radius: 16px;
    border: 1px solid #e7eceb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    margin-bottom: 20px;
    transition: 0.35s ease;
    animation: fadeUpSoft 0.7s ease forwards;
    opacity: 0;
}

.contact-info-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.09);
    border-color: var(--green-dark);
}

.contact-icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-soft);
    color: var(--green-dark);
    border-radius: 14px;
    font-size: 24px;
    transition: 0.35s ease;
}

.contact-info-box:hover .contact-icon {
    background: var(--green-dark);
    color: white;
    transform: scale(1.1) rotate(4deg);
}

.contact-info-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.contact-info-box p {
    margin: 0;
}

/* FORM BOX */
.contact-form-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 38px;
    border: 1px solid #e7eceb;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    animation: fadeUpSoft 0.7s ease forwards;
    opacity: 0;
}

.form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
}

/* Fields */
.contact-field {
    border-radius: 14px !important;
    padding: 12px 14px;
    border: 1px solid #d8e7e3;
    transition: 0.25s ease;
}

.contact-field:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(14, 111, 92, 0.12);
}

/* ---------------------------------------------------------
   LUXURY CONTACT FORM — FINAL BEAST MODE
--------------------------------------------------------- */

.contact-form-enhanced .input-wrapper {
    position: relative;
    margin-bottom: 12px;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: var(--green-dark);
    opacity: 0.6;
    transition: 0.3s ease;
}

.textarea-wrapper .input-icon {
    top: 20px;
    transform: none;
}

/* Floating Labels */
.input-label {
    position: absolute;
    left: 52px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #657c75;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Inputs */
.contact-field {
    width: 100%;
    padding: 14px 16px 14px 52px;
    border-radius: 14px;
    border: 1px solid #d8e7e3;
    background: #ffffff;
    transition: 0.35s ease;
    font-size: 15px;
    resize: none;
}

.contact-field:focus {
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(14, 111, 92, 0.14);
    outline: none;
}

/* Floating active */
.contact-field:focus + .input-label,
.contact-field:not(:placeholder-shown) + .input-label {
    top: -10px;
    left: 14px;
    font-size: 13px;
    background: white;
    padding: 0 6px;
    color: var(--green-dark);
}

/* Icon focus boost */
.contact-field:focus ~ .input-icon {
    color: var(--green-dark);
    opacity: 1;
    transform: translateY(-50%) scale(1.12);
}

.textarea-wrapper .contact-field:focus ~ .input-icon {
    transform: scale(1.12);
}

/* VALIDATION ICON */
.valid-icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    color: #2ecc71;
    opacity: 0;
    transition: 0.3s ease;
    font-size: 18px;
}

.textarea-check {
    top: auto;
    bottom: 14px;
}

/* Show on valid */
.contact-field.valid ~ .valid-icon {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

/* ERROR SHAKE */
@keyframes shakeField {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-4px); }
    40% { transform: translateX(4px); }
    60% { transform: translateX(-3px); }
    80% { transform: translateX(3px); }
}

.contact-field.error {
    border-color: #e74c3c !important;
    animation: shakeField 0.25s ease;
}

/* Textarea floating fix */
.textarea-wrapper .input-label {
    top: 16px;
    transform: none;
}

.textarea-wrapper .contact-field:focus + .input-label,
.textarea-wrapper .contact-field:not(:placeholder-shown) + .input-label {
    top: -10px;
    left: 14px;
    font-size: 13px;
}

/* SUCCESS MODAL */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999999;
}

.success-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease forwards;
}

.success-modal-content {
    background: #ffffff;
    padding: 40px 35px;
    border-radius: 18px;
    text-align: center;
    max-width: 420px;
    width: 90%;
    animation: fadeUpSoft 0.4s ease forwards;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.modal-icon {
    font-size: 58px;
    color: var(--green-dark);
    margin-bottom: 18px;
}

.modal-close-btn {
    margin-top: 25px;
    background: var(--green-dark);
    border: none;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s ease;
}

.modal-close-btn:hover {
    background: var(--green-deep);
}

/* Fade animations */
@keyframes fadeIn {
    0% { opacity: 0; } 
    100% { opacity: 1; }
}

/* ULTRA BEAST MODE CTA */
.btn-cta-ultra {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gold), #f7d98c);
    color: #1b2b27;
    padding: 16px 38px;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    transition: 0.45s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.20);
}

/* Text & Icon */
.btn-cta-ultra .btn-text {
    position: relative;
    z-index: 3;
    transition: 0.45s ease;
}

.btn-cta-ultra .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    opacity: 1 !important;
    transform: translateX(0) !important;
    transition: 0.45s ease;
    font-size: 20px;
}

/* Shine streak animation */
.btn-cta-ultra::before {
    content: "";
    position: absolute;
    top: 0;
    left: -140%;
    width: 120%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent,
        rgba(255,255,255,0.55),
        transparent
    );
    transform: skewX(-20deg);
    transition: 0.75s ease;
}

/* Lift / glow / icon slide */
.btn-cta-ultra:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 14px 32px rgba(0,0,0,0.25);
}

/* Shine swipe */
.btn-cta-ultra:hover::before {
    left: 140%;
}

/* Icon reveals */
.btn-cta-ultra:hover .btn-icon {
    opacity: 1;
    transform: translateX(0);
}

/* Text slide effect */
.btn-cta-ultra:hover .btn-text {
    transform: translateX(3px);
}

/* Click push effect */
.btn-cta-ultra:active {
    transform: scale(0.98) translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.20);
}

/* Timeline line */
.timeline-wrapper { position: relative; }
.timeline-line {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 0%;
    background: #0e6f5c30;
    animation: lineGrow 1.5s ease-out forwards;
}

.timeline-step h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--green-dark);
    transition: 0.3s 
ease;
}

/* Steps fade animation */
.fade-step {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

/* Icon animation */
.animated-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: white;
    border-radius: 50%;
    border: 3px solid var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--green-dark);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}
.animated-icon:hover {
    transform: scale(1.12);
    box-shadow: 0 12px 35px rgba(0,0,0,0.20);
}

/* KEYFRAMES */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

@keyframes lineGrow {
    0% { width: 0%; }
    100% { width: 100%; }
}

.team-card {
    position: relative;
    padding-top: 55px !important;
}

.team-icon {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: var(--green-soft);
    color: var(--green-dark);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 20px;
    box-shadow:0 10px 24px rgba(0,0,0,0.08);
    transition:0.35s ease;
}

.team-card:hover .team-icon {
    transform:scale(1.12) rotate(4deg);
    background: var(--green-dark);
    color:white;
}

.team-title {
    font-size:20px;
    font-weight:800;
    margin-bottom:10px;
    color:var(--green-dark);
}

.team-badge {
    display:inline-flex;
    align-items:center;
    gap:6px;
    font-size:14px;
    font-weight:700;
    color:var(--green-dark);
    background:var(--green-soft);
    padding:8px 16px;
    border-radius:50px;
    margin-top:12px;
    transition:.35s ease;
}

.team-card:hover .team-badge {
    background:var(--green-dark);
    color:white;
    transform:translateY(-4px);
}

/* WHY CHOOSE — custom layout */
.why-img {
    border-radius: 18px;
    animation: fadeUpSoft .8s ease forwards;
    opacity: 0;
}

.why-box {
    text-align:left;
    padding:26px;
}

.why-box .icon {
    font-size:34px;
    margin-bottom:14px;
}

@media (max-width:768px){
    .why-box { text-align:center; }
}

.vision-text-card {
    background: #ffffff;
    border: 1px solid #e7eceb;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    transition: 0.35s ease;
}

.vision-text-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.10);
    border-color: var(--green-dark);
}

.vision-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.vision-line {
    width: 60px;
    height: 3px;
    background: var(--green-dark);
    border-radius: 20px;
    margin: 10px 0 20px;
}

.vision-accent {
    padding: 25px 30px;
    border-left: 6px solid var(--green-dark);
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
    transition: 0.35s ease;
}

.vision-accent:hover {
    transform: translateX(4px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.08);
}

/* ---------------------------------------------------------
   CTA BUTTONS — MOBILE RESPONSIVE FIX
--------------------------------------------------------- */
@media (max-width: 576px) {

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 14px;
        width: 100%;
        margin: 0 auto;
    }

    .btn-cta-big,
    .btn-cta-phone {
        width: 100%;
        text-align: center;
        font-size: 16px;
        padding: 15px 20px;
        border-radius: 50px;
        margin: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-cta-big i,
    .btn-cta-phone i {
        font-size: 18px;
        margin-right: 8px;
    }
}

/* ---------------------------------------------------------
   METHODOLOGIE — MOBILE RESPONSIVE
--------------------------------------------------------- */

@media (max-width: 768px) {

    /* Steps container stack */
    .timeline-wrapper .row {
        gap: 30px 0;
    }

    /* Steps become full width on mobile */
    .timeline-step {
        padding: 10px 0;
    }

    .timeline-wrapper .col-6 {
        width: 100% !important;
        max-width: 100%;
        flex: 0 0 100%;
        text-align: center;
    }

    /* Icon size adjustments */
    .animated-icon {
        width: 68px;
        height: 68px;
        font-size: 26px;
    }

    /* Title size */
    .timeline-step h3 {
        font-size: 18px !important;
    }

    /* Text size */
    .timeline-step p {
        font-size: 15px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }

    /* Timeline line disappears on mobile */
    .timeline-line {
        display: none;
    }
}

@media (max-width: 480px) {

    /* Extra small adjustments */
    .animated-icon {
        width: 62px;
        height: 62px;
        font-size: 24px;
    }

    .timeline-step h3 {
        font-size: 17px !important;
    }
}
