/* ===== CSS Variables / Theming ===== */
:root {
    --bg-primary: #f7f5f2;
    --bg-secondary: #ffffff;
    --bg-alt: #f0ece7;
    --bg-card: #ffffff;
    --text-primary: #1a1a1c;
    --text-secondary: #4a4a4c;
    --text-muted: #7a7a7c;
    --accent-navy: #5D6361;
    --accent-copper: #8c6a61;
    --accent-green: #8A857F;
    --accent-teal: #5D6361;
    --border-color: rgba(93, 99, 97, 0.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
    --hero-bg: linear-gradient(135deg, #5D6361 0%, #4a504e 50%, #3d4341 100%);
    --nav-bg: rgba(247, 245, 242, 0.92);
    --card-hover-shadow: 0 12px 36px rgba(93, 99, 97, 0.12);
    --quote-bg: transparent;
    --quote-text: var(--text-primary);
    --footer-bg: #3d4341;
    --footer-text: #b0b0b0;
    --img-radius: 20px;
}

[data-theme="dark"] {
    --bg-primary: #1a1a1c;
    --bg-secondary: #222224;
    --bg-alt: #1e1e20;
    --bg-card: #2a2a2c;
    --text-primary: #e5e4e6;
    --text-secondary: #b0afb1;
    --text-muted: #787879;
    --border-color: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.45);
    --hero-bg: linear-gradient(135deg, #1a1e1d 0%, #232827 50%, #141817 100%);
    --nav-bg: rgba(26, 26, 28, 0.94);
    --card-hover-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
    --quote-bg: transparent;
    --quote-text: var(--text-primary);
    --footer-bg: #111113;
    --footer-text: #8a8a8a;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary); color: var(--text-primary);
    line-height: 1.7; transition: background 0.4s ease, color 0.4s ease;
    overflow-x: hidden; -webkit-font-smoothing: antialiased;
}

[data-lang="ar"] body, [data-lang="ar"] { font-family: 'Tajawal', 'Inter', sans-serif; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== Navigation ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: var(--nav-bg); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-color); transition: background 0.4s ease, box-shadow 0.3s ease;
}
.nav-content { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--border-color); }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text .en-text { font-weight: 700; font-size: 1rem; color: var(--accent-navy); }
[data-theme="dark"] .logo-text .en-text { color: var(--text-primary); }
.logo-text .ar-text { font-size: 0.8rem; color: var(--text-muted); font-family: 'Tajawal', sans-serif; }
.nav-controls { display: flex; align-items: center; gap: 8px; }
.btn-toggle {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border: 1px solid var(--border-color); border-radius: 12px;
    background: var(--bg-card); color: var(--text-secondary); cursor: pointer; transition: all 0.25s ease;
}
.btn-toggle:hover { border-color: var(--accent-copper); color: var(--accent-copper); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.lang-toggle { width: auto; padding: 0 14px; font-size: 0.85rem; font-weight: 600; }
.lang-toggle .lang-label { font-family: 'Tajawal', sans-serif; }
[data-lang="ar"] .lang-toggle .lang-label { font-family: 'Inter', sans-serif; }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

/* ===== Hero ===== */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: var(--hero-bg); padding: 120px 0 100px; overflow: hidden;
}
.hero-bg-image {
    position: absolute; inset: 0; background: url('images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.12; z-index: 1;
}
[data-theme="dark"] .hero-bg-image { opacity: 0.08; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #f0ebe4; }
.hero-badge {
    display: inline-block; padding: 8px 24px; border: 1px solid rgba(140, 106, 97, 0.45); border-radius: 50px;
    font-size: 0.85rem; color: var(--accent-copper); margin-bottom: 40px; letter-spacing: 0.5px; background: rgba(140, 106, 97, 0.1);
}
.hero h1 { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.hero-sub { font-size: 1.3rem; font-weight: 300; opacity: 0.85; display: block; }
.hero-main { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; display: block; line-height: 1.2; }
.hero-main strong { position: relative; color: #fff; }
.hero-main strong::after { content: ''; position: absolute; bottom: -6px; left: 0; right: 0; height: 3px; background: var(--accent-copper); border-radius: 2px; }
.hero-tagline { font-size: 1.15rem; opacity: 0.7; max-width: 500px; margin: 0 auto 44px; font-weight: 300; }
.hero-pillars { display: flex; align-items: center; justify-content: center; gap: 32px; margin-bottom: 40px; }
.pillar { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.pillar-icon {
    width: 56px; height: 56px; border-radius: 16px; background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12); display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease; backdrop-filter: blur(8px);
}
.pillar:hover .pillar-icon { background: rgba(140, 106, 97, 0.2); border-color: rgba(140, 106, 97, 0.35); transform: translateY(-2px); }
.pillar span:last-child { font-size: 0.9rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.8; }
.pillar-divider { width: 1px; height: 40px; background: rgba(255, 255, 255, 0.15); }
.hero-location { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.9rem; opacity: 0.6; }

.hero-decoration { position: absolute; inset: 0; pointer-events: none; }
.hero-circle { position: absolute; top: -100px; right: -100px; width: 420px; height: 420px; border-radius: 50%; background: rgba(140, 106, 97, 0.15); }
.hero-circle-2 { top: auto; right: auto; bottom: -80px; left: -120px; width: 320px; height: 320px; background: rgba(93, 99, 97, 0.1); }
.hero-zigzag { position: absolute; top: 60px; right: 80px; z-index: 1; color: rgba(140, 106, 97, 0.25); }
.hero-zigzag svg { width: 120px; height: 120px; }
.hero-wavy { position: absolute; bottom: 100px; left: 40px; z-index: 1; color: rgba(138, 133, 127, 0.2); }
.hero-wavy svg { width: 100px; height: 40px; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; }
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ===== Sections ===== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section-alt { background: var(--bg-alt); }
.section-header { margin-bottom: 48px; }
.section-header h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--accent-navy); margin-bottom: 14px; letter-spacing: -0.02em; }
[data-theme="dark"] .section-header h2 { color: var(--text-primary); }
.section-line { width: 56px; height: 3px; background: var(--accent-copper); border-radius: 2px; }
[data-lang="ar"][dir="rtl"] .section-line { margin-left: auto; margin-right: 0; }
.section-text { font-size: 1.15rem; line-height: 1.9; color: var(--text-secondary); max-width: 700px; }

/* ===== Decorative Shapes ===== */
.deco-shape { position: absolute; pointer-events: none; z-index: 0; }
.deco-terracotta-circle { top: 20px; right: -40px; color: rgba(140, 106, 97, 0.08); }
.deco-green-waves { bottom: -20px; left: -30px; color: rgba(93, 99, 97, 0.08); }
[data-theme="dark"] .deco-terracotta-circle { color: rgba(140, 106, 97, 0.05); }
[data-theme="dark"] .deco-green-waves { color: rgba(93, 99, 97, 0.05); }

/* ===== Shared Section Images ===== */
.about-image img, .mission-image img, .vision-image img {
    width: 100%; height: 100%; object-fit: cover; border-radius: var(--img-radius); box-shadow: var(--shadow-lg); transition: transform 0.5s ease;
}
.about-image:hover img, .mission-image:hover img, .vision-image:hover img { transform: scale(1.02); }
.about-image, .mission-image, .vision-image { border-radius: var(--img-radius); overflow: hidden; position: relative; }

/* ===== About ===== */
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.about-text p { font-size: 1.1rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: 20px; }
.about-image { height: 100%; min-height: 360px; }
.about-image img { height: 100%; min-height: 360px; }

/* Redesigned Quote Card */
.about-quote-card {
    border-left: 4px solid var(--accent-copper); padding: 24px 28px;
    border-radius: 0 12px 12px 0; background: rgba(140, 106, 97, 0.06); margin-top: 16px;
}
[data-theme="dark"] .about-quote-card { background: rgba(140, 106, 97, 0.08); }
[data-lang="ar"][dir="rtl"] .about-quote-card { border-left: none; border-right: 4px solid var(--accent-copper); border-radius: 12px 0 0 12px; }
.about-quote-card .quote-text {
    font-size: 1.15rem; font-weight: 500; line-height: 1.7; font-style: italic;
    color: var(--text-primary); transition: opacity 0.5s ease;
}
.about-quote-card .quote-text.fade-out { opacity: 0; }
.quote-dots { display: flex; gap: 6px; margin-top: 16px; }
.quote-dot {
    width: 7px; height: 7px; border-radius: 50%; border: none;
    background: rgba(140, 106, 97, 0.25); cursor: pointer; padding: 0; transition: all 0.3s ease;
}
.quote-dot.active { background: var(--accent-copper); width: 20px; border-radius: 4px; }

/* ===== For Everyone ===== */
.everyone-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.everyone-intro { font-size: 1.15rem; line-height: 1.9; color: var(--text-secondary); margin-bottom: 32px; }
.everyone-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.everyone-list li { display: flex; align-items: flex-start; gap: 14px; }
.list-icon { flex-shrink: 0; color: var(--accent-copper); margin-top: 2px; }
.everyone-list strong { display: block; font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.everyone-list span { font-size: 0.9rem; color: var(--text-muted); }
.everyone-images { display: grid; grid-template-columns: 1fr; gap: 16px; }
.everyone-images .img-wrap { border-radius: var(--img-radius); overflow: hidden; }
.everyone-images img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--img-radius); box-shadow: var(--shadow-md); transition: transform 0.5s ease; }
.everyone-images .img-wrap:hover img { transform: scale(1.02); }

/* ===== Mission ===== */
.mission-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mission-image { min-height: 320px; }
.mission-image img { min-height: 320px; }
.mission-text .section-text { max-width: none; font-size: 1.2rem; line-height: 2; }

/* ===== Activities ===== */
.activities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.activity-card {
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 36px 24px 32px; text-align: center; transition: all 0.35s ease; cursor: default; position: relative; overflow: hidden;
}
.activity-card::before {
    content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 40px; height: 3px; background: var(--accent-copper); border-radius: 0 0 2px 2px; opacity: 0; transition: opacity 0.3s ease, width 0.3s ease;
}
.activity-card:hover::before { opacity: 1; width: 60px; }
.activity-card:hover { transform: translateY(-6px); box-shadow: var(--card-hover-shadow); border-color: transparent; }
.activity-icon {
    width: 64px; height: 64px; border-radius: 16px; background: rgba(93, 99, 97, 0.06);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent-navy); transition: all 0.3s ease;
}
[data-theme="dark"] .activity-icon { background: rgba(140, 106, 97, 0.1); color: var(--accent-copper); }
.activity-card:hover .activity-icon { background: rgba(140, 106, 97, 0.1); color: var(--accent-copper); transform: scale(1.05); }
.activity-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; margin-bottom: 10px; }
.activity-desc { font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); }

