/* Modern Galaxora Design - Soft & Eye-Friendly Color Palette */
/* Custom Properties for Easy Theme Management */
:root {
    /* Primary Color Palette - Soft Ocean Blues & Teals */
    --primary-50: #f0fdfa;
    --primary-100: #ccfbf1;
    --primary-200: #99f6e4;
    --primary-300: #5eead4;
    --primary-400: #2dd4bf;
    --primary-500: #14b8a6;
    --primary-600: #0d9488;
    --primary-700: #0f766e;
    --primary-800: #115e59;
    --primary-900: #134e4a;

    /* Secondary Color Palette - Soft Purples & Lavender */
    --secondary-50: #faf5ff;
    --secondary-100: #f3e8ff;
    --secondary-200: #e9d5ff;
    --secondary-300: #d8b4fe;
    --secondary-400: #c084fc;
    --secondary-500: #a855f7;
    --secondary-600: #9333ea;
    --secondary-700: #7c2d12;
    --secondary-800: #6b21a8;
    --secondary-900: #581c87;

    /* Neutral Colors - Warm Grays */
    --neutral-50: #fafaf9;
    --neutral-100: #f5f5f4;
    --neutral-200: #e7e5e4;
    --neutral-300: #d6d3d1;
    --neutral-400: #a8a29e;
    --neutral-500: #78716c;
    --neutral-600: #57534e;
    --neutral-700: #44403c;
    --neutral-800: #292524;
    --neutral-900: #1c1917;

    /* Accent Colors */
    --accent-blue: #0ea5e9;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-pink: #ec4899;

    /* Glass Effect Variables */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    /* Animation Variables */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Global Styles */
* {
    transition: var(--transition-smooth);
}

body {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    color: var(--neutral-700);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Glass Morphism Effect */
.glass {
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    z-index: 25;
}

/* Modern Service Table */
.service-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 24px;    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.service-table th, .service-table td {
    padding: 20px 24px;
    text-align: left;
    border: none;
    position: relative;
}

.service-table th {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.service-table tr:not(:first-child) {
    border-top: 1px solid var(--neutral-200);
}

.service-table tr:hover {
    background: linear-gradient(135deg, var(--primary-50) 0%, var(--secondary-50) 100%);
    transform: scale(1.01);
}

.service-table button {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 15px 0 rgba(20, 184, 166, 0.3);
    position: relative;
    overflow: hidden;
}

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

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

.service-table button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px 0 rgba(20, 184, 166, 0.4);
}


/* How It Works Section - Modern Glass Design */
.how-it-works-step {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 32px;
    transition: var(--transition-bounce);
    overflow: hidden;
}

.how-it-works-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-100) 0%, var(--secondary-100) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: -1;
}

.how-it-works-step:hover::before {
    opacity: 0.8;
}

.how-it-works-step:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-color: var(--primary-300);
}

.step-number {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 24px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(20, 184, 166, 0.3);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.how-it-works-step:hover .step-number::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.how-it-works-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

/* Connection lines between steps - Animated */
@media (min-width: 768px) {
    .how-it-works-step::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -40px;
        width: 80px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-300) 0%, var(--secondary-300) 100%);
        border-radius: 2px;
        z-index: 0;
        transform: translateY(-50%);
        animation: pulse-line 2s ease-in-out infinite;
    }

    .how-it-works-step:last-child::after {
        display: none;
    }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scaleX(1); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1.1); }
}

/* Step content styling */
.step-content h3 {
    color: var(--neutral-800);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}

.step-content p {
    color: var(--neutral-600);
    line-height: 1.6;
    transition: var(--transition-smooth);
}

.how-it-works-step:hover .step-content h3 {
    color: var(--primary-600);
    transform: translateX(4px);
}

.how-it-works-step:hover .step-content p {
    color: var(--neutral-700);
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .how-it-works-step {
        margin-bottom: 24px;
        padding: 24px;
    }
    
    .how-it-works-step::after {
        display: none;
    }
}

/* Modern Footer Design */
footer {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--secondary-600) 100%);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    pointer-events: none;
}

footer .container {
    position: relative;
    z-index: 1;
}

footer h3 {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-100) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    transition: var(--transition-smooth);
}

footer h3:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

footer .text-purple-200 {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-smooth);
}

