/* PlatinumCredits - Clean Bank Aesthetic */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #ffffff;
    --off-white: #f8f9fa;
    --light-gray: #e9ecef;
    --border: #dee2e6;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --accent: #1a365d;
    --accent-light: #2c5282;
    --gold: #b8860b;
    --success: #198754;
    --error: #dc3545;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--off-white);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    background: var(--white);
    padding: 16px 40px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.logo-text .gold {
    color: var(--gold);
}

/* Header Right - How It Works Button */
.header-right {
    display: flex;
    align-items: center;
}

.how-it-works-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    color: var(--accent);
    border: 1px solid var(--border);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.how-it-works-btn:hover {
    background: var(--off-white);
    border-color: var(--text-secondary);
}

.how-it-works-btn .amex-logo {
    height: 20px;
    width: auto;
}

/* Card Images (kept for hero) */
.card-display {
    display: flex;
    gap: 12px;
}

.card-img {
    height: 48px;
    border-radius: 3px;
    box-shadow: var(--shadow);
}

/* Main */
main {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 24px;
    flex: 1;
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #1a365d 100%);
    padding: 40px 40px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
    color: var(--white);
}

.hero-text h1 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
    color: #ffffff;
}

.hero-tagline {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 24px;
    font-weight: 400;
    color: #ffffff;
}

.hero-steps {
    display: flex;
    gap: 32px;
}

.hero-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255,255,255,0.9);
}

.hero-step .step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
}

.hero-cards {
    position: relative;
    width: 280px;
    height: 170px;
    flex-shrink: 0;
}

.hero-card {
    position: absolute;
    width: 240px;
    border-radius: 6px;
    box-shadow: 0 16px 32px rgba(0,0,0,0.35);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.hero-card-back {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.hero-card-front {
    top: 16px;
    left: 35px;
    transform: rotate(4deg);
    z-index: 2;
}

/* Swapped state */
.hero-cards.swapped .hero-card-back {
    top: 16px;
    left: 35px;
    transform: rotate(4deg);
    z-index: 2;
}

.hero-cards.swapped .hero-card-front {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
    z-index: 1;
}

.hero-cards:hover .hero-card-back {
    transform: rotate(-12deg) translateX(-10px);
}

.hero-cards:hover .hero-card-front {
    transform: rotate(8deg) translateX(10px);
}

/* Section Title */
.section-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 24px;
}

.step-item details {
    margin-top: 6px;
    position: relative;
}

.step-item summary {
    font-size: 12px;
    color: var(--gold);
    cursor: pointer;
    list-style: none;
}

.step-item summary::-webkit-details-marker {
    display: none;
}

.step-item summary::after {
    content: ' ▾';
}

.step-item details[open] summary::after {
    content: ' ▴';
}

.step-item details span {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 6px;
    width: 180px;
    line-height: 1.4;
    text-align: center;
    background: var(--white);
    padding: 8px;
    border-radius: 6px;
    box-shadow: var(--shadow);
    z-index: 10;
}

.step {
    display: none;
}

.step.active {
    display: block;
    animation: slideIn 0.4s ease-out;
}

.step.exiting {
    animation: slideOut 0.2s ease-in forwards;
}

@keyframes slideIn {
    from { 
        opacity: 0; 
        transform: translateX(30px);
    }
    to { 
        opacity: 1; 
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from { 
        opacity: 1; 
        transform: translateX(0);
    }
    to { 
        opacity: 0; 
        transform: translateX(-30px);
    }
}

h1 {
    font-size: 28px;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 8px;
}

.amex-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.amex-logo {
    flex-shrink: 0;
}

/* Card Verification Hero */
.card-verify-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

.card-verify-cards {
    position: relative;
    width: 100px;
    height: 70px;
    flex-shrink: 0;
}

.verify-card {
    position: absolute;
    width: 80px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.verify-card-back {
    top: 0;
    left: 0;
    transform: rotate(-8deg);
}

.verify-card-front {
    top: 5px;
    left: 20px;
    transform: rotate(4deg);
}

.card-verify-text h1 {
    font-size: 22px;
    margin-bottom: 6px;
}

.card-verify-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Email Verification Hero */
.email-verify-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    margin-bottom: 32px;
}

.email-verify-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, #2d4a7c 100%);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(26, 54, 93, 0); }
}

.email-verify-icon svg {
    color: white;
    width: 36px;
    height: 36px;
}

.email-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 12px;
    flex-shrink: 0;
}