/* ===== Values (Marquee Carousel) ===== */
.values-marquee { overflow: hidden; padding: 10px 0 20px; }
.values-track { display: flex; animation: marquee 40s linear infinite; width: max-content; }
.values-track:hover { animation-play-state: paused; }
[dir="rtl"] .values-track { animation-direction: reverse; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.value-card {
    min-width: 280px; max-width: 280px; margin-right: 24px;
    background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 20px;
    padding: 32px 24px 28px; text-align: center; transition: transform 0.3s ease, box-shadow 0.3s ease; flex-shrink: 0;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.value-icon {
    width: 64px; height: 64px; border-radius: 16px; background: rgba(138, 133, 127, 0.08);
    display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; color: var(--accent-green); transition: all 0.3s ease;
}
[data-theme="dark"] .value-icon { background: rgba(138, 133, 127, 0.12); }
.value-card:hover .value-icon { transform: scale(1.05); }
.value-card h3 { font-size: 1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.value-card p { font-size: 0.88rem; line-height: 1.65; color: var(--text-muted); }

/* ===== Vision (Carousel with progress) ===== */
.vision-progress { display: flex; gap: 8px; margin-bottom: 40px; }
.vision-bar {
    flex: 1; height: 4px; background: var(--border-color); border: none; border-radius: 2px;
    cursor: pointer; padding: 0; position: relative; overflow: hidden;
}
.vision-bar .bar-fill {
    position: absolute; top: 0; left: 0; height: 100%; width: 0;
    background: var(--accent-copper); border-radius: 2px;
}
.vision-bar.active .bar-fill { animation: fillBar 10s linear forwards; }
#vision:hover .vision-bar.active .bar-fill { animation-play-state: paused; }

@keyframes fillBar {
    from { width: 0; }
    to { width: 100%; }
}

.vision-carousel { display: grid; }
.vision-slide {
    grid-area: 1 / 1; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
    opacity: 0; pointer-events: none; transition: opacity 0.8s ease;
}
.vision-slide.active { opacity: 1; pointer-events: auto; }
.vision-text p { font-size: 1.15rem; line-height: 1.9; color: var(--text-secondary); max-width: 700px; }
.vision-highlight {
    margin-top: 28px; font-size: 1.35rem !important; font-weight: 700;
    color: var(--accent-navy) !important; font-style: italic; position: relative; padding-left: 20px;
}
.vision-highlight::before { content: ''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: var(--accent-copper); border-radius: 2px; }
[dir="rtl"] .vision-highlight { padding-left: 0; padding-right: 20px; }
[dir="rtl"] .vision-highlight::before { left: auto; right: 0; }
[data-theme="dark"] .vision-highlight { color: var(--accent-copper) !important; }
.vision-image { min-height: 320px; }
.vision-image img { min-height: 320px; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 200px; gap: 16px; }
.gallery-item { border-radius: var(--img-radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-tall { grid-row: span 2; }

/* ===== Decorative Divider ===== */
.deco-divider { position: relative; padding: 40px 0; overflow: hidden; display: flex; align-items: center; justify-content: center; gap: 24px; }
.deco-divider svg { flex-shrink: 0; }
.deco-shape-left { color: var(--accent-navy); opacity: 0.15; }
.deco-shape-right { color: var(--accent-copper); opacity: 0.15; }
.deco-flower { color: var(--accent-copper); opacity: 0.12; }
.deco-divider-line { flex: 1; height: 1px; background: var(--border-color); max-width: 200px; }

/* ===== Philosophy ===== */
.philosophy-section { position: relative; padding: 120px 0; overflow: hidden; text-align: center; }
.philosophy-bg { position: absolute; inset: 0; background: url('images/philosophy-bg.jpg') center/cover no-repeat; z-index: 0; }
.philosophy-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(93, 99, 97, 0.92) 0%, rgba(61, 67, 65, 0.95) 100%); z-index: 1;
}
[data-theme="dark"] .philosophy-overlay { background: linear-gradient(135deg, rgba(17, 17, 19, 0.95) 0%, rgba(26, 26, 28, 0.97) 100%); }
.philosophy-inner { position: relative; z-index: 2; }
.philosophy-label { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--accent-copper); margin-bottom: 48px; }
.philosophy-swiper { overflow: hidden; max-width: 780px; margin: 0 auto; }
.philosophy-swiper .swiper-slide { height: auto; }
.philosophy-quote { font-size: clamp(1.3rem, 3vw, 1.8rem); line-height: 1.8; color: #f0ebe4; font-style: italic; font-weight: 300; margin: 0; padding: 0; border: none; }
.philosophy-quote::before { display: none; }
.philosophy-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 48px; }
.phil-prev, .phil-next {
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.7); cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.25s ease; backdrop-filter: blur(4px);
}
.phil-prev:hover, .phil-next:hover { border-color: var(--accent-copper); color: var(--accent-copper); background: rgba(140, 106, 97, 0.15); transform: scale(1.08); }
.philosophy-pagination.swiper-pagination { display: flex; gap: 8px; align-items: center; position: relative; width: auto; }
.philosophy-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255, 255, 255, 0.25); opacity: 1; border-radius: 50%; transition: all 0.3s ease; cursor: pointer; }
.philosophy-pagination .swiper-pagination-bullet-active { background: var(--accent-copper); width: 24px; border-radius: 4px; }

