:root {
    --brand: #3980F4;
    --brand-dark: #2563eb;
    --hero-angle: 135deg;
    --bs-body-color: #1A1A1A;
    --bs-secondary-color: #666666;
    --font-en: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
}

html[dir="rtl"] {
    --hero-angle: 225deg
}

body {
    font-family: var(--font-en)
}

section.py-5 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important
}

@media (min-width: 768px) {
    section.py-5 {
        padding-top: 6rem !important;
        padding-bottom: 6rem !important
    }
}

/* ===== Hero Section ===== */
.hero-bg {
    background: linear-gradient(var(--hero-angle),
            rgba(15, 23, 42, 0.95) 0%,
            rgba(30, 41, 59, 0.92) 35%,
            rgba(51, 65, 85, 0.30) 65%,
            rgba(71, 85, 105, 0.75) 100%), url('../assets/images/car-wash-detailing-station.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .hero-logo {
        margin-bottom: 4rem;
    }
}

@media (min-width: 992px) {
    .hero-logo {
        margin-bottom: 4rem;
    }
}

/* Hero Vectors */
.hero-vector {
    z-index: 5;
    pointer-events: none;
    opacity: 0.9;
}

.hero-vector-2 {
    top: 35%;
    right: 0;
    max-width: 204px;
}

.hero-vector-3 {
    bottom: 0;
    right: 10%;
    max-width: 308px;
}

.hero-vector-4 {
    top: 0;
    left: 20%;
    max-width: 292px;
}

.features-link .learn-more {
    font-size: 18px;
}

.features-link svg {
    width: 16px;
    height: 16px;
}

/* RTL Vector Positions */
html[dir="rtl"] .hero-vector-2 {
    right: auto;
    left: 0;
}

html[dir="rtl"] .hero-vector-3 {
    left: 10%;
    right: auto;
}

html[dir="rtl"] .hero-vector-4 {
    right: 20%;
    left: auto;
}

html[dir="rtl"] input[type="email"],
html[dir="rtl"] input[type="tel"] {
    direction: rtl;
}

@media (max-width: 768px) {
    .hero-vector {
        display: none !important;
    }
}

/* Optional: Gentle float animation (respects prefers-reduced-motion) */
@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-vector-2 {
        animation: floatY 7s ease-in-out infinite 0.5s;
    }

    .hero-vector-3 {
        animation: floatY 8s ease-in-out infinite 1s;
    }

    .hero-vector-4 {
        animation: floatY 7.5s ease-in-out infinite 1.5s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-vector {
        animation: none !important;
    }
}

/* ===== Post-Hero Navigation Bar ===== */
.post-hero-nav {
    background: rgba(21, 29, 48, 1);
    z-index: 1020;
    padding: 32px 0;
}

.post-hero-nav .row {
    justify-content: space-between;
}

.post-hero-nav .col {
    flex: 1;
    min-width: 0;
}

@media (max-width: 575.98px) {
    .post-hero-nav .btn {
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem;
        white-space: nowrap;
    }

    .post-hero-nav .logo-small {
        width: 40px;
        height: 40px;
    }

    .post-hero-nav .gap-2 {
        gap: 0.5rem !important;
    }
}

/* ===== Features Section ===== */
#features {
    scroll-margin-top: 100px;
}

@media (max-width: 575.98px) {
    #features {
        scroll-margin-top: 90px;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    width: 100%;
}

.icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(57, 128, 244, 0.1);
    transition: all 0.3s ease;
}

.feature-card .feature-card-title {
    font-weight: 400;
    font-size: 16px;
    color: #1A1A1A;
}

/* Features section spacing - responsive gaps */
#features .row {
    row-gap: 1.5rem;
}

