/* Marhoor Consulting Styles - Warm Emerging Markets Aesthetic */

/* Color Palette */
:root {
    --primary: #D97706;
    --primary-dark: #B45309;
    --accent: #F59E0B;
    --warm-light: #FEF3C7;
    --warm-bg: #FFFBEB;
    --dark: #78350F;
    --dark-soft: #92400E;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --white: #ffffff;
    --cream: #FAF8F3;
    --border: #E5E7EB;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2.25rem;
}

h4 {
    font-size: 1.5rem;
}

/* Header */
.header {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 4px solid var(--primary);
}

.header-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -0.03em;
}

.tagline {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-badge {
    background: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
}

.badge-text {
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--warm-bg) 0%, var(--warm-light) 100%);
    padding: 5rem 0;
    text-align: center;
    border-bottom: 8px solid var(--primary);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto 3.5rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: var(--primary);
    opacity: 0.3;
}

/* Mission Section */
.mission {
    padding: 6rem 0;
    background: var(--white);
}

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

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.section-label.light {
    color: var(--accent);
}

.section-heading {
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.section-heading.light {
    color: var(--white);
}

.mission-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.mission-pillars {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pillar-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--warm-bg);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
}

.pillar-icon {
    font-size: 1.75rem;
}

.pillar-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.02em;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--cream);
}

.service-blocks {
    display: grid;
    gap: 3rem;
    margin-top: 3rem;
}

.service-block {
    background: var(--white);
    padding: 3rem;
    border-left: 6px solid var(--primary);
    border-radius: 4px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.service-block:hover {
    box-shadow: 0 8px 24px rgba(217, 119, 6, 0.15);
    transform: translateX(8px);
}

.service-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--warm-light);
    line-height: 1;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 0 var(--primary);
}

.service-title {
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.05rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-list li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 1.25rem;
}

/* Regional Section */
.regional {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: var(--white);
}

.regional-content {
    max-width: 900px;
    margin: 0 auto;
}

.regional-description {
    font-size: 1.125rem;
    line-height: 1.9;
    margin-bottom: 2.5rem;
    color: var(--warm-light);
}

.regional-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.25rem 1.75rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.feature-check {
    font-size: 1.5rem;
    color: var(--warm-light);
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text {
    font-size: 1.05rem;
    color: var(--white);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--warm-bg);
    padding: 4rem 3rem;
    border-radius: 12px;
    border: 3px solid var(--primary);
}

.contact-heading {
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 5rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.contact-label {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.contact-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
    border-bottom-color: var(--primary-dark);
}

.contact-value {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 3rem 0;
    color: var(--warm-light);
}

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: var(--warm-light);
    font-size: 0.9rem;
}

.footer-legal {
    color: var(--warm-light);
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .mission-pillars {
        flex-direction: column;
        align-items: center;
    }

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

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

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

    h2, h3 {
        font-size: 1.75rem;
    }

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

    .service-block {
        padding: 2rem;
    }

    .contact-card {
        padding: 3rem 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

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

    .hero {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .service-number {
        font-size: 2rem;
    }
}
