/*!
 * Professional Branding System Styles
 * Custom modern design with Bootstrap framework
 * Primary Colors: Night Blue (#151B54), Dodger Blue (#1E90FF)
 */

/* Import Google Fonts for professional typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* CSS Custom Properties */
:root {
    --primary-night-blue: #151B54;
    --primary-dodger-blue: #1E90FF;
    --accent-light: #F8FAFC;
    --accent-gray: #64748B;
    --accent-dark: #1E293B;
    --white: #ffffff;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --border-light: #E2E8F0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--accent-dark);
    background-color: #FAFBFC;
    font-weight: 400;
    overflow-x: hidden;
    padding-top: 80px; /* Account for fixed navbar height */
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding-bottom: 0;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

/* Professional Navigation */
.navbar {
    background: var(--primary-night-blue);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    width: 100%;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.75rem 1.25rem !important;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

/* Enhanced Splash Screen */
.splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #151B54;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    overflow: hidden;
}

.splash::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.05);
    animation: floatBubbles 6s ease-in-out infinite;
}

/* Removed gradientShift animation as we're using flat colors */

@keyframes floatBubbles {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.splash-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.brand-logo {
    margin-bottom: 3rem;
    animation: slideInFromTop 1s ease-out;
}

.logo-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #FFD700;
    animation: pulse 2s ease-in-out infinite;
}

.brand-name {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.brand-accent {
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(255,215,0,0.3);
}

.brand-tagline {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 0;
    letter-spacing: 0.05em;
}

.loading-animation {
    margin-bottom: 2rem;
    animation: slideInFromBottom 1s ease-out 0.3s both;
}

.spinner-container {
    margin-bottom: 1rem;
}

.modern-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    border: 3px solid transparent;
    border-top: 3px solid #FFD700;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: #1E90FF;
    animation-delay: -0.5s;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #FFFFFF;
    animation-delay: -1s;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    margin: 0;
    animation: fadeInOut 2s ease-in-out infinite;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    animation: slideInFromBottom 1s ease-out 0.6s both;
}

.dot {
    width: 8px;
    height: 8px;
    background: #FFD700;
    border-radius: 50%;
    animation: dotBounce 1.4s ease-in-out infinite;
}

.dot:nth-child(2) {
    animation-delay: 0.2s;
}

.dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    30% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