/* Mobile & Tablet: Force single column stacking */
@media (max-width: 991.98px) {
    #features .row {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    #features .row>.col-12,
    #features .row>.col-md-6,
    #features .row>.col-lg-4,
    #features .row>[class*="col-"] {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    #features .row>[class*="col-"]:last-child {
        margin-bottom: 0 !important;
    }

    .feature-card {
        padding: 1rem;
        height: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
    }
}

/* Tablet breakpoint removed - now using single column up to 992px */

/* Desktop: 3 columns, last 2 centered */
@media (min-width: 992px) {
    #features .row {
        row-gap: 2rem;
        align-items: stretch;
    }

    /* Center the last 2 items on desktop */
    #features .row.justify-content-lg-center {
        justify-content: center;
    }

    #features .row>[class*="col-"] {
        display: flex;
    }

    .feature-card {
        width: 100%;
        height: 100%;
    }
}

.icon-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, .18);
}

/* ===== How It Works Section ===== */
.step-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    width: 100%;
}

#how .row {
    margin-bottom: 4rem;
}

#how .row:last-child {
    margin-bottom: 0;
}

#how .how-title {
    font-size: 20px;
    font-weight: 500;
}

.step-img:hover {
    transform: translateY(-4px);
}

/* Mobile: Image always on top */
@media (max-width: 991.98px) {
    #how .row>[class*="col-"]:first-child {
        order: 1;
    }

    #how .row>[class*="col-"]:last-child {
        order: 2;
    }

    #how .step-img {
        margin-bottom: 1.5rem;
    }
}

.custom-step {
    background: rgba(0, 168, 107, 0.1);
    color: rgba(0, 168, 107, 1);
    padding: 6px 16px;
    border-radius: 5rem;
    font-weight: 400;
    font-size: 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-title {
    font-size: 16px;
    font-weight: 500;
}

/* ===== Form Styles ===== */
.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 .25rem rgba(37, 99, 235, .2)
}

form .form-control {
    padding: .7rem .75rem !important;
    border-radius: 10px !important;
    transition: all 0.2s ease-in-out;
}

form .form-control::placeholder {
    color: rgba(81, 81, 81, 0.5) !important;
    opacity: 1;
}

form .form-control::-webkit-input-placeholder {
    color: rgba(81, 81, 81, 0.5) !important;
    opacity: 1;
}

form .form-control::-moz-placeholder {
    color: rgba(81, 81, 81, 0.5) !important;
    opacity: 1;
}

form .form-control:-ms-input-placeholder {
    color: rgba(81, 81, 81, 0.5) !important;
    opacity: 1;
}

form .form-label {
    color: #515151;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Phone Number Input Group Styling */
.input-group {
    border-radius: 10px;
    overflow: hidden;
}

.input-group .input-group-text {
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-right: none;
    color: #515151;
    font-weight: 500;
    padding: .7rem .75rem;
    border-radius: 10px 0 0 10px !important;
    transition: all 0.15s ease-in-out;
}

.input-group .form-control {
    border-left: none;
    border-radius: 0 10px 10px 0 !important;
}

.input-group:focus-within .input-group-text {
    border-color: #2563eb;
    z-index: 3;
}

.input-group .form-control:focus {
    border-left: 1px solid #2563eb;
    box-shadow: 0 0 0 .25rem rgba(37, 99, 235, .2);
    z-index: 2;
}

/* RTL Support */
html[dir="rtl"] .input-group .input-group-text {
    border-right: 1px solid #dee2e6;
    border-left: none;
    border-radius: 0 10px 10px 0 !important;
}

html[dir="rtl"] .input-group .form-control {
    border-right: none;
    border-left: 1px solid #dee2e6;
    border-radius: 10px 0 0 10px !important;
}

html[dir="rtl"] .input-group:focus-within .input-group-text {
    border-color: #2563eb;
}

html[dir="rtl"] .input-group .form-control:focus {
    border-right: 1px solid #2563eb;
    border-left: none;
}

form small {
    font-size: 13px;
    color: #515151;
}

#joinForm .form-label small.text-muted {
    font-family: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #5A5A5A !important;
}

