/* Modern SecurePay 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;
}

/* 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 ===== */