/* ===== Footer ===== */
.footer { background: var(--footer-bg); color: var(--footer-text); padding-top: 64px; }
.footer-content { display: flex; justify-content: space-between; align-items: center; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-logo { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.1); }
.footer-brand h3 { font-size: 1.1rem; color: #fff; margin-bottom: 4px; }
.footer-motto { font-size: 0.9rem; opacity: 0.6; }
.footer-right { text-align: right; }
.footer-social { display: flex; gap: 12px; justify-content: flex-end; margin-bottom: 16px; }
.footer-social a {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.12); color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
}
.footer-social a:hover { border-color: var(--accent-copper); color: var(--accent-copper); background: rgba(140, 106, 97, 0.1); transform: translateY(-2px); }
.footer-info { text-align: right; }
[data-lang="ar"][dir="rtl"] .footer-right { text-align: left; }
[data-lang="ar"][dir="rtl"] .footer-social { justify-content: flex-start; }
[data-lang="ar"][dir="rtl"] .footer-info { text-align: left; }
.footer-location { display: flex; align-items: center; gap: 6px; justify-content: flex-end; margin-bottom: 6px; color: rgba(255, 255, 255, 0.6); }
[data-lang="ar"][dir="rtl"] .footer-location { justify-content: flex-start; }
.footer-free { font-size: 0.85rem; opacity: 0.45; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.8rem; opacity: 0.35; }

