/* ==========================================
   NOVA PRODUCTIONS - FUTURISTIC THEME
   ========================================== */

:root {
    --bg-primary: #07040e;
    --bg-secondary: #0f0a1e;
    --bg-card: rgba(19, 13, 34, 0.7);
    --border-glow: rgba(168, 85, 247, 0.25);
    --border-glow-hover: rgba(168, 85, 247, 0.6);
    --neon-purple: #a855f7;
    --neon-purple-light: #c084fc;
    --neon-purple-dark: #6b21a8;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--neon-purple-dark);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--neon-purple);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(7, 4, 14, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glow);
    padding: 1rem 0;
    transition: var(--transition-smooth);
}

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

.navbar .logo {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.nav-logo-img {
    width: 38px !important;
    height: 38px !important;
    object-fit: contain !important;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.4);
}

.navbar .logo span span {
    color: var(--neon-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--neon-purple-light);
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.btn-nav {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-purple-dark));
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.3);
}
.btn-nav:hover {
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.6);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    padding: 10rem 0 6rem 0;
    background: radial-gradient(circle at 50% 20%, rgba(107, 33, 168, 0.15) 0%, transparent 60%);
}

.hero-glow {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: var(--neon-purple);
    filter: blur(150px);
    opacity: 0.15;
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--border-glow);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--neon-purple-light);
    margin-bottom: 1.5rem;
    box-shadow: inset 0 0 10px rgba(168, 85, 247, 0.1);
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff 30%, var(--neon-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-purple-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    border: 1px solid rgba(192, 132, 252, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 30px rgba(168, 85, 247, 0.7);
    transform: translateY(-3px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
    border: 1px solid var(--border-glow);
}

.btn-secondary:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: var(--neon-purple);
    transform: translateY(-3px);
}

.btn-block {
    width: 100%;
}

/* Glow Boxes & Cards */
.glow-box {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.glow-box:hover {
    border-color: var(--border-glow-hover);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
    transform: translateY(-4px);
}

.hero-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.hero-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neon-purple-light);
    font-weight: 600;
    margin-bottom: 1rem;
}

.stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.stats-mini strong {
    color: var(--text-main);
}

/* ==========================================
   SECTIONS GENERAL
   ========================================== */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, var(--neon-purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.team-card {
    text-align: center;
    padding: 2rem 1rem;
}

.glow-icon {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid var(--border-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: var(--neon-purple-light);
    font-size: 1.25rem;
}

.team-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.team-card .role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   SERVICES & PORTFOLIO GRIDS
   ========================================== */
.services-grid, .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card, .portfolio-card {
    padding: 2.5rem 2rem;
}

.service-card h3, .portfolio-info h4 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p, .portfolio-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.portfolio-thumb {
    height: 120px;
    background: rgba(168, 85, 247, 0.03);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    border: 1px dashed var(--border-glow);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    padding: 3rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    color: var(--text-main);
    font-size: 0.95rem;
}

.info-item .glow-icon {
    margin: 0;
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(168, 85, 247, 0.05);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neon-purple-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--neon-purple);
    color: white;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.5);
}

/* Form Styles */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    background: rgba(7, 4, 14, 0.6);
    border: 1px solid var(--border-glow);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.25);
}

/* ==========================================
   FOOTER
   ========================================== */
footer {
    border-top: 1px solid var(--border-glow);
    padding: 2.5rem 0;
    background: var(--bg-secondary);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-links a {
    color: var(--neon-purple-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.footer-links a:hover {
    text-shadow: 0 0 10px rgba(168, 85, 247, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container, .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-content {
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .footer-container {
        flex-direction: column;
        gap: 1rem;
    }
}