/* AppWT.co Corporate Profile - Main Stylesheet */
/* Version 1.0 | March 2026 */
/* (c) 1997-2026 AppWT Web & AI Solutions (AppWT LLC) */

:root {
    --forest: #1B4332;
    --gold: #F4A261;
    --platinum: #F8F9FA;
    --obsidian: #0D2818;
    --white: #FFFFFF;
    --text-dark: #212529;
    --text-light: #6C757D;
}

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

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--platinum);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--obsidian);
}

h1 { font-size: clamp(28px, 5vw, 52px); }
h2 { font-size: clamp(22px, 4vw, 32px); }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p { margin-bottom: 1rem; }

a {
    color: var(--forest);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover { color: var(--gold); }

img, video, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

header {
    background: linear-gradient(135deg, var(--obsidian), var(--forest));
    color: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
}

.logo span { color: var(--gold); }

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        text-align: center;
    }
    nav ul {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
}

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

.hero {
    background: linear-gradient(135deg, var(--obsidian), var(--forest));
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    color: var(--platinum);
}

main {
    background: var(--white);
    padding: 4rem 0;
}

section {
    margin-bottom: 4rem;
}

section:last-child {
    margin-bottom: 0;
}

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

.stat-card {
    background: var(--platinum);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid var(--gold);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--forest);
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
    border-left: 2px solid var(--gold);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--text-dark);
}

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

.team-member {
    background: var(--platinum);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.team-member h3 {
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-member .since {
    color: var(--text-light);
    font-size: 0.9rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gold);
    color: var(--white);
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    min-height: 44px;
    text-align: center;
}

.btn:hover {
    background: var(--forest);
    border-color: var(--forest);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--forest);
}

.btn-outline:hover {
    background: var(--forest);
    color: var(--white);
}

.faq-item {
    background: var(--platinum);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.faq-question {
    font-weight: 700;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.faq-answer {
    color: var(--text-dark);
}

.contact-info {
    background: var(--platinum);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    font-weight: 700;
    color: var(--forest);
    min-width: 100px;
}

.contact-value {
    color: var(--text-dark);
}

footer {
    background: var(--obsidian);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--platinum);
}

.footer-section a:hover {
    color: var(--gold);
}

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

@media (max-width: 768px) {
    .stats-grid,
    .team-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    h1, h2, h3, h4, h5, h6, p, li, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    .btn {
        width: 100%;
        max-width: 280px;
        display: block;
        margin: 0 auto;
    }
}

.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
