:root {
    --ram-red: #C8102E;
    --ram-red-dark: #a00d25;
    --ram-red-light: #f8d7da;
    --ram-blue: #002D62;
    --ram-blue-dark: #001a3d;
    --ram-blue-light: #e8eef7;
    --ram-gold: #D4A843;
    --text-dark: #1F2937;
    --text-muted: #6B7280;
    --bg-light: #F7F8FA;
    --bg-warm: #FDF8F3;
    --white: #ffffff;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 16px;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: color 0.25s; }
img { max-width: 100%; display: block; object-fit: cover; }
button { cursor: pointer; border: none; font-family: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: #c1c1c1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #999; }

/* ── Topbar ── */
.topbar {
    background: var(--ram-red);
    color: rgba(255,255,255,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    z-index: 1060;
}
.topbar a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.topbar a:hover { color: var(--white); }
.topbar-left { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 0.35rem; white-space: nowrap; }
.topbar-item i { font-size: 0.82rem; color: var(--ram-gold); }
.topbar-right { display: flex; align-items: center; gap: 1rem; }
.topbar-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.15); }
.topbar-lang-btn {
    background: none; color: rgba(255,255,255,0.8); font-size: 0.78rem; font-weight: 500;
    padding: 0.15rem 0; border: none; cursor: pointer; display: inline-flex; align-items: center;
    gap: 0.3rem; transition: color 0.2s; font-family: var(--font-body);
}
.topbar-lang-btn:hover { color: var(--white); }
.topbar-lang-btn i { font-size: 0.72rem; }
.topbar-socials { display: flex; align-items: center; gap: 0.5rem; }
.topbar-socials a {
    width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center;
    justify-content: center; font-size: 0.8rem; transition: all 0.2s;
}
.topbar-socials a:hover { background: rgba(255,255,255,0.12); color: var(--white); }
@media (max-width: 767px) { .topbar { display: none; } }

/* ── Header ── */
.site-header {
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--border); position: sticky; top: 0; z-index: 1050; transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.logo-img { height: 50px; width: auto; display: block; }
.logo-img-w {height: 60px; width: auto; display: block; }
.nav-main .nav-link {
    font-weight: 600; font-size: 0.9rem; color: var(--ram-blue);
    padding: 0.5rem 1rem !important; border-radius: 8px; transition: all 0.25s;
}
.nav-main .nav-link:hover { color: var(--ram-red); background: rgba(200,16,46,0.06); }
.nav-main .nav-link.active-link { color: var(--ram-red); background: rgba(200,16,46,0.08); }
.btn-header-login {
    padding: 0.45rem 1.3rem; border: 1.5px solid var(--ram-red); color: var(--ram-red);
    background: transparent; border-radius: 50px; font-weight: 600; font-size: 0.88rem; transition: all 0.25s;
}
.btn-header-login:hover {
    background: var(--ram-red); color: var(--white); transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,45,98,0.25);
}

/* ── Shared Components ── */
.section-label {
    display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; font-weight: 700;
    color: var(--ram-red); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem;
}
.section-label::before { content: ''; width: 24px; height: 2px; background: var(--ram-red); }
.section-title {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
    color: var(--ram-blue); margin-bottom: 0.5rem; line-height: 1.2;
}
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; }