footer a {
    position: relative;
    padding: 8px 16px;
    border-radius: 12px;
    transition: var(--transition-bounce);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

footer a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 0;
    transition: var(--transition-smooth);
    transform: scale(0.8);
}

footer a:hover::before {
    opacity: 1;
    transform: scale(1);
}

footer a:hover {
    color: white;
    transform: translateY(-2px);
}

/* Social Media Icons - Floating Design */
footer .social-icons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

footer .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-400) 0%, var(--secondary-400) 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    transform: scale(0);
}

footer .social-icons a:hover::before {
    opacity: 1;
    transform: scale(1);
}

footer .social-icons a:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

footer .social-icons .fab {
    font-size: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

/* Copyright Text with Glow Effect */
footer .text-sm {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

footer .text-sm::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    footer h3 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    footer .social-icons {
        margin-top: 20px;
        gap: 12px;
    }
    
    footer .social-icons a {
        width: 44px;
        height: 44px;
    }
}

/* Additional Modern Components */
.modern-card {
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    transition: var(--transition-bounce);
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px 0 rgba(31, 38, 135, 0.5);
}

.modern-button {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

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

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

.modern-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(20, 184, 166, 0.4);
}

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

.floating {
    animation: float 3s ease-in-out infinite;
}

/* Animation Delay Classes */
.delay-animation {
    animation-delay: -0.5s;
}

.delay-animation-2 {
    animation-delay: -1s;
}

.delay-animation-3 {
    animation-delay: -1.5s;
}

/* Additional animation delay classes */
.floating-delay-1 {
    animation-delay: -1s;
}

.floating-delay-2 {
    animation-delay: -2s;
}

.floating-delay-half {
    animation-delay: -0.5s;
}

/* Enhanced Primary Color Variants */
.primary-25 {
    --tw-bg-opacity: 1;
    background-color: rgb(240 253 250 / var(--tw-bg-opacity));
}

/* Gradient Text Effect */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-500) 0%, var(--secondary-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-white {
    background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Modern Input Styles */
.modern-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 16px;
     padding: 16px 20px; 
    font-size: 16px;
    transition: var(--transition-smooth);
    outline: none;
    width: 100%;
}

.modern-input:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    background: white;
}

/* Modern Select Styles */
.modern-select {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(20, 184, 166, 0.2);
    border-radius: 16px;
    padding: 16px 20px;
    font-size: 16px;
    transition: var(--transition-smooth);
    outline: none;
    cursor: pointer;
}

.modern-select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
    background: white;
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */

/* Icon Circle Component */
.icon-circle {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Modern File Upload Area */
.modern-file-upload {
    position: relative;
}

.file-upload-area {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 8rem;
    border: 2px dashed var(--primary-300);
    border-radius: 0.75rem;
    background: var(--primary-50);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.file-upload-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 49%, var(--primary-100) 50%, transparent 51%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.file-upload-area:hover {
    border-color: var(--primary-500);
    background: var(--primary-100);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(20, 184, 166, 0.15);
}

.file-upload-area:hover::before {
    opacity: 1;
}

.upload-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    position: relative;
    z-index: 10;
}

.upload-icon {
    transition: transform 0.3s ease;
}

.file-upload-area:hover .upload-icon {
    transform: scale(1.1);
}

.upload-text {
    text-align: center;
}

.upload-title {
    font-weight: 600;
    color: var(--primary-600);
    display: block;
    margin-bottom: 0.5rem;
}

.upload-subtitle {
    font-size: 0.875rem;
    color: var(--neutral-500);
    margin: 0;
}

/* File Preview Styles */
.file-preview {
    margin-top: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid var(--neutral-200);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-image {
    max-width: 4rem;
    max-height: 4rem;
    object-fit: cover;
    border-radius: 0.375rem;
}

.file-info {
    flex: 1;
}

.file-name {
    font-weight: 500;
    color: var(--neutral-700);
    margin: 0 0 0.25rem 0;
    font-size: 0.875rem;
}

.file-size {
    color: var(--neutral-500);
    font-size: 0.75rem;
    margin: 0;
}

/* Contact Item Styles */
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--primary-25);
    border-radius: 0.75rem;
    border: 1px solid var(--primary-100);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: var(--primary-50);
    border-color: var(--primary-200);
    transform: translateX(4px);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    box-shadow: 0 2px 8px rgba(20, 184, 166, 0.1);
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    font-weight: 500;
    color: var(--neutral-600);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.contact-link {
    color: var(--primary-600);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: var(--primary-700);
    text-decoration: underline;
}

.contact-info {
    color: var(--neutral-700);
    font-weight: 500;
}

/* Status Indicator */
.status-indicator {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    margin-right: 0.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Quick Help Links */
.quick-help-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    color: var(--neutral-700);
    text-decoration: none;
    border-radius: 0.5rem;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.quick-help-link:hover {
    background: var(--secondary-50);
    border-color: var(--secondary-200);
    color: var(--secondary-700);
    transform: translateX(4px);
}

.quick-help-link i {
    color: var(--secondary-500);
    transition: color 0.3s ease;
}

.quick-help-link:hover i {
    color: var(--secondary-600);
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
}

.success-message {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 0.5rem;
    color: #166534;
    font-weight: 500;
}

.error-message {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    color: #dc2626;
    font-weight: 500;
}

/* Primary 25 Background Color */
.bg-primary-25 {
    background-color: rgba(240, 253, 250, 0.5);
}

/* ===== MODERN LOADING STATES ===== */

/* Modern Loading Container */
.modern-loading-container {
    animation: fadeInUp 0.8s ease-out;
}

/* Loading Skeleton Base */
.loading-skeleton {
    background: linear-gradient(90deg, 
        var(--neutral-100) 0%, 
        var(--neutral-200) 50%, 
        var(--neutral-100) 100%);
    background-size: 200% 100%;
    animation: shimmer 2s infinite ease-in-out;
    border-radius: 12px;
}

.service-placeholder {
    min-height: 380px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--neutral-200);
    border-radius: 0.75rem;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.service-placeholder-image {
    height: 180px;
    margin-bottom: 1.25rem;
    border-radius: 0.5rem;
}

.service-placeholder-title {
    width: 68%;
    height: 1.25rem;
    margin-bottom: 1rem;
}

.service-placeholder-line {
    width: 92%;
    height: 0.75rem;
    margin-bottom: 0.75rem;
    border-radius: 0.375rem;
}

.service-placeholder-line.short {
    width: 58%;
}

/* Loading Shimmer Effect */
.loading-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        transparent 100%);
    animation: shimmerMove 2.5s infinite ease-in-out;
    z-index: 1;
}

/* Loading Spinner */
.loading-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid var(--primary-200);
    border-top: 3px solid var(--primary-600);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Shimmer Move Animation */
