/* ========================================
   BRAZYTECHHERO - PREMIUM MODERN DESIGN
   ======================================== */

:root {
    --primary: #f0a500;
    --primary-dark: #e09500;
    --primary-light: #ffb82e;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #f5f5f7;
    --gray-dark: #6b7280;
    --white: #ffffff;
    --shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 45px -15px rgba(0,0,0,0.2);
    --radius: 24px;
    --radius-sm: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--white);
    color: #1f2937;
    line-height: 1.5;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(240, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    font-size: 28px;
}

.logo-text {
    color: white;
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: #000 !important;
    padding: 8px 20px;
    border-radius: 100px;
}

.nav-cta:hover {
    background: var(--primary-light);
    color: #000 !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0a0a0a;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        text-align: center;
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-links.active {
        display: flex;
    }
}

/* ===== HERO ===== */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: #000;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 36px; }
    .hero-buttons { flex-direction: column; align-items: center; }
}

/* ===== CATEGORIES ===== */
.categories-section {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 48px;
    font-size: 18px;
}

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.category-card {
    flex: 1;
    min-width: 160px;
    max-width: 200px;
    background: var(--gray);
    padding: 32px 20px;
    text-align: center;
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.category-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.category-card h3 {
    color: #1f2937;
    font-size: 18px;
    margin-bottom: 8px;
}

.category-count {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}

/* ===== SERVICES ===== */
.services-section {
    padding: 80px 0;
}

.services-section:nth-child(even) {
    background: #fafafa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #eef2f6;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.service-card.featured {
    border: 1px solid var(--primary);
    position: relative;
}

.service-card.featured::before {
    content: "⭐ FEATURED";
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: #000;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    z-index: 1;
}

.service-image {
    height: 200px;
    background: linear-gradient(135deg, #f0a500, #f5b82e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
}

.service-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(4px);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
}

.service-content {
    padding: 24px;
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-description {
    color: var(--gray-dark);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eef2f6;
}

.service-price {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
}

.service-time {
    color: var(--gray-dark);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-footer {
    display: flex;
    gap: 12px;
}

.btn-sm {
    flex: 1;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    justify-content: center;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
    background: #0a0a0a;
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1280px;
    margin: 48px auto 0;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    padding: 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    color: white;
    margin-bottom: 10px;
    font-size: 20px;
}

.step-card p {
    color: #9ca3af;
}

/* ===== FOOTER ===== */
.footer {
    background: #050505;
    color: #9ca3af;
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    display: block;
}

.footer-logo span {
    color: var(--primary);
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 48px;
    margin-top: 48px;
    border-top: 1px solid #1a1a1a;
    color: #6b7280;
    font-size: 14px;
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }