/* ==========================================================================
   CSS DESIGN SYSTEM - RÉSIDENCE MARBELLA CALLBACK PAGE
   ========================================================================== */

:root {
    /* Colors */
    --color-primary: #207895;
    --color-primary-dark: #175a70;
    --color-secondary: #cce2ea;
    --color-dark-bg: #13222f;
    --color-dark-text: #1a2b37;
    --color-light-bg: #f4fafc;
    --color-border: #ebebeb;
    
    /* CTA Colors */
    --cta-amber-500: #e2932e;
    --cta-amber-700: #a9650f;
    --cta-sand-50: #fbf3e7;
    
    /* WhatsApp Colors */
    --color-whatsapp: #25d366;
    --color-whatsapp-dark: #128c7e;
    
    /* Layout */
    --header-height: 80px;
    --border-radius-lg: 24px;
    --border-radius-md: 12px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    font-family: 'Poppins', 'Roboto', sans-serif;
    color: var(--color-dark-text);
    background-color: #ffffff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   NAVBAR & HAMMERMENU
   ========================================================================== */
.topnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.topnav .container-fluid {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topnav .logo a {
    display: flex;
    align-items: center;
    height: 48px;
}

.topnav .logo img {
    height: 100%;
    max-height: 48px;
    width: auto;
    object-fit: contain;
}

/* Logo toggling */
.topnav .logo .mobile-logo {
    display: none;
}

/* Hamburger menu button */
.menu-icon {
    background: none;
    border: none;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    position: relative;
}

.menu-icon .icon {
    width: 24px;
    height: 16px;
    position: relative;
    display: block;
}

.menu-icon .icon i {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    left: 0;
    transition: var(--transition-smooth);
}

.menu-icon .icon i:first-child {
    top: 0;
}

.menu-icon .icon i:last-child {
    bottom: 0;
}

/* Burger Open State Animation */
body.menu-open .menu-icon .icon i:first-child {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .menu-icon .icon i:last-child {
    transform: translateY(-7px) rotate(-45deg);
}

/* Slide-down Drawer */
.hamenu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 0;
    background-color: var(--color-primary);
    z-index: 999;
    overflow: hidden;
    transition: height 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body.menu-open .hamenu {
    height: calc(100vh - var(--header-height));
    overflow-y: auto;
}

.hamenu-container {
    padding: 40px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.hamenu-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.menu-links-col {
    flex: 1 1 500px;
}

.cont-info-col {
    flex: 1 1 300px;
}

.main-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.main-menu .menu-item a {
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.main-menu .menu-item a:hover {
    color: var(--color-secondary);
    transform: translateX(8px);
}

.cont-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
    color: #ffffff;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
    padding-left: 30px;
}

.cont-info .item h6 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-secondary);
    margin-bottom: 5px;
}

.cont-info .item p, .cont-info .item a {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.6;
}

.cont-info .item a.itin-link {
    display: inline-block;
    margin-top: 5px;
    font-size: 13px;
    color: var(--color-secondary);
    font-weight: 600;
}

.cont-info .item a.itin-link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   PAGE LAYOUT & CONTAINER
   ========================================================================== */
.page-content-wrapper {
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 80px;
    min-height: calc(100vh - 120px);
    background-color: var(--color-light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-content-wrapper .container {
    width: 90%;
    max-width: 520px;
    margin: 0 auto;
}

.hero-header {
    margin-bottom: 35px;
}

.hero-header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--color-dark-bg);
    margin-bottom: 12px;
}

.hero-header .subtitle {
    font-size: 14px;
    color: #556b7c;
    line-height: 1.6;
}

/* ==========================================================================
   CARD & FORM STYLING
   ========================================================================== */
.card-form-wrapper {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 40px rgba(16, 32, 46, 0.08);
    border: 1px solid rgba(32, 120, 149, 0.08);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.form-container, .success-container {
    padding: 40px 30px;
}

.form-group {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.input-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #4a5c6a;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Segmented Control for Civility */
.gender-segmented-control {
    display: flex;
    background-color: #f1f5f8;
    padding: 4px;
    border-radius: 12px;
    border: 1px solid #e1e7ec;
    height: 48px;
}

.segment-option {
    flex: 1;
    cursor: pointer;
    position: relative;
    display: flex;
}

.segment-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.segment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-weight: 600;
    font-size: 14px;
    color: #5d7182;
    border-radius: 8px;
    transition: var(--transition-smooth);
    user-select: none;
}

.segment-option input:checked + .segment-button {
    background-color: var(--color-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(32, 120, 149, 0.2);
}

/* Inputs with Icons */
.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon input {
    width: 100%;
    height: 48px;
    padding: 10px 16px 10px 44px;
    border: 1.5px solid #d2dbe2;
    border-radius: var(--border-radius-md);
    font-size: 14.5px;
    color: var(--color-dark-bg);
    outline: none;
    font-family: inherit;
    transition: var(--transition-smooth);
    background-color: #fafbfc;
}

.input-with-icon input::placeholder {
    padding-left: 6px;
}

.input-with-icon input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(32, 120, 149, 0.1);
    background-color: #ffffff;
}

.input-with-icon .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #8c9da9;
    font-size: 16px;
    transition: var(--transition-smooth);
    pointer-events: none;
}

.input-with-icon input:focus ~ .input-icon {
    color: var(--color-primary);
}

/* intl-tel-input specific overrides */
.iti {
    width: 100%;
}

.iti__flag-container {
    padding-left: 6px;
}

/* Form Errors */
.error-msg {
    display: none;
    font-size: 12px;
    color: #e03c3c;
    margin-top: 6px;
    font-weight: 500;
}

.form-group.has-error input {
    border-color: #e03c3c;
    background-color: #fff9f9;
}

.form-group.has-error input:focus {
    box-shadow: 0 0 0 4px rgba(224, 60, 60, 0.1);
}

.form-group.has-error .error-msg {
    display: block;
}

/* Submit Button styling matching the custom buttonizer premium look */
.submit-btn {
    width: 100%;
    height: 56px;
    border: none;
    border-radius: var(--border-radius-md);
    cursor: pointer;
    outline: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cta-amber-500), var(--cta-amber-700));
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 12px 24px -10px rgba(169, 101, 15, 0.5),
        0 2px 6px rgba(16, 32, 46, 0.2);
    transition: var(--transition-smooth);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 18px 30px -10px rgba(169, 101, 15, 0.6),
        0 3px 8px rgba(16, 32, 46, 0.3);
}