/* ── About Hero ── */
.about-hero {
    position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden;
    background: var(--ram-red);
}
.about-hero-bg {
    position: absolute; inset: 0;
    background: url('../image/bg-2.jpg') center/cover no-repeat;
    z-index: 0;
}
.about-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgb(76 0 0 / 94%) 0%, rgb(150 8 26 / 78%) 50%, rgba(200, 16, 46, 0.5) 100%); /*linear-gradient(135deg, rgb(98 0 0 / 92%) 0%, rgb(98 0 0 / 75%) 50%, rgba(200, 16, 46, 0.4) 100%);*/
    z-index: 1;
}
.about-hero-decor {
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
    bottom: -150px; right: -100px; z-index: 1;
}
.about-hero-inner { position: relative; z-index: 2; width: 100%; padding: 4rem 0; text-align: center; }
.about-hero-inner .hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(212,168,67,0.15); border: 1px solid rgba(212,168,67,0.3);
    color: var(--ram-gold); padding: 0.35rem 1rem; border-radius: 50px;
    font-size: 0.82rem; font-weight: 600; margin-bottom: 1.25rem;
}
.about-hero-inner h1 {
    font-family: var(--font-display); color: var(--white); font-size: 2.8rem;
    font-weight: 800; line-height: 1.15; margin-bottom: 1rem;
}
.about-hero-inner h1 em { font-style: normal; color: var(--ram-gold); }
.about-hero-inner p { color: rgba(255,255,255,0.75); font-size: 1.08rem; max-width: 650px; margin: 0 auto; }
.about-breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    margin-bottom: 1.5rem; font-size: 0.85rem;
}
.about-breadcrumb a { color: rgba(255,255,255,0.6); transition: color 0.2s; }
.about-breadcrumb a:hover { color: var(--white); }
.about-breadcrumb .sep { color: rgba(255,255,255,0.3); }
.about-breadcrumb .current { color: var(--ram-gold); font-weight: 600; }

/* ── Story Section ── */
.story-section { padding: 5rem 0; background: var(--white); }
.story-img-wrap {
    border-radius: var(--radius-lg); overflow: hidden; position: relative;
    box-shadow: var(--shadow-lg);
}
.story-img-wrap img { width: 100%; height: 380px; transition: transform 0.8s ease; }
.story-img-wrap:hover img { transform: scale(1.04); }
.story-img-badge {
    position: absolute; bottom: 16px; left: 16px;
    background: var(--ram-red); color: var(--white); padding: 0.4rem 1rem;
    border-radius: 50px; font-size: 0.8rem; font-weight: 700;
    box-shadow: 0 4px 12px rgba(200,16,46,0.35);
}
.story-text h2 {
    font-family: var(--font-display); font-size: 1.9rem; font-weight: 800;
    color: var(--ram-blue); margin-bottom: 1rem; line-height: 1.25;
}
.story-text p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 1rem; line-height: 1.75; }
.story-text .highlight { color: var(--ram-red); font-weight: 600; }

/* ── Stats Bar ── */
.stats-bar {
    background: linear-gradient(135deg, var(--ram-red) 0%, #4c0000 100%);
    padding: 3.5rem 0; position: relative; overflow: hidden;
}
.stats-bar::before {
    content: ''; position: absolute; top: -50%; left: -10%; width: 400px; height: 400px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.08) 0%, transparent 70%);
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-num {
    font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--white);
    line-height: 1; margin-bottom: 0.4rem;
}
.stat-num .stat-gold { color: var(--ram-gold); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; }
.stat-divider {
    width: 1px; height: 60px; background: rgba(255,255,255,0.12);
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
}

/* ── Mission Vision ── */
.mission-section { padding: 5rem 0; background: var(--bg-light); }
.mv-card {
    background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg);
    padding: 2.5rem 2rem; transition: all 0.35s; height: 100%; position: relative; overflow: hidden;
}
.mv-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--ram-red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.mv-card:hover::before { transform: scaleX(1); }
.mv-card:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.mv-card.vision-card::before { background: var(--ram-blue); }
.mv-card.values-card::before { background: var(--ram-gold); }
.mv-icon {
    width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.5rem; font-size: 1.4rem;
}
.mv-icon.red { background: var(--ram-red-light); color: var(--ram-red); }
.mv-icon.blue { background: var(--ram-blue-light); color: var(--ram-blue); }
.mv-icon.gold { background: #fef3c7; color: #b45309; }
.mv-card h3 {
    font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
    color: var(--text-dark); margin-bottom: 0.75rem;
}
.mv-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; }

/* ── Values Grid ── */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
.value-item {
    display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.88rem; color: var(--text-dark);
}
.value-item i { color: var(--ram-gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

/* ── UK Operations ── */
.uk-section { padding: 5rem 0; background: var(--white); }
.uk-card {
    background: var(--bg-light); border-radius: var(--radius-lg); padding: 2rem; height: 100%;
    transition: all 0.35s; border: 1.5px solid transparent;
}
.uk-card:hover { background: var(--white); border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.uk-card-icon {
    width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center;
    justify-content: center; margin-bottom: 1.25rem; font-size: 1.2rem;
    background: var(--ram-blue-light); color: var(--ram-blue);
}
.uk-card h4 { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.uk-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 0; }
.uk-card .uk-detail {
    display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem;
    font-size: 0.82rem; color: var(--ram-blue); font-weight: 600;
}
.uk-card .uk-detail i { font-size: 0.9rem; }

/* ── Oneworld Section ── */
.oneworld-section {
    padding: 5rem 0; position: relative; overflow: hidden;
    background: linear-gradient(135deg, var(--ram-red) 0%, #4c0000 100%);
    color: var(--white);
}
.oneworld-section::before {
    content: ''; position: absolute; top: -30%; right: -15%; width: 500px; height: 500px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
}
.oneworld-section::after {
    content: ''; position: absolute; bottom: -20%; left: -10%; width: 350px; height: 350px;
    border-radius: 50%; background: radial-gradient(circle, rgba(0,45,98,0.15) 0%, transparent 70%);
}
.oneworld-section .section-label { color: var(--ram-gold); }
.oneworld-section .section-label::before { background: var(--ram-gold); }
.oneworld-section .section-title { color: var(--white); }
.oneworld-section .section-subtitle { color: rgba(255,255,255,0.7); }
.oneworld-benefit {
    display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.oneworld-benefit:last-child { border-bottom: none; }
.oneworld-benefit-icon {
    width: 44px; height: 44px; border-radius: 10px; background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    color: var(--ram-gold); font-size: 1.1rem;
}
.oneworld-benefit h4 { font-weight: 700; font-size: 1rem; margin-bottom: 0.25rem; }
.oneworld-benefit p { font-size: 0.88rem; color: rgba(255,255,255,0.65); margin-bottom: 0; line-height: 1.6; }
.oneworld-logo-area {
    background: rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 2.5rem;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; border: 1px solid rgba(255,255,255,0.08); height: 100%;
}
.oneworld-logo-text {
    font-family: var(--font-display); font-size: 2.2rem; font-weight: 800;
    color: var(--ram-gold); letter-spacing: 0.02em; margin-bottom: 0.5rem;
}
.oneworld-logo-sub { font-size: 0.85rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.1em; }
.oneworld-member-since {
    margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.oneworld-member-since strong { color: var(--ram-gold); }

/* ── Fleet Section ── */
.fleet-section { padding: 5rem 0; background: var(--bg-light); }
.fleet-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: all 0.35s; height: 100%;
    border: 1.5px solid var(--border);
}
.fleet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.fleet-img-wrap { height: 200px; overflow: hidden; position: relative; }
.fleet-img-wrap img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.06); }
.fleet-img-badge {
    position: absolute; top: 12px; right: 12px; background: var(--ram-blue);
    color: var(--white); padding: 0.25rem 0.75rem; border-radius: 50px;
    font-size: 0.72rem; font-weight: 700;
}
.fleet-info { padding: 1.5rem; }
.fleet-info h4 { font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.fleet-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.fleet-spec {
    display: flex; align-items: center; gap: 0.4rem; font-size: 0.82rem; color: var(--text-muted);
}
.fleet-spec i { color: var(--ram-blue); font-size: 0.85rem; }
.fleet-spec strong { color: var(--text-dark); font-weight: 600; }

/* ── Timeline Section ── */
.timeline-section { padding: 5rem 0; background: var(--white); }
.timeline { position: relative; padding-left: 2.5rem; }
.timeline::before {
    content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
    width: 2px; background: linear-gradient(to bottom, var(--ram-red), var(--ram-blue), var(--ram-gold));
    border-radius: 2px;
}
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute; left: -2.5rem; top: 4px; width: 24px; height: 24px;
    border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--ram-red);
    background: var(--ram-red); z-index: 1;
}
.timeline-item:nth-child(even) .timeline-dot { border-color: var(--ram-blue); box-shadow: 0 0 0 2px var(--ram-blue); background: var(--ram-blue); }
.timeline-item:nth-child(3n) .timeline-dot { border-color: var(--ram-gold); box-shadow: 0 0 0 2px var(--ram-gold); background: var(--ram-gold); }
.timeline-year {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 800;
    color: var(--ram-red); margin-bottom: 0.25rem;
}
.timeline-item:nth-child(even) .timeline-year { color: var(--ram-blue); }
.timeline-item:nth-child(3n) .timeline-year { color: #b45309; }
.timeline-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 0.3rem; }
.timeline-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; }

/* ── CTA Section ── */
.cta-section {
    padding: 5rem 0; background: var(--bg-warm); border-top: 1px solid var(--border);
}
.cta-card {
    background: linear-gradient(135deg, #620000 0%, #820000 100%);/*linear-gradient(135deg, var(--ram-blue) 0%, #003d82 100%);*/
    border-radius: var(--radius-lg); padding: 3.5rem; position: relative; overflow: hidden;
    text-align: center; color: var(--white);
}
.cta-card::before {
    content: ''; position: absolute; top: -40%; right: -10%; width: 400px; height: 400px;
    border-radius: 50%; background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
}
.cta-card::after {
    content: ''; position: absolute; bottom: -30%; left: -5%; width: 300px; height: 300px;
    border-radius: 50%; background: radial-gradient(circle, rgba(212,168,67,0.1) 0%, transparent 70%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 {
    font-family: var(--font-display); font-size: 2rem; font-weight: 800; margin-bottom: 0.75rem;
}
.cta-card h2 em { font-style: normal; color: var(--ram-gold); }
.cta-card p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 550px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    padding: 0.75rem 2rem; background: var(--ram-red); color: var(--white);
    font-weight: 700; font-size: 0.95rem; border-radius: 50px; transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-primary:hover { background: var(--ram-red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.35); }
.btn-cta-outline {
    padding: 0.75rem 2rem; background: transparent; color: var(--white); font-weight: 600;
    font-size: 0.95rem; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.35); transition: all 0.25s;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-cta-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); color: var(--white); }

/* ── Newsletter ── */
.newsletter-section { background: var(--bg-warm); padding: 4rem 0; border-top: 1px solid var(--border); }
.newsletter-card {
    background: var(--white); border-radius: var(--radius-lg); padding: 3rem;
    box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 3rem;
}
.newsletter-text h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--ram-blue); margin-bottom: 0.4rem; }
.newsletter-text p { color: var(--text-muted); font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 0.5rem; min-width: 320px; }
.newsletter-form input {
    flex: 1; padding: 0.7rem 1rem; border: 1.5px solid var(--border); border-radius: 10px;
    font-size: 0.9rem; font-family: var(--font-body); outline: none; transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--ram-blue); }
