
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #FFFFFF;
    --primary-light: #F8F9FA;
    --primary-dark: #E9ECEF;
    --gold: #C8A96E;
    --gold-light: #D4BA85;
    --gold-dark: #A8894E;
    --bg: #FFFFFF;
    --bg-dark: #FFFFFF;
    --card-bg: #FFFFFF;
    --card-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --text: #1A1A2E;
    --text-light: #6B7280;
    --text-white: #1A1A2E;
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --border: #E5E7EB;
    --accent: #1B3A5C;
    --gradient-primary: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
    --gradient-gold: linear-gradient(135deg, #C8A96E 0%, #D4BA85 50%, #A8894E 100%);
    --gradient-dark: linear-gradient(135deg, #FFFFFF 0%, #F8F9FA 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* Page transitions */
.page {
    display: none;
    min-height: 100vh;
    animation: fadeIn 0.6s ease-out;
}

.page.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile: ensure all pages center content */
@media (max-width: 768px) {
    .page.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 0 12px;
    }

    .landing-content,
    .selection-content,
    .form-content,
    .otp-content,
    .review-content,
    .copy-message-content,
    .success-content {
        width: 100%;
        max-width: 100%;
        padding: 20px 8px;
        margin: 0 auto;
    }
}

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

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

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

@keyframes checkmark {
    0% { stroke-dashoffset: 50; }
    100% { stroke-dashoffset: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(200, 169, 110, 0.3); }
    50% { box-shadow: 0 0 40px rgba(200, 169, 110, 0.6); }
}

@keyframes dotPulse {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

@keyframes borderGlow {
    0%, 100% { border-color: var(--gold); }
    50% { border-color: var(--gold-light); }
}

/* ==================== LANDING PAGE ==================== */
.landing-page {
    background: #FFFFFF;
    position: relative;
}

.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(200, 169, 110, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(200, 169, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.landing-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out;
}

.bank-logo {
    width: 280px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.logo-text {
    font-size: 1.4rem;
    color: var(--gold);
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

/* Hero Image */
.hero-image-container {
    margin: 30px auto 40px;
    animation: slideUp 1s ease-out;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 700px;
    height: 350px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(200, 169, 110, 0.3);
}

.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(180deg, transparent 50%, rgba(10, 22, 40, 0.8) 100%);
    pointer-events: none;
}

/* Offer Card */
.offer-card {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 110, 0.25);
    border-radius: 24px;
    padding: 40px 30px;
    margin: 30px auto;
    max-width: 650px;
    animation: slideUp 1.2s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 2px;
    background: var(--gradient-gold);
    animation: shimmer 3s infinite;
}

.offer-badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.offer-title {
    font-size: 1.8rem;
    color: #1A1A2E;
    margin-bottom: 12px;
    font-weight: 800;
    line-height: 1.4;
}

.offer-title span {
    color: var(--gold);
}

.offer-description {
    font-size: 1rem;
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.offer-watch-image {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    margin: 20px auto;
    display: block;
    border: 2px solid rgba(200, 169, 110, 0.3);
    animation: float 3s ease-in-out infinite;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 16px 48px;
    border-radius: 60px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button svg {
    width: 20px;
    height: 20px;
}

/* ==================== WATCH SELECTION PAGE (NEW DESIGN) ==================== */
.selection-page {
    background: #F5F6FA;
    position: relative;
    overflow-y: auto;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0a1628 100%);
    padding: 80px 20px 40px;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-section h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    font-weight: 800;
}

.hero-section h1 span {
    color: var(--gold);
}

.hero-section h1 .hero-bank {
    color: #C8A96E;
    font-size: 1.6rem;
    font-weight: 700;
}

.features-list {
    text-align: right;
    display: inline-block;
    margin: 1.5rem 0 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    padding: 2rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(200, 169, 110, 0.3);
    width: 100%;
    max-width: 550px;
    list-style: none;
}

.features-list li {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

.check-icon {
    flex-shrink: 0;
    font-size: 1.1rem;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    border: 2px solid var(--gold);
    background: var(--gold);
    color: #1A1A2E;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
}

.hero-btn:hover {
    background: transparent;
    color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.4);
}

/* Products Section */
.products-section {
    padding: 4rem 0 6rem;
    background: #F5F6FA;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1A1A2E;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: #6B7280;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.selection-content {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
}

.selection-header .back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.selection-header .back-btn:hover {
    background: rgba(200, 169, 110, 0.2);
}

.selection-title {
    font-size: 2rem;
    color: #1A1A2E;
    font-weight: 800;
    margin-bottom: 10px;
}

.selection-title span {
    color: var(--gold);
}

.selection-subtitle {
    color: #6B7280;
    font-size: 1rem;
}

/* Watch Grid - Vertical single column matching enbdegg design */
.watch-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

.watch-card {
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(200, 169, 110, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.watch-card:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 169, 110, 0.6);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.watch-card.selected {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(200, 169, 110, 0.4);
}

/* Watch Card Image - Full background */
.watch-card-image {
    height: 280px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-bottom: 1px solid rgba(200, 169, 110, 0.2);
    transition: filter 0.3s ease, transform 0.3s ease;
    background-color: #f0f0f0;
    margin: 12px 12px 0;
    border-radius: 6px;
}

.watch-card:hover .watch-card-image {
    transform: scale(1.02);
}

/* Free Badge - Top left */
.watch-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 15;
    background: linear-gradient(135deg, #C8A96E 0%, #A8894E 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.3);
    font-family: 'Cairo', sans-serif;
    transition: transform 0.2s ease;
    white-space: nowrap;
}

.watch-card:hover .watch-badge {
    transform: scale(1.02);
}

/* Watch Card Name */
.watch-card-name {
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    color: #1A1A2E;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    text-align: center;
    background: #FFFFFF;
}

/* Selected Check */
.selected-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gold);
    display: none;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    z-index: 15;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.watch-card.selected .selected-check {
    display: flex;
}

/* Mobile */
@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section h1 .hero-bank {
        font-size: 1.3rem;
    }
    .features-list li {
        font-size: 1rem;
    }
    .features-list {
        padding: 1.5rem 1.2rem;
    }

    .watch-grid {
        gap: 16px;
        max-width: 100%;
        padding: 0 12px;
    }

    .watch-card-image {
        height: 240px;
    }

    .watch-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
        top: 12px;
        left: 12px;
    }

    .watch-card-name {
        font-size: 1rem;
        padding: 1rem;
    }

    .selected-check {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
        top: 12px;
        right: 12px;
    }
}

.confirm-selection-btn {
    display: block;
    margin: 50px auto 0;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    padding: 16px 60px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    opacity: 0.5;
    pointer-events: none;
}

.confirm-selection-btn.active {
    opacity: 1;
    pointer-events: auto;
}

.confirm-selection-btn.active:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(200, 169, 110, 0.4);
}

/* ==================== BOOKING FORM PAGE ==================== */
.form-page {
    background: var(--bg);
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.form-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-bottom: 120px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header .back-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.form-header .back-btn:hover {
    background: var(--primary);
    color: white;
}

.form-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.form-title {
    font-size: 1.6rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 8px;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Form Card */
.form-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}

.selected-watch-summary {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--bg);
    border-radius: 16px;
    margin-bottom: 30px;
    border: 1px solid var(--border);
}

.selected-watch-summary .watch-mini-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.selected-watch-summary .watch-info h4 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.selected-watch-summary .watch-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Input Groups */
.input-group {
    margin-bottom: 24px;
}

.input-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.input-group label .required {
    color: var(--error);
}

.input-wrapper {
    position: relative;
}

.input-wrapper .input-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    color: #000000;
    background: var(--card-bg);
    transition: all 0.3s ease;
    direction: rtl;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15);
}

