/*
Theme Name: Schema Child Theme for PCTech
Theme URI: https://pctech.edu.vn/
Description: Custom Schema Child Theme for PCTech.edu.vn with high performance, interactive animations, Tutor LMS support, and Bunny.net Stream protection.
Author: Antigravity
Author URI: https://google.com
Template: mts_schema
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: light, responsive-layout, translation-ready
Text Domain: schema-child
*/

:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #f97316;
    --secondary-hover: #ea580c;
    --dark-bg: #0f172a;
    --dark-surface: #1e293b;
    --light-bg: #f8fafc;
    --card-bg: #ffffff;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --radius: 12px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --font: 'Inter', sans-serif;
}

/* Base custom resets & buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-secondary {
    background-color: var(--secondary);
    color: white;
}

.btn-secondary:hover {
    background-color: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.2);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Dropdown Navigation Menu */
.header-wrap {
    max-width: 1250px !important;
}

.header-wrap nav {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.header-wrap nav ul {
    display: flex;
    list-style: none;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.header-wrap nav ul a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
    transition: color 0.3s;
    position: relative;
    padding: 10px 0;
    display: inline-block;
    white-space: nowrap;
}

.header-wrap nav ul a:hover {
    color: var(--primary);
}

/* Header Responsiveness Adjustments */
@media (max-width: 1300px) {
    .header-wrap {
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    .header-wrap nav {
        margin-right: 10px;
    }
    .header-wrap nav ul {
        gap: 8px;
    }
    .header-wrap nav ul a {
        font-size: 0.85rem;
    }
    .header-actions {
        gap: 8px !important;
    }
    .header-actions .btn {
        padding: 6px 12px !important;
        font-size: 0.82rem !important;
    }
}

@media (max-width: 1200px) {
    .header-wrap nav {
        margin-right: 8px;
    }
    .header-wrap nav ul {
        gap: 6px;
    }
    .header-wrap nav ul a {
        font-size: 0.8rem;
    }
    .header-actions {
        gap: 6px !important;
    }
    .header-actions .btn {
        padding: 6px 10px !important;
        font-size: 0.8rem !important;
    }
}

.header-wrap nav ul li {
    position: relative;
}

.header-wrap nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.dropdown-menu li {
    margin: 0 !important;
    display: block !important;
}

.dropdown-menu a {
    padding: 10px 20px !important;
    display: block !important;
    color: #94a3b8 !important;
    font-size: 0.9rem !important;
    transition: all 0.2s !important;
    text-decoration: none !important;
}

.dropdown-menu a:hover {
    color: white !important;
    background-color: rgba(59, 130, 246, 0.1) !important;
    padding-left: 25px !important;
}

.dropdown-menu a::after {
    display: none !important;
}

/* Custom layout modules styles */
.hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.88) 0%, rgba(30, 27, 75, 0.88) 100%), url('images/it_education_bg.png') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    background-color: rgba(37, 99, 235, 0.2);
    border: 1px solid var(--primary);
    color: #60a5fa;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    color: #60a5fa;
}

.hero-desc {
    font-size: 1.15rem;
    color: #94a3b8;
    margin-bottom: 35px;
}

.hero-form {
    background-color: var(--dark-surface);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: var(--shadow-lg);
}

.hero-form h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
}

.hero-form h3 i {
    color: var(--secondary);
}

.hero-form p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-bottom: 20px;
}

/* Quiz styles */
.quiz-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #0f172a 100%);
    color: white;
}

.quiz-box {
    background-color: var(--dark-surface);
    border-radius: 24px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.08);
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.quiz-option {
    background-color: rgba(255,255,255,0.03);
    border: 2px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    font-weight: 500;
}

.quiz-option:hover {
    background-color: rgba(37, 99, 235, 0.15);
    border-color: var(--primary);
    transform: translateX(5px);
}

/* SOS codes styles */
.sos-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ef4444;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 800;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.4);
    cursor: pointer;
    z-index: 9999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.sos-trigger:hover {
    transform: scale(1.1);
    background-color: #dc2626;
}

.sos-popup {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 350px;
    background-color: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    overflow: hidden;
    display: none;
    animation: slideUp 0.3s ease;
    color: var(--text-dark);
}

.sos-header {
    background-color: #ef4444;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sos-option {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sos-option:hover {
    border-color: #ef4444;
    background-color: rgba(239,68,68,0.03);
}

