/* ============================================
   INTERNATIONAL FACTS - ENHANCED VISUAL
   Harcourts Indonesia
============================================ */

/* Google Fonts - Source Sans Pro */
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600;700;900&display=swap');

/* Harcourts Script Font */
@font-face {
    font-family: 'Harcourts Script';
    src: url('/fonts/Harcourts Script.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --hc-navy: #001f49;
    --hc-navy-dark: #001535;
    --hc-sky: #00aeef;
    --hc-sky-light: #7dd3fc;
    --hc-gold: #d4a853;
    --text-dark: #0f172a;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
}

.intl-facts-page {
    font-family: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Animation Base */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* ========== HERO SECTION ========== */
.intl-hero {
    background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-navy-dark) 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 174, 239, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 174, 239, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.hero-bg-pattern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-bg-pattern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 174, 239, 0.2);
    color: var(--hc-sky);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 174, 239, 0.3);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--white);
    margin: 0 0 16px;
    line-height: 1.1;
    font-family: 'Source Sans Pro', sans-serif;
}

.hero-title span {
    font-family: 'Harcourts Script', cursive;
    font-weight: normal;
    color: var(--hc-sky);
    font-size: 1.15em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 400;
}

/* ========== STATS STRIP ========== */
.intl-stats-strip {
    background: var(--white);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 25px 80px rgba(0, 31, 73, 0.12);
    padding: 40px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.1) 0%, rgba(0, 174, 239, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--hc-sky);
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: var(--hc-sky);
    color: var(--white);
    transform: scale(1.1);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--hc-navy);
    line-height: 1.2;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

/* ========== PURPOSE SECTION ========== */
.intl-purpose-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.purpose-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 31, 73, 0.08);
    max-width: 900px;
    margin: 0 auto;
    border-left: 5px solid var(--hc-sky);
}

.purpose-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-navy-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--hc-sky);
}

.purpose-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--hc-navy);
    margin: 0 0 12px;
}

.purpose-text {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
    font-style: italic;
}

/* ========== HERITAGE SECTION ========== */
.intl-heritage-section {
    padding: 120px 0;
    background: var(--white);
}

.heritage-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.heritage-year {
    text-align: center;
    position: relative;
}

.year-text {
    display: block;
    font-size: 7rem;
    font-weight: 900;
    color: var(--hc-navy);
    line-height: 1;
    background: linear-gradient(180deg, var(--hc-navy) 0%, rgba(0, 31, 73, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.since-label {
    display: inline-block;
    margin-top: 16px;
    background: var(--hc-sky);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.heritage-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hc-navy);
    margin: 0 0 24px;
}

.heritage-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin: 0 0 16px;
}

.heritage-content strong {
    color: var(--hc-navy);
}

.heritage-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 24px;
    background: rgba(0, 174, 239, 0.1);
    border-radius: 50px;
    color: var(--hc-sky);
    font-weight: 600;
    font-size: 14px;
}

.heritage-highlight i {
    font-size: 1.25rem;
}

/* ========== VALUES SECTION ========== */
.intl-values-section {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hc-navy);
    margin: 0 0 12px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 31, 73, 0.06);
    border: 1px solid rgba(0, 31, 73, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--hc-navy) 0%, var(--hc-sky) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 31, 73, 0.12);
}

.value-card:hover::before {
    opacity: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 174, 239, 0.15) 0%, rgba(0, 174, 239, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.75rem;
    color: var(--hc-sky);
    transition: all 0.3s;
}

.value-card:hover .value-icon {
    background: var(--hc-navy);
    color: var(--hc-sky);
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--hc-navy);
    margin: 0 0 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* ========== LOCATIONS SECTION ========== */
.intl-locations-section {
    padding: 120px 0;
    background: var(--white);
}

.locations-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: var(--bg-light);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 140px;
}

.location-item:hover {
    background: var(--white);
    border-color: var(--hc-sky);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.15);
}

.location-item.current {
    background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-navy-dark) 100%);
    border-color: var(--hc-navy);
}

.location-item.current .location-name {
    color: var(--white);
}

.flag-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--white);
}

.flag-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--hc-navy);
    text-align: center;
}

.you-here-badge {
    background: var(--hc-sky);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== CTA SECTION ========== */
.intl-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--hc-navy) 0%, var(--hc-navy-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(0, 174, 239, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 174, 239, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta.primary {
    background: var(--hc-sky);
    color: var(--white);
}

.btn-cta.primary:hover {
    background: var(--hc-sky-light);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 174, 239, 0.3);
}

.btn-cta.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-cta.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-3px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
    .stats-wrapper {
        padding: 30px 40px;
    }
    .stat-num { font-size: 1.5rem; }
    .stat-icon { width: 48px; height: 48px; font-size: 1.25rem; }
}

@media (max-width: 991px) {
    .intl-hero { padding: 100px 0 80px; }
    .intl-stats-strip { margin-top: -30px; }
    
    .stats-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
        padding: 40px;
    }
    
    .stat-divider { display: none; }
    
    .stat-item {
        width: calc(33.33% - 20px);
        justify-content: center;
    }
    
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .year-text { font-size: 5rem; }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .purpose-card {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .intl-hero { padding: 80px 0 60px; }
    .hero-badge { font-size: 10px; padding: 6px 16px; }
    .hero-subtitle { font-size: 1rem; }
    
    .intl-stats-strip { margin-top: 0; padding: 40px 20px; }
    
    .stats-wrapper {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px;
        border-radius: 12px;
    }
    
    .stat-item {
        width: 100%;
        justify-content: flex-start;
        padding: 16px 20px;
        background: var(--bg-light);
        border-radius: 12px;
    }
    
    .stat-num { font-size: 1.5rem; }
    .stat-label { font-size: 10px; }
    
    .intl-purpose-section,
    .intl-heritage-section,
    .intl-values-section,
    .intl-locations-section,
    .intl-cta-section {
        padding: 60px 0;
    }
    
    .purpose-card { padding: 30px 20px; gap: 20px; }
    .purpose-icon { width: 60px; height: 60px; min-width: 60px; font-size: 1.5rem; }
    .purpose-text { font-size: 1.25rem; }
    
    .year-text { font-size: 4rem; }
    .heritage-content h2 { font-size: 1.75rem; }
    .heritage-content p { font-size: 1rem; }
    
    .section-header h2 { font-size: 1.75rem; }
    .section-header p { font-size: 1rem; }
    
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .value-card { padding: 30px 20px; }
    
    .locations-flex { gap: 12px; }
    .location-item { padding: 16px 20px; min-width: 100px; }
    .flag-circle { width: 50px; height: 50px; }
    .location-name { font-size: 12px; }
    
    .cta-content h2 { font-size: 1.75rem; }
    .cta-content p { font-size: 1rem; }
    .cta-buttons { flex-direction: column; }
    .btn-cta { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .year-text { font-size: 3rem; }
    .stat-item { gap: 12px; }
    .stat-icon { width: 44px; height: 44px; font-size: 1.1rem; }
}