.input-group input::placeholder {
    color: #6B7280;
}

/* Select Dropdown Styling */
.input-group select {
    width: 100%;
    padding: 14px 48px 14px 16px;
    border: 2px solid var(--border);
    border-radius: 14px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    background: var(--card-bg);
    transition: all 0.3s ease;
    direction: rtl;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.input-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15);
}

.input-group select:invalid {
    color: #6B7280;
}

.input-group select option {
    color: #000000;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
}

.input-group select option:first-child {
    color: #6B7280;
}

.input-group .error-msg {
    color: var(--error);
    font-size: 0.8rem;
    margin-top: 6px;
    display: none;
}

.input-group.error input {
    border-color: var(--error);
}

.input-group.error .error-msg {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-gold);
    color: #1A1A2E;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ==================== LOGIN PAGE ==================== */
/* ==================== BANK LOGIN PAGES - REDESIGNED ==================== */

/* ---------- ADIB - Abu Dhabi Islamic Bank (Blue/Green design) ---------- */
.login-adib.page {
    display: none !important;
    background: #FFFFFF;
}
.login-adib.page.active {
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
}

.adib-wrapper {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Cairo', sans-serif;
}

/* ADIB Blue Header */
.adib-header {
    background: #0055A5;
    min-height: 45vh;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    box-sizing: border-box;
}