/* Floating contact buttons */
.floating-contact {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.zalo-float {
    background-color: #0068FF;
}

.phone-float {
    background-color: #10B981;
}

/* Animations */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(239, 68, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Grid layouts */
.tutors-grid, .courses-grid, .testimonials-grid {
    display: grid;
    gap: 30px;
}

.tutors-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.courses-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Theme overrides */
#site-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

/* Infinite logo marquee animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.marquee-content {
    display: inline-flex;
    gap: 60px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #64748b;
    font-size: 1.6rem;
    font-weight: 800;
    transition: color 0.3s;
}

.marquee-item:hover {
    color: var(--primary);
}

/* ==========================================================================
   PREMIUM LIVELY HIGHLIGHTS & EFFECTS (2026 MODERNIZATION)
   ========================================================================== */

/* 1. Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, #10b981 100%);
    z-index: 100000;
    width: 0%;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.5);
}

/* 2. Scrolled Glassmorphism Header */
#site-header {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#site-header.header-scrolled {
    background-color: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.3) !important;
    padding: 10px 0 !important;
}

#site-header.header-scrolled .logo,
#site-header.header-scrolled nav ul a {
    color: #e2e8f0 !important;
}

#site-header.header-scrolled nav ul a:hover {
    color: var(--primary) !important;
}

#site-header.header-scrolled .btn-outline {
    color: white !important;
    border-color: white !important;
}

#site-header.header-scrolled .btn-outline:hover {
    background-color: white !important;
    color: var(--dark-bg) !important;
}

/* 3. Card Hover Tilt & Glow Highlights */
.feature-card, .tutor-card, .course-card, .testi-card, .booking-card, .purchase-card, .post-card {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
}

.feature-card:hover, .tutor-card:hover, .course-card:hover, .testi-card:hover, .booking-card:hover, .purchase-card:hover, .post-card:hover {
    transform: translateY(-8px) scale(1.01) !important;
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.2) !important;
    border-color: rgba(37, 99, 235, 0.4) !important;
}

.feature-card.alt:hover, .course-card:hover {
    box-shadow: 0 20px 40px -15px rgba(249, 115, 22, 0.2) !important;
    border-color: rgba(249, 115, 22, 0.4) !important;
}

/* Glow Border Animation */
@keyframes borderGlow {
    0%, 100% { border-color: rgba(37, 99, 235, 0.4); }
    50% { border-color: rgba(249, 115, 22, 0.6); }
}

.tutor-card:hover, .course-card:hover {
    animation: borderGlow 3s ease infinite;
}

/* 4. Logo Spin & Zoom Effect */
.logo img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover img {
    transform: rotate(360deg) scale(1.15);
}

/* 5. Glowing Floating Action Buttons */
.floating-contact a {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 104, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 104, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 104, 255, 0);
    }
}

.floating-contact .phone-float {
    animation: pulsePhoneGlow 2s infinite;
}

@keyframes pulsePhoneGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* 6. Dynamic Gradient Text Highlight */
.glow-text {
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

/* 7. Bounce Arrow for SOS button */
.sos-trigger {
    animation: pulse 2s infinite, floatSOS 3s ease-in-out infinite;
}

@keyframes floatSOS {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   2026 MODERNIZATION - 3D TILT, ROADMAP & SOCIAL PROOF TOAST
   ========================================================================== */

/* Feature 2: 3D Card Tilt & Spotlight Radial Glow */
.tutor-card, .course-card, .pathway-card {
    transform-style: preserve-3d;
    perspective: 1000px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.tutor-card.tilting, .course-card.tilting, .pathway-card.tilting {
    transition: transform 0.08s ease-out, box-shadow 0.3s ease, border-color 0.3s ease !important;
}

.card-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(circle 150px at var(--glow-x, 0px) var(--glow-y, 0px), rgba(96, 165, 250, 0.15), transparent 80%);
    transition: opacity 0.3s ease;
}

.tutor-card:hover .card-glow-overlay, 
.course-card:hover .card-glow-overlay, 
.pathway-card:hover .card-glow-overlay {
    opacity: 1;
}

/* Feature 4: AI Career Navigator SVG Roadmap */
.roadmap-container {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.roadmap-svg-wrap {
    width: 100%;
    height: 80px;
    margin: 15px 0;
    position: relative;
}

.roadmap-svg-wrap svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.roadmap-path-bg {
    stroke: rgba(255, 255, 255, 0.08);
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
}

.roadmap-path-active {
    stroke: url(#roadmap-gradient);
    stroke-width: 4;
    stroke-linecap: round;
    fill: none;
    stroke-dasharray: 800;
    stroke-dashoffset: 800;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.roadmap-node {
    fill: #1e293b;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 3;
    transition: all 0.5s ease;
}

.roadmap-node.active {
    fill: var(--primary);
    stroke: #60a5fa;
    filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.6));
}

.roadmap-node.current {
    fill: var(--secondary);
    stroke: #ff9d5c;
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, 0.8));
    animation: nodePulse 1.5s infinite alternate;
}

@keyframes nodePulse {
    0% { stroke-width: 3; }
    100% { stroke-width: 5; filter: drop-shadow(0 0 15px rgba(249, 115, 22, 1)); }
}

.roadmap-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.roadmap-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.roadmap-step-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.roadmap-step-card.active {
    border-color: rgba(37, 99, 235, 0.3);
    background: rgba(37, 99, 235, 0.05);
}

.roadmap-step-card.current {
    border-color: rgba(249, 115, 22, 0.4);
    background: rgba(249, 115, 22, 0.06);
    box-shadow: 0 4px 20px -5px rgba(249, 115, 22, 0.15);
}

.roadmap-step-card h6 {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 700;
}

.roadmap-step-card p {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
    margin: 0;
}

/* Feature 5: Live Social Proof Toast */
#social-proof-toast-container {
    position: fixed;
    bottom: 180px;
    left: 30px;
    z-index: 9998;
    pointer-events: none;
}