.submit-btn:active {
    transform: translateY(1px);
    box-shadow: 
        0 4px 10px -5px rgba(169, 101, 15, 0.6);
}

/* Button Loading state */
.submit-btn .btn-spinner {
    display: none;
    font-size: 18px;
}

.submit-btn.loading {
    pointer-events: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-spinner {
    display: block;
}

/* ==========================================================================
   SUCCESS SCREEN
   ========================================================================== */
.success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) both;
}

.success-icon-wrapper {
    position: relative;
    width: 90px;
    height: 90px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon-wrapper .success-icon {
    font-size: 56px;
    color: var(--color-whatsapp);
    z-index: 2;
    filter: drop-shadow(0 4px 8px rgba(37, 211, 102, 0.3));
}

.success-icon-wrapper .success-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.2);
    animation: pulseRing 2s ease-out infinite;
    z-index: 1;
}

.success-icon-wrapper .check-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 24px;
    height: 24px;
    background-color: var(--color-whatsapp-dark);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 2px solid #ffffff;
    z-index: 3;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.success-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-dark-bg);
    margin-bottom: 12px;
}

.success-text {
    font-size: 14.5px;
    color: #4a5c6a;
    line-height: 1.7;
    margin-bottom: 30px;
}

.success-text strong {
    color: var(--color-whatsapp-dark);
    font-weight: 600;
}

.reset-btn {
    background: none;
    border: 1px solid #d2dbe2;
    padding: 10px 20px;
    border-radius: var(--border-radius-md);
    color: #556b7c;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition-smooth);
}

.reset-btn:hover {
    background-color: #fafbfc;
    border-color: #b8c7d3;
    color: var(--color-dark-bg);
}