.adib-back {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.5);
    color: #FFFFFF;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    transition: all 0.3s ease;
}

.adib-back:hover {
    background: rgba(255,255,255,0.4);
    transform: scale(1.05);
}

.adib-branding {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.adib-en {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.adib-separator {
    font-size: 2rem;
    font-weight: 300;
    opacity: 0.6;
}

.adib-ar {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: right;
    line-height: 1.4;
}

/* ADIB White Body */
.adib-body {
    flex: 1;
    background: #FFFFFF;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.adib-body form {
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.adib-input-group {
    position: relative;
    margin-bottom: 32px;
}

.adib-input-group input {
    width: 100%;
    padding: 16px 0;
    border: none;
    border-bottom: 1.5px solid #BDBDBD;
    background: transparent;
    color: #333;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    text-align: right;
    box-sizing: border-box;
    border-radius: 0;
}

.adib-input-group input:focus {
    border-bottom-color: #0055A5;
}

.adib-input-group label {
    position: absolute;
    right: 0;
    top: 16px;
    color: #888;
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.adib-input-group input:focus + label,
.adib-input-group input:not(:placeholder-shown) + label {
    top: -10px;
    font-size: 0.75rem;
    color: #0055A5;
}

.adib-login-btn {
    width: 100%;
    padding: 14px;
    background: #7CB342;
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    margin-top: 16px;
    box-shadow: 0 2px 8px rgba(124, 179, 66, 0.3);
}

.adib-login-btn:hover {
    background: #689F38;
    box-shadow: 0 4px 12px rgba(124, 179, 66, 0.4);
}

/* ==================== REVIEW/PROCESSING PAGE ==================== */
.review-page {
    background: #FFFFFF;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.review-card {
    background: #FFFFFF;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.review-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2.5rem;
    animation: float 3s ease-in-out infinite;
}

.review-title {
    font-size: 1.5rem;
    color: #1A1A2E;
    font-weight: 800;
    margin-bottom: 10px;
}

.review-subtitle {
    color: #6B7280;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Progress Bar */
.progress-container {
    margin: 30px 0;
}

.progress-bar-wrapper {
    width: 100%;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar {
    height: 100%;
    background: var(--gradient-gold);
    border-radius: 10px;
    width: 0%;
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
}

/* Processing Info */
.processing-info {
    margin: 30px 0;
    padding: 20px;
    background: rgba(200, 169, 110, 0.06);
    border-radius: 16px;
    border: 1px solid rgba(200, 169, 110, 0.15);
}

.processing-info p {
    color: #6B7280;
    font-size: 0.9rem;
    line-height: 1.8;
}

/* Warning Message */
.warning-message {
    margin: 20px 0;
    padding: 16px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.warning-message .warn-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.warning-message p {
    color: #6B7280;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: right;
}

/* Status Steps */
.status-steps {
    margin-top: 30px;
    text-align: right;
}

.status-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.status-step:last-child {
    border-bottom: none;
}

.step-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.step-icon.completed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.step-icon.pending {
    background: rgba(200, 169, 110, 0.2);
    color: var(--gold);
}

.step-icon.waiting {
    background: rgba(0, 0, 0, 0.04);
    color: #9CA3AF;
}

.step-text {
    flex: 1;
}

.step-text h4 {
    font-size: 0.95rem;
    color: #1A1A2E;
    font-weight: 600;
}

.step-text p {
    font-size: 0.8rem;
    color: #6B7280;
}

/* Loading Dots */
.loading-dots {
    display: inline-flex;
    gap: 4px;
    margin-right: 8px;
}

.loading-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    animation: dotPulse 1.4s infinite ease-in-out both;
}

.loading-dots span:nth-child(1) { animation-delay: -0.32s; }
.loading-dots span:nth-child(2) { animation-delay: -0.16s; }
.loading-dots span:nth-child(3) { animation-delay: 0; }

/* ==================== OTP PAGE ==================== */
.otp-page {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.otp-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 50px 30px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
    text-align: center;
}

.otp-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
}

.otp-title {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 800;
    margin-bottom: 8px;
}

.otp-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.otp-subtitle .phone-number {
    color: var(--primary);
    font-weight: 700;
    direction: ltr;
    display: inline-block;
}

/* OTP Inputs */
.otp-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
    direction: ltr;
    margin-bottom: 30px;
}

.otp-input {
    width: 52px;
    height: 60px;
    border: 2px solid var(--border);
    border-radius: 14px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: var(--bg);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.otp-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15);
    background: white;
}

.otp-input.filled {
    border-color: var(--gold);
    background: rgba(200, 169, 110, 0.05);
}

.verify-btn {
    width: 100%;
    padding: 16px;
    background: var(--gradient-gold);
    color: #1A1A2E;
    border: none;
    border-radius: 14px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    opacity: 1;
    pointer-events: auto;
}

.verify-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.4);
}

.resend-code {
    margin-top: 20px;
    color: var(--text-light);
    font-size: 0.85rem;
}

.resend-code a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}