@keyframes shimmerMove {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

/* Fade In Up Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Card Variants */
.modern-card.loading-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(255, 255, 255, 0.7) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Staggered Animation Delays */
.modern-loading-container .modern-card:nth-child(1) {
    animation-delay: 0s;
}

.modern-loading-container .modern-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-loading-container .modern-card:nth-child(3) {
    animation-delay: 0.4s;
}

/* Additional delay classes for flexibility */
.loading-delay-2 {
    animation-delay: 0.2s;
}

.loading-delay-4 {
    animation-delay: 0.4s;
}

/* Loading Skeleton Variants */
.loading-skeleton.h-6 {
    height: 1.5rem;
}

.loading-skeleton.h-4 {
    height: 1rem;
}

.loading-skeleton.h-3 {
    height: 0.75rem;
}

.loading-skeleton.h-12 {
    height: 3rem;
}

.loading-skeleton.w-3\/4 {
    width: 75%;
}

.loading-skeleton.w-2\/3 {
    width: 66.666667%;
}

.loading-skeleton.w-1\/2 {
    width: 50%;
}

.loading-skeleton.w-3\/5 {
    width: 60%;
}

.loading-skeleton.w-2\/5 {
    width: 40%;
}

.loading-skeleton.w-4\/5 {
    width: 80%;
}

.loading-skeleton.w-32 {
    width: 8rem;
}

.loading-skeleton.w-28 {
    width: 7rem;
}

.loading-skeleton.w-24 {
    width: 6rem;
}

.loading-skeleton.w-20 {
    width: 5rem;
}

.loading-skeleton.w-36 {
    width: 9rem;
}

.loading-skeleton.w-40 {
    width: 10rem;
}

.loading-skeleton.rounded-xl {
    border-radius: 0.75rem;
}

.loading-skeleton.rounded-lg {
    border-radius: 0.5rem;
}

.loading-skeleton.rounded-full {
    border-radius: 9999px;
}

/* Responsive Loading Adjustments */
@media (max-width: 768px) {
    .loading-skeleton.w-3\/4 {
        width: 85%;
    }
    
    .loading-skeleton.w-2\/3 {
        width: 75%;
    }
    
    .loading-skeleton.w-1\/2 {
        width: 65%;
    }
    
    .modern-loading-container .text-center {
        padding: 1rem;
    }
    
    .loading-spinner {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }
}

/* ===== END MODERN LOADING STATES ===== */

/* ===== END CONTACT PAGE STYLES ===== */

/* ===== ENTERPRISE MARKETPLACE REFRESH ===== */
:root {
    --primary-50: #f4f8fb;
    --primary-100: #e7eef5;
    --primary-200: #cfdce8;
    --primary-300: #9fb5ca;
    --primary-400: #6386a3;
    --primary-500: #28516f;
    --primary-600: #18384f;
    --primary-700: #10283a;
    --primary-800: #0b1c2a;
    --primary-900: #071522;
    --secondary-50: #f3faf7;
    --secondary-100: #dff3ea;
    --secondary-200: #bce5d3;
    --secondary-300: #82c9aa;
    --secondary-400: #45a77d;
    --secondary-500: #17845e;
    --secondary-600: #0f6b4b;
    --secondary-700: #0d543d;
    --secondary-800: #0b3f30;
    --secondary-900: #082d23;
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    --neutral-900: #0f172a;
    --accent-blue: #2563eb;
    --accent-green: #059669;
    --accent-orange: #d97706;
    --accent-pink: #be123c;
    --transition-smooth: all 0.18s ease;
    --transition-bounce: all 0.18s ease;
}

* {
    transition-property: color, background-color, border-color, box-shadow, transform, opacity;
    transition-duration: 0.18s;
    transition-timing-function: ease;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8fafc;
    color: var(--neutral-800);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.text-slate-300 { color: #cbd5e1 !important; }
.text-slate-400 { color: #94a3b8 !important; }
.text-slate-500 { color: #64748b !important; }
.text-slate-600 { color: #475569 !important; }
.text-slate-700 { color: #334155 !important; }
.text-slate-800 { color: #1e293b !important; }
.text-slate-900 { color: #0f172a !important; }
.text-slate-950 { color: #020617 !important; }
.bg-slate-50 { background-color: #f8fafc !important; }
.bg-slate-100 { background-color: #f1f5f9 !important; }
.bg-slate-900 { background-color: #0f172a !important; }
.border-slate-200 { border-color: #e2e8f0 !important; }
.border-slate-300 { border-color: #cbd5e1 !important; }

.bg-gradient-to-br,
.bg-gradient-to-r,
.bg-gradient-to-t {
    background-image: none !important;
}

.floating,
.floating-delay-1,
.floating-delay-2,
.floating-delay-half,
.delay-animation,
.delay-animation-2,
.delay-animation-3 {
    animation: none !important;
}

.gradient-text,
.gradient-text-white {
    background: none;
    -webkit-text-fill-color: currentColor;
    color: var(--neutral-900);
}

.enterprise-nav,
.modern-glass-nav,
.modern-nav {
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid var(--neutral-200) !important;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    z-index: 1000;
}

#notification-container {
    z-index: 1100;
}

#services,
#transactions,
#how-it-works {
    scroll-margin-top: 5.5rem;
}

.brand-mark {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-800);
    color: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.nav-link {
    color: var(--neutral-700) !important;
    font-size: 0.925rem;
    font-weight: 600;
    padding: 0.55rem 0.75rem;
    border-radius: 6px;
}

.nav-link:hover {
    color: var(--primary-800) !important;
    background: var(--neutral-100);
}

.enterprise-hero {

    border-bottom: 1px solid var(--neutral-200);
}

.enterprise-section {
    padding: 5rem 0;
    background: #ffffff;
}

.enterprise-section.alt {
    background: var(--neutral-50);
    border-top: 1px solid var(--neutral-200);
    border-bottom: 1px solid var(--neutral-200);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.eyebrow {
    color: var(--secondary-600);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.market-panel,
.modern-card {
    background: #ffffff;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
}

.market-panel {
    padding: 1.5rem;
}

.modern-card:hover,
.how-it-works-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.checkout-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 0;
    color: var(--neutral-600);
    border-bottom: 1px solid var(--neutral-100);
}

.checkout-row strong {
    color: var(--neutral-900);
}

.metric-tile {
    min-height: 92px;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    padding: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.metric-tile strong {
    color: var(--primary-800);
    font-size: 1.05rem;
    line-height: 1.2;
}

.metric-tile span {
    color: var(--neutral-500);
    font-size: 0.78rem;
}

.market-toolbar {
    display: flex;
    align-items: stretch;
    gap: 0.75rem;
    background: #fff;
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    padding: 0.75rem;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.service-image-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modern-button,
.service-table button {
    background: var(--primary-800);
    color: #ffffff !important;
    border: 1px solid var(--primary-800);
    border-radius: 6px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
    font-weight: 700;
    padding: 0.72rem 1.05rem;
}

.modern-button::before,
.service-table button::before {
    display: none;
}

.modern-button:hover,
.service-table button:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.18);
}

.secondary-button {
    color: var(--primary-800);
    background: #ffffff;
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    font-weight: 700;
    padding: 0.72rem 1.05rem;
}

.secondary-button:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
}

.modern-input,
.modern-select {
    background: #ffffff;
    border: 1px solid var(--neutral-300);
    border-radius: 6px;
    padding: 0.875rem 1rem;
    color: var(--neutral-900);
}

.modern-input:focus,
.modern-select:focus {
    border-color: var(--primary-500);
    box-shadow: 0 0 0 3px rgba(40, 81, 111, 0.14);
}

.status-pill,
.modern-badge,
[class*="rounded-full"] {
    border-radius: 999px;
}

.status-live {
    color: #065f46;
    background: #d1fae5;
    border: 1px solid #a7f3d0;
    padding: 0.35rem 0.65rem;
    font-size: 0.75rem;
    font-weight: 800;
}

.panel-icon,
.icon-circle,
.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 8px;
    background: var(--primary-50);
    color: var(--primary-700);
    border: 1px solid var(--primary-100);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.how-it-works-step {
    border-radius: 8px;
    border: 1px solid var(--neutral-200);
    box-shadow: none;
    background: #fff;
}

.how-it-works-step::before,
.how-it-works-step::after {
    display: none !important;
}

.step-number {
    border-radius: 8px;
    background: var(--primary-800);
    box-shadow: none;
}

.step-number::before {
    display: none;
}

.file-upload-area {
    border-color: var(--neutral-300);
    border-radius: 8px;
    background: var(--neutral-50);
}

.file-upload-area:hover {
    border-color: var(--primary-500);
    background: var(--primary-50);
    transform: none;
}

.service-table {
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.service-table th {
    background: var(--primary-800);
}

footer {
    background: var(--primary-900) !important;
}

.modern-card.text-white {
    background: var(--primary-900);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.12);
}

.modern-card.text-white .text-black,
.modern-card.text-white .text-primary-50,
.modern-card.text-white h3,
.modern-card.text-white span {
    color: #ffffff !important;
}

.text-purple-600,
.text-purple-700,
.text-purple-800,
.text-purple-900 {
    color: var(--primary-700) !important;
}

.bg-purple-50,
.bg-purple-100 {
    background-color: var(--primary-50) !important;
}

.bg-purple-600,
.bg-purple-700 {
    background-color: var(--primary-800) !important;
}

.border-purple-600,
.border-purple-100 {
    border-color: var(--primary-300) !important;
}

footer::before {
    opacity: 0.35;
}

footer a {
    border-radius: 6px;
}

#wallet-notice,
#serviceModal > div,
#confirmationModal > div,
#cookie-consent,
#cookie-preferences > div {
    border-radius: 8px !important;
    border: 1px solid var(--neutral-200);
}

#services-grid > div.bg-white,
#transactions-grid > div.bg-white {
    border: 1px solid var(--neutral-200);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

@media (max-width: 768px) {
    .section-heading,
    .market-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .enterprise-section {
        padding: 3rem 0;
    }

    .enterprise-hero {
        padding-top: 6rem;
    }
}

/* ===== END ENTERPRISE MARKETPLACE REFRESH ===== */