.email-icon-box svg {
    color: white;
}

.email-verify-text h1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.email-verify-text p {
    color: var(--text-secondary);
    font-size: 15px;
    margin: 0;
    line-height: 1.5;
}

.email-verify-text strong {
    color: var(--accent);
    font-weight: 600;
}

/* OTP Input Styling */
.otp-input {
    font-size: 28px !important;
    font-weight: 600 !important;
    letter-spacing: 8px !important;
    text-align: center !important;
    font-family: 'SF Mono', Consolas, 'Courier New', monospace !important;
}

.otp-input::placeholder {
    letter-spacing: 8px;
    opacity: 0.4;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    padding: 12px;
    margin-top: 8px;
    transition: color 0.2s;
}

.btn-link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.subtitle {
    color: var(--text-secondary);
    margin-bottom: 32px;
    font-size: 15px;
}

/* Bookings Grid */
.bookings-grid {
    display: grid;
    gap: 16px;
}

.booking-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.booking-card:hover {
    box-shadow: var(--shadow-lg);
}

.booking-card .booking-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.booking-card .hotel-badge {
    padding: 3px 6px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-card .hotel-badge img {
    height: 11px;
    width: auto;
}

.booking-card .hotel-badge-fhr {
    background: #333333;
}

.booking-card .hotel-badge-thc {
    background: #00175a;
}

.booking-card .location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.booking-card .location svg {
    color: var(--accent);
    flex-shrink: 0;
}

.booking-card .dates {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 13px;
}

.booking-card .dates svg {
    flex-shrink: 0;
    opacity: 0.6;
}

.booking-card .price {
    font-size: 24px;
    color: var(--success);
    font-weight: 700;
    margin-top: 16px;
}

.booking-card .price span {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Selected Preview */
.selected-booking-preview {
    margin-bottom: 24px;
}

.selected-booking-preview .booking-card {
    border: 2px solid var(--accent);
}

.selected-booking-preview .booking-card.selected-card {
    cursor: default;
}

.selected-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #166534;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    margin-top: 12px;
}

/* Cards */
.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    margin-top: 20px;
    box-shadow: var(--shadow);
}

.form-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

.form-card input[type="email"],
.form-card input[type="text"],
.form-card input[type="tel"],
.form-card input[type="number"],
.form-card input[type="date"],
.form-card input[type="url"],
.form-card input[type="password"],
.form-card select,
.form-card textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    margin-bottom: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-card input::placeholder {
    color: var(--text-secondary);
}

#card-element {
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
}

/* Dynamic Form Fields */
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-field .required-star {
    color: var(--error);
}

.form-field input,
.form-field select,
.form-field textarea {
    margin-bottom: 0;
}

.form-field .field-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.form-field .field-error {
    font-size: 12px;
    color: var(--error);
    margin-top: 4px;
}

/* Buttons */
.btn-primary {
    width: 100%;
    padding: 14px 28px;
    background: var(--accent);
    border: none;
    border-radius: 8px;
    color: var(--white);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
}

.btn-primary:hover {
    background: var(--accent-light);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-secondary {
    padding: 12px 24px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--off-white);
    border-color: var(--accent);
}

.btn-success {
    background: var(--success);
}

.btn-success:hover {
    background: #157347;
}

.btn-book {
    display: inline-flex;
    background: var(--gold);
}

.btn-book:hover {
    background: #9a7209;
}

.back-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.back-btn:hover {
    color: var(--accent);
}

/* Step Header */
.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    gap: 16px;
}

.step-header:has(:only-child) {
    justify-content: flex-end;
}

.step-indicator {
    font-size: 13px;
    color: var(--text-secondary);
}

.step-current {
    font-weight: 600;
    color: var(--accent);
}

/* Mini Booking Preview */
.selected-booking-mini {
    margin-bottom: 24px;
}

.mini-booking {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: var(--light-gray);
    border-radius: 8px;
    font-size: 13px;
}

.mini-location {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--text-primary);
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mini-location svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

.mini-dates {
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
}

.mini-payout {
    margin-left: auto;
    color: var(--success);
    white-space: nowrap;
    flex-shrink: 0;
}

