/* =========================================================
   VARIABLES
   ========================================================= */
:root {
    --primary-color: #000000;
    --accent-color: #004a99;
    --accent-light: #e6efff;
    --secondary-color: #751e26;
    --text-main: #1d1d1f;
    --text-light: #6e6e73;
    --text-muted: #86868b;
    --bg-white: #ffffff;
    --bg-light: #f5f5f7;
    --bg-dark: #000000;
    --max-width: 1200px;
    --section-padding: 120px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

body {
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* =========================================================
   LAYOUT
   ========================================================= */
main {
    padding-top: 100px;
}

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

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    max-width: 700px;
    margin: 0 auto 70px;
    text-align: center;
}

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
h2 {
    font-size: clamp(30px, 5vw, 42px);
    font-weight: 800;
    color: #000;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent-color);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    word-break: keep-all;
}

.description + .description {
    margin-top: 16px;
}

.sub-description {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    background: var(--accent-light);
    padding: 20px;
    border-radius: 12px;
    color: var(--text-main);
    word-break: keep-all;
}

.hero-tag {
    display: inline-block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    letter-spacing: 1px;
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e1e8ef;
    z-index: 2000;
}

nav {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    height: 100px;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-links li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--accent-color);
    background-color: var(--bg-light);
}

.lang-divider {
    width: 1px;
    height: 12px;
    background-color: #e1e8ef;
}

.lang-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-left: 10px;
}

.lang-selector a {
    text-decoration: none;
    color: var(--text-muted);
}

.lang-selector a.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
}

.mobile-menu-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 10px;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    width: 100%;
    min-height: calc(100vh - 100px);
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.5)),
        url('https://cdn.imweb.me/thumbnail/20260424/ae13dd489d8ac.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero .container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero h1 {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    word-break: keep-all;
}

.hero .hero-title-en {
    font-size: clamp(28px, 6vw, 48px);
}

[lang="en"] .hero h1 {
    white-space: normal;
    word-break: break-word;
}

.hero p {
    font-size: clamp(17px, 2.2vw, 20px);
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    min-width: 180px;
    text-align: center;
}

.btn-fill {
    background: #ffffff;
    color: #000;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   BACKGROUND SECTION
   ========================================================= */
.background {
    background-color: #ffffff;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.text-content .description {
    margin-bottom: 16px;
}

.founder-story {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin: 30px 0;
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.founder-story .quote {
    font-size: 16px;
    font-weight: 600;
    font-style: italic;
    color: var(--text-main);
}

.action-area {
    margin-top: 40px;
}

#open-article-modal {
    color: var(--accent-color);
    border-color: var(--accent-color);
    background: transparent;
    display: inline-block;
    cursor: pointer;
}

#open-article-modal:hover {
    background: var(--accent-light);
}

.image-placeholder {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.image-placeholder img {
    width: 100%;
    display: block;
    height: auto;
}

.testimonial-box {
    margin-top: 25px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 25px;
    border-radius: var(--border-radius-md);
    text-align: center;
}

.testimonial-tag {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    opacity: 0.8;
}

.testimonial-text {
    font-size: 18px;
    font-weight: 800;
    word-break: keep-all;
}

/* =========================================================
   COMPOSITION
   ========================================================= */
.composition {
    background-color: var(--bg-light);
}

.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.theme-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 1px solid #eef0f2;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.theme-card p {
    flex-grow: 1;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.theme-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.card-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.theme-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

/* =========================================================
   EFFECTS
   ========================================================= */
.effects {
    background-color: #ffffff;
}

.effects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.effect-card {
    padding: 0 0 25px 0;
    border-bottom: 1.5px solid #f0f0f0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.effect-card p {
    flex-grow: 1;
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.effect-card:hover {
    border-color: var(--accent-color);
}

.effect-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
}

.effect-card h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
}

/* =========================================================
   QUOTE BANNER
   ========================================================= */