/* Form Validation Error Messages */
#joinForm .invalid-feedback {
    display: none;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc3545;
    font-weight: 400;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#joinForm h6 {
    color: #151D30;
    font-weight: 600;
}


/* Password Input Group */
.password-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input-group .form-control {
    padding-right: 45px !important;
}

.password-input-group .form-control.is-invalid,
.password-input-group .form-control.is-valid {
    padding-right: 45px !important;
}

.password-input-group+.invalid-feedback {
    margin-top: 0.5rem;
}

.password-toggle-btn {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: color 0.15s ease-in-out;
    z-index: 5;
}

.password-toggle-btn:hover {
    color: #3980F4;
}

.password-toggle-btn:focus {
    outline: none;
    color: #3980F4;
}

.password-icon {
    width: 20px;
    height: 20px;
}

/* RTL Support for Password Toggle */
html[dir="rtl"] .password-input-group .form-control {
    padding-right: .75rem !important;
    padding-left: 45px !important;
}

html[dir="rtl"] .password-input-group .form-control.is-invalid,
html[dir="rtl"] .password-input-group .form-control.is-valid {
    padding-right: .75rem !important;
    padding-left: 45px !important;
}

html[dir="rtl"] .password-toggle-btn {
    right: auto;
    left: 12px;
}

#formMessage {
    border-radius: 10px;
}

/* Invalid Input States */
#joinForm .form-control.is-invalid,
#joinForm .form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background-color: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
    background-image: none;
}

#joinForm .form-control.is-invalid:focus,
#joinForm .form-control:invalid:not(:placeholder-shown):focus {
    border-color: #dc3545;
    background-color: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

/* Valid Input States */
#joinForm .form-control.is-valid,
#joinForm .form-control:valid:not(:placeholder-shown) {
    border-color: #198754;
    background-color: #f0fff4;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.1);
    background-image: none;
}

#joinForm .form-control.is-valid:focus,
#joinForm .form-control:valid:not(:placeholder-shown):focus {
    border-color: #198754;
    background-color: #f0fff4;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

/* Input Group Validation States - Invalid */
#joinForm .input-group .form-control.is-invalid,
#joinForm .input-group .form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background-color: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.1);
}

#joinForm .input-group .form-control.is-invalid:focus,
#joinForm .input-group .form-control:invalid:not(:placeholder-shown):focus {
    border-color: #dc3545;
    background-color: #fff5f5;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

#joinForm .input-group:has(.form-control.is-invalid) .input-group-text,
#joinForm .input-group:has(.form-control:invalid:not(:placeholder-shown)) .input-group-text{
    border-color: #dc3545;
    background-color: #fff5f5;
}

/* Input Group Validation States - Valid */
#joinForm .input-group .form-control.is-valid,
#joinForm .input-group .form-control:valid:not(:placeholder-shown) {
    border-color: #198754;
    background-color: #f0fff4;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.1);
}

#joinForm .input-group .form-control.is-valid:focus,
#joinForm .input-group .form-control:valid:not(:placeholder-shown):focus {
    border-color: #198754;
    background-color: #f0fff4;
    box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
}

#joinForm .input-group:has(.form-control.is-valid) .input-group-text,
#joinForm .input-group:has(.form-control:valid:not(:placeholder-shown)) .input-group-text,
#joinForm .input-group:has(.form-control:valid:focus) .input-group-text {
    border-color: #198754;
    background-color: #f0fff4;
}


#submitBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== Buttons ===== */
.btn-primary {
    background-color: #3980F4;
    border-radius: 12px;
    border-color: #3980F4;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(57, 128, 244, 0.4);
}