.mini-payout strong {
    color: var(--success);
}

/* Verified Banner */
.verified-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 1px solid #86efac;
    border-radius: 12px;
    margin-bottom: 24px;
}

.verified-icon {
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.verified-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.verified-text strong {
    color: #166534;
    font-size: 15px;
}

.verified-text span {
    color: #15803d;
    font-size: 14px;
}

/* Booking Flow */
.booking-flow {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.booking-flow-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}

.flow-step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--light-gray);
    border-bottom: 1px solid var(--border);
}

.flow-step-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.flow-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.flow-step-content {
    padding: 20px;
}

.link-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 12px;
    margin-bottom: 0;
}

.link-fallback {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed var(--border);
}

.link-fallback summary {
    font-size: 13px;
    color: var(--accent);
    cursor: pointer;
}

.link-fallback summary:hover {
    text-decoration: underline;
}

/* Client Info in Flow */
.booking-flow .client-info-card {
    padding: 0;
    border: none;
    margin: 0;
}

.booking-flow .client-info-note {
    margin-top: 12px;
    margin-bottom: 0;
    padding: 0;
    background: none;
    border: none;
    font-size: 13px;
    color: var(--text-secondary);
}

/* Confirmation Form in Flow */
.confirmation-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.confirmation-form .form-field {
    margin-bottom: 0;
}

.confirmation-form input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.confirmation-form input[type="text"]:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.confirmation-form input::placeholder {
    color: var(--text-secondary);
}

