@charset "UTF-8";

/* ========================================
   CSS Reset & Base
   ======================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
}

/* ========================================
   Layout
   ======================================== */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Skip Navigation
   ======================================== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 8px 16px;
    background: #6366f1;
    color: #ffffff;
    font-size: 0.9rem;
    z-index: 9999;
    border-radius: 0 0 6px 0;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   Navigation
   ======================================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav .logo {
    height: 40px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

nav a {
    color: #b0b0b0;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

nav a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

/* ========================================
   Header / Hero
   ======================================== */
header {
    padding: 140px 0 80px;
    text-align: center;
}

header .logo-main {
    width: 280px;
    height: auto;
    margin-bottom: 40px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0 0 16px;
    color: #ffffff;
}

header .tagline {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin: 0 0 40px;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
}

/* ========================================
   Sections
   ======================================== */
section {
    padding: 80px 0;
}

section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0 0 24px;
    color: #ffffff;
}

section p {
    color: #c0c0c0;
    margin: 0 0 16px;
    text-align: left;
}

section p:last-child {
    margin-bottom: 0;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    margin: 0 0 32px;
    border-radius: 2px;
}

/* ========================================
   Services List
   ======================================== */
.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
    text-align: left;
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list strong {
    color: #ffffff;
}

/* ========================================
   Project Cards
   ======================================== */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.project-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 28px;
    transition: all 0.3s ease;
}

.project-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.project-card h3 {
    font-size: 1.2rem;
    margin: 0 0 12px;
    color: #ffffff;
}

.project-card p {
    font-size: 0.95rem;
    color: #a0a0a0;
    margin: 0 0 16px;
}

.project-card .privacy-link {
    font-size: 0.85rem;
}

/* ========================================
   Coming Soon Badge
   ======================================== */
.coming-soon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.badge {
    display: inline-block;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

/* ========================================
   Links
   ======================================== */
a {
    color: #818cf8;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #a5b4fc;
    text-decoration: underline;
}

/* ========================================
   Contact Section
   ======================================== */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ========================================
   Footer
   ======================================== */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    margin-top: 40px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

footer p {
    color: #707070;
    font-size: 0.85rem;
    margin: 0;
}

footer a {
    color: #707070;
}

footer a:hover {
    color: #a0a0a0;
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* ========================================
   Mobile Responsive
   ======================================== */
@media (max-width: 768px) {
    nav .container {
        flex-direction: column;
        gap: 12px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav a {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    header {
        padding: 120px 0 60px;
    }

    header .logo-main {
        width: 200px;
    }

    h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 1.5rem;
    }

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

    footer .container {
        flex-direction: column;
        text-align: center;
    }
}

/* ========================================
   Privacy Policy Page Overrides
   ======================================== */
.privacy-page {
    background-color: #ffffff;
    color: #333333;
}

.privacy-page nav {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-page nav a {
    color: #666666;
}

.privacy-page nav a:hover {
    color: #333333;
    background: rgba(0, 0, 0, 0.05);
}

.privacy-page header {
    padding: 120px 0 40px;
}

.privacy-page h1 {
    color: #333333;
    font-size: 2rem;
}

.privacy-page .divider {
    margin: 0 auto 40px;
}

.privacy-page section {
    padding: 0 0 60px;
}

.privacy-page h3 {
    color: #333333;
    font-size: 1.1rem;
    margin: 32px 0 12px;
}

.privacy-page h3:first-of-type {
    margin-top: 0;
}

.privacy-page p {
    color: #555555;
}

.privacy-page a {
    color: #6366f1;
}

.privacy-page footer {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-page footer p,
.privacy-page footer a {
    color: #999999;
}