/* ===== Image Preloader Shimmer ===== */
@keyframes shimmer { 0% { background-position: -600px 0; } 100% { background-position: 600px 0; } }
.img-wrap { position: relative; background: linear-gradient(90deg, var(--bg-alt) 25%, var(--border-color) 50%, var(--bg-alt) 75%); background-size: 600px 100%; animation: shimmer 1.6s infinite ease-in-out; }
.img-wrap.loaded { background: none; animation: none; }
.img-wrap img { opacity: 0; transition: opacity 0.4s ease, transform 0.5s ease; }
.img-wrap.loaded img { opacity: 1; }

/* ===== Animations ===== */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.activity-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.activity-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.activity-card.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ===== RTL Support ===== */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .hero-content { text-align: center; }
[dir="rtl"] .footer-content { flex-direction: row-reverse; }
[dir="rtl"] .footer-brand { flex-direction: row-reverse; }
[dir="rtl"] .mission-content { direction: rtl; }
[dir="rtl"] .everyone-content { direction: rtl; }
[dir="rtl"] .quote-dots { justify-content: flex-start; }
[dir="rtl"] .hero-zigzag { right: auto; left: 80px; }
[dir="rtl"] .hero-wavy { left: auto; right: 40px; }
[dir="rtl"] .deco-terracotta-circle { right: auto; left: -40px; }
[dir="rtl"] .deco-green-waves { left: auto; right: -30px; }
[dir="rtl"] .vision-bar .bar-fill { left: auto; right: 0; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .activities-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-content, .vision-slide, .everyone-content { gap: 32px; }
}