.btn-outline-light {
    border-radius: 12px;
    border-width: 2px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    color: #BDD5FB;
    border-color: #BDD5FB;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

.submit-btn {
    height: 56px;
    border-radius: 16px;
}

/* Prominent CTA size */
.btn-xxl {
    font-weight: 700;
    padding: 0.95rem 1.75rem;
    font-size: 1.05rem;
    border-radius: 16px;
}

@media (min-width: 992px) {
    .btn-xxl {
        padding: 1.1rem 2.25rem;
        font-size: 1.125rem;
    }
}

/* Sticky bar CTAs slightly larger than default */
.post-hero-nav .btn {
    padding: 5px 12px;
    font-weight: 500;
    font-size: 12px;
    border-radius: 8px;
}

/* Language Toggle */
.language-switcher {
    transition: all 0.2s ease;
    font-size: 12px;
    background: none;
    border: 0;
}

.language-switcher:hover {
    background: none;
}

.language-switcher svg {
    color: #BDD5FB;
}

.language-switcher #currentLang {
    color: #BDD5FB;
    font-size: 12px;
}

.language-switcher.dropdown-toggle::after {
    margin-left: 0;
    border-top-color: #BDD5FB;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: #BDD5FB;
    background-color: transparent;
    border-color: transparent;
}

.dropdown-menu {
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
    min-width: 140px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
    transition: all 0.15s ease;
}

.dropdown-item:hover {
    background-color: rgba(57, 128, 244, 0.1);
    color: #3980F4;
}

.dropdown-item:active {
    background-color: #3980F4;
    color: #fff;
}

/* ===== Footer ===== */
.footer {
    background: rgba(21, 29, 48, 1);
    padding: 55px 0;
}

.footer .brand {
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;

}

.footer .brand-tag {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    margin-top: 10px;
    display: block;
    color: #FFFFFFB2;
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #3980F4;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(57, 128, 244, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.scroll-to-top.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #2563eb;
    box-shadow: 0 6px 16px rgba(57, 128, 244, 0.5);
    transform: translateY(-2px);
}

.scroll-to-top:active {
    transform: translateY(0);
}

html[dir="rtl"] .scroll-to-top {
    right: auto;
    left: 30px;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    html[dir="rtl"] .scroll-to-top {
        right: auto;
        left: 20px;
    }
}

/* ===== Utility Overrides ===== */
.bg-light {
    background-color: #F5F7FA !important;
}

/* ===== Z-index Utilities ===== */
.z-index-10 {
    z-index: 10;
}

.z-index-1050 {
    z-index: 1050;
}

/* ===== Hero Content ===== */
.hero-content {
    z-index: 10;
}

.hero-content .btn {
    font-weight: 600;
}

.hero-title {
    font-weight: 700 !important;
    line-height: 1.2;
}

/* Override Bootstrap display classes for better mobile sizing */
.hero-title.display-4 {
    font-size: 2rem;
}

@media (min-width: 576px) {
    .hero-title.display-4 {
        font-size: 2.5rem;
    }
}

@media (min-width: 768px) {
    .hero-title.display-md-3 {
        font-size: 3rem;
    }
}

@media (min-width: 992px) {
    .hero-title.display-md-3 {
        font-size: 42px;
    }
}

.hero-lead {
    line-height: 1.7;
    font-size: 18px;
    font-weight: 400;
}

/* ===== Logo Sizes ===== */
.logo-small {
    width: 50px;
    height: 50px;
}

/* ===== Max Width Utilities ===== */
.max-w-920 {
    max-width: 100%;
}

.max-w-820 {
    max-width: 100%;
}

@media (min-width: 768px) {
    .max-w-920 {
        max-width: 920px;
    }

    .max-w-820 {
        max-width: 820px;
    }
}

.card img {
    aspect-ratio: 16/10;
    object-fit: cover
}

/* ===== Typography Enhancements ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
}

.display-3,
.display-4,
.display-5 {
    font-weight: 800;
    letter-spacing: -0.5px;
}

/* ===== Section Titles ===== */
section h2 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

@media (min-width: 768px) {
    section h2 {
        font-size: 2rem;
    }
}

