





/* ===== RESET AND BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #2ecc71;
    --color-primary-dark: #27ae60;
    --color-black: #111111;
    --color-gray-dark: #333333;
    --color-gray: #666666;
    --color-gray-light: #f5f5f5;
    --color-white: #ffffff;
    --color-border: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-black);
    line-height: 1.6;
    background: var(--color-white);
}

.app-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER NAVIGATION ===== */
.site-header {
    background: var(--color-black);
    color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--color-white);
}

.brand-text {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.brand-accent {
    color: var(--color-primary);
}

/* ===== MOBILE SIDEBAR NAVIGATION ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Transform hamburger to X when sidebar is open */
body.sidebar-open .mobile-menu-toggle .toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

body.sidebar-open .mobile-menu-toggle .toggle-bar:nth-child(2) {
    opacity: 0;
}

body.sidebar-open .mobile-menu-toggle .toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #111111;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-nav {
    list-style: none;
    padding: 60px 0 20px;
    margin: 0;
}

.sidebar-nav .nav-item {
    width: 100%;
}

.sidebar-nav .nav-link {
    display: block;
    padding: 16px 24px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
}

.sidebar-nav .nav-link:hover {
    background: rgba(46, 204, 113, 0.1);
}

.sidebar-nav .nav-link.active {
    background: #2ecc71;
    color: #111111;
}

.sidebar-nav .nav-item-cta {
    margin-top: 20px;
    padding: 0 16px;
}

.sidebar-nav .nav-button {
    display: block;
    text-align: center;
    width: 100%;
    background: #2ecc71;
    color: #111111;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Desktop Navigation */
.primary-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(46, 204, 113, 0.15);
}

.nav-link.active {
    background: #2ecc71;
    color: #111111;
    font-weight: 600;
}

.nav-button {
    background: #2ecc71;
    color: #111111;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-button:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .primary-nav {
        display: none;
    }
}

/* ===== PAGE CONTENT ===== */
.page-content {
    flex: 1;
}

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--color-black) 0%, #1a1a1a 100%);
    color: var(--color-white);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(46, 204, 113, 0.08) 0%, transparent 70%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-highlight {
    color: var(--color-primary);
    display: block;
}

.hero-description {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-metrics {
    display: flex;
    gap: 40px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary);
}

.metric-label {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== BUTTONS ===== */
.btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-black);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(46, 204, 113, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-black);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

/* ===== FORMS ===== */
.escrow-form-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.form-title {
    color: var(--color-black);
    margin-bottom: 24px;
    font-size: 22px;
    font-weight: 600;
}

.escrow-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-weight: 600;
    color: var(--color-gray-dark);
    font-size: 14px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 12px 14px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.2s;
    font-family: var(--font-primary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.fee-display {
    background: var(--color-gray-light);
    padding: 18px;
    border-radius: 8px;
    margin: 10px 0;
}

.fee-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    color: var(--color-gray-dark);
}

.fee-total {
    font-weight: 700;
    color: var(--color-black);
    border-top: 2px solid var(--color-border);
    margin-top: 8px;
    padding-top: 12px;
    font-size: 18px;
}