.quote-banner {
    position: relative;
    height: 500px;
    background: url('https://cdn.imweb.me/thumbnail/20260424/c5c29f6641d8f.jpg') center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-text {
    position: relative;
    z-index: 1;
    font-size: clamp(20px, 4vw, 30px);
    font-weight: 600;
    padding: 0 25px;
    line-height: 1.6;
    word-break: keep-all;
}

/* =========================================================
   REACH
   ========================================================= */
.reach {
    background-color: #0a0a0a;
    color: #ffffff;
}

.reach h2 {
    color: #ffffff;
}

.reach .section-tag {
    color: rgba(255, 255, 255, 0.5);
}

.reach .description {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}

.reach-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.map-bg {
    width: 100%;
    opacity: 0.6;
    filter: grayscale(1) brightness(1.5);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: 2.5px solid var(--accent-color);
    border-radius: 50%;
    animation: pulse 3s infinite linear;
    opacity: 0;
}

.pulse-ring.delay-1 { animation-delay: 1s; }
.pulse-ring.delay-2 { animation-delay: 2s; }

@keyframes pulse {
    0%   { width: 70px;  height: 70px;  opacity: 0.8; }
    100% { width: 380px; height: 380px; opacity: 0; }
}

.reach-details {
    margin-bottom: 30px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.reach-details .highlight {
    color: #ffcc00;
    font-weight: 700;
    margin-top: 15px;
    font-size: 17px;
    display: block;
}

.reach-features {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-color);
    flex-shrink: 0;
}

/* =========================================================
   GUIDE
   ========================================================= */
.guide {
    background-color: #f0f4f8;
}

.participation-sub-section {
    margin: 80px auto 0;
    max-width: 900px;
}

#support-sub {
    margin: 20px auto 40px;
}

.participation-sub-section h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
    color: #000;
}

.trust-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 60px 45px;
    border: 1px solid #e1e8ef;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    max-width: 850px;
    margin: -10px auto 70px;
    text-align: center;
    position: relative;
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background-color: var(--accent-light);
    color: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 30px;
}

.card-icon svg {
    width: 32px !important;
    height: 32px !important;
}

.trust-card .intro-text {
    font-size: 17px;
    color: #111;
    line-height: 1.9;
    word-break: keep-all;
    max-width: 700px;
    margin: 0 auto;
}

.trust-card .intro-text strong {
    color: var(--accent-color);
    font-weight: 700;
}

.card-divider {
    height: 1px;
    background: #e1e8ef;
    margin: 40px auto;
    max-width: 120px;
}

.trust-card .notice-text {
    font-size: 16px;
    color: var(--accent-color);
    line-height: 1.8;
    word-break: keep-all;
    font-weight: 600;
}

.trust-card .notice-text strong {
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.step-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.step-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.step-card h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-main);
}

.step-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-box {
    margin-top: 40px;
    padding: 60px 30px;
    background-color: #ffffff;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #e1e8ef;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.contact-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
}

.contact-email {
    display: block;
    font-size: clamp(26px, 5vw, 38px);
    font-weight: 900;
    color: var(--accent-color);
    text-decoration: none;
    margin: 20px 0 35px;
    word-break: break-all;
}

.contact-actions {
    margin-bottom: 30px;
}

.btn-fill-accent {
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 18px 45px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-fill-accent:hover {
    background-color: #003d7a;
    transform: translateY(-3px);
}

.writing-guide {
    max-width: 500px;
    margin: 40px auto 0;
    text-align: left;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.writing-guide h5 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 16px;
}

.guide-list li {
    font-size: 15px;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #555;
    list-style: none;
}

.guide-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
    font-size: 20px;
    line-height: 1;
}

.contact-note {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 20px;
    line-height: 1.6;
}

.section-divider {
    border: none;
    border-top: 1px solid #e1e8ef;
    margin: 90px 0;
}

/* =========================================================
   SUPPORT
   ========================================================= */
.support {
    background-color: #ffffff;
}

#support-en {
    display: none;
}

.missionary-appeal {
    text-align: center;
    margin-bottom: 40px;
}

.main-appeal {
    font-size: 22px;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
    word-break: keep-all;
}

.impact-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.impact-box {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 20px;
    border: 1px solid #eef0f2;
    transition: var(--transition);
}

.impact-box:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.impact-box h5 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-main);
}

.impact-box ul {
    list-style: none;
    padding: 0;
}

.impact-box li {
    font-size: 17px;
    margin-bottom: 14px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.impact-box li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 22px;
    top: -3px;
}

.support-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.support-item {
    max-width: 600px;
    width: 100%;
}

.support-item h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
}