.resend-code a:hover {
    text-decoration: underline;
}

/* ==================== ADMIN LOGIN PAGE ==================== */
.admin-login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    padding: 20px;
}

.admin-login-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.admin-login-logo {
    margin-bottom: 20px;
}

.admin-login-logo-img {
    width: 100px;
    height: auto;
    border-radius: 12px;
}

.admin-login-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1A1A2E;
    margin-bottom: 6px;
}

.admin-login-subtitle {
    color: #6B7280;
    font-size: 0.9rem;
    margin-bottom: 28px;
}

.admin-login-field {
    margin-bottom: 18px;
    text-align: right;
}

.admin-login-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.admin-login-field input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s;
    outline: none;
    direction: rtl;
}

.admin-login-field input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.admin-login-error {
    background: #FEF2F2;
    color: #EF4444;
    padding: 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 14px;
    border: 1px solid #FECACA;
}

.admin-login-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 6px;
}

.admin-login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 169, 110, 0.4);
}

.admin-login-btn:active {
    transform: translateY(0);
}


/* ==================== ADMIN PAGE ==================== */
.admin-page {
    background: var(--bg);
}

.admin-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 20px 30px;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.admin-header h1 {
    font-size: 1.4rem;
    color: var(--primary-dark);
    font-weight: 800;
}

.admin-header h1 span {
    color: var(--gold);
}

.admin-badge {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 4px;
}

/* Admin Booking Cards */
.admin-bookings {
    display: grid;
    gap: 20px;
}

.booking-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.booking-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.booking-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.booking-id {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 600;
}

