/* Core Branding */
:root {
    --neon-cyan: #22d3ee;
    --bg-dark: #05060a;
    --bg-card: rgba(8, 10, 16, 0.98);
}

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

body {
    background: var(--bg-dark);
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Hero Section - Full viewport */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Brand Overlay (top left) */
.brand-overlay {
    position: absolute;
    top: 15px;
    left: 30px;
    z-index: 10;
}

.brand-overlay .name {
    font-size: 24px;
    font-weight: bold;
    color: var(--neon-cyan);
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.brand-overlay .sub {
    font-size: 10px;
    text-transform: uppercase;
    color: #6b9cc9;
    opacity: 0.9;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.7);
}

/* Hero Center Text (65% from top) */
.hero-text {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(13px, 2.1vw, 22px);
    text-align: center;
    width: 90%;
    max-width: 800px;
    color: #6b9cc9;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(107, 156, 201, 0.5);
    line-height: 1.4;
    z-index: 2;
}

/* Services Selector (far left, same plane as language selector) */
.services-selector {
    position: absolute;
    top: 20%;
    left: 30px;
    z-index: 100;
}

.services-btn {
    background: rgba(8, 10, 16, 0.85);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.services-btn:hover {
    background: rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.services-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    filter: blur(8px);
    transform: translateY(-15px) scale(0.92);
    transition: 
        opacity 0.3s ease, 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
        filter 0.3s ease,
        visibility 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.services-dropdown.open {
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: translateY(0) scale(1);
}

.service-item {
    display: block;
    padding: 12px 24px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.2s ease;
    border-left: 0px solid var(--neon-cyan);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    cursor: pointer;
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    background: rgba(34, 211, 238, 0.15);
    color: var(--neon-cyan);
    padding-left: 32px;
    border-left: 4px solid var(--neon-cyan);
}

.service-item.has-submenu {
    position: relative;
}

.service-item.has-submenu::after {
    content: '▶';
    position: absolute;
    right: 20px;
    font-size: 10px;
    opacity: 0.7;
    transition: all 0.2s ease;
}

.service-item.has-submenu:hover::after {
    right: 15px;
    opacity: 1;
}

/* Language Submenu (appears on hover of Legacy Refactoring) */
.language-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 10px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    filter: blur(8px);
    transform: translateX(-15px) scale(0.92);
    transition: 
        opacity 0.3s ease, 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
        filter 0.3s ease,
        visibility 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.language-submenu.open {
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: translateX(0) scale(1);
}

.language-submenu a {
    display: block;
    padding: 10px 20px;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
    transition: all 0.2s ease;
    border-left: 0px solid var(--neon-cyan);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.language-submenu a:last-child {
    border-bottom: none;
}

.language-submenu a:hover {
    background: rgba(34, 211, 238, 0.15);
    color: var(--neon-cyan);
    padding-left: 28px;
    border-left: 4px solid var(--neon-cyan);
}

/* Language Selector (right side of same plane as services) */
.language-selector {
    position: absolute;
    top: 20%;
    left: 340px;
    z-index: 100;
}

.language-btn {
    background: rgba(8, 10, 16, 0.85);
    border: 2px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 12px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.language-btn:hover {
    background: rgba(34, 211, 238, 0.2);
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--bg-card);
    border: 2px solid var(--neon-cyan);
    border-radius: 8px;
    padding: 4px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    filter: blur(8px);
    transform: translateY(-15px) scale(0.92);
    transition: 
        opacity 0.3s ease, 
        transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
        filter 0.3s ease,
        visibility 0.3s;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.language-selector:hover .language-dropdown,
.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    filter: blur(0px);
    transform: translateY(0) scale(1);
}

.language-dropdown a {
    display: block;
    color: #ffffff;
    padding: 8px 24px;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 0px solid var(--neon-cyan);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.language-dropdown a:hover {
    background: rgba(34, 211, 238, 0.15);
    color: var(--neon-cyan);
    padding-left: 32px;
    border-left: 4px solid var(--neon-cyan);
}

/* Upload CTA Button (80% from top, right side) */
.upload-cta {
    position: absolute;
    top: 80%;
    right: 30px;
    z-index: 10;
}

.upload-cta-btn {
    background: var(--neon-cyan);
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 20px rgba(34, 211, 238, 0.4);
}

.upload-cta-btn:hover {
    background: #1ec4d9;
    box-shadow: 0 0 30px rgba(34, 211, 238, 0.7);
    transform: translateY(-3px);
}

/* Footer Overlay (bottom of page) */
.footer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: rgba(8, 10, 16, 0.85);
    border-top: 1px solid rgba(34, 211, 238, 0.3);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-overlay > div:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.social-links a:hover {
    color: var(--neon-cyan);
    transform: translateY(-3px);
}

.social-links a svg {
    transition: all 0.3s ease;
}

.social-links a:hover svg {
    filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.6));
}

/* Footer Links */
.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px rgba(34, 211, 238, 0.5);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-overlay {
        flex-direction: column;
        text-align: center;
        padding: 15px 20px;
        gap: 15px;
    }
    
    .footer-overlay > div:first-child {
        order: 3;
    }
    
    .social-links {
        order: 1;
    }
    
    .footer-links {
        order: 2;
    }
    
    .services-selector {
        left: 15px;
        top: 18%;
    }
    
    .language-selector {
        left: 15px;
        top: 25%;
    }
    
    .services-btn,
    .language-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}

/* Upload Container */
.upload-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background: rgba(8, 10, 16, 0.95);
    padding: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    text-align: center;
    z-index: 5;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.upload-container h2 {
    color: var(--neon-cyan);
    margin: 0 0 10px 0;
    font-size: 28px;
    letter-spacing: 2px;
}

.upload-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 30px 0;
    font-size: 14px;
}

.upload-dropzone {
    border: 2px dashed var(--neon-cyan);
    border-radius: 8px;
    padding: 40px 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.upload-dropzone:hover {
    background: rgba(34, 211, 238, 0.05);
}

.upload-dropzone svg {
    color: var(--neon-cyan);
    margin-bottom: 15px;
}

.dropzone-text {
    color: #ffffff;
    font-size: 16px;
    margin: 10px 0 5px 0;
}

.dropzone-or {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 10px 0;
}

.upload-btn {
    background: var(--neon-cyan);
    border: none;
    color: #000;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.upload-btn:hover {
    background: #1ec4d9;
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
    transform: translateY(-2px);
}

.file-info {
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid var(--neon-cyan);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.file-details {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 14px;
}

.file-details strong {
    color: var(--neon-cyan);
}

.proceed-btn {
    background: var(--neon-cyan);
    border: none;
    color: #000;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    width: 100%;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.proceed-btn:hover {
    background: #1ec4d9;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
    transform: translateY(-2px);
}

.processing {
    text-align: center;
    padding: 30px 0;
}

.spinner {
    border: 4px solid rgba(34, 211, 238, 0.2);
    border-top: 4px solid var(--neon-cyan);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.error-message {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid #e74c3c;
    color: #e74c3c;
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 14px;
}

.supported-languages {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(34, 211, 238, 0.2);
}

.supported-languages p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(34, 211, 238, 0.15);
    border: 1px solid var(--neon-cyan);
    color: var(--neon-cyan);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Content Container for Text-Heavy Pages */
.content-container {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 900px;
    max-height: 75vh;
    overflow-y: auto;
    background: rgba(8, 10, 16, 0.95);
    padding: 40px;
    border: 2px solid var(--neon-cyan);
    border-radius: 12px;
    z-index: 5;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.content-container::-webkit-scrollbar {
    width: 8px;
}

.content-container::-webkit-scrollbar-track {
    background: rgba(34, 211, 238, 0.1);
    border-radius: 4px;
}

.content-container::-webkit-scrollbar-thumb {
    background: var(--neon-cyan);
    border-radius: 4px;
}

.content-container::-webkit-scrollbar-thumb:hover {
    background: #1ec4d9;
}

.content-container h1 {
    color: var(--neon-cyan);
    margin: 0 0 30px 0;
    font-size: 32px;
    letter-spacing: 3px;
    text-align: center;
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

.content-container h2 {
    color: var(--neon-cyan);
    margin: 30px 0 15px 0;
    font-size: 22px;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.3);
    padding-bottom: 10px;
}

.content-container h3 {
    color: rgba(255, 255, 255, 0.9);
    margin: 20px 0 10px 0;
    font-size: 16px;
    letter-spacing: 1px;
}

.content-container p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 10px 0;
}

.content-container strong {
    color: var(--neon-cyan);
}

.content-container ul {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin: 10px 0 10px 20px;
}

.content-container ul li {
    margin: 8px 0;
}

.content-section {
    margin-bottom: 40px;
}

/* Process Grid */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.process-step {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(34, 211, 238, 0.3);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--neon-cyan);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step h3 {
    margin: 10px 0;
    font-size: 16px;
    color: var(--neon-cyan);
}

.process-step p {
    font-size: 14px;
    margin: 10px 0 0 0;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.feature-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--neon-cyan);
    font-weight: bold;
    font-size: 18px;
}

/* Language Grid */
.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.language-card {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.language-card:hover {
    background: rgba(34, 211, 238, 0.1);
    border-color: var(--neon-cyan);
}

.language-card h3 {
    margin: 0 0 8px 0;
    color: var(--neon-cyan);
    font-size: 18px;
}

.language-card p {
    margin: 0;
    font-size: 12px;
    opacity: 0.7;
}

/* Pricing Table */
.pricing-table {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    overflow: hidden;
    margin-top: 20px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    border-bottom: 1px solid rgba(34, 211, 238, 0.2);
}

.pricing-row:last-of-type {
    border-bottom: none;
}

.pricing-range {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-rate {
    color: var(--neon-cyan);
    font-weight: bold;
}

.pricing-footer {
    padding: 15px 20px;
    background: rgba(34, 211, 238, 0.1);
    text-align: center;
    color: var(--neon-cyan);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 20px;
}

.benefit-item h3 {
    margin: 0 0 10px 0;
    color: var(--neon-cyan);
}

.benefit-item p {
    margin: 0;
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(34, 211, 238, 0.3);
}

.cta-button {
    background: var(--neon-cyan);
    color: #000;
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background: #1ec4d9;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button-secondary:hover {
    background: rgba(34, 211, 238, 0.1);
    box-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
    transform: translateY(-2px);
}

/* FAQ Styles */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background: rgba(34, 211, 238, 0.03);
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(34, 211, 238, 0.08);
    border-color: rgba(34, 211, 238, 0.4);
}

.faq-item h3 {
    color: var(--neon-cyan);
    margin: 0 0 15px 0;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.faq-item p {
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

.faq-item ul {
    margin: 10px 0 10px 20px;
    padding: 0;
    color: rgba(255, 255, 255, 0.8);
}

.faq-item ul li {
    margin: 8px 0;
    line-height: 1.6;
}

.faq-item a {
    color: var(--neon-cyan);
    text-decoration: none;
    transition: all 0.2s ease;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Contact Form Styles */
.contact-form-container {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 30px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: var(--neon-cyan);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: rgba(8, 10, 16, 0.8);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 6px;
    padding: 12px 15px;
    color: #ffffff;
    font-size: 14px;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-cyan);
    box-shadow: 0 0 10px rgba(34, 211, 238, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
}

.submit-btn {
    background: var(--neon-cyan);
    color: #000;
    border: none;
    padding: 15px 50px;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
}

.submit-btn:hover:not(:disabled) {
    background: #1ec4d9;
    box-shadow: 0 0 25px rgba(34, 211, 238, 0.6);
    transform: translateY(-2px);
}

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

.btn-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-status {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.form-status.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid #4caf50;
    color: #4caf50;
}

.form-status.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid #f44336;
    color: #f44336;
}

/* Contact Information Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 20px;
}

.contact-item h3 {
    margin: 0 0 10px 0;
    color: var(--neon-cyan);
    font-size: 16px;
}

.contact-item p {
    margin: 5px 0;
    font-size: 14px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--neon-cyan);
}

.contact-address,
.contact-hours {
    background: rgba(34, 211, 238, 0.05);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

.contact-address h3,
.contact-hours h3 {
    margin: 0 0 10px 0;
    color: var(--neon-cyan);
    font-size: 16px;
}

.contact-address p,
.contact-hours p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Code Example Styles */
.code-example {
    background: rgba(8, 10, 16, 0.9);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    overflow-x: auto;
}

.code-example pre {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

.code-example code {
    color: var(--neon-cyan);
}