section .text-secondary {
    color: #666666 !important;
    line-height: 1.7;
}

.section-intro {
    max-width: 920px;
    margin-inline: auto;
}

/* ===== Responsive Text Sizing ===== */

@media (min-width: 992px) {
    .display-4 {
        font-size: 3.5rem;
    }

    .display-3 {
        font-size: 4.5rem;
    }
}

/* ===== Mobile Optimizations ===== */
@media (max-width: 575.98px) {
    .btn-xxl {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .hero .btn-xxl {
        width: auto;
    }

    .hero .d-flex.gap-3 {
        gap: 0.75rem !important;
    }

    .hero .d-flex.gap-3 .btn {
        flex: 1;
        min-width: 0;
    }

    section.py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
    }

    .icon-circle img {
        width: 24px;
        height: 24px;
    }

    .custom-step {
        font-size: 13px;
        padding: 6px 14px;
    }

    form .form-control {
        padding: 0.6rem 0.75rem !important;
    }


    /* Fix gaps in How It Works section */
    #how .row {
        margin-bottom: 2rem !important;
    }

    #how .row:last-child {
        margin-bottom: 0 !important;
    }

    #how .mb-4 {
        margin-bottom: 2rem !important;
    }

    #how .mb-5 {
        margin-bottom: 2rem !important;
    }

    /* Reduce spacing in features section */
    #features .row {
        row-gap: 1.5rem !important;
    }

    #features .mb-5 {
        margin-bottom: 2rem !important;
    }

    /* Force single column on mobile and tablet */
    #features .row {
        display: flex !important;
        flex-direction: column !important;
    }

    #features .row>.col-12,
    #features .row>.col-md-6,
    #features .row>.col-lg-4,
    #features .row>[class*="col-"] {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100% !important;
        margin-bottom: 1.5rem !important;
    }
}

/* ===== Tablet Optimizations ===== */
@media (min-width: 576px) and (max-width: 991.98px) {
    .hero-logo {
        margin-bottom: 3rem;
    }

    /* Fix gaps on tablet */
    #how .row {
        margin-bottom: 3rem !important;
    }

    #how .mb-4 {
        margin-bottom: 3rem !important;
    }

    #how .mb-5 {
        margin-bottom: 3rem !important;
    }

    #features .mb-5 {
        margin-bottom: 2.5rem !important;
    }

    #features .row {
        row-gap: 1.75rem !important;
    }
}

/* ===== Responsive Image Handling ===== */
@media (max-width: 991.98px) {
    .step-img {
        margin-bottom: 0;
        margin-top: 1.5rem;
    }
}

@media (min-width: 992px) {
    .step-img {
        margin-bottom: 0;
    }
}

#contact .join-title {
    font-size: 32px;
    font-weight: 500;
    color: #515151;
    margin-bottom: 29px;
}

#contact .join-sub {
    font-size: 18px;
}

/* ===== Form Responsive Improvements ===== */
@media (max-width: 767.98px) {
    #joinForm .row.g-3 {
        --bs-gutter-y: 1rem;
    }

    #contact .mb-5 {
        margin-bottom: 2rem !important;
    }
}

/* ===== Container Responsive Padding ===== */
@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* ===== Prevent Horizontal Overflow ===== */
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Success Modal ===== */
.success-modal-content {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.success-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.success-modal-close:hover {
    opacity: 1;
}

.success-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-icon {
    width: 124px;
    height: 120px;
    max-width: 100%;
    height: auto;
}

.success-modal-title {
    font-weight: 700;
    color: #1e293b;
    font-size: 1.5rem;
}

.success-modal-message {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 575.98px) {
    .success-modal-content .modal-body {
        padding: 2rem 1.5rem !important;
    }

    .success-icon {
        width: 100px;
    }

    .success-modal-title {
        font-size: 1.25rem;
    }

    .success-modal-message {
        font-size: 0.9rem;
    }
}