.btn-newsletter {
    padding: 0.7rem 1.5rem; background: var(--ram-red); color: var(--white);
    font-weight: 700; font-size: 0.9rem; border-radius: 10px; transition: all 0.25s; white-space: nowrap;
}
.btn-newsletter:hover { background: var(--ram-red-dark); color: var(--white); }

/* ── Footer ── */
.site-footer { background: #0f172a; color: #94a3b8; padding: 4rem 0 0; }
.footer-brand {
    font-family: var(--font-body); font-weight: 800; font-size: 1.15rem; color: var(--white);
    margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.footer-brand span { color: var(--ram-red); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials a {
    width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center; font-size: 1rem;
    color: #94a3b8; transition: all 0.25s;
}
.footer-socials a:hover { background: var(--ram-red); color: var(--white); transform: translateY(-2px); }
.footer-col h4 { color: var(--white); font-weight: 700; font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: #94a3b8; transition: all 0.2s; }
.footer-col ul li a:hover { color: var(--white); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; margin-top: 3rem;
    display: flex; justify-content: space-between; align-items: center; font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: #64748b; }
.footer-bottom-links a:hover { color: var(--white); }

/* ── Toast ── */
.toast-custom {
    position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120px);
    background: #1e293b; color: #fff; padding: 0.85rem 1.5rem; border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.2); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
    z-index: 9999; font-size: 0.9rem; display: flex; align-items: center; gap: 0.6rem;
    border: 1px solid rgba(255,255,255,0.08);
}
.toast-custom.show { transform: translateX(-50%) translateY(0); }
.toast-custom i { color: #10b981; font-size: 1.1rem; }

/* ── Animations ── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 991px) {
    .about-hero-inner h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.8rem; }
    .story-text h2 { font-size: 1.6rem; }
    .values-grid { grid-template-columns: 1fr; }
    .newsletter-card { flex-direction: column; text-align: center; }
    .newsletter-form { min-width: auto; width: 100%; }
    .stat-divider { display: none; }
}
@media (max-width: 767px) {
    .about-hero { min-height: 340px; }
    .about-hero-inner h1 { font-size: 1.8rem; }
    .about-hero-inner { padding: 3rem 0; }
    .section-title { font-size: 1.6rem; }
    .stat-num { font-size: 2rem; }
    .cta-card { padding: 2.5rem 1.5rem; }
    .cta-card h2 { font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .timeline { padding-left: 2rem; }
    .timeline::before { left: 8px; }
    .timeline-dot { left: -2rem; width: 18px; height: 18px; }
}

/* ═══ Sitemap Cards - Responsive Styles ═══ */
.uk-card1 {
    background: var(--bg-light); border-radius: var(--radius-lg); padding: 2rem;
    transition: all 0.35s; border: 1.5px solid transparent;
}
.uk-card1:hover { background: var(--white); border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.uk-card1 h4 { font-weight: 700; font-size: 1.05rem; color: var(--text-dark); margin-bottom: 0.5rem; }
.uk-card1 p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.65; margin-bottom: 0; }
.uk-card1 .uk-detail {
    display: flex; align-items: center; gap: 0.5rem; margin-top: 0.75rem;
    font-size: 0.82rem; color: var(--ram-blue); font-weight: 600;
}
.uk-card1 .uk-detail i { font-size: 0.9rem; }

.sitemap-card {
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sitemap-card:last-child {
    margin-bottom: 0;
}

.sitemap-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.sitemap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.sitemap-card .uk-card-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sitemap-card-content {
    flex: 1;
    min-width: 0; /* Prevents flex item from overflowing */
}

.sitemap-card-content h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
}

.sitemap-card-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Mobile Adjustments */
@media (max-width: 575.98px) {
    .sitemap-card-link {
        gap: 0.75rem;
    }
    
    .sitemap-card .uk-card-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .sitemap-card-content h4 {
        font-size: 1rem;
    }
    
    .sitemap-card-content p {
        font-size: 0.85rem;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* Small screens - single column */
@media (max-width: 575.98px) {
    .uk-section .row > [class*="col-"] {
        margin-bottom: 2rem;
    }
}

/* Medium screens and up - proper spacing */
@media (min-width: 576px) {
    .sitemap-card {
        margin-bottom: 1.25rem;
    }
}

@media (min-width: 992px) {
    .sitemap-card {
        margin-bottom: 1.5rem;
    }
}