@media (max-width: 768px) {
    .hero { min-height: auto; padding: 120px 0 80px; }
    .hero-sub { font-size: 1.1rem; }
    .hero-pillars { gap: 20px; }
    .hero-zigzag { top: 30px; right: 20px; }
    .hero-zigzag svg { width: 80px; height: 80px; }
    .hero-wavy { display: none; }
    .section { padding: 72px 0; }
    .about-content, .mission-content, .vision-slide, .everyone-content { grid-template-columns: 1fr; gap: 32px; }
    .about-image { min-height: 280px; order: -1; }
    .about-image img { min-height: 280px; }
    .mission-image, .mission-image img { min-height: 260px; }
    .vision-image, .vision-image img { min-height: 260px; }
    .everyone-images { grid-template-columns: 1fr 1fr; }
    .everyone-images img { height: 180px; }
    .everyone-images .img-wrap { height: 180px; }
    .activities-grid { grid-template-columns: 1fr 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-tall { grid-row: span 2; }
    .philosophy-section { padding: 80px 0; }
    .footer-content { flex-direction: column; gap: 24px; text-align: center; }
    [dir="rtl"] .footer-content { flex-direction: column; }
    .footer-right { text-align: center; }
    .footer-social { justify-content: center; }
    .footer-info { text-align: center; }
    [dir="rtl"] .footer-right { text-align: center; }
    [dir="rtl"] .footer-social { justify-content: center; }
    [dir="rtl"] .footer-info { text-align: center; }
    .footer-location { justify-content: center; }
    [dir="rtl"] .footer-location { justify-content: center; }
    .deco-divider { padding: 24px 0; }
}

@media (max-width: 480px) {
    .nav-content { height: 60px; }
    .nav-logo img { width: 36px; height: 36px; }
    .logo-text .en-text { font-size: 0.9rem; }
    .hero { padding: 100px 0 60px; }
    .hero-badge { font-size: 0.78rem; padding: 6px 18px; margin-bottom: 28px; }
    .hero-sub { font-size: 0.95rem; }
    .hero-main { font-size: 1.8rem; }
    .hero-tagline { font-size: 1rem; }
    .hero-pillars { gap: 14px; }
    .pillar-icon { width: 48px; height: 48px; border-radius: 14px; }
    .pillar-icon svg { width: 22px; height: 22px; }
    .pillar span:last-child { font-size: 0.78rem; letter-spacing: 1px; }
    .hero-zigzag { top: 15px; right: 10px; }
    .hero-zigzag svg { width: 60px; height: 60px; }
    .section { padding: 56px 0; }
    .section-header h2 { font-size: 1.5rem; }
    .about-image, .about-image img { min-height: 220px; }
    .mission-image, .mission-image img, .vision-image, .vision-image img { min-height: 200px; }
    .everyone-images { grid-template-columns: 1fr; }
    .everyone-images img { height: 200px; }
    .everyone-images .img-wrap { height: 200px; }
    .activities-grid { grid-template-columns: 1fr; }
    .activity-card { padding: 28px 20px 24px; }
    .about-quote-card { padding: 20px 24px; }
    .about-quote-card .quote-text { font-size: 1.05rem; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .philosophy-section { padding: 64px 0; }
    .philosophy-controls { margin-top: 36px; gap: 14px; }
    .phil-prev, .phil-next { width: 38px; height: 38px; }
    .btn-toggle { width: 36px; height: 36px; }
    .lang-toggle { padding: 0 10px; }
    .vision-highlight { font-size: 1.15rem !important; }
    .value-card { min-width: 250px; max-width: 250px; }
}