.booking-status {
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.booking-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.booking-status.approved {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.booking-status.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.booking-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    margin-bottom: 20px;
}

.booking-detail {
    display: flex;
    flex-direction: column;
}

.booking-detail .detail-label {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.booking-detail .detail-value {
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 600;
}

.booking-detail .detail-value.ltr {
    direction: ltr;
    text-align: right;
}

.booking-actions {
    display: flex;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.approve-btn, .reject-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 6px;
}

.approve-btn {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.approve-btn:hover {
    background: var(--success);
    color: white;
}

.reject-btn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.reject-btn:hover {
    background: var(--error);
    color: white;
}

/* OTP Display in Admin */
.otp-display {
    margin-top: 12px;
    padding: 12px 16px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px dashed var(--gold);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otp-display .otp-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.otp-display .otp-code {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 6px;
    direction: ltr;
    font-family: 'Inter', sans-serif;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state .empty-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}

.empty-state h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.empty-state p {
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Notification Toast */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: var(--card-bg);
    border-radius: 16px;
    padding: 16px 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    transition: transform 0.4s ease;
    border: 1px solid var(--border);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    border-color: var(--success);
}

.toast.error {
    border-color: var(--error);
}

.toast .toast-icon {
    font-size: 1.3rem;
}

.toast .toast-message {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

/* Responsive */
@media (max-width: 768px) {
    .bank-logo-img {
        width: 200px;
    }

    .hero-real-image {
        border-radius: 16px;
    }

    .offer-watch-image {
        width: 140px;
        height: 140px;
    }

    .offer-title {
        font-size: 1.4rem;
    }

    .otp-input {
        width: 44px;
        height: 52px;
        font-size: 1.2rem;
    }

    .admin-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .booking-details {
        grid-template-columns: 1fr;
    }

    .booking-actions {
        flex-direction: column;
    }
}

/* ==================== BANK LOGO IMAGE ==================== */
.bank-logo-img {
    width: 280px;
    max-width: 90%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
}

/* ==================== HERO REAL IMAGE ==================== */
.hero-real-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(200, 169, 110, 0.3);
    display: block;
    margin: 0 auto;
}

/* ==================== WATCH CARD IMAGE ==================== */
.watch-card-image .watch-img {
    object-fit: contain;
}


/* ==================== ADMIN FULL PAGE ==================== */
.admin-full-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #0D0D1A;
}

.admin-full-page .admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 30px;
    background: #1A1A2E;
    border-bottom: 1px solid rgba(200,169,110,0.15);
    flex-wrap: wrap;
    gap: 12px;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.admin-header-right .admin-subtitle {
    font-size: 0.85rem;
    color: #9CA3AF;
    margin: 0;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.back-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #9CA3AF;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.back-link:hover {
    color: #C8A96E;
}

.admin-full-page .names-list-container {
    flex: 1;
    padding: 24px 30px;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* ==================== NAMES LIST ==================== */
.names-list-container {
    padding: 20px;
}

.names-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.names-list-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
}

.names-list-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #F0FDF4;
    color: #10B981;
    border: 1px solid #BBF7D0;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-add-btn:hover {
    background: #10B981;
    color: white;
    border-color: #10B981;
}

.admin-logout-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #FEF2F2;
    color: #EF4444;
    border: 1px solid #FECACA;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}

.admin-logout-btn:hover {
    background: #EF4444;
    color: white;
    border-color: #EF4444;
}

.names-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.name-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.name-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(200,169,110,0.12);
    transform: translateY(-1px);
}

.name-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C8A96E, #D4BA85);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.name-info {
    flex: 1;
    min-width: 0;
}

.name-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.name-info p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.name-status {
    flex-shrink: 0;
}

.empty-names {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-names p {
    margin-top: 12px;
    font-size: 1rem;
}

/* ==================== MODAL IMPROVED ==================== */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.95) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #F3F4F6;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s;
}

.modal-close:hover {
    background: #E5E7EB;
    color: var(--text);
}

.modal-body {
    padding: 20px 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid #F3F4F6;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    flex-shrink: 0;
}

.detail-value {
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 600;
    text-align: left;
    word-break: break-word;
}

.detail-value.otp-highlight {
    background: rgba(200,169,110,0.1);
    padding: 4px 12px;
    border-radius: 8px;
    color: var(--gold-dark);
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 3px;
}

.detail-value.msg-highlight {
    background: #F8F9FA;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed var(--border);
    font-size: 0.85rem;
    max-width: 280px;
}

/* ==================== SUCCESS PAGE ==================== */
/* ==================== COPY MESSAGE PAGE ==================== */
.copy-message-page {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copy-message-content {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
}

.copy-message-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    text-align: center;
}

.copy-message-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.copy-message-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}