.tier-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.tier-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #ddd;
    transition: 0.2s;
    font-size: 16px;
}

.tier-btn:hover {
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.tier-btn.tier-btn-main {
    grid-column: 1 / -1;
    font-size: 18px;
    padding: 20px;
    background-color: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

.custom-support-wrap {
    width: 100%;
    margin-top: 15px;
}

.btn-custom-support {
    display: block;
    width: 100%;
    padding: 16px;
    border: 1px solid var(--accent-color);
    border-radius: 10px;
    color: var(--accent-color);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: var(--transition);
}

.btn-custom-support:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 74, 153, 0.1);
}

.production-support {
    background-color: var(--accent-light);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.production-support h5 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    text-align: center;
    color: var(--accent-color);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 10px;
    border-radius: 10px;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.production-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}

.prod-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid transparent;
}

.prod-btn:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.prod-btn strong {
    font-size: 18px;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.prod-btn span {
    font-size: 13px;
    color: #666;
}

.account-card {
    background-color: #fff9f0;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #ffe8cc;
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.account-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #e67e22;
}

.account-header svg {
    width: 24px !important;
    height: 24px !important;
}

.account-header span {
    font-size: 18px;
    font-weight: 800;
}

.account-details {
    margin: 15px 0;
}

.bank-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 5px;
}

.account-number {
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    color: #1a1a1a;
    margin: 10px 0;
    letter-spacing: 1px;
}

.account-holder {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* =========================================================
   SCHEDULE
   ========================================================= */
.schedule {
    background-color: #0a192f;
    color: #ffffff;
    padding-bottom: 120px;
}

.schedule h2 {
    color: #ffffff;
}

.schedule .section-tag {
    color: rgba(255, 255, 255, 0.4);
}

.schedule .description {
    color: rgba(255, 255, 255, 0.7);
}

.schedule-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.schedule-modern-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.schedule-modern-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 74, 153, 0.4);
}

