:root {
    --bg-dark: #0a0a0f;
    --bg-gradient: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 100%);
    --text-light: #ffffff;
    --text-gray: #94a3b8;
    --primary-color: #6d28d9;
    --primary-gradient: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
    --accent-color: #06b6d4;
    --border-color: #1e293b;
    --card-bg: rgba(30, 41, 59, 0.5);
    --hover-color: #7c3aed;
}

html {
    scroll-behavior: smooth;
}

body.dark-theme {
    background: var(--bg-gradient);
    color: var(--text-light);
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

main {
    overflow-y: auto;
    width: 100%;
}

section {
    padding: 80px 0;
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)),
                url('/assets/images/hero-bg.jpg') center/cover;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, var(--primary-color) 0%, transparent 70%);
    opacity: 0.1;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero .lead {
    font-size: 1.5rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

/* About Section */
#about {
    background: linear-gradient(rgba(10, 10, 15, 0.95), rgba(10, 10, 15, 0.95)),
                url('/assets/images/about-bg.jpg') center/cover;
}

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

.feature-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
}

.feature-list i {
    color: var(--accent-color);
}

/* Services Section */
#services {
    background: var(--bg-gradient);
}

.service-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    height: 100%;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.2);
}

.service-icon {
    font-size: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.service-list li {
    margin-bottom: 0.5rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.service-list li:hover {
    color: var(--text-light);
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    color: var(--text-light) !important;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(109, 40, 217, 0.2);
    color: var(--text-light) !important;
}

.form-control::placeholder {
    color: var(--text-gray);
    opacity: 0.7;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

select.form-control option {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 0.5rem;
}

/* Button */
.btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hover-color) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
}

/* Footer */
footer {
    padding: 2rem 0;
    color: var(--text-gray);
    border-top: 1px solid var(--border-color);
    background: var(--bg-dark);
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        text-align: center;
        padding: 2rem 0;
        height: auto;
        min-height: 100vh;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .lead {
        font-size: 1.25rem;
    }
    
    section {
        padding: 60px 0;
    }
}

/* Add these styles for form labels */
.form-label {
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

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

/* Input focus state */
.form-control:focus::placeholder {
    opacity: 0.5;
}

/* Style disabled inputs */
.form-control:disabled,
.form-control[readonly] {
    background-color: rgba(255, 255, 255, 0.05);
    opacity: 0.7;
}
  