/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #64748b;
    --text-color: #1e293b;
    --text-light: #64748b;
    --bg-color: #ffffff;
    --bg-light: #f8fafc;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #020617;
}

/* Light mode support */
@media (prefers-color-scheme: light) {
    body {
        background-color: #f8fafc;
        color: #1e293b;
    }
    
    .main-section::before {
        background:
            radial-gradient(circle at 20% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 58%),
            radial-gradient(circle at 80% 75%, rgba(212, 175, 55, 0.06) 0%, transparent 60%),
            radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.03) 0%, transparent 80%),
            #f8fafc;
    }
    
    .hero-title {
        color: #D4AF37;
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
    }
    
    .hero-email {
        color: rgba(212, 175, 55, 0.9);
    }
    
    .contact-email {
        color: rgba(212, 175, 55, 0.9);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Main Section */
.main-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at 20% 25%, rgba(212, 175, 55, 0.14) 0%, transparent 58%),
        radial-gradient(circle at 80% 75%, rgba(212, 175, 55, 0.10) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 80%),
        #020617;
    position: relative;
    overflow: hidden;
}



.orderbook-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.2;
}

/* Hero Section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    position: relative;
    min-height: 100vh;
    z-index: 1;
    padding: 4rem 1.5rem;
}

.hero-content {
    max-width: 640px;
    width: 100%;
    padding: 2rem;
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    margin: 0 0 1.5rem;
    color: #D4AF37;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    animation: fadeInUp 0.9s ease;
}

.hero-email {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0;
    border-radius: 0;
    border: none;
    background: none;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: none;
    cursor: pointer;
}

.hero-email::before {
    content: none;
}

.hero-email:hover {
    color: #e5e7eb;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #D4AF37;
    color: #000000;
    font-weight: 600;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #f5d876;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Section Styles */
section {
    padding: 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #D4AF37;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* About Section */
.about {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--text-light);
    font-weight: 500;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 3rem 0;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info {
    text-align: center;
}

.contact-email {
    font-size: 1.5rem;
    color: rgba(212, 175, 55, 0.9);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    padding: 0.8rem 1.6rem;
    border-radius: 0.5rem;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    border: none;
}

.contact-email:hover {
    color: #f5d876;
    text-shadow: 0 0 12px rgba(212,175,55,0.25);
    box-shadow: none;
    transform: translateY(-2px) scale(1.01);
}

.contact-form {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    color: #ffffff;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    background: rgba(0, 0, 0, 0.6);
}

.form-status {
    margin-bottom: 1rem;
    padding: 0.875rem;
    border-radius: 0.5rem;
    text-align: center;
    font-weight: 500;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.2);
    color: #4ade80;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-status.error {
    background: rgba(239, 68, 68, 0.2);
    color: #f87171;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

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

/* Footer */
.footer {
    background: var(--text-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 3rem 1.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
        letter-spacing: 0.12em;
    }

    .hero-subtitle {
        font-size: 0.98rem;
    }
    
    .contact {
        padding: 2rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-email {
        font-size: 1.25rem;
        padding: 0.875rem 1.5rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 100vh;
        padding: 2.5rem 1.25rem;
    }
    
    .hero-title {
        font-size: 2.4rem;
        letter-spacing: 0.1em;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .contact {
        padding: 1.5rem 0;
    }
    
    .contact-email {
        font-size: 1rem;
        padding: 0.75rem 1.25rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}
