/* ==========================================
   SSIT Group — Style Sheet
   Color: Light gray #DFDFDF + Red #A10F18 + Gold #C9A227
   Font: Playfair Display + Inter
   ========================================== */

:root {
    --bg-page: #DFDFDF;
    --bg-white: #FFFFFF;
    --text-heading: #1A1A1A;
    --text-body: #333333;
    --text-light: #666666;
    --red: #A10F18;
    --red-hover: #C41E2A;
    --gold: #C9A227;
    --border: #D0D0D0;
    --shadow: rgba(0,0,0,0.08);

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-page);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-hover); }

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

/* ==================== NAVBAR ==================== */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}
#navbar.transparent {
    background: transparent;
}
#navbar.transparent .nav-logo,
#navbar.transparent .nav-links a {
    color: #FFFFFF;
}
#navbar.transparent .nav-links a.active {
    color: var(--red);
}
#navbar.transparent .nav-links a.active::after {
    background: var(--red);
}
#navbar.scrolled {
    background: var(--bg-white);
    padding: 12px 0;
    box-shadow: 0 1px 12px var(--shadow);
}
#navbar.scrolled .nav-logo,
#navbar.scrolled .nav-links a {
    color: var(--text-heading);
}
#navbar.scrolled .nav-links a.active {
    color: var(--red);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}
.logo-img {
    height: 32px;
    width: auto;
}
.logo-cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--red);
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}
.logo-text {
    letter-spacing: 0.05em;
}
.nav-links {
    display: flex;
    gap: 36px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: color 0.3s;
    text-decoration: none;
    position: relative;
    padding-bottom: 4px;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width 0.3s ease;
}
.nav-links a:hover {
    color: var(--red);
}
.nav-links a:hover::after {
    width: 100%;
}
.nav-links a.active {
    color: var(--red);
}
.nav-links a.active::after {
    width: 0;
}
.nav-links a.active:hover::after {
    width: 100%;
}

/* Mobile menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s;
}
#navbar.scrolled .mobile-menu-btn span {
    background: var(--text-heading);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); /* fallback */
    background-color: #1a1a2e;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 30, 0.55);
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
    max-width: 800px;
}
.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* CTA Button */
.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid rgba(255,255,255,0.5);
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
}
.cta-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
}
#navbar.scrolled .cta-btn {
    background: var(--red);
    border-color: var(--red);
    color: #FFFFFF;
}
#navbar.scrolled .cta-btn:hover {
    background: var(--red-hover);
}

/* ==================== SECTION COMMON ==================== */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
}
.section-intro {
    font-size: 16px;
    color: var(--text-light);
    max-width: 560px;
    margin: 0 auto;
}

/* ==================== TRUST SECTION ==================== */
.section-trust {
    padding: 100px 0;
    background: var(--bg-white);
}
.trust-signing {
    margin-bottom: 56px;
    border-radius: 4px;
    overflow: hidden;
}
.trust-signing-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.trust-signing-caption {
    padding: 12px 0;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.trust-card {
    padding: 32px 24px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
}
.trust-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--shadow);
}
.trust-icon {
    width: 40px;
    height: 40px;
    color: var(--red);
    margin-bottom: 20px;
}
.trust-icon svg {
    width: 100%;
    height: 100%;
}
.trust-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 12px;
}
.trust-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}
.trust-cta {
    text-align: center;
    margin-top: 40px;
}
.text-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: 0.03em;
}
.text-link:hover {
    color: var(--red-hover);
}

/* ==================== CAPABILITIES ==================== */
.section-capabilities {
    padding: 100px 0;
    background: var(--bg-page);
}
.cap-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.cap-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}
.cap-card {
    display: block;
    background: var(--bg-white);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.cap-card:hover {
    border-color: var(--red);
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-4px);
}
.cap-image {
    height: 200px;
    overflow: hidden;
}
.cap-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.3);
    transition: filter 0.3s ease;
}
.cap-card:hover .cap-image img {
    filter: saturate(0.5);
}
.cap-content {
    padding: 24px;
}
.cap-content h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 8px;
}
.cap-content p {
    font-size: 14px;
    color: var(--text-light);
}

/* ==================== PATH SECTION ==================== */
.section-path {
    padding: 100px 0;
    background: var(--bg-white);
}
.path-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin: 60px auto 0;
    max-width: 900px;
}
.path-node {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}
.path-flag {
    font-size: 40px;
    margin-bottom: 16px;
}
.path-node h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.path-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.path-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    border: 1px solid var(--red);
    padding: 4px 12px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.path-list {
    list-style: none;
    text-align: left;
    max-width: 200px;
    margin: 0 auto;
}
.path-list li {
    font-size: 14px;
    color: var(--text-light);
    padding: 6px 0;
    padding-left: 16px;
    position: relative;
}
.path-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 1px;
    background: var(--gold);
}

.path-bridge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 60px;
    min-width: 100px;
}
.bridge-line {
    width: 1px;
    height: 30px;
    background: var(--border);
}
.bridge-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--red);
    background: var(--bg-white);
}

