/* Arizona Apps - Tech Startup Theme */
:root {
    --primary: #00f2ff;
    --secondary: #7000ff;
    --accent: #ff0055;
    --bg-dark: #050510;
    --text-main: #ffffff;
    --text-muted: #a0a0b0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: 1px solid rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --container-width: 1200px;
    --header-height: 80px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

h3 {
    font-size: 1.5rem;
}

p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.highlight {
    color: var(--primary);
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
}

/* Glassmorphism */
.glass-header {
    background: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(10px);
    border-bottom: var(--glass-border);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
}

.glass-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Header & Nav */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn-primary {
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    opacity: 0.9;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at 50% 50%, rgba(112, 0, 255, 0.15), transparent 60%);
    padding-top: var(--header-height);
}

.hero-content {
    max-width: 800px;
}

.hero-btns {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Portfolio */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
    object-fit: cover;
    background-color: #222;
    /* Placeholder */
}

/* FAQ */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

/* Contact */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input,
textarea {
    background: rgba(255, 255, 255, 0.05);
    border: var(--glass-border);
    padding: 15px;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
.glass-footer {
    background: #020205;
    padding: 50px 0 20px;
    border-top: var(--glass-border);
    margin-top: 80px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--primary);
}

/* Language Switcher */
.lang-selector {
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.lang-selector .active {
    color: var(--primary);
}

.lang-selector .divider {
    color: var(--text-muted);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: var(--header-height);
        height: calc(100vh - var(--header-height));
        background: var(--bg-dark);
        flex-direction: column;
        width: 100%;
        padding: 50px;
        transition: 0.3s;
        border-top: var(--glass-border);
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        width: 30px;
        cursor: pointer;
    }

    .mobile-menu-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: white;
        margin-bottom: 6px;
        transition: 0.3s;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }
}

@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
}