.social-proof-toast {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 330px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: 1.4;
}

.social-proof-toast.active {
    transform: translateX(0);
    opacity: 1;
}

.social-proof-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.social-proof-icon.orange {
    background: rgba(249, 115, 22, 0.2);
    color: #ff9d5c;
}

.social-proof-icon.green {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.social-proof-content {
    font-size: 0.85rem;
}

.social-proof-content strong {
    color: #f8fafc;
}

.social-proof-time {
    display: block;
    font-size: 0.72rem;
    color: #64748b;
    margin-top: 3px;
}

/* ==========================================================================
   2026 MODERNIZATION - PREMIUM INTERACTIVE CHECKOUT MODAL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    width: 100%;
    max-width: 850px;
    overflow: hidden;
    color: white;
    font-family: var(--font);
    animation: zoomIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
    background: #0f172a;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    color: #60a5fa;
    display: flex;
    align-items: center;
    gap: 10px;
}

.close-modal {
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
    color: #94a3b8;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

.modal-body {
    padding: 24px;
    color: white;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 768px) {
    .checkout-grid {
        grid-template-columns: 1fr;
    }
}

.qr-container {
    background: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.qr-container img {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

.qr-label {
    margin-top: 15px;
    color: #475569;
    font-size: 0.78rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 600;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.info-row:last-child {
    margin-bottom: 0;
}

.info-row .label {
    color: #94a3b8;
}

.info-row .value {
    font-weight: 700;
}

.info-row .value.highlight {
    color: var(--secondary);
    font-size: 1.1rem;
}

.bank-details {
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
}

.bank-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.detail-row {
    font-size: 0.88rem;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-row:last-child {
    margin-bottom: 0;
}

.copyable {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.08);
    padding: 2px 8px;
    border-radius: 4px;
    transition: all 0.2s;
}

.copyable:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #60a5fa;
}

.receipt-upload-section {
    margin-bottom: 15px;
}

.upload-label {
    display: block;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 600;
}

.upload-drag-area {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.upload-drag-area:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.03);
}

#upload-preview {
    max-width: 100%;
    max-height: 120px;
    border-radius: 8px;
    object-fit: contain;
}

.remove-preview {
    font-size: 0.78rem;
    color: #ef4444;
    font-weight: 700;
    margin-top: 8px;
    cursor: pointer;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Premium Glowing Secondary Button Style & Glow Hover Effect */
.btn-secondary {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    color: white !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3) !important;
    border: none !important;
    cursor: pointer;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.btn-secondary:hover {
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 8px 25px rgba(249, 115, 22, 0.5), 0 0 15px rgba(249, 115, 22, 0.4) !important;
    color: white !important;
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-1px) scale(1) !important;
}

/* Real-Time Live Pulse & Spotlight Animation Keyframes */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.35;
    }
    90% {
        opacity: 0.35;
    }
    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

.live-pulse {
    border-radius: 50%;
    animation: pulse 2s infinite;
}