.form-disclaimer,
.form-note {
    text-align: center;
    font-size: 13px;
    color: var(--color-gray);
    margin-top: 10px;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    padding: 80px 0;
    background: var(--color-gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    color: var(--color-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-gray);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.trust-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.trust-icon {
    margin-bottom: 20px;
}

.trust-title {
    color: var(--color-black);
    margin-bottom: 12px;
    font-size: 20px;
}

.trust-description {
    color: var(--color-gray);
    line-height: 1.6;
}

/* ===== PAGE SECTIONS ===== */
.page-section {
    padding: 60px 0;
}

.page-title {
    font-size: 40px;
    color: var(--color-black);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-subtitle {
    font-size: 18px;
    color: var(--color-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PROCESS FLOW ===== */
.process-flow {
    max-width: 800px;
    margin: 50px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.step-marker {
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-title {
    color: var(--color-black);
    margin-bottom: 10px;
    font-size: 22px;
}

.step-description {
    color: var(--color-gray);
    margin-bottom: 15px;
}

.step-details {
    list-style: none;
}

.step-details li {
    color: var(--color-gray-dark);
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.step-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: var(--color-gray-light);
    border-radius: 10px;
}

.cta-title {
    font-size: 24px;
    color: var(--color-black);
    margin-bottom: 10px;
}

.cta-description {
    color: var(--color-gray);
    margin-bottom: 25px;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.about-intro {
    font-size: 18px;
    color: var(--color-gray-dark);
    margin-bottom: 30px;
}

.about-subheading {
    color: var(--color-black);
    margin: 25px 0 15px;
    font-size: 20px;
}

.about-text {
    color: var(--color-gray);
    margin-bottom: 15px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.feature-item h4 {
    color: var(--color-black);
    margin-bottom: 5px;
}

.feature-item p {
    color: var(--color-gray);
    font-size: 14px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--color-gray-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--color-gray-dark);
    font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info-panel {
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
}

.contact-heading {
    color: var(--color-primary);
    margin-bottom: 30px;
    font-size: 22px;
}

.contact-method {
    margin-bottom: 30px;
}

.method-title {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 16px;
}

.method-detail {
    opacity: 0.9;
    line-height: 1.8;
}

.contact-form-panel {
    background: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.form-heading {
    color: var(--color-black);
    margin-bottom: 25px;
    font-size: 22px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 50px 0 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--color-primary);
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
}

.footer-text {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-badge {
    color: var(--color-primary);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #999;
    font-size: 14px;
}

/* ===== DESKTOP NAVIGATION ===== */
.primary-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(46, 204, 113, 0.15);
}

.nav-link.active {
    background: #2ecc71;
    color: #111111;
    font-weight: 600;
}

.nav-button {
    background: #2ecc71;
    color: #111111;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-button:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

/* ===== MOBILE SIDEBAR NAVIGATION ===== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.toggle-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: #111111;
    z-index: 999;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    overflow-y: auto;
}

.mobile-sidebar.active {
    right: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
}

.sidebar-close {
    color: #ffffff;
    font-size: 32px;
    cursor: pointer;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    line-height: 1;
    user-select: none;
    z-index: 1002;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-nav {
    list-style: none;
    padding: 20px 0;
    margin: 0;
}

.sidebar-nav .nav-item {
    width: 100%;
}

.sidebar-nav .nav-link {
    display: block;
    padding: 16px 24px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 16px;
}

.sidebar-nav .nav-link:hover {
    background: rgba(46, 204, 113, 0.1);
}

.sidebar-nav .nav-link.active {
    background: #2ecc71;
    color: #111111;
}

.sidebar-nav .nav-item-cta {
    margin-top: 20px;
    padding: 0 16px;
}

.sidebar-nav .nav-button {
    display: block;
    text-align: center;
    width: 100%;
    background: #2ecc71;
    color: #111111;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

/* Desktop Navigation */
.primary-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 10px 16px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 6px;
    font-size: 15px;
}

.nav-link:hover {
    background: rgba(46, 204, 113, 0.15);
}

.nav-link.active {
    background: #2ecc71;
    color: #111111;
    font-weight: 600;
}

.nav-button {
    background: #2ecc71;
    color: #111111;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

.nav-button:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .primary-nav {
        display: none;
    }
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h2 {
    color: var(--color-black);
    margin: 30px 0 15px;
    font-size: 24px;
}

.legal-content h3 {
    color: var(--color-gray-dark);
    margin: 20px 0 10px;
    font-size: 18px;
}

.legal-content p {
    color: var(--color-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: var(--color-gray);
}

.legal-content li {
    margin-bottom: 8px;
}

.last-updated {
    color: var(--color-gray);
    font-style: italic;
    margin-bottom: 30px;
}

.compliance-badge {
    display: inline-block;
    background: var(--color-primary);
    color: var(--color-black);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-right: 10px;
}

/* ===== JAVASCRIPT ENHANCEMENT STYLES ===== */

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

/* Fade-in animation for sections */
.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.5s ease-out forwards;
}

/* Staggered animations for grid items */
.trust-card,
.stat-card,
.feature-item {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

.trust-card:nth-child(1) {
    animation-delay: 0.1s;
}

.trust-card:nth-child(2) {
    animation-delay: 0.2s;
}

.trust-card:nth-child(3) {
    animation-delay: 0.3s;
}

.trust-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Form validation styles */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #e74c3c !important;
    background-color: rgba(231, 76, 60, 0.05);
}

.form-input.success,
.form-select.success,
.form-textarea.success {
    border-color: var(--color-primary) !important;
    background-color: rgba(46, 204, 113, 0.05);
}

.error-message {
    color: #e74c3c;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.success-message {
    color: var(--color-primary);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Loading spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--color-white);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner-dark {
    border-color: rgba(0, 0, 0, 0.1);
    border-top-color: var(--color-primary);
}

/* Toast notifications */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
}

.toast {
    background: var(--color-white);
    color: var(--color-black);
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 400px;
    animation: slideIn 0.3s ease-out;
    border-left: 4px solid var(--color-primary);
}

.toast.success {
    border-left-color: var(--color-primary);
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast.warning {
    border-left-color: #f39c12;
}

.toast.info {
    border-left-color: #3498db;
}

.toast-icon {
    font-size: 24px;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 4px;
}

.toast-message {
    font-size: 14px;
    color: var(--color-gray);
}

.toast-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--color-gray);
    padding: 0 5px;
}

/* Modal styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-white);
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--color-gray);
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
}

.modal-close:hover {
    background: var(--color-gray-light);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* Skeleton loading */
.skeleton {
    background: linear-gradient(90deg, var(--color-gray-light) 25%, #e8e8e8 50%, var(--color-gray-light) 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
    border-radius: 4px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 15px;
}

.skeleton-card {
    height: 200px;
    border-radius: 8px;
}

/* Tooltip */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltip-text {
    visibility: hidden;
    background: var(--color-black);
    color: var(--color-white);
    text-align: center;
    padding: 8px 12px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip .tooltip-text::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: var(--color-black) transparent transparent transparent;
}

.tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

/* Progress bar */
.progress-bar-container {
    width: 100%;
    height: 8px;
    background: var(--color-gray-light);
    border-radius: 4px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-bar {
    height: 100%;
    background: var(--color-primary);
    border-radius: 4px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: rgba(46, 204, 113, 0.2);
    color: var(--color-primary-dark);
}

.badge-warning {
    background: rgba(243, 156, 18, 0.2);
    color: #e67e22;
}

.badge-danger {
    background: rgba(231, 76, 60, 0.2);
    color: #c0392b;
}

.badge-info {
    background: rgba(52, 152, 219, 0.2);
    color: #2980b9;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-black);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Enhanced mobile menu */
@media (max-width: 768px) {
    .primary-nav {
        transition: all 0.3s ease;
    }

    .toast-container {
        top: 80px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 998;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    background: #20b859;
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

/* WhatsApp Tooltip */
.whatsapp-tooltip {
    position: fixed;
    bottom: 170px;
    right: 40px;
    background: var(--color-black);
    color: var(--color-white);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    white-space: nowrap;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--color-black);
}

.whatsapp-tooltip.visible {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp pulse animation */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }

    100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .whatsapp-tooltip {
        bottom: 145px;
        right: 30px;
        font-size: 12px;
        padding: 8px 14px;
    }
}

/* Adjust when back-to-top button is visible */
.whatsapp-float.with-back-to-top {
    bottom: 170px;
}

@media (max-width: 768px) {
    .whatsapp-float.with-back-to-top {
        bottom: 150px;
    }
}

/* ===== TRUST STRIP - AUTHENTIC DESIGN ===== */
.trust-strip {
    background: #1a1a1a;
    border-bottom: 1px solid #2a2a2a;
    padding: 0;
}

.trust-strip-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    min-height: 72px;
}

.trust-metric {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 20px;
    flex-shrink: 0;
}

.metric-icon {
    color: #2ecc71;
    opacity: 0.85;
    flex-shrink: 0;
}

.metric-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.metric-main {
    color: #e0e0e0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.2px;
    white-space: nowrap;
}

.metric-sub {
    color: #888;
    font-size: 12px;
    font-weight: 400;
    white-space: nowrap;
}

.trust-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, #3a3a3a, transparent);
    margin: 12px 0;
    flex-shrink: 0;
}

.trust-metric:hover .metric-icon {
    color: #2ecc71;
    opacity: 1;
}

.trust-metric:hover .metric-main {
    color: #ffffff;
}

/* Desktop - Static 3 items */
@media (min-width: 769px) {
    .trust-strip-inner {
        justify-content: space-around;
    }
}

/* Mobile - Horizontal scrolling with CSS duplication */
@media (max-width: 768px) {
    .trust-strip {
        overflow: hidden;
        position: relative;
    }

    .trust-strip-inner {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        min-height: 60px;
        width: max-content;
        animation: scrollTrust 20s linear infinite;
        padding: 0;
    }

    .trust-strip-inner::after {
        content: '';
        display: flex;
    }

    .trust-strip {
        --clone-count: 1;
    }

    .trust-metric {
        padding: 0 30px;
    }

    .trust-divider {
        margin: 12px 0;
    }

    .trust-strip:hover .trust-strip-inner {
        animation-play-state: paused;
    }
}

@keyframes scrollTrust {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== ENHANCEMENT STYLES ===== */

/* Live Activity Ticker */
.live-activity {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 20px 0;
    border-top: 1px solid rgba(46, 204, 113, 0.2);
    border-bottom: 1px solid rgba(46, 204, 113, 0.2);
}

.activity-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 12px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse-green 1.5s infinite;
}

@keyframes pulse-green {
    0% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.ticker-wrapper {
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    gap: 40px;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

.ticker-content:hover {
    animation-play-state: paused;
}

.ticker-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ticker-item::before {
    content: '●';
    color: #2ecc71;
    font-size: 8px;
    margin-right: 10px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced Form Card */
.escrow-form-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.escrow-form-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #2ecc71, #27ae60, #1a7a42, #2ecc71);
    border-radius: 18px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.escrow-form-card:hover::before {
    opacity: 0.15;
}

/* Trusted By Section */
.trusted-by {
    padding: 40px 0;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
}

.trusted-label {
    text-align: center;
    color: #666666;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 60px;
}

.partner-logo {
    color: #333333;
    font-weight: 600;
    opacity: 0.6;
    transition: opacity 0.3s;
    font-size: 18px;
    filter: grayscale(1);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0);
    color: #2ecc71;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ticker-item {
        font-size: 12px;
    }

    .logo-grid {
        gap: 25px 30px;
    }

    .partner-logo {
        font-size: 16px;
    }
}

/* ===== COMPLETE RESPONSIVE DESIGN - ALL SCREEN SIZES ===== */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }

    .hero-title {
        font-size: 52px;
    }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-grid {
        gap: 30px;
    }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-grid {
        gap: 25px;
    }

    .escrow-form-card {
        padding: 20px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .about-grid,
    .contact-grid {
        gap: 30px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-metrics {
        justify-content: center;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step {
        text-align: left;
        gap: 20px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    .header-container {
        padding: 0 15px;
        min-height: 60px;
    }

    .brand-text {
        font-size: 20px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-content {
        text-align: center;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-metrics {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }

    .metric-item {
        text-align: center;
    }

    .metric-value {
        font-size: 24px;
    }

    .metric-label {
        font-size: 12px;
    }

    .escrow-form-card {
        padding: 18px 14px;
        border-radius: 12px;
    }

    .form-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .form-field {
        gap: 4px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-select,
    .form-textarea {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 6px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fee-display {
        padding: 12px;
    }

    .fee-row {
        font-size: 13px;
        padding: 4px 0;
    }

    .fee-total {
        font-size: 16px;
        margin-top: 6px;
        padding-top: 10px;
    }

    .btn {
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 6px;
    }

    .form-disclaimer {
        font-size: 11px;
    }

    .trust-section {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .trust-card {
        padding: 18px 14px;
    }

    .trust-icon {
        margin-bottom: 12px;
    }

    .trust-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .trust-description {
        font-size: 13px;
    }

    .page-section {
        padding: 40px 0;
    }

    .page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .page-subtitle {
        font-size: 14px;
    }

    .process-flow {
        margin-top: 30px;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        margin-bottom: 30px;
    }

    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .step-description {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .step-details {
        text-align: left;
    }

    .step-details li {
        font-size: 13px;
        padding: 4px 0 4px 18px;
    }

    .process-cta {
        margin-top: 30px;
        padding: 25px 15px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-description {
        font-size: 14px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .about-intro {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .about-subheading {
        font-size: 18px;
        margin: 20px 0 10px;
    }

    .about-text {
        font-size: 13px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 20px;
    }

    .feature-item h4 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .stat-card {
        padding: 20px;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 13px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-info-panel {
        padding: 25px 18px;
        border-radius: 10px;
    }

    .contact-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-method {
        margin-bottom: 20px;
    }

    .method-title {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .method-detail {
        font-size: 13px;
        line-height: 1.6;
    }

    .contact-form-panel {
        padding: 25px 18px;
        border-radius: 10px;
    }

    .form-heading {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .contact-form {
        gap: 14px;
    }

    .form-note {
        font-size: 11px;
    }

    .site-footer {
        padding: 35px 0 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 25px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer-text {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 12px;
        padding-top: 15px;
    }

    .legal-content {
        padding: 25px 15px;
    }

    .legal-content h2 {
        font-size: 20px;
        margin: 25px 0 12px;
    }

    .legal-content h3 {
        font-size: 16px;
        margin: 18px 0 8px;
    }

    .legal-content p {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .legal-content ul,
    .legal-content ol {
        margin: 10px 0 10px 20px;
    }

    .legal-content li {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .trust-metric {
        padding: 0 15px;
    }

    .metric-main {
        font-size: 12px;
    }

    .metric-sub {
        font-size: 10px;
    }

    .live-activity {
        padding: 12px 0;
    }

    .activity-header {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .ticker-item {
        font-size: 11px;
    }

    .trusted-by {
        padding: 30px 0;
    }

    .trusted-label {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .logo-grid {
        gap: 15px 25px;
    }

    .partner-logo {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 15px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }

    .back-to-top {
        width: 42px;
        height: 42px;
        bottom: 15px;
        right: 15px;
        font-size: 20px;
    }

    .toast-container {
        top: 70px;
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: auto;
        padding: 12px 14px;
    }

    .toast-icon {
        font-size: 20px;
    }

    .toast-title {
        font-size: 14px;
    }

    .toast-message {
        font-size: 12px;
    }
}

/* Height-based adjustments for very short screens */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 20px 0;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-description {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .escrow-form-card {
        padding: 15px;
    }
}

/* Print styles */
@media print {

    .site-header,
    .site-footer,
    .whatsapp-float,
    .back-to-top,
    .mobile-menu-toggle,
    .sidebar-overlay,
    .mobile-sidebar,
    .trust-strip,
    .live-activity,
    .hero-actions .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .container {
        max-width: 100%;
    }

    a {
        text-decoration: none;
        color: black;
    }
}

/* ===== SAMSUNG-STYLE DOTTED SHIELD LOADER ===== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.5s;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: contentAppear 0.4s ease-out;
}

@keyframes contentAppear {
    0% {
        opacity: 0;
        transform: scale(0.96);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Shield */
.loader-shield {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    animation: shieldFloat 2.5s ease-in-out infinite;
}

@keyframes shieldFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.shield-outline {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawShield 1.4s ease-out forwards;
}

@keyframes drawShield {
    0% {
        stroke-dashoffset: 200;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

.shield-check {
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.5s ease-out 0.9s forwards;
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: 30;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

/* Text */
.loader-text {
    margin-bottom: 24px;
}

.loader-brand {
    display: block;
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.3px;
    margin-bottom: 4px;
}

.loader-brand span {
    color: #2ecc71;
}

.loader-tagline {
    display: block;
    font-size: 11px;
    color: #666;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0;
    animation: taglineAppear 0.5s ease-out 0.7s forwards;
}

@keyframes taglineAppear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Samsung-Style Dotted Spinner */
.samsung-spinner {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
    animation: spinnerRotate 2s linear infinite;
}

@keyframes spinnerRotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.samsung-spinner .dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #2ecc71;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
    animation: dotFade 1.4s ease-in-out infinite;
}

.samsung-spinner .dot1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.samsung-spinner .dot2 {
    top: 12%;
    right: 12%;
    animation-delay: 0.175s;
}

.samsung-spinner .dot3 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.35s;
}

.samsung-spinner .dot4 {
    bottom: 12%;
    right: 12%;
    animation-delay: 0.525s;
}

.samsung-spinner .dot5 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0.7s;
}

.samsung-spinner .dot6 {
    bottom: 12%;
    left: 12%;
    animation-delay: 0.875s;
}

.samsung-spinner .dot7 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.05s;
}

.samsung-spinner .dot8 {
    top: 12%;
    left: 12%;
    animation-delay: 1.225s;
}

@keyframes dotFade {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(0.8);
        background: #2ecc71;
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
        background: #27ae60;
        box-shadow: 0 0 15px #2ecc71;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .loader-shield {
        width: 56px;
        height: 56px;
    }

    .loader-brand {
        font-size: 22px;
    }

    .loader-tagline {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .samsung-spinner {
        width: 36px;
        height: 36px;
    }

    .samsung-spinner .dot {
        width: 4px;
        height: 4px;
    }
}

/* ===== HUMAN-DESIGNED PAYMENT POPUP ===== */
.payment-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOverlay 0.2s ease;
}

@keyframes fadeOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.payment-popup-overlay.closing {
    animation: fadeOverlay 0.2s ease reverse;
}

.payment-popup {
    background: #ffffff;
    border-radius: 24px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
    animation: popupEnter 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(46, 204, 113, 0.15);
}

@keyframes popupEnter {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-header {
    padding: 22px 24px 12px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.popup-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.3px;
}

.popup-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.15s;
    margin-top: -4px;
    margin-right: -4px;
}

.popup-close:hover {
    background: #f5f5f5;
    color: #333;
}

.popup-body {
    padding: 0 24px 24px;
}

.payment-summary {
    background: #fafafa;
    border-radius: 16px;
    padding: 16px 18px;
    margin-bottom: 20px;
    border: 1px solid #eeeeee;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
}

.summary-label {
    font-size: 14px;
    color: #666;
    font-weight: 450;
}

.summary-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 500;
}

.summary-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #ddd, transparent);
    margin: 8px 0;
}

.summary-total {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px dashed #ccc;
}

.summary-total .summary-label {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

.summary-total .summary-value {
    font-size: 20px;
    font-weight: 700;
    color: #2ecc71;
}

.payment-note {
    background: #f0fdf4;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 24px;
    border-left: 3px solid #2ecc71;
}

.payment-note p {
    margin: 0 0 6px;
    color: #2d3748;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.5;
}

.payment-note .note-small {
    margin: 0;
    font-size: 13px;
    color: #4a5568;
    opacity: 0.85;
}

.popup-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-primary-pay {
    width: 100%;
    padding: 16px 20px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: -0.2px;
}

.btn-primary-pay:hover {
    background: #27ae60;
    transform: translateY(-1px);
    box-shadow: 0 8px 16px rgba(46, 204, 113, 0.2);
}

.btn-primary-pay:active {
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(46, 204, 113, 0.15);
}

.btn-secondary-pay {
    width: 100%;
    padding: 14px 20px;
    background: transparent;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-secondary-pay:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

/* Mobile */
@media (max-width: 480px) {
    .payment-popup {
        width: 95%;
        border-radius: 20px;
    }

    .popup-header {
        padding: 18px 20px 8px;
    }

    .popup-header h3 {
        font-size: 18px;
    }

    .popup-body {
        padding: 0 20px 20px;
    }

    .payment-summary {
        padding: 14px 16px;
    }

    .summary-value {
        font-size: 14px;
    }

    .summary-total .summary-value {
        font-size: 18px;
    }

    .btn-primary-pay,
    .btn-secondary-pay {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ===== TRACKING PAGE STYLES ===== */
.tracking-section {
    padding: 60px 0;
    min-height: 60vh;
}

.tracking-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #e0e0e0;
}

.tab-btn {
    padding: 12px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

.tab-btn.active {
    color: #2ecc71;
    border-bottom-color: #2ecc71;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.track-form {
    max-width: 500px;
    margin: 0 auto;
}

.track-input-group {
    display: flex;
    gap: 10px;
}

.track-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    text-transform: uppercase;
}

.track-input:focus {
    outline: none;
    border-color: #2ecc71;
}

.btn-track {
    padding: 14px 28px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-track:hover {
    background: #27ae60;
}

.track-hint {
    margin-top: 10px;
    font-size: 13px;
    color: #888;
}

.transaction-display {
    max-width: 700px;
    margin: 30px auto 0;
}

.transaction-details-card {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e8e8;
}

.transaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.transaction-header h3 {
    font-size: 20px;
    color: #111;
}

.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.status-secured {
    background: #fff3cd;
    color: #856404;
}

.status-awaiting {
    background: #cce5ff;
    color: #004085;
}

.status-delivered {
    background: #d4edda;
    color: #155724;
}

.status-released {
    background: #d1e7dd;
    color: #0f5132;
}

.status-disputed {
    background: #f8d7da;
    color: #842029;
}

.transaction-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
}

.info-value {
    font-size: 16px;
    font-weight: 500;
    color: #111;
}

.action-section {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.role-indicator {
    margin-bottom: 15px;
    font-weight: 500;
    color: #555;
}

.auth-input-group {
    margin-bottom: 15px;
}

.auth-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.auth-input-wrapper {
    display: flex;
    gap: 10px;
}

.auth-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 18px;
    text-align: center;
    letter-spacing: 4px;
    font-weight: 600;
}

.auth-input:focus {
    outline: none;
    border-color: #2ecc71;
}

.btn-release-funds {
    padding: 14px 24px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-release-funds:hover {
    background: #27ae60;
}

.btn-mark-shipped {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-mark-shipped:hover {
    background: #2980b9;
}

.btn-dispute {
    width: 100%;
    padding: 14px;
    background: none;
    color: #e74c3c;
    border: 1px solid #e74c3c;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 10px;
    transition: all 0.2s;
}

.btn-dispute:hover {
    background: #e74c3c;
    color: white;
}

.completion-message {
    text-align: center;
    color: #27ae60;
    font-weight: 500;
    padding: 10px;
}

/* Auth Code Popup */
.auth-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-popup {
    background: #fff;
    border-radius: 20px;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: popupEnter 0.25s ease;
}

.auth-popup-header {
    padding: 25px 25px 15px;
    text-align: center;
}

.auth-popup-header h3 {
    font-size: 22px;
    color: #111;
    margin: 0;
}

.auth-popup-body {
    padding: 0 25px 25px;
}

.auth-code-display {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    text-align: center;
}

.auth-code-main {
    background: #f0fdf4;
    border: 2px dashed #2ecc71;
}

.auth-label {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-value {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    letter-spacing: 1px;
}

.auth-value-large {
    font-size: 42px;
    font-weight: 700;
    color: #2ecc71;
    letter-spacing: 8px;
}

.auth-warning {
    background: #fefce8;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #ca8a04;
}

.auth-warning p {
    margin-bottom: 8px;
    font-size: 13px;
    color: #854d0e;
}

.auth-warning p:last-child {
    margin-bottom: 0;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-auth-primary {
    padding: 16px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-auth-primary:hover {
    background: #27ae60;
}

.btn-auth-secondary {
    padding: 14px;
    background: #f5f5f5;
    color: #444;
    border: none;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-auth-secondary:hover {
    background: #e8e8e8;
}

/* SMS Preview */
.sms-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sms-preview {
    background: #fff;
    border-radius: 16px;
    max-width: 380px;
    width: 90%;
}

.sms-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    font-weight: 500;
    color: #333;
}

.sms-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.sms-body {
    padding: 20px;
}

.sms-bubble {
    background: #e8f5e9;
    padding: 18px;
    border-radius: 16px;
    margin-bottom: 15px;
}

.sms-sender {
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.sms-text {
    font-size: 14px;
    color: #111;
    margin-bottom: 5px;
}

.sms-note {
    font-size: 12px;
    color: #888;
    text-align: center;
}

@media (max-width: 768px) {
    .track-input-group {
        flex-direction: column;
    }

    .btn-track {
        width: 100%;
    }

    .transaction-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .auth-input-wrapper {
        flex-direction: column;
    }

    .btn-release-funds {
        width: 100%;
    }
}

/* ===== VERIFICATION SECTION ===== */
.verification-section {
    max-width: 500px;
    margin: 20px auto;
}

.verify-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.verify-card h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.verify-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.verify-input-group {
    display: flex;
    gap: 10px;
}

.verify-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
}

.verify-input:focus {
    outline: none;
    border-color: #2ecc71;
}

.btn-verify {
    padding: 14px 24px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.btn-verify:hover {
    background: #27ae60;
}

.verify-hint {
    margin-top: 12px;
    font-size: 12px;
    color: #888;
}

/* ===== RESEND LINK BUTTON ===== */
.btn-resend-link {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 10px;
}

.btn-resend-link:hover {
    background: #2980b9;
}

.link-hint {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}

.btn-verify-prompt {
    width: 100%;
    padding: 14px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

.btn-verify-prompt:hover {
    background: #27ae60;
}

/* Info message for seller after shipping */
.info-message {
    background: #f0fdf4;
    border-radius: 10px;
    padding: 16px;
    text-align: center;
    color: #2ecc71;
    font-weight: 500;
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* ===== PAYOUT SETTINGS SECTION ===== */
.payout-settings-section {
    max-width: 500px;
    margin: 20px auto;
}

.payout-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #e8e8e8;
}

.payout-card h3 {
    font-size: 18px;
    color: #111;
    margin-bottom: 10px;
}

.payout-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.payout-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.payout-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    transition: all 0.2s;
}

.payout-option:hover {
    border-color: #2ecc71;
    background: #f0fdf4;
}

.payout-option input[type="radio"] {
    accent-color: #2ecc71;
    width: 18px;
    height: 18px;
}

.option-text {
    font-weight: 500;
    color: #333;
}

.payout-field {
    margin-bottom: 18px;
}

.payout-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
    font-size: 14px;
}

.payout-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.payout-input:focus {
    outline: none;
    border-color: #2ecc71;
}

.btn-payout-save {
    width: 100%;
    padding: 16px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 10px;
}

.btn-payout-save:hover {
    background: #27ae60;
}

.payout-hint {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 10px;
}

.btn-payout-settings {
    width: 100%;
    padding: 14px;
    background: #f0f0f0;
    color: #444;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-payout-settings:hover {
    background: #e8e8e8;
}







/* ===== OTP POPUP STYLES ===== */
.otp-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeOverlay 0.2s ease;
}

.otp-popup-overlay.closing {
    animation: fadeOverlay 0.2s ease reverse;
}

.otp-popup {
    background: #ffffff;
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: popupEnter 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.otp-header {
    padding: 20px 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.otp-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
}

.otp-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.otp-close:hover {
    background: #f5f5f5;
    color: #333;
}

.otp-body {
    padding: 20px 24px 24px;
    text-align: center;
}

.otp-instruction {
    color: #555;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.otp-input-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.otp-digit {
    width: 48px;
    height: 56px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
}

.otp-digit:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
}

.otp-error {
    color: #e74c3c;
    font-size: 13px;
    margin-bottom: 12px;
    text-align: center;
}

.otp-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.btn-otp-verify {
    width: 100%;
    padding: 14px 20px;
    background: #2ecc71;
    color: #111;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-otp-verify:hover {
    background: #27ae60;
}

.btn-otp-resend {
    width: 100%;
    padding: 12px 20px;
    background: transparent;
    color: #666;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-otp-resend:hover {
    background: #f5f5f5;
    border-color: #ccc;
    color: #333;
}

.otp-expiry {
    font-size: 11px;
    color: #999;
    margin: 0;
}

@media (max-width: 480px) {
    .otp-popup {
        width: 95%;
    }

    .otp-digit {
        width: 42px;
        height: 50px;
        font-size: 22px;
    }

    .otp-input-group {
        gap: 8px;
    }
}