/* ===================================
   Growtharcade Website Styles
   =================================== */

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #8b5cf6;
    --accent-color: #ec4899;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-light: #e2e8f0;
    --text-muted: #94a3b8;
    --gradient-1: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-2: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-muted);
}

/* Navigation */
.navbar {
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand .brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    color: var(--text-light);
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .btn-primary {
    color: white !important;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-1);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-outline-light {
    border: 2px solid var(--text-light);
    color: var(--text-light);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.geometric-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.growth-curve {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.3));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Problem Section */
.problem-section {
    background-color: var(--dark-card);
    padding: 6rem 0;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.problem-card {
    background-color: var(--dark-bg);
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.problem-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.problem-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Approach Section */
.approach-section {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: var(--gradient-1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.transformation-visual {
    background-color: var(--dark-card);
    padding: 2rem;
    border-radius: 12px;
}

.transform-item {
    margin-bottom: 2rem;
}

.transform-item:last-child {
    margin-bottom: 0;
}

.transform-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.transform-bar {
    height: 12px;
    background: var(--gradient-1);
    border-radius: 6px;
    width: var(--width);
    animation: growBar 1.5s ease-out;
}

@keyframes growBar {
    from { width: 0; }
    to { width: var(--width); }
}

/* Mandate Section */
.mandate-section {
    background-color: var(--dark-card);
    padding: 6rem 0;
}

.mandate-badge {
    display: inline-block;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mandate-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mandate-content {
    background-color: var(--dark-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.mandate-intro {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.mandate-feature {
    background-color: var(--dark-card);
    padding: 1.5rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
}

.mandate-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(99, 102, 241, 0.2);
}

.mandate-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.mandate-feature i {
    margin-right: 0.5rem;
}

.mandate-feature p {
    color: var(--text-muted);
    margin-bottom: 0;
}

.mandate-qualifier {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.mandate-qualifier h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.mandate-qualifier p {
    color: var(--text-muted);
}

/* Insights Section */
.insights-section {
    padding: 6rem 0;
}

.insight-card {
    background-color: var(--dark-card);
    padding: 2.5rem;
    border-radius: 12px;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(99, 102, 241, 0.1);
    display: flex;
    flex-direction: column;
}

.insight-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

.insight-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.insight-card p {
    color: var(--text-muted);
    flex-grow: 1;
}

.insight-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.insight-link:hover {
    color: var(--secondary-color);
    gap: 1rem;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark-card);
    padding: 6rem 0;
}

.contact-card {
    background-color: var(--dark-bg);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.contact-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form .form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--dark-card);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-light);
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: var(--dark-card);
    border-color: var(--primary-color);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.contact-form .form-control::placeholder {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    border-top: 1px solid rgba(99, 102, 241, 0.1);
}

.footer .brand-text {
    font-size: 1.25rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mandate-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .mandate-content {
        padding: 2rem 1.5rem;
    }
    
    .contact-card {
        padding: 2rem 1.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}