/* Utility visibility classes */
.hidden {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(0.9);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* ==========================================================================
   FOOTER STYLING
   ========================================================================== */
.site-footer {
    background-color: var(--color-dark-bg);
    color: #ffffff;
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1 1 300px;
}

.footer-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
}

.partner-logo {
    height: 110px;
    width: auto;
    max-width: 100%;
}

.contact-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
}

.contact-phone {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.contact-phone:hover {
    color: var(--color-secondary);
}

.itineraire-btn-wrapper {
    margin-top: 8px;
}

.itineraire-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-primary);
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.itineraire-btn:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(32, 120, 149, 0.3);
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
    margin-bottom: 25px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.agency-logo {
    height: 24px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition-smooth);
    vertical-align: middle;
}

.agency-logo:hover {
    opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE-FIRST)
   ========================================================================== */

/* ── Filter Toggle (mobile only) ── */
.filter-toggle-bar { display: none; max-width: 1100px; margin: 0 auto; padding: 0 5%; }

.filter-toggle-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    width: 100%; padding: 12px 0; margin-bottom: 12px;
    background: none; color: var(--color-primary); border: none;
    border-top: 2px solid var(--color-secondary); border-bottom: 2px solid var(--color-secondary);
    border-radius: 0; font-family: inherit; font-size: 13px; font-weight: 600;
    cursor: pointer; letter-spacing: 0.5px; text-transform: uppercase;
}
.filter-toggle-btn:active { opacity: 0.7; }
.filter-toggle-btn i { font-size: 12px; transition: transform 0.3s; }

.filter-active-dot {
    width: 8px; height: 8px; background: var(--color-cta); border-radius: 50%;
    display: inline-block; margin-left: 4px; flex-shrink: 0;
}

/* ── Prospect Cards (mobile only) ── */
.prospect-cards { display: none; }

@media (max-width: 767px) {
    .filter-toggle-bar { display: block; }
    .filter-panel { display: none; }
    .filter-panel.open { display: contents; }

    .prospects-table-wrapper > table,
    .prospects-table-wrapper > .prospects-table { display: none !important; }
    .prospect-cards { display: flex; flex-direction: column; gap: 12px; }

    .prospect-card {
        background: #ffffff;
        border-radius: 14px;
        padding: 16px;
        box-shadow: 0 2px 12px rgba(16,32,46,0.06);
        border: 1px solid rgba(32,120,149,0.06);
        cursor: pointer;
        transition: transform 0.15s ease, box-shadow 0.15s ease;
        position: relative;
    }
    .prospect-card:active { transform: scale(0.985); box-shadow: 0 1px 6px rgba(16,32,44,0.08); }

    .prospect-card .card-top {
        display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
    }
    .prospect-card .card-flag {
        flex-shrink: 0; font-size: 22px;
    }

    .prospect-card .card-name {
        flex: 1; font-size: 15px; font-weight: 400; color: var(--color-dark-text);
        line-height: 1.3;
    }
    .prospect-card .card-name.unread { font-weight: 400; }

    .prospect-card.card-uncontacted {
        background: #ffffff;
        border: 1px solid #e5ddd0;
    }

    .prospect-card.card-uncontacted::after {
        content: '';
        display: none;
    }

    .prospect-card .card-date {
        font-size: 11px; color: #8c9da9; white-space: nowrap; flex-shrink: 0;
    }

    .prospect-card .card-bottom {
        display: flex; align-items: center; justify-content: space-between;
        gap: 8px; margin-top: 4px; padding-left: 48px;
    }

    .prospect-card .card-phone {
        display: flex; align-items: center; gap: 5px;
        font-family: 'Roboto', monospace; font-size: 13px; color: #4a5c6a !important;
        -webkit-text-decoration: none !important; text-decoration: none !important;
    }
    .prospect-card .card-phone .fa-circle-check { color: #207895; font-size: 14px; }

    .prospect-card .card-country {
        display: flex; align-items: center; gap: 4px;
        font-size: 11px; color: #556b7c;
    }

    .prospect-card .card-status {
        display: inline-block; padding: 3px 10px; border-radius: 20px;
        font-size: 11px; font-weight: 600; white-space: nowrap;
    }

    /* ── Sort dropdown (mobile) ── */
    .mobile-sort-bar { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; padding: 0 5%; }
    .mobile-sort-bar label { font-size: 12px; font-weight: 600; color: #8c9da9; white-space: nowrap; }
    .mobile-sort-select {
        flex: 1 1 100%; height: 48px; padding: 0 32px 0 12px;
        border: 1.5px solid #d2dbe2; border-radius: 10px;
        font-family: inherit; font-size: 15px; font-weight: 500;
        color: var(--color-dark-text); background-color: #ffffff;
        outline: none; cursor: pointer; appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%238c9da9' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat; background-position: right 12px center;
    }
}

@media (min-width: 768px) {
    .prospect-cards { display: none !important; }
    .mobile-sort-bar { display: none !important; }
}

/* Up to Tablet portrait (Mobile overrides) */
@media (max-width: 767px) {
    .topnav .logo .main-logo {
        display: none;
    }
    
    .topnav .logo .mobile-logo {
        display: block;
    }
    
    .hamenu-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .cont-info {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        padding-left: 0;
        padding-top: 25px;
    }
    
    .main-menu .menu-item a {
        font-size: 20px;
    }
    
    .hero-header h1 {
        font-size: 26px;
    }
    
    .card-form-wrapper {
        border-radius: var(--border-radius-md);
    }
    
    .form-container, .success-container {
        padding: 30px 20px;
    }
    
    .footer-row {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .text-center-mobile {
        text-align: center !important;
        width: 100%;
    }
}

/* Tablet & Desktop */
@media (min-width: 768px) {
    .page-content-wrapper .container {
        max-width: 480px;
    }
}

/* ==========================================================================
   WHATSAPP VALIDATION LAYER STYLES
   ========================================================================== */

/* Step badge — "Étape 2 sur 2" */
.step-badge {
    display: inline-block;
    background-color: var(--color-light-bg);
    color: var(--color-primary);
    border: 1.5px solid var(--color-secondary);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    margin-bottom: 22px;
}

/* Numbered step list */
.wa-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
    background-color: var(--color-light-bg);
    border-radius: var(--border-radius-md);
    padding: 18px 20px;
    margin: 20px 0 26px;
    border: 1px solid var(--color-border);
    width: 100%;
}

.wa-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13.5px;
    color: #4a5c6a;
    line-height: 1.45;
}

.wa-step-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-primary);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Primary WhatsApp validation button */
.wa-validate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.25) inset,
        0 12px 28px -10px rgba(18, 140, 126, 0.55),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
    animation: waPulse 2.8s ease-in-out infinite;
}

.wa-validate-btn i {
    font-size: 22px;
}

.wa-validate-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 18px 36px -12px rgba(18, 140, 126, 0.65),
        0 3px 12px rgba(0, 0, 0, 0.15);
    animation: none;
}

.wa-validate-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Subtle hint line below WA button */
.wa-hint {
    font-size: 11.5px;
    color: #8c9da9;
    margin: 14px 0 24px;
}

.wa-hint i {
    font-size: 10px;
    color: var(--color-primary);
}

/* Pulsing scale animation for WA button */
@keyframes waPulse {
    0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4), 0 12px 28px -10px rgba(18, 140, 126, 0.55); }
    50%  { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0), 0 12px 28px -10px rgba(18, 140, 126, 0.55); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 12px 28px -10px rgba(18, 140, 126, 0.55); }
}

/* Server error banner */
.server-error-banner {
    background-color: #fff3f3;
    border: 1.5px solid #f5c6c6;
    color: #c0392b;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--border-radius-md);
    padding: 12px 16px;
    margin-bottom: 16px;
    text-align: left;
    line-height: 1.5;
}

@media (max-width: 767px) {
    .input-with-icon input,
    .iti__country-list .iti__country {
        font-size: 16px;
    }
    .submit-btn {
        min-height: 52px;
        font-size: 15px;
    }
    .segment-button {
        min-height: 44px;
    }
}
