/* Wahala Network Website Styles */
:root {
    --primary-color: #1a73e8;
    --secondary-color: #34a853;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

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

h1 { font-size: 3rem; font-weight: 700; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
h4 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }

a { color: var(--primary-color); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--secondary-color); }

img { max-width: 100%; height: auto; display: block; }

.navbar {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-menu a:hover, .nav-menu a.active {
    background: var(--light-color);
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 3px;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 8rem 0 6rem;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
}

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

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: #fff;
}

.btn-primary:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: transparent;
    color: #fff;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
}

.btn-large { padding: 1.25rem 2.5rem; font-size: 1.1rem; }
.btn-full { width: 100%; }

.stats-section {
    padding: 4rem 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.flagship-section {
    padding: 6rem 0;
}

.flagship-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.flagship-logo { text-align: center; }

.flagship-logo img {
    max-width: 300px;
    margin: 0 auto;
}

.flagship-content h3 {
    font-size: 2.5rem;
}

.flagship-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.flagship-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.flagship-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.mini-stat {
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.15);
    border-radius: 10px;
}

.mini-stat strong {
    display: block;
    font-size: 1.5rem;
}

.about-preview {
    padding: 6rem 0;
    background: var(--light-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
}

.about-content .lead {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.achievement-list {
    list-style: none;
    margin: 2rem 0;
}

.achievement-list li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
}

.achievement-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.services-preview { padding: 6rem 0; }

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

.service-card {
    padding: 2.5rem;
    background: var(--light-color);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: #fff;
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.press-preview {
    padding: 6rem 0;
    background: var(--light-color);
}

.press-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.press-logo-item {
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 { font-size: 3rem; }
.cta-content p { font-size: 1.3rem; margin-bottom: 2rem; }
.cta-center { text-align: center; margin-top: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.footer {
    background: var(--dark-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col ul { list-style: none; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer-disclaimer {
    font-size: 0.9rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    text-align: center;
}

.content-section { padding: 4rem 0; }

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.content-main { font-size: 1.1rem; line-height: 1.8; }
.content-main .lead { font-size: 1.4rem; font-weight: 500; margin-bottom: 2rem; }
.content-main ul { margin: 1.5rem 0; padding-left: 2rem; }

.milestone-list {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    list-style: none;
    margin: 2rem 0;
}

.quote-box {
    background: var(--light-color);
    padding: 2rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin: 2rem 0;
    font-style: italic;
}

.sidebar-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sidebar-highlight {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.founder-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.founder-image .image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
}

.founder-achievements {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.services-intro, .press-intro { padding: 4rem 0 2rem; text-align: center; }
.services-detailed, .press-coverage { padding: 4rem 0; }

.service-detail {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    padding: 3rem;
    background: var(--light-color);
    border-radius: 15px;
    margin-bottom: 3rem;
}

.service-detail-icon { font-size: 5rem; }
.service-tagline { font-size: 1.2rem; color: var(--text-light); }

.service-results {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-highlight, .case-study {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    border-radius: 5px;
    margin-top: 2rem;
}

.why-choose { padding: 6rem 0; text-align: center; }

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

.why-item {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
}

.press-articles { max-width: 900px; margin: 0 auto; }

.press-article {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.press-source {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.press-source h3 { color: var(--primary-color); }

.press-excerpt {
    font-style: italic;
    color: var(--text-light);
    padding: 1rem;
    background: #fff;
    border-left: 4px solid var(--primary-color);
    margin-top: 1rem;
}

.press-stats { padding: 6rem 0; background: var(--light-color); }
.press-quotes { padding: 6rem 0; }

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

.quote-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.press-contact { padding: 6rem 0; background: var(--light-color); text-align: center; }

.contact-section { padding: 4rem 0; }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
}

.official-notice {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-form {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
}

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

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    display: block;
}

.contact-cta { padding: 6rem 0; background: var(--light-color); }

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

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
}

.faq-section { padding: 6rem 0; }

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

.faq-item {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .nav-menu { display: none; }
    .mobile-menu-toggle { display: flex; }
    .flagship-card, .about-grid, .founder-grid, .content-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .results-grid { grid-template-columns: 1fr; }
}