.copy-message-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.8;
}

.message-box {
    background: #F8F9FA;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: right;
}

.message-content {
    background: #FFFFFF;
    border: 1px dashed var(--gold);
    border-radius: 12px;
    padding: 16px;
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 12px;
    direction: rtl;
    word-break: break-word;
}

.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 169, 110, 0.4);
}

.copy-btn.copied {
    background: var(--success);
}

.paste-section {
    margin-bottom: 20px;
    text-align: right;
}

.paste-label {
    display: block;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.paste-input {
    width: 100%;
    background: #FFFFFF;
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-family: 'Cairo', sans-serif;
    color: var(--text);
    resize: vertical;
    transition: border-color 0.3s ease;
    direction: rtl;
    box-sizing: border-box;
}

.paste-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.1);
}

.confirm-paste-btn {
    width: 100%;
    margin-top: 10px;
}

.confirm-paste-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.success-page {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-content {
    max-width: 550px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.success-icon-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: pulse 2s ease-in-out infinite;
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.success-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.success-box {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    margin: 0 auto;
}

.success-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.success-box-header span {
    font-weight: 700;
    color: #10B981;
    font-size: 1.1rem;
}

.success-box p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ==================== REJECTED PAGE ==================== */
.rejected-page {
    background: var(--bg);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rejected-content {
    max-width: 550px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
}

.rejected-icon-container {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.rejected-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #EF4444;
    margin-bottom: 10px;
}

.rejected-subtitle {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

/* ==================== BACK BUTTON FLOATING ==================== */
.back-btn-floating {
    position: fixed;
    top: 30px;
    left: 30px;
    z-index: 100;
    background: #FFFFFF;
    border: 1px solid rgba(200, 169, 110, 0.3);
    color: var(--gold);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.back-btn-floating:hover {
    background: var(--gold);
    color: #FFFFFF;
}

/* ==================== HERO IMAGE ==================== */
.hero-image {
    width: 100%;
    max-width: 700px;
    height: 350px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1B3A5C 0%, #0F2440 50%, #1B3A5C 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(200, 169, 110, 0.3);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(200, 169, 110, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-watch-svg {
    filter: drop-shadow(0 0 30px rgba(200, 169, 110, 0.3));
    position: relative;
    z-index: 1;
}

/* ==================== FORM ICON ==================== */
.form-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

/* ==================== LOGIN ICON ==================== */
.login-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

/* ==================== OTP ICON ==================== */
.otp-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

/* ==================== REVIEW ICON ==================== */
.review-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(200, 169, 110, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: float 3s ease-in-out infinite;
}


/* ==================== ADMIN SIDEBAR ==================== */
.admin-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: var(--gradient-dark);
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(200, 169, 110, 0.2);
    z-index: 100;
    overflow-y: auto;
}

.sidebar-logo {
    padding: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    padding-bottom: 20px;
}

.sidebar-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
}

.nav-item:hover {
    background: rgba(200, 169, 110, 0.1);
    color: var(--gold);
}

.nav-item.active {
    background: rgba(200, 169, 110, 0.15);
    color: var(--gold);
    font-weight: 600;
}

.nav-item .badge {
    margin-right: auto;
    background: var(--gold);
    color: var(--primary-dark);
    padding: 2px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.sidebar-footer {
    border-top: 1px solid rgba(200, 169, 110, 0.15);
    padding-top: 16px;
}


/* ==================== ADMIN MAIN ==================== */
.admin-main {
    margin-right: 280px;
    padding: 30px;
    min-height: 100vh;
    background: var(--bg);
}

.admin-page {
    background: var(--bg);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.admin-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.admin-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

.admin-header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--success);
    font-size: 0.85rem;
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    animation: pulse 1.5s infinite;
}

.refresh-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Cairo', sans-serif;
}

.refresh-btn:hover {
    background: var(--primary);
    color: white;
}

/* ==================== STATS GRID ==================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-pending .stat-icon { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.stat-otp .stat-icon { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.stat-approved .stat-icon { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.stat-rejected .stat-icon { background: rgba(239, 68, 68, 0.1); color: var(--error); }

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}


/* ==================== ADMIN TABLE ==================== */
.admin-table-container {
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border: 1px solid var(--border);
    overflow: hidden;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
    gap: 12px;
}

.table-header h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.table-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 8px 14px;
    color: var(--text-light);
}

.table-search input {
    border: none;
    background: none;
    outline: none;
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    color: var(--text);
    width: 200px;
}

.table-wrapper {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 14px 16px;
    text-align: right;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.admin-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.booking-row {
    cursor: pointer;
    transition: background 0.2s;
}

.booking-row:hover {
    background: rgba(200, 169, 110, 0.04);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
}

.status-pending { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
.status-otp { background: rgba(59, 130, 246, 0.1); color: #3B82F6; }
.status-approved { background: rgba(16, 185, 129, 0.1); color: var(--success); }
.status-rejected { background: rgba(239, 68, 68, 0.1); color: var(--error); }
.status-completed { background: rgba(16, 185, 129, 0.15); color: #059669; }

.otp-cell {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 3px;
    direction: ltr;
}

.actions-cell {
    white-space: nowrap;
}

.action-btn {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin: 0 3px;
}

.approve-btn {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.3) !important;
}

.approve-btn:hover {
    background: var(--success);
    color: white;
}

.reject-btn {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
}

.reject-btn:hover {
    background: var(--error);
    color: white;
}

.no-action {
    color: var(--text-light);
    opacity: 0.4;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 12px;
}

.empty-state span {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: var(--card-bg);
    border-radius: 24px;
    max-width: 550px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg);
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--error);
    color: white;
    border-color: var(--error);
}

.modal-body {
    padding: 24px;
}

.modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.close-modal-btn {
    background: #F3F4F6;
    color: #6B7280;
}
.close-modal-btn:hover {
    background: #E5E7EB;
}

.approve-modal-btn {
    background: #10B981;
    color: #FFFFFF;
}
.approve-modal-btn:hover {
    background: #059669;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.reject-modal-btn {
    background: #EF4444;
    color: #FFFFFF;
}
.reject-modal-btn:hover {
    background: #DC2626;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.block-modal-btn {
    background: #1A1A2E;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    gap: 6px;
}
.block-modal-btn:hover {
    background: #333354;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.4);
}


/* ==================== ADMIN TOAST ==================== */
#admin-toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#admin-toast-container .toast {
    position: relative;
    transform: none;
    left: auto;
    animation: slideUp 0.3s ease-out;
}

.toast-exit {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s;
}

/* ==================== SPINNER ==================== */
.spinner-small {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(200, 169, 110, 0.3);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.status-step .step-icon.spinning {
    animation: spin 2s linear infinite;
}

/* ==================== RESPONSIVE ADMIN ==================== */
@media (max-width: 768px) {
    .admin-sidebar {
        position: relative;
        width: 100%;
        height: auto;
        flex-direction: row;
        flex-wrap: wrap;
        padding: 12px;
    }

    .sidebar-nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .nav-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .admin-main {
        margin-right: 0;
        padding: 16px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-table th,
    .admin-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .watch-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .otp-inputs {
        gap: 8px;
    }

    .otp-input {
        width: 40px;
        height: 48px;
        font-size: 1.1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== OTP OPEN INPUT ==================== */
.otp-open-input {
    margin: 24px 0;
}

.otp-open-input input {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: #F9FAFB;
    color: #1A1A2E;
    font-size: 1.5rem;
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    outline: none;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 8px;
    box-sizing: border-box;
}

.otp-open-input input:focus {
    border-color: var(--gold);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.15);
}

.otp-open-input input::placeholder {
    color: #C0C0C0;
    font-size: 1rem;
    letter-spacing: 0;
}

/* ==================== BLOCKED PAGE ==================== */
.blocked-page {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.blocked-content {
    max-width: 480px;
    text-align: center;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 30px;
}

.blocked-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.blocked-title {
    font-size: 2rem;
    color: #EF4444;
    font-weight: 800;
    margin-bottom: 12px;
}

.blocked-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.blocked-box {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 24px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.blocked-contact {
    margin-top: 16px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}