.path-expansion {
    display: none;
}
.expansion-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.expansion-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}
.expansion-banner .container {
    position: relative;
    z-index: 1;
}
.expansion-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 600;
    margin: 12px 0 8px;
}
.expansion-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
}
.expansion-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 3px 10px;
    border-radius: 2px;
    margin-bottom: 8px;
}
.path-expansion p {
    font-size: 15px;
    color: var(--text-light);
}

/* ==================== CTA SECTION ==================== */
.section-cta {
    padding: 80px 0;
    background: var(--bg-page);
    text-align: center;
}
.section-cta h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 16px;
}
.section-cta p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 32px;
}
.section-cta .cta-btn {
    border-color: var(--red);
    color: var(--red);
}
.section-cta .cta-btn:hover {
    background: var(--red);
    color: #FFFFFF;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text-heading);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}
.footer-logo .logo-cross {
    width: 24px;
    height: 24px;
    font-size: 16px;
}
.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: #FFFFFF;
}
.footer-logo-img {
    height: 36px;
    width: auto;
}
.footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.footer-col h4 {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 16px;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-col a,
.footer-col p {
    display: block !important;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 6px;
    text-decoration: none;
    line-height: 1.8;
}
.footer-col a:hover {
    color: #FFFFFF;
}
.footer-role {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--gold);
    margin-top: 4px;
}
.footer-bottom {
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cap-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .cap-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }
    .hero-sub {
        font-size: 16px;
    }
    .section-header h2 {
        font-size: 30px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px 24px;
        gap: 16px;
        box-shadow: 0 8px 20px var(--shadow);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links.active a {
        color: var(--text-heading);
    }
    .mobile-menu-btn {
        display: flex;
    }
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .cap-grid {
        grid-template-columns: 1fr;
    }
    .path-visual {
        flex-direction: column;
        align-items: center;
    }
    .path-bridge {
        flex-direction: row;
        padding-top: 0;
        min-width: unset;
        padding: 20px 0;
    }
    .bridge-line {
        width: 30px;
        height: 1px;
    }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .trust-signing-img {
        height: 240px;
    }
}

/* ==================== MILESTONES / TIMELINE ==================== */
.section-milestones {
    padding: 100px 0;
    background: var(--bg-white);
}
.timeline-filters {
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    position: sticky;
    top: 60px;
    z-index: 10;
    background: var(--bg-white);
    padding-top: 12px;
    padding-bottom: 12px;
}
.filter-btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 8px 20px;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--bg-white);
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s;
}
.filter-btn:hover {
    border-color: var(--text-light);
}
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
}
.timeline-item.hidden {
    display: none;
}
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 80px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}
.timeline-item {
    position: relative;
    width: 100%;
    margin-bottom: 56px;
    padding: 0;
}
/* Center dot */
.timeline-item::before {
    content: '';
    position: absolute;
    left: -28px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--red);
    z-index: 1;
}
.timeline-item.highlight::before {
    background: var(--red);
}
.timeline-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}
.timeline-photo {
    flex-shrink: 0;
    width: 100%;
    height: 420px;
    border-radius: 4px;
    overflow: hidden;
}
.timeline-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.timeline-item:hover .timeline-photo img {
    transform: scale(1.05);
}
.timeline-item.highlight .timeline-photo {
    height: 480px;
    border: 2px solid var(--red);
}
.timeline-text {
    flex: 1;
    min-width: 0;
}
.timeline-date {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 6px;
}
.timeline-text h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 6px;
}
.timeline-text p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}
.timeline-item.highlight .timeline-text h3 {
    color: var(--red);
}

/* Timeline responsive */
@media (max-width: 768px) {
    .timeline {
        padding-left: 64px;
    }
    .timeline::before {
        left: 48px;
    }
    .timeline-item::before {
        left: -24px;
    }
    .timeline-inner {
        flex-direction: column !important;
    }
    .timeline-photo {
        width: 100%;
        height: 220px;
    }
    .timeline-item.highlight .timeline-photo {
        width: 100%;
        height: 260px;
    }
}

/* ==================== PAGE HEADER (sub-pages) ==================== */
.page-header {
    padding: 140px 0 60px;
    background: var(--bg-white);
    text-align: center;
}
.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 16px;
}

/* ==================== PEOPLE SECTION ==================== */
.section-people {
    padding: 100px 0;
    background: var(--bg-page);
}
.people-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}
.people-card {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 48px;
    align-items: center;
}
.people-card--reverse {
    direction: rtl;
}
.people-card--reverse > * {
    direction: ltr;
}
.people-photo img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.people-info h3 {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 4px;
}
.people-role {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-bottom: 16px;
}
.people-info p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

/* ==================== THREE PILLARS ==================== */
.section-pillars {
    padding: 100px 0;
    background: var(--bg-white);
}
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.pillar-card {
    padding: 40px 32px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
}
.pillar-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--shadow);
}
.pillar-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    opacity: 0.3;
    margin-bottom: 16px;
    line-height: 1;
}
.pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 12px;
}
.pillar-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}

/* People & Pillars responsive */
@media (max-width: 768px) {
    .people-card,
    .people-card--reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .people-card--reverse {
        direction: ltr;
    }
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 {
        font-size: 36px;
    }
}

