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

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #141414;
    --accent-grey: #404040;
    --accent-grey-hover: #5a5a5a;
    --text-primary: #e6e6e6;
    --text-secondary: #9ca3af;
    --glass-bg: rgba(30, 30, 30, 0.6);
    --glass-border: rgba(80, 80, 80, 0.4);
    --white: #ffffff;
    --black: #0a0a0a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ========================================
   NAVIGATION - WHITE BACKGROUND WITH BLACK TEXT
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background-color: var(--white);
    backdrop-filter: blur(12px);
    padding: 1rem 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}

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

/* Logo - Using geometric font (Space Grotesk) */
.logo {
    font-family: 'Space Grotesk', 'Rajdhani', 'Teko', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: var(--black);
    text-transform: uppercase;
}

/* Logo image styling (for when you add your logo) */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #404040;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

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

.btn-nav {
    padding: 0.7rem 1.7rem;
    background-color: var(--black);
    color: var(--white) !important;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background-color: #2a2a2a;
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   BUTTONS - PURE GREY/BLACK (NO BLUE)
   ======================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: var(--accent-grey);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-grey-hover);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid var(--accent-grey);
}

.btn-secondary:hover {
    background-color: var(--accent-grey);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* ========================================
   HERO SECTION - WITH GEOMETRIC PATTERNS
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-primary);
}

/* Visible geometric grid pattern */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(80, 80, 80, 0.12) 40px,
            rgba(80, 80, 80, 0.12) 41px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 40px,
            rgba(80, 80, 80, 0.12) 40px,
            rgba(80, 80, 80, 0.12) 41px
        );
    pointer-events: none;
    opacity: 0.7;
}

/* Diagonal accent lines */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 80px,
            rgba(80, 80, 80, 0.06) 80px,
            rgba(80, 80, 80, 0.06) 82px
        );
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: 7rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.section-header h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    padding: 2.2rem;
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-grey);
}

/* ========================================
   ABOUT SECTION - WITH PATTERN
   ======================================== */
.about {
    background-color: var(--bg-primary);
    background-image:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(80, 80, 80, 0.1) 60px,
            rgba(80, 80, 80, 0.1) 61px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(80, 80, 80, 0.1) 60px,
            rgba(80, 80, 80, 0.1) 61px
        );
}

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

.about-card {
    text-align: center;
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.15), rgba(80, 80, 80, 0.05));
    border-radius: 12px;
    color: var(--text-secondary);
}

.about-card h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

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

/* ========================================
   SERVICES SECTION
   ======================================== */
.services {
    background-color: var(--bg-secondary);
}

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

.service-card {
    text-align: left;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(80, 80, 80, 0.15), rgba(80, 80, 80, 0.05));
    border-radius: 10px;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   PROCESS SECTION - WITH DIAMOND PATTERN
   ======================================== */
.process {
    background-color: var(--bg-primary);
    background-image:
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(80, 80, 80, 0.08) 50px,
            rgba(80, 80, 80, 0.08) 51px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 50px,
            rgba(80, 80, 80, 0.08) 50px,
            rgba(80, 80, 80, 0.08) 51px
        );
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-grey), rgba(64, 64, 64, 0.7));
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.step-content h3 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CREATORS SECTION
   ======================================== */
.creators {
    background-color: var(--bg-secondary);
}

.creators-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.creators-text h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.creators-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.creators-benefits {
    display: grid;
    gap: 1rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.benefit:hover {
    border-color: var(--accent-grey);
    transform: translateX(5px);
}

.benefit svg {
    flex-shrink: 0;
    color: var(--text-secondary);
}

.benefit span {
    font-weight: 400;
    color: var(--text-secondary);
}

/* ========================================
   FAQ SECTION - WITH HEXAGONAL PATTERN
   ======================================== */
.faq {
    background-color: var(--bg-primary);
    background-image:
        repeating-linear-gradient(
            60deg,
            transparent,
            transparent 45px,
            rgba(80, 80, 80, 0.1) 45px,
            rgba(80, 80, 80, 0.1) 46px
        ),
        repeating-linear-gradient(
            -60deg,
            transparent,
            transparent 45px,
            rgba(80, 80, 80, 0.1) 45px,
            rgba(80, 80, 80, 0.1) 46px
        );
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-grey);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    color: var(--text-secondary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-secondary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact {
    background-color: var(--bg-secondary);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 2.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.contact-info > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
}

.contact-detail svg {
    color: var(--text-secondary);
    flex-shrink: 0;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    background-color: rgba(15, 17, 19, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-grey);
    background-color: rgba(21, 24, 28, 0.8);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ========================================
   FOOTER - WHITE BACKGROUND WITH BLACK TEXT
   ======================================== */
.footer {
    padding: 3.5rem 0;
    background-color: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Space Grotesk', 'Rajdhani', 'Teko', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--black);
}

.footer-text {
    color: #404040;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-copyright {
    color: #404040;
    font-size: 0.875rem;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    }

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

    .hamburger {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-step {
        gap: 1.5rem;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section {
        padding: 5rem 0;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1.2rem;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .creators-text h2 {
        font-size: 2.1rem;
    }
}