.field-hint {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.field-hint a {
    color: var(--accent);
}

.btn-submit {
    margin-top: 8px;
}

@media (max-width: 480px) {
    .mini-booking {
        gap: 8px;
    }
    
    .mini-dates {
        display: none;
    }
    
    .step-header {
        flex-direction: row;
    }
    
    .verified-banner {
        padding: 14px 16px;
    }
    
    .verified-text strong {
        font-size: 14px;
    }
    
    .verified-text span {
        font-size: 13px;
    }
    
    .booking-flow-step {
        border-radius: 10px;
    }
    
    .flow-step-header {
        padding: 14px 16px;
        gap: 10px;
    }
    
    .flow-step-header h3 {
        font-size: 14px;
    }
    
    .flow-step-num {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
    
    .flow-step-content {
        padding: 16px;
    }
    
    .flow-step-content .btn-book {
        width: 100%;
        justify-content: center;
    }
    
    .confirmation-form input[type="text"] {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .file-upload-area {
        padding: 20px 16px;
    }
    
    .card-verify-hero {
        gap: 16px;
    }
    
    .card-verify-cards {
        width: 80px;
        height: 55px;
    }
    
    .verify-card {
        width: 65px;
    }
    
    .card-verify-text h1 {
        font-size: 18px;
    }
    
    .card-verify-text p {
        font-size: 13px;
    }
    
    .card-notice {
        font-size: 13px;
        padding: 12px 14px;
    }
    
    .email-verify-hero {
        gap: 14px;
    }
    
    .email-icon-box {
        width: 50px;
        height: 50px;
    }
    
    .email-icon-box svg {
        width: 24px;
        height: 24px;
    }
    
    .email-verify-text h1 {
        font-size: 18px;
    }
    
    .email-verify-text p {
        font-size: 13px;
    }
    
    .zelle-hero {
        gap: 14px;
    }
    
    .zelle-hero-logo {
        width: 40px;
        height: 40px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .zelle-hero-text h1 {
        font-size: 16px;
    }
    
    .zelle-hero-text p {
        font-size: 13px;
    }
    
    /* Card select info mobile */
    .card-select-info {
        padding: 14px 16px;
    }
    
    .card-select-info p {
        font-size: 14px;
    }
    
    .card-select-info .card-select-note {
        font-size: 12px;
    }
    
    /* Success state mobile */
    .success-state {
        padding: 40px 16px;
    }
    
    .checkmark {
        width: 64px;
        height: 64px;
        font-size: 32px;
    }
    
    .payment-info-box {
        flex-direction: column;
        gap: 8px;
        padding: 14px 16px;
        text-align: center;
    }
    
    .payment-info-text {
        text-align: center;
    }
    
    /* Confirmation upload box mobile */
    .confirmation-upload-box {
        padding: 16px;
    }
    
    .confirmation-instruction {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .confirmation-number-row {
        flex-direction: column;
    }
    
    .btn-submit-compact {
        width: 100%;
    }
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2px solid var(--white);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Messages */
.error-message {
    color: var(--error);
    font-size: 13px;
    margin-bottom: 16px;
    min-height: 18px;
}

.otp-sent-msg {
    color: var(--success);
    margin-bottom: 16px;
    font-weight: 500;
}

/* Full Booking Details */
.booking-full {
    background: var(--white);
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 32px;
    box-shadow: var(--shadow);
}

.booking-full .detail-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--light-gray);
}

.booking-full .detail-row:last-child {
    border-bottom: none;
}

.booking-full .detail-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.booking-full .detail-value {
    font-weight: 600;
    text-align: right;
    color: var(--text-primary);
}

/* Booking Instructions */
.booking-instructions {
    margin-top: 24px;
    padding: 24px;
    background: rgba(26, 54, 93, 0.04);
    border: 1px solid rgba(26, 54, 93, 0.1);
    border-radius: 12px;
}

.booking-instructions h3 {
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 16px;
}

.booking-instructions ol {
    padding-left: 20px;
}

.booking-instructions li {
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.alt-instruction {
    margin-top: 16px;
    padding: 12px;
    background: var(--bg-card);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary);
}

.alt-instruction a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    padding: 2px 6px;
    background: rgba(0, 108, 228, 0.1);
    border-radius: 4px;
}

.alt-instruction a:hover {
    text-decoration: underline;
    background: rgba(0, 108, 228, 0.15);
}

/* Card Select Info (Step 3 of booking flow) */
.card-select-info {
    background: #fefce8;
    border: 1px solid #fbbf24;
    border-radius: 10px;
    padding: 16px 20px;
}

.card-select-info p {
    margin: 0;
    font-size: 15px;
    color: var(--text);
    line-height: 1.5;
}

.card-select-info p strong {
    color: var(--gold-dark);
}

.card-select-info .card-select-note {
    margin-top: 8px;
    font-size: 13px;
    color: #92400e;
}

/* Confirmation Upload Box - Step 4 */
.confirmation-upload-box {
    background: #fffbeb;
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 20px;
}

.confirmation-instruction {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.confirmation-instruction svg {
    color: var(--gold-dark);
    flex-shrink: 0;
}

.confirmation-instruction span {
    font-size: 14px;
    color: var(--text);
    line-height: 1.4;
}

.confirmation-fallback {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 0 16px;
    text-align: center;
}

.confirmation-fallback a {
    color: var(--accent);
    text-decoration: none;
}

.confirmation-fallback a:hover {
    text-decoration: underline;
}

.confirmation-form-compact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.file-upload-compact {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.file-upload-compact:hover {
    border-color: var(--gold);
    background: #fefce8;
}

.file-upload-compact .file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.file-upload-compact .file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: var(--white);
}

.confirmation-number-row {
    display: flex;
    gap: 10px;
}

.confirmation-number-row input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}

.confirmation-number-row input:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-submit-compact {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
}

/* Success State */
.success-state {
    text-align: center;
    padding: 60px 20px;
    max-width: 480px;
    margin: 0 auto;
}

.success-subtitle {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.checkmark {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: white;
    margin: 0 auto 24px;
}

/* Payment Info Box */
.payment-info-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 24px;
    margin-bottom: 24px;
}

.payment-info-icon {
    color: var(--gold);
}

.payment-info-text {
    text-align: left;
}

.payment-info-text span {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
}

.payment-info-text strong {
    font-size: 16px;
    color: var(--text);
}

.confirmation-ref {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 16px 24px;
    border-radius: 8px;
    margin: 24px auto;
    font-family: 'SF Mono', Monaco, monospace;
    display: inline-block;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-secondary);
}

.empty-state p {
    font-size: 16px;
}

.empty-hint {
    font-size: 14px;
    margin-top: 8px;
    opacity: 0.7;
}

/* Client Info Card */
.client-info-card {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.client-info-card h3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
    color: var(--accent);
    font-size: 18px;
}

.client-info-note {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding: 10px 12px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 6px;
}

.copy-all-btn {
    font-size: 13px;
    color: var(--gold);
    cursor: pointer;
    font-weight: 500;
}

.copy-all-btn:hover {
    text-decoration: underline;
}

.copy-field {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.copy-field:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.copy-label {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.copy-value-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.copy-value {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    font-family: 'SF Mono', Monaco, Consolas, monospace;
}

.copy-btn {
    padding: 6px 14px;
    font-size: 13px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--accent-light);
}

.copy-btn.copied {
    background: var(--success);
}

/* Reference Images */
.reference-images {
    margin: 24px 0;
    padding: 20px;
    background: var(--off-white);
    border-radius: 12px;
}

.reference-images h3 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--text);
}

.reference-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.reference-images-grid a {
    display: block;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.reference-images-grid a:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.reference-images-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Link Fallback */
.link-fallback {
    margin: 20px 0;
    text-align: center;
}

.link-fallback summary {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    list-style: none;
}

.link-fallback summary::-webkit-details-marker {
    display: none;
}

.link-fallback summary:hover {
    color: var(--accent);
}

.fallback-content {
    margin-top: 16px;
    padding: 20px;
    background: var(--off-white);
    border-radius: 8px;
    text-align: left;
    font-size: 14px;
    line-height: 1.8;
}

.fallback-content p {
    margin-bottom: 8px;
}

.fallback-content strong {
    color: var(--accent);
}

.fallback-link {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.fallback-link:hover {
    background: var(--accent-light);
}

.fallback-intro {
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.fallback-steps {
    padding-left: 20px;
    margin: 0;
}

.fallback-steps li {
    margin-bottom: 12px;
    padding-left: 8px;
}

.fallback-steps .fallback-link {
    margin: 4px 0 8px;
}

/* Booking Link Section */
.booking-link-section {
    text-align: center;
    margin: 24px 0;
}

.link-hint {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Admin Fallback Section */
.fallback-section {
    margin: 24px 0;
    border: 1px dashed var(--border);
    border-radius: 8px;
    padding: 16px;
}

.fallback-section summary {
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    list-style: none;
}

.fallback-section summary::-webkit-details-marker {
    display: none;
}

.fallback-section summary::before {
    content: '⚠️ ';
}

.fallback-fields {
    margin-top: 16px;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
    font-size: 13px;
    border-top: 1px solid var(--border);
    background: var(--white);
    margin-top: auto;
}

/* ========== MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 400px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.2s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.modal-header {
    padding: 24px 24px 0;
    text-align: center;
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.modal-icon.success {
    background: rgba(25, 135, 84, 0.1);
    color: var(--success);
}

.modal-icon.error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
}

.modal-icon.info {
    background: rgba(26, 54, 93, 0.1);
    color: var(--accent);
}

.modal-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.modal-body {
    padding: 16px 24px 24px;
    text-align: center;
}

.modal-body p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.modal-footer {
    padding: 0 24px 24px;
    display: flex;
    gap: 12px;
}

.modal-footer .btn-primary,
.modal-footer .btn-secondary {
    flex: 1;
    padding: 12px 20px;
}

/* How It Works Modal */
.hiw-modal {
    max-width: 420px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-secondary);
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--text-primary);
}

.hiw-header {
    padding: 24px 24px 0;
    text-align: center;
}

.hiw-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent);
}

.hiw-body {
    padding: 24px;
}

.hiw-intro-simple {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.hiw-intro-simple strong {
    color: var(--success);
    font-weight: 600;
}

.hiw-steps-simple {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hiw-step-simple {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.hiw-step-simple .step-num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

.hiw-step-simple div strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    display: block;
    margin-bottom: 4px;
}

.hiw-step-simple div p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.hiw-footer {
    padding: 0 24px 24px;
    text-align: center;
}

.hiw-footer .btn-primary {
    min-width: 120px;
}

/* ========== ADMIN STYLES ========== */
.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.admin-header h1 {
    margin-bottom: 0;
}

.admin-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    background: var(--light-gray);
    padding: 4px;
    border-radius: 10px;
    width: fit-content;
}

.admin-tab {
    padding: 10px 20px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.admin-tab.active {
    background: var(--white);
    color: var(--accent);
    box-shadow: var(--shadow);
}

.admin-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.booking-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow);
}

.booking-item .booking-status {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.status-open {
    background: rgba(25, 135, 84, 0.1);
    color: var(--success);
}

.status-claimed {
    background: rgba(255, 193, 7, 0.15);
    color: #cc9a00;
}

.status-completed {
    background: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
}

.status-paid {
    background: rgba(102, 16, 242, 0.1);
    color: #6610f2;
}

.booking-item-actions {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-danger {
    background: var(--error);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
}

.btn-danger:hover {
    background: #bb2d3b;
}

/* Field Config Styles */
.field-config-list {
    margin-top: 16px;
}

.field-config-item {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
}

.field-config-item .field-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.field-config-item .field-name {
    font-weight: 600;
    color: var(--text-primary);
}

.field-config-item .field-type {
    font-size: 12px;
    color: var(--text-secondary);
}

.toggle-switch {
    position: relative;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border);
    border-radius: 24px;
    transition: 0.3s;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background-color: var(--success);
}

.toggle-switch input:checked + .toggle-slider:before {
    transform: translateX(20px);
}

/* ========== NEW FLOW STYLES ========== */

/* Price Breakdown in Booking Cards */
.booking-payout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* Locked Payout Section */
.booking-payout-locked {
    position: relative;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.payout-blur {
    display: flex;
    justify-content: space-between;
    align-items: center;
    filter: blur(6px);
    user-select: none;
    pointer-events: none;
}

.profit-amount-blur {
    font-size: 22px;
    font-weight: 700;
    color: var(--success);
}

.payout-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
}

.payout-overlay svg {
    color: var(--gold);
}

.profit-label {
    font-size: 14px;
    color: var(--text-secondary);
}

.profit-amount {
    font-size: 24px;
    font-weight: 700;
    color: var(--success);
}

.breakdown-toggle {
    margin-top: 12px;
}

.breakdown-toggle summary {
    font-size: 13px;
    color: var(--gold);
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.breakdown-toggle summary::-webkit-details-marker {
    display: none;
}

.breakdown-toggle summary:hover {
    text-decoration: underline;
}

.breakdown-toggle[open] summary {
    margin-bottom: 12px;
}

.btn-proceed {
    width: 100%;
    margin-top: 16px;
    padding: 14px 24px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-proceed:hover {
    background: var(--accent-light);
}

.price-breakdown {
    padding: 12px;
    background: var(--off-white);
    border-radius: 8px;
}

.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.breakdown-row.credit {
    color: var(--success);
}

.breakdown-row.total {
    padding-top: 12px;
    margin-top: 8px;
    border-top: 1px dashed var(--border);
    font-weight: 600;
    color: var(--text-primary);
}

.breakdown-row .payout {
    font-size: 20px;
    color: var(--success);
    font-weight: 700;
}

/* Breakdown Tooltip */
.with-tooltip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tooltip-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--border);
    color: var(--text-secondary);
    border: none;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

.tooltip-btn:hover {
    background: var(--accent);
    color: white;
}

/* Tooltip Modal Overlay */
#tooltip-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

#tooltip-overlay.active {
    display: flex;
}

.tooltip-modal {
    background: white;
    border-radius: 12px;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.tooltip-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--accent);
    color: white;
}

.tooltip-header strong {
    font-size: 14px;
}

.tooltip-header button {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.tooltip-body {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-primary);
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 12px;
}

.country-code-select {
    width: 110px;
    flex-shrink: 0;
}

.phone-input-group input {
    flex: 1;
}

/* Field Hints */
.field-hint {
    display: block;
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.required {
    color: var(--error);
}

/* Zelle Hero */
.zelle-hero {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.zelle-hero-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: #6d1ed4;
    padding: 14px;
    border-radius: 12px;
    flex-shrink: 0;
}

.zelle-hero-text h1 {
    font-size: 22px;
    margin-bottom: 4px;
}

.zelle-hero-text p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 0;
}

/* Zelle Notice */
.zelle-notice {
    background: var(--light-gray);
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--text-secondary);
    margin: 20px 0;
    line-height: 1.5;
}

/* Card Notice */
.card-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f0fdf4;
    border: 1px solid #86efac;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 14px;
    color: #166534;
    margin-bottom: 24px;
}

.card-notice svg {
    flex-shrink: 0;
    color: #22c55e;
}

.card-notice strong {
    color: #166534;
}

/* Verification Info */
.verification-info {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.verification-info p {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.verification-info strong {
    color: var(--text-primary);
}

/* Button Link */
.btn-link {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    margin-top: 16px;
    width: 100%;
    text-align: center;
}

.btn-link:hover {
    color: var(--accent);
}

.btn-link:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Large Booking Button */
.btn-large {
    padding: 18px 32px;
    font-size: 18px;
}

/* File Upload Area */
.file-upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: var(--accent);
    background: rgba(26, 54, 93, 0.02);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.file-upload-icon {
    color: var(--text-secondary);
}

.file-upload-area:hover .file-upload-icon,
.file-upload-area.dragover .file-upload-icon {
    color: var(--accent);
}

.file-upload-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.file-upload-hint {
    font-size: 13px;
    color: var(--text-secondary);
}

.file-preview {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--off-white);
    border-radius: 6px;
}

.file-name {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

.file-remove {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
}

.file-remove:hover {
    background: var(--light-gray);
    color: var(--error);
}

/* Form Divider */
.form-divider {
    display: flex;
    align-items: center;
    margin: 20px 0;
    color: var(--text-secondary);
    font-size: 13px;
}

.form-divider::before,
.form-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.form-divider span {
    padding: 0 16px;
}

/* Form Hint */
.form-hint {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Payment Destination */
.payment-dest {
    font-size: 18px;
    font-weight: 600;
    color: var(--accent);
    background: var(--off-white);
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-block;
    margin: 16px 0;
}

/* Responsive */
@media (max-width: 600px) {
    header {
        padding: 12px 16px;
    }
    
    .card-display {
        display: none;
    }
    
    main {
        padding: 24px 16px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    .booking-card {
        padding: 0;
        overflow: hidden;
    }
    
    .booking-card .booking-header {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 0;
        margin-bottom: 0;
    }
    
    .booking-card .booking-header > div {
        padding: 16px 16px 0;
    }
    
    .booking-card .hotel-badge {
        padding: 6px 10px;
        border-radius: 0;
        justify-content: flex-start;
    }
    
    .booking-card .hotel-badge img {
        height: 10px;
    }
    
    .booking-card .booking-payout {
        padding: 16px 16px 0;
    }
    
    .booking-card .breakdown-toggle {
        padding: 0 16px 16px;
    }
    
    .booking-card .btn-proceed {
        margin: 0 16px 16px;
        width: calc(100% - 32px);
    }
    
    .booking-full {
        padding: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal {
        margin: 20px;
    }
    
    .phone-input-group {
        flex-direction: column;
    }
    
    .country-code-select {
        width: 100%;
    }
    
    .steps-row {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-connector {
        width: 2px;
        height: 20px;
        margin: 0;
    }
    
    .hero {
        padding: 16px 16px;
    }
    
    .hero-content {
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: center;
    }
    
    .hero-text h1 {
        font-size: 18px;
        margin-bottom: 4px;
    }
    
    .hero-tagline {
        font-size: 13px;
        margin-bottom: 10px;
    }
    
    .hero-steps {
        flex-direction: row;
        gap: 12px;
        justify-content: flex-start;
    }
    
    .hero-step {
        font-size: 11px;
        gap: 4px;
    }
    
    .hero-step .step-num {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
    
    .hero-cards {
        width: 100px;
        height: 65px;
        flex-shrink: 0;
    }
    
    .hero-card {
        width: 85px;
        border-radius: 4px;
    }
    
    .hero-card-back {
        transform: rotate(-5deg);
    }
    
    .hero-card-front {
        top: 6px;
        left: 12px;
        transform: rotate(3deg);
    }
    
    .how-it-works-btn {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .how-it-works-btn .amex-logo {
        height: 16px;
    }
    
    .hiw-modal {
        margin: 12px;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .hiw-header {
        padding: 20px 20px 0;
    }
    
    .hiw-header h2 {
        font-size: 18px;
    }
    
    .hiw-body {
        padding: 20px;
    }
    
    .hiw-intro-simple {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hiw-steps-simple {
        gap: 18px;
    }
    
    .hiw-step-simple .step-num {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }
    
    .hiw-step-simple div strong {
        font-size: 14px;
    }
    
    .hiw-step-simple div p {
        font-size: 13px;
    }
    
    .hiw-footer {
        padding: 0 20px 20px;
    }
    
    .zelle-hero-logo {
        width: 40px;
        height: 40px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .zelle-hero-text h1 {
        font-size: 16px;
    }
}