@keyframes slideInFromTop {
    0% {
        transform: translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInFromBottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

.splash.fade-out {
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.2s ease-out;
}

.splash.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1.5s ease-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Modern Hero Section */
.hero-section {
    background: var(--primary-night-blue);
    color: var(--white);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="white" opacity="0.1"><polygon points="1000,100 1000,0 0,100"/></svg>') no-repeat;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Professional Contact Section */
.contact-section {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
}

.contact-info {
    font-size: 1.1rem;
    color: var(--accent-gray);
    margin-bottom: 0.75rem;
}

.contact-highlight {
    color: var(--primary-night-blue);
    font-weight: 600;
}

/* Enhanced Buttons */
.btn {
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-night-blue);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn-facebook {
    background: #1877F2;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-facebook:hover {
    background: #166FE5;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

/* Floating Call & WhatsApp CTA */
.floating-cta {
    position: fixed;
    right: 1.25rem;
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    z-index: 1050;
}

.floating-cta-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #1E90FF; /* Dodger Blue outline */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: floating-cta-pulse 2.4s ease-in-out infinite;
}

.floating-cta-btn i {
    font-size: 1.5rem;
}

.floating-cta-call {
    background-color: #e53935; /* Flat red for calls */
}

.floating-cta-whatsapp {
    background-color: #25d366; /* Flat WhatsApp green */
}

.floating-cta-btn:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
    color: #ffffff;
}

@keyframes floating-cta-pulse {
    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    }
    50% {
        transform: translateY(-3px) scale(1.06);
        box-shadow: 0 10px 26px rgba(0, 0, 0, 0.25);
    }
}

@media (max-width: 576px) {
    .floating-cta {
        right: 1rem;
        bottom: 1.25rem;
    }
    .floating-cta-btn {
        width: 56px;
        height: 56px;
    }
}

/* Professional Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(21, 27, 84, 0.1);
}

.product-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-popular {
    background: var(--primary-dodger-blue);
    color: var(--white);
}

.badge-premium {
    background: var(--success);
    color: var(--white);
}

.badge-gifts {
    background: var(--warning);
    color: var(--white);
}

.product-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    color: var(--primary-night-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-description {
    color: var(--accent-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.product-price {
    color: var(--primary-night-blue);
    font-weight: 700;
    font-size: 1.1rem;
}

/* CTA Section Enhancement */
.cta-section {
    background: var(--accent-light);
    border: 1px solid var(--border-light);
    border-radius: 0; /* no curved corners */
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(21, 27, 84, 0.03);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Modern Form Enhancements */
.order-form-container {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.order-form-header {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.form-section {
    background: var(--white);
    border-radius: 0.5rem;
    padding: 1rem;
    border: 1px solid var(--border-light);
    margin-bottom: 1rem;
}

.section-header {
    margin-bottom: 1rem;
}

.modern-form .form-control {
    border: 2px solid var(--border-light);
    border-radius: 0.5rem;
    padding: 1rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    min-height: 3.5rem;
    transition: all 0.3s ease;
    background-color: var(--white);
}

.modern-form .form-control:focus {
    border-color: var(--primary-dodger-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
    outline: none;
}

.modern-form .form-floating {
    position: relative;
    min-height: 3.5rem;
}

.modern-form .form-floating > .form-control {
    padding: 1.2rem 1rem 0.6rem 1rem;
    min-height: 3.5rem;
    line-height: 1.5;
}

.modern-form .form-floating > label {
    color: var(--accent-gray);
    font-weight: 500;
    padding: 1.2rem 1rem 0.6rem 1rem;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.modern-form .form-floating > .form-control:focus ~ label,
.modern-form .form-floating > .form-control:not(:placeholder-shown) ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

/* Textarea specific styling */
.modern-form textarea.form-control {
    min-height: 5rem;
    max-height: 8rem;
    resize: vertical;
    padding: 1rem;
    line-height: 1.6;
}

.modern-form .form-floating > textarea.form-control {
    min-height: 5rem;
    padding: 1.2rem 1rem 0.6rem 1rem;
}

/* Ensure all text is visible */
.modern-form .form-control,
.modern-form select.form-control,
.modern-form input.form-control {
    white-space: normal;
    word-wrap: break-word;
    overflow: visible;
    text-overflow: clip;
}

/* Select dropdown styling */
.modern-form select.form-control {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    padding-right: 2.5rem;
}

/* Multiple Orders Styling */
.additional-order-section {
    animation: slideIn 0.5s ease-out;
}

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

.additional-order-section .card {
    border: 2px solid var(--primary-dodger-blue);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.additional-order-section .card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.additional-order-section .card-header {
    background: var(--primary-dodger-blue) !important;
    border-bottom: 2px solid var(--primary-night-blue);
}

.additional-order-section .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
}

#addAnotherOrder {
    background: var(--primary-dodger-blue);
    border: none;
    transition: all 0.3s ease;
}

#addAnotherOrder:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-night-blue);
}

.form-label {
    color: var(--primary-night-blue);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Order Summary Sidebar */
.order-summary {
    background: var(--white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list i {
    color: var(--primary-dodger-blue);
    width: 20px;
    margin-right: 0.75rem;
}

/* Custom Radio/Checkbox Styles */
.modern-form .form-check-input:checked {
    background-color: var(--primary-night-blue);
    border-color: var(--primary-night-blue);
}

.modern-form .form-check-input:focus {
    border-color: var(--primary-dodger-blue);
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.1);
}

/* File Upload Enhancement */
.file-upload-wrapper {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-preview {
    max-width: 100%;
    max-height: 200px;
    border-radius: 0.5rem;
    margin-top: 1rem;
}

/* Main Content Area */
main {
    flex: 1 0 auto;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Footer Enhancement */
footer {
    background: var(--primary-night-blue);
    color: var(--white);
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        word-wrap: break-word;
    }

    .hero-content .d-flex {
        flex-wrap: wrap;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-section {
        padding: 1.5rem;
        margin: 1rem 0;
    }
    
    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
}

@media (max-width: 576px) {
    .brand-name {
        font-size: 2.5rem;
    }
    
    .logo-icon {
        font-size: 3rem;
    }
    
    .brand-tagline {
        font-size: 1rem;
    }
    
    .modern-spinner {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(1) {
        width: 60px;
        height: 60px;
    }
    
    .spinner-ring:nth-child(2) {
        width: 45px;
        height: 45px;
        top: 7.5px;
        left: 7.5px;
    }
    
    .spinner-ring:nth-child(3) {
        width: 30px;
        height: 30px;
        top: 15px;
        left: 15px;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
}

/* Custom utility classes */
.text-primary-custom { color: var(--primary-night-blue) !important; }
.bg-primary-custom { background-color: var(--primary-night-blue) !important; }
.border-primary-custom { border-color: var(--primary-night-blue) !important; }

/* Remove any extra spacing at bottom of page */
body::after,
main::after,
footer::after {
    content: none;
    display: none;
}

.container-fluid {
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Ensure footer sticks to bottom with no gap */
footer.bg-primary-custom {
    position: relative;
    bottom: 0;
    width: 100%;
}

/* ============================================
   FORM LOADING STATES & ANIMATIONS
   ============================================ */

/* Button loading state - when form is submitting */
.btn.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
    to { transform: rotate(360deg); }
}

/* Form submission overlay */
.form-submitting-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(21, 27, 84, 0.95);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: overlay-fade-in 0.3s ease;
}

@keyframes overlay-fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.form-submitting-content {
    text-align: center;
    background: white;
    padding: 50px 60px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    max-width: 450px;
    animation: content-slide-up 0.4s ease;
}

@keyframes content-slide-up {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.form-submitting-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    border: 4px solid #e9ecef;
    border-top-color: var(--primary-night-blue);
    border-radius: 50%;
    animation: large-spinner 0.8s linear infinite;
}

@keyframes large-spinner {
    to { transform: rotate(360deg); }
}

.form-submitting-content h3 {
    color: var(--primary-night-blue);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.form-submitting-content p {
    color: #6c757d;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.form-submitting-progress {
    width: 100%;
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
    margin-top: 20px;
}

.form-submitting-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-night-blue), var(--primary-dodger-blue));
    animation: progress-animate 1.5s ease-in-out infinite;
    width: 100%;
}

@keyframes progress-animate {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Disable form while submitting */
form.submitting-form {
    pointer-events: none;
    opacity: 0.6;
}

/* File upload loading state */
.file-upload-loading {
    opacity: 0.5;
    pointer-events: none;
}

.file-upload-loading::after {
    content: 'Uploading...';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: var(--primary-night-blue);
    font-weight: 600;
}

