/* ==================== 
   CONTACT SUCCESS PAGE -  
   ============== */

 

[data-main-object="ir.ui.view(5918,)"] {
    font-family: 'RecklessNeue', serif;
    font-weight: normal;
    min-height: 100vh;
   
    font-family: 'RecklessNeue', serif;
    font-weight: normal;
    overflow-x: hidden;
    background: rgb(247 245 240 / var(--tw-bg-opacity, 1));
}

[data-main-object="ir.ui.view(5918,)"] #wrap {
    background:rgb(247 245 240 / var(--tw-bg-opacity, 1));

}

/* Container avec padding personnalisé */
[data-main-object="ir.ui.view(5918,)"] .container.py-5 {
   height: 100vh;
   padding-top: 20vh !important;
}

[data-main-object="ir.ui.view(5918,)"]  header#global-header {
    background-color: white;
}

[data-main-object="ir.ui.view(5918,)"]  header.global-header img#logo-home { 
       display: none !important;
}

[data-main-object="ir.ui.view(5918,)"]  header.global-header  img#logo-other {
     display: block !important;
}




/* Success Icon Animation */
[data-main-object="ir.ui.view(5918,)"] .mb-4 {
    animation: successBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    justify-content: center;
    display: flex;

}

@keyframes successBounce {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    60% {
        transform: scale(1.2) rotate(10deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

[data-main-object="ir.ui.view(5918,)"] .mb-4 svg {
    filter: drop-shadow(0 8px 24px rgba(40, 167, 69, 0.3));
    transition: all 0.3s ease;
}

[data-main-object="ir.ui.view(5918,)"] .mb-4:hover svg {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 12px 32px rgba(40, 167, 69, 0.4));
}

/* Main Title */
[data-main-object="ir.ui.view(5918,)"] h1 {
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 400 !important;
    color: #677b69 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.01em !important;
    line-height: 1.2 !important;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Lead Text */
[data-main-object="ir.ui.view(5918,)"] .lead {
    font-size: clamp(1rem, 2vw, 1.25rem) !important;
    line-height: 1.7 !important;
    color: #666 !important;
    margin-bottom: 2.5rem !important;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Alert Info Box - Modern Card Style */
[data-main-object="ir.ui.view(5918,)"] .alert-info {
    background-color: #FFFFFF !important;
    border: 2px solid #677b69 !important;
    border-radius: 12px !important;
    padding: 2.5rem !important;
    box-shadow: 0 10px 40px rgba(5, 51, 51, 0.08) !important;
    animation: fadeInUp 0.6s ease 0.4s both;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

[data-main-object="ir.ui.view(5918,)"] .alert-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #677b69 0%, #677b69 100%);
}

[data-main-object="ir.ui.view(5918,)"] .alert-info:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 56px rgba(5, 51, 51, 0.12) !important;
}

[data-main-object="ir.ui.view(5918,)"] .alert-info p {
    margin: 0 !important;
    color:white !important;
    font-size: 1rem !important;
}

[data-main-object="ir.ui.view(5918,)"] .alert-info p strong {
    font-size: 1.125rem !important;
    font-weight: 600 !important;
    display: block;
    margin-bottom: 0.5rem;
}

/* Buttons Container */
[data-main-object="ir.ui.view(5918,)"] .mt-5 {
    margin-top: 3rem !important;
    animation: fadeInUp 0.6s ease 0.5s both;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Primary Button - Solid */
[data-main-object="ir.ui.view(5918,)"] .btn-lg:first-child {
    background-color: #677b69 !important;
    color: white !important;
    border: none !important;
    font-weight: 600 !important;
    padding: 1.125rem 3rem !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 16px rgba(5, 51, 51, 0.2);
    position: relative;
    overflow: hidden;
}

[data-main-object="ir.ui.view(5918,)"] .btn-lg:first-child::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

[data-main-object="ir.ui.view(5918,)"] .btn-lg:first-child:hover::before {
    width: 300px;
    height: 300px;
}

[data-main-object="ir.ui.view(5918,)"] .btn-lg:first-child:hover {
    background-color: #677b69 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(5, 51, 51, 0.3) !important;
}

/* Secondary Button - Outline */
[data-main-object="ir.ui.view(5918,)"] .btn-lg:last-child {
    background-color: transparent !important;
    color: #677b69 !important;
    border: 2px solid #677b69 !important;
    font-weight: 600 !important;
    padding: 1.125rem 3rem !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    border-radius: 8px !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative;
    overflow: hidden;
}

[data-main-object="ir.ui.view(5918,)"] .btn-lg:last-child::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #677b69;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

[data-main-object="ir.ui.view(5918,)"] .btn-lg:last-child:hover::before {
    left: 0;
}

[data-main-object="ir.ui.view(5918,)"] .btn-lg:last-child:hover {
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 24px rgba(5, 51, 51, 0.2) !important;
}

/* Footer Section - Additional Info */
[data-main-object="ir.ui.view(5918,)"] .mt-5.pt-5 {
    border-top: 1px solid rgba(5, 51, 51, 0.15) !important;
    margin-top: 4rem !important;
    padding-top: 3rem !important;
    animation: fadeInUp 0.6s ease 0.6s both;
}

[data-main-object="ir.ui.view(5918,)"] .mt-5.pt-5 p {
    color: #FFF !important;
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    margin-bottom: 1rem !important;
}

/* Service Links */
[data-main-object="ir.ui.view(5918,)"] .mt-3 {
    margin-top: 1.5rem !important;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

[data-main-object="ir.ui.view(5918,)"] .mt-3 a {
    color: #677b69 !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

[data-main-object="ir.ui.view(5918,)"] .mt-3 a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #677b69;
    transition: width 0.3s ease;
}

[data-main-object="ir.ui.view(5918,)"] .mt-3 a:hover {
    background: rgba(5, 51, 51, 0.05);
    transform: translateY(-2px);
}

[data-main-object="ir.ui.view(5918,)"] .mt-3 a:hover::after {
    width: 80%;
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE - TABLETTE
   ======================================== */
@media (max-width: 1023px) {
    [data-main-object="ir.ui.view(5918,)"] .container {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    [data-main-object="ir.ui.view(5918,)"] h1 {
        font-size: 2rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .alert-info {
        padding: 2rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .btn-lg {
        padding: 1rem 2.5rem !important;
        font-size: 0.875rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .mt-3 {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 767px) {
    [data-main-object="ir.ui.view(5918,)"] .container {
        padding-top: 80px;
        padding-bottom: 40px;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    [data-main-object="ir.ui.view(5918,)"] h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .lead {
        font-size: 1rem !important;
        margin-bottom: 2rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .alert-info {
        padding: 1.5rem !important;
        border-radius: 8px !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .mt-5 {
        flex-direction: column;
        gap: 0.75rem;
    }

    [data-main-object="ir.ui.view(5918,)"] .btn-lg {
        width: 100%;
        padding: 1rem 2rem !important;
        font-size: 0.85rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .mt-3 {
        flex-direction: column;
        gap: 0.75rem;
    }

    [data-main-object="ir.ui.view(5918,)"] .mt-3 a {
        text-align: center;
    }

    [data-main-object="ir.ui.view(5918,)"] .mb-4 svg {
        width: 60px !important;
        height: 60px !important;
    }
}

/* ========================================
   RESPONSIVE - TRÈS PETIT MOBILE
   ======================================== */
@media (max-width: 479px) {
    [data-main-object="ir.ui.view(5918,)"] h1 {
        font-size: 1.5rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .alert-info {
        padding: 1.25rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .alert-info p strong {
        font-size: 1rem !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .btn-lg {
        padding: 0.875rem 1.5rem !important;
        font-size: 0.8rem !important;
    }
}

/* ========================================
   DARK MODE SUPPORT (Optional)
   ======================================== */
@media (prefers-color-scheme: dark) {
    

    [data-main-object="ir.ui.view(5918,)"] #wrap {
        background:rgb(247 245 240 / var(--tw-bg-opacity, 1));
    }
  
    [data-main-object="ir.ui.view(5918,)"] .alert-info {
        background-color: #677b69 !important;
        border-color: #677b69 !important;
    }

   
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
[data-main-object="ir.ui.view(5918,)"] *:focus-visible {
    outline: 2px solid #677b69;
    outline-offset: 4px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    [data-main-object="ir.ui.view(5918,)"] .alert-info {
        border-width: 3px !important;
    }

    [data-main-object="ir.ui.view(5918,)"] .btn-lg {
        border-width: 3px !important;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    [data-main-object="ir.ui.view(5918,)"] * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}