/* ==================== BUSINESS PAGES ==================== */
.biz-section {
    padding: 100px 0;
    background: var(--bg-white);
}
.biz-section--alt {
    background: var(--bg-page);
}
.biz-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.biz-grid--reverse {
    direction: rtl;
}
.biz-grid--reverse > * {
    direction: ltr;
}
.biz-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--red);
    opacity: 0.2;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}
.biz-content h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    color: var(--text-heading);
    line-height: 1.3;
    margin-bottom: 16px;
}
.biz-lead {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 32px;
    font-weight: 500;
}
.biz-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.biz-item h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--red);
    margin-bottom: 6px;
}
.biz-item p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}
.biz-photos {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.biz-photos img {
    width: 100%;
    border-radius: 4px;
}
@media (max-width: 768px) {
    .biz-grid,
    .biz-grid--reverse {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .biz-grid--reverse {
        direction: ltr;
    }
}

/* ===== Contact Page ===== */
.section-contact {
    padding: 80px 0 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 64px;
}
.contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px 32px;
    transition: box-shadow 0.3s, transform 0.3s;
}
.contact-card:hover {
    box-shadow: 0 8px 30px var(--shadow);
    transform: translateY(-4px);
}
.contact-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.contact-flag {
    font-size: 28px;
}
.contact-card-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-heading);
}
.contact-card-body p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 4px;
}
.contact-company {
    font-weight: 600;
    color: var(--text-heading) !important;
    font-size: 16px !important;
    margin-bottom: 8px !important;
}
.contact-role {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--red);
    margin-top: 12px;
}
.contact-email {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    color: var(--red);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}
.contact-email:hover {
    color: var(--red-hover);
}
.contact-note {
    font-size: 13px !important;
    color: var(--text-light) !important;
}

/* Contact Form */
.contact-form-wrap {
    max-width: 680px;
    margin: 0 auto;
}
.contact-form-wrap .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-heading);
    background: var(--bg-white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(161, 15, 24, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--red);
    color: #FFFFFF;
    border: 2px solid var(--red);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}
.btn-primary:hover {
    background: var(--red-hover);
    border-color: var(--red-hover);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
}

/* Contact Toast */
.contact-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 48px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    z-index: 9999;
    animation: toastIn 0.3s ease;
}
.contact-toast h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--red);
    margin-bottom: 8px;
}
.contact-toast p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}
.contact-toast-btn {
    padding: 10px 28px;
    background: var(--red);
    color: #FFFFFF;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
@keyframes toastIn {
    from { opacity: 0; transform: translate(-50%, -50%) scale(0.9); }
    to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}


/* ==================== STORY PAGE ==================== */
.story-chapter {
    padding: 100px 0;
    background: var(--bg-white);
}
.story-chapter--alt {
    background: var(--bg-page);
}
.story-hero-img {
    padding: 0 24px;
    margin-bottom: 56px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.story-hero-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}
.story-hero-img--double {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.story-img-caption {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 12px;
    margin-bottom: 0;
}
.story-narrative {
    max-width: 760px;
    margin: 0 auto 64px;
    text-align: center;
}
.story-chapter-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}
.story-narrative h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 28px;
}
.story-narrative p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}
.story-milestone-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.story-milestone-card {
    padding: 32px 28px;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: all 0.3s;
}
.story-milestone-card--highlight {
    border-color: var(--red);
    border-width: 2px;
}
.story-milestone-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--shadow);
}
.story-milestone-card .timeline-date {
    display: block;
    margin-bottom: 8px;
}
.story-milestone-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}
.story-milestone-card--highlight h3 {
    color: var(--red);
}
.story-milestone-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}
@media (max-width: 768px) {
    .story-milestone-row {
        grid-template-columns: 1fr;
    }
    .story-narrative h2 {
        font-size: 28px;
    }
    .story-chapter {
        padding: 64px 0;
    }
    .story-hero-img img {
        height: auto;
    }
    .story-hero-img--double {
        grid-template-columns: 1fr;
    }
}

/* ==================== NEWS PAGE ==================== */
.section-news {
    padding: 100px 0;
    background: var(--bg-white);
}
.news-year {
    margin-bottom: 64px;
}
.news-year:last-child {
    margin-bottom: 0;
}
.news-year h2 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--red);
    opacity: 0.2;
    margin-bottom: 32px;
    line-height: 1;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}
.news-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
}
.news-card:hover {
    border-color: var(--red);
    box-shadow: 0 4px 20px var(--shadow);
    transform: translateY(-2px);
}
.news-card-photo {
    height: 280px;
    overflow: hidden;
}
.news-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.news-card:hover .news-card-photo img {
    transform: scale(1.03);
}
.news-card-body {
    padding: 24px;
}
.news-card-date {
    display: block;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 8px;
}
.news-card-body h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 600;
    color: var(--text-heading);
    margin-bottom: 8px;
    line-height: 1.3;
}
.news-card-body p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
}
.news-card-readmore {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 500;
    color: var(--red);
    letter-spacing: 0.03em;
}
.news-card-readmore:hover {
    color: var(--red-hover);
}
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}