.card-bg-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 74, 153, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.icon-wrap {
    width: 48px;
    height: 48px;
    background-color: var(--accent-light);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.icon-wrap svg {
    width: 24px !important;
    height: 24px !important;
}

.day-text {
    font-size: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.info-group {
    margin-bottom: 28px;
}

.info-group:last-child {
    margin-bottom: 0;
}

.info-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-value {
    font-size: 25px;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.info-value .unit {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 4px;
}

.info-value.freq {
    color: var(--accent-color);
}

.schedule-footer-notice {
    margin-top: 90px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.notice-item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.notice-item svg {
    width: 20px !important;
    height: 20px !important;
}

/* =========================================================
   SUPPORT EN
   ========================================================= */
.support-en {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.support-en-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.support-en-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    border: 1px solid #e1e8ef;
}

.support-en-card h3 {
    margin-bottom: 20px;
    font-size: 22px;
}

.support-en-card p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.support-en-card p:last-child {
    margin-bottom: 0;
}

.support-en-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-paypal {
    display: inline-block;
    margin-top: 30px;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: var(--transition);
}

.btn-paypal:hover {
    background-color: #003d7a;
    transform: translateY(-3px);
}

/* =========================================================
   MODAL
   ========================================================= */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: #ffffff;
    width: 100%;
    max-width: 600px;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transform: translateY(30px);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.modal-content.wide {
    max-width: 850px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f2f5;
}

.modal-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.close-modal,
.close-modal-article {
    background: #f5f5f7;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 24px;
    color: #86868b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.close-modal:hover,
.close-modal-article:hover {
    background: #e8e8ed;
    color: #000;
}

.modal-body-article {
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px 10px;
    margin-top: 10px;
    text-align: left;
}

.modal-body-article::-webkit-scrollbar {
    width: 6px;
}

.modal-body-article::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-body-article::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 10px;
}

.article-content-inner p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 30px;
    word-break: keep-all;
}

.article-quote-box {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--accent-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 0 16px 16px 0;
}

.article-quote-box p {
    font-size: 19px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0;
    line-height: 1.5;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e1e8ef;
    border-radius: 12px;
    font-size: 15px;
    background-color: #f8faff;
    transition: var(--transition);
    color: #1d1d1f;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(0, 74, 153, 0.1);
    outline: none;
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

.form-note {
    font-size: 13px;
    color: #86868b;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: #003d7a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 74, 153, 0.2);
}

.btn-submit:disabled {
    background-color: #acc6e5;
    cursor: not-allowed;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
    background-color: var(--bg-dark);
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 30px;
}

.footer-info {
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 40px;
    font-size: 15px;
    line-height: 1.8;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
    nav {
        height: 90px;
    }

    .nav-container {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        background: #ffffff;
        padding: 50px 24px;
        gap: 40px;
        z-index: 1050;
        overflow-y: auto;
    }

    .nav-container.active {
        display: flex !important;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .nav-links li a {
        font-size: 20px !important;
        font-weight: 800;
        border-bottom: none;
        border-radius: 0;
        padding: 18px 10px;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 992px) {
    .content-grid,
    .reach-grid,
    .impact-info-container,
    .schedule-modern-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .section {
        padding: 80px 0;
    }

    .image-placeholder {
        order: -1;
    }

    .reach-grid .map-container {
        order: -1;
    }

    .support-en-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .hero-btns .btn-hero {
        width: 100%;
    }

    .btn-hero {
        padding: 14px 20px;
        min-width: 100%;
        font-size: 15px;
    }

    .content-grid,
    .support-grid,
    .impact-info-container {
        gap: 30px;
    }

    .notice-item {
        flex-direction: column;
        text-align: center;
        border-radius: 15px;
        padding: 20px;
    }

    .trust-card {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.3;
    }

    .contact-email {
        font-size: clamp(22px, 6vw, 28px);
    }

    .tier-buttons,
    .production-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-modern-card {
        padding: 30px;
    }

    .info-value {
        font-size: 22px;
    }

    .card-header {
        margin-bottom: 30px;
    }

    .day-text {
        font-size: 18px;
    }

    .prod-btn span {
        font-size: 12px;
    }
}

/* =========================================================
   i18n: LANGUAGE-SPECIFIC
   ========================================================= */
[lang="en"] .nav-links li a {
    padding: 10px 11px;
    font-size: 14.5px;
}

[lang="en"] .prod-btn span,
[lang="en"] .prod-btn strong {
    font-size: 12px;
    word-break: break-word;
    text-align: center;
}

@media (max-width: 480px) {
    [lang="en"] .nav-links li a {
        padding: 10px 11px;
        font-size: 20px;
        word-break: break-word;
        text-align: center;
    }
}

/* About Page Styles */
.about-hero {
    padding: 120px 0 80px;
    background: var(--accent-color);
    color: white;
    text-align: center;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.about-hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    opacity: 0.9;
}

.about-intro .text-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-intro .info-list {
    margin-top: 20px;
    list-style: none;
    font-size: 0.9rem;
    color: #666;
}

.vision-box {
    background: #f8f9fa;
    padding: clamp(30px, 5vw, 50px);
    border-radius: 12px;
    margin-bottom: 60px;
    text-align: center;
    border-left: 5px solid var(--accent-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-box {
    margin-bottom: 80px;
}

.mission-desc {
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.mission-item {
    padding: 20px;
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    line-height: 1.6;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.ministry-card {
    padding: clamp(25px, 4vw, 40px);
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
    text-align: center;
}

.ministry-card .card-icon-svg {
    width: 48px;
    height: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.ministry-card:hover {
    transform: translateY(-5px);
    border-bottom: 3px solid var(--accent-color);
}

.founder-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 50px;
    align-items: start;
}

.founder-image img {
    width: 100%;
    border-radius: 12px;
}

.founder-image .caption {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
}

.highlight-title {
    color: var(--accent-color);
    margin: 15px 0;
}

.profile-list {
    list-style: none;
    margin-bottom: 20px;
}

.profile-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
    line-height: 1.7;
    font-size: 1.05rem;
}

.profile-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-color);
}

.book-info {
    font-weight: 500;
    color: var(--primary-color);
}

.about-cta {
    background-color: var(--bg-light);
    text-align: center;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.btn-outline-dark {
    padding: 18px 45px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
    display: inline-block;
}

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

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    .about-hero h1 {
        font-size: 2rem;
    }
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .founder-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .cta-buttons .btn-fill-accent,
    .cta-buttons .btn-outline-dark {
        width: 100%;
        padding: 16px 20px;
    }
}
