:root {
    --ember: #4DB2B0;
    --obsidian: #09090b;
    --graphite: #18181b;
    --slate: #27272a;
    --iron: #3f3f46;
    --steel: #52525b;
    --fog: #71717a;
    --ash: #a1a1aa;
    --mist: #d4d4d8;
    --cloud: #ececee;
    --paper: #f4f4f5;
    --snow: #ffffff;
}

/* ========================
   BASE
======================== */
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    background-color: var(--paper);
    color: var(--graphite);
    font-family: 'Plus Jakarta Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ========================
   COLORS
======================== */
.bg-snow { background-color: var(--snow) !important; }
.bg-obsidian { background-color: var(--obsidian) !important; }
.bg-paper { background-color: var(--paper) !important; }
.bg-graphite { background-color: var(--graphite) !important; }
.bg-ember { background-color: var(--ember) !important; }
.text-snow { color: var(--snow) !important; }
.text-obsidian { color: var(--obsidian) !important; }
.text-ember { color: var(--ember) !important; }
.text-graphite { color: var(--graphite) !important; }
.text-fog { color: var(--fog) !important; }
.text-ash { color: var(--ash) !important; }
.text-mist { color: var(--mist) !important; }
.border-cloud { border-color: var(--cloud) !important; }
.border-slate { border-color: var(--slate) !important; }

/* ========================
   TYPOGRAPHY
======================== */
.fw-extrabold { font-weight: 800 !important; }
.tracking-tight { letter-spacing: -0.03em !important; }
.leading-tight { line-height: 1.1 !important; }
.leading-relaxed { line-height: 1.6 !important; }

.pseo_h1 {
    font-size: clamp(32px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--obsidian);
}

/* ========================
   GRADIENTS
======================== */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 10px 30px rgba(255, 90, 0, 0.3);
}

/* ========================
   COMPONENTS
======================== */
.text-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--snow);
    border: 1px solid var(--cloud);
    border-radius: 10000px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    color: var(--graphite);
}

.btn-black {
    background-color: var(--obsidian);
    color: var(--snow);
    border-radius: 10000px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    white-space: nowrap;
}
.btn-black:hover {
    color: var(--snow);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 90, 0, 0.25), 0 8px 16px rgba(0,0,0,0.25);
}

.btn-white {
    background-color: var(--snow);
    color: var(--obsidian);
    border-radius: 10000px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 15px;
    border: 1px solid var(--cloud);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.btn-white:hover {
    background-color: var(--paper);
    color: var(--obsidian);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.awesomic-card {
    background-color: var(--snow);
    border: 1px solid var(--cloud);
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}
.awesomic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.04);
    border-color: var(--mist);
}

/* ========================
   NAVBAR
======================== */
.glass-effect {
    background-color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.nav-link-custom {
    font-size: 13px;
    font-weight: 600;
    color: var(--graphite);
    text-decoration: none;
    padding: 6px 9px;
    border-radius: 8px;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.nav-link-custom:hover {
    color: var(--obsidian);
    background-color: var(--paper);
}
.nav-link-custom.active {
    color: var(--ember);
}

/* Premium Dropdown Menu */
.mega-dropdown {
    position: relative !important;
}
.mega-menu {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(15px) !important;
    width: max-content;
    min-width: 220px;
    top: 100%;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 20px !important;
    padding: 16px !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.05) !important;
    margin-top: 4px !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1) !important;
    display: block !important;
}
.mega-dropdown:hover .mega-menu, .mega-dropdown:focus-within .mega-menu, .mega-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) !important;
}
.mega-menu .mega-col-title {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--ash);
    margin-bottom: 12px;
    padding: 0 12px;
}
.menu-item-simple {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--graphite) !important;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
}
.menu-item-simple:hover {
    background: var(--paper);
    color: var(--ember) !important;
    padding-left: 16px;
}
.menu-item-premium {
    display: block;
    text-decoration: none;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
}
.menu-item-premium:hover {
    background: var(--snow);
    border-color: var(--cloud);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transform: translateY(-2px);
}

/* ========================
   MARQUEE (Running Text)
======================== */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: var(--snow);
    border-top: 1px solid var(--cloud);
    border-bottom: 1px solid var(--cloud);
    padding: 14px 0;
    /* Isolate stacking context agar tidak ter-clip oleh parent */
    contain: layout style;
}
.marquee-track {
    display: flex;
    /* Pastikan lebar cukup untuk animasi loop */
    width: max-content;
    animation: marquee-run 30s linear infinite;
    will-change: transform;
    /* Gunakan translate3d agar GPU acceleration aktif */
    transform: translate3d(0, 0, 0);
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--obsidian);
    white-space: nowrap;
    flex-shrink: 0;
}
.marquee-sep {
    color: var(--ember);
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

@keyframes marquee-run {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ========================
   TESTIMONIAL MARQUEE
======================== */
.testimonial-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Soft gradient masks on left and right */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.testimonial-marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-testimonial 40s linear infinite;
    will-change: transform;
}
.testimonial-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marquee-testimonial {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 12px)); }
}

.testimonial-card {
    width: 320px;
    background: var(--snow);
    border: 1px solid var(--cloud);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
    flex-shrink: 0;
    cursor: grab;
}
.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: var(--mist);
}
.testimonial-card:active {
    cursor: grabbing;
}

/* ========================
   TEXT ROTATOR (Hero)
======================== */
.words-wrapper {
    display: inline-block;
    overflow: hidden;
    height: 1.1em;
    vertical-align: bottom;
    position: relative;
}
.words-inner {
    display: flex;
    flex-direction: column;
    animation: scroll-words 5s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}
.words-inner > span {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
}
@keyframes scroll-words {
    0%, 35%  { transform: translateY(0%); }
    45%, 80% { transform: translateY(-33.33%); }
    90%, 100%{ transform: translateY(-66.66%); }
}

/* ========================
   PARALLAX CTA
======================== */
.parallax-cta {
    background-image: url('../assets/hero_bg.jpg');
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    /* Optimasi performa paint */
    transform: translateZ(0);
}
@media (max-width: 767px) {
    .parallax-cta {
        background-attachment: scroll;
    }
}
.parallax-overlay {
    position: absolute;
    inset: 0;
    /* Menghapus backdrop-filter blur karena sangat memberatkan rendering saat digabung dengan background fixed */
    background-color: rgba(9, 9, 11, 0.88);
}

/* ========================
   MISC UTILS
======================== */
.z-60 { z-index: 60; }
.z-50 { z-index: 50; }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.rounded-4xl { border-radius: 36px; }

.text-stroke-snow {
    -webkit-text-stroke: 2px var(--fog);
    color: transparent;
    transition: all 0.5s ease;
    display: inline-block;
}
.group:hover .text-stroke-snow {
    -webkit-text-stroke-color: transparent;
    color: var(--ember);
}

@keyframes pulse-custom {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .7; transform: scale(1.1); }
}
.animate-pulse-custom {
    animation: pulse-custom 2s ease-in-out infinite;
}

/* ========================
   MOBILE OFFCANVAS MENU
======================== */
.offcanvas-menu-section {
    border-bottom: 1px solid var(--cloud);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.offcanvas-menu-section:last-child {
    border-bottom: none;
}
.offcanvas-main-link {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: var(--obsidian);
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.2s;
}
.offcanvas-main-link:hover { color: var(--ember); }

.offcanvas-sub-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 17px;
    font-weight: 700;
    color: var(--obsidian);
    text-decoration: none;
    padding: 8px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
}
.offcanvas-sub-toggle:hover { color: var(--ember); }
.offcanvas-sub-toggle .arrow {
    font-size: 12px;
    transition: transform 0.25s ease;
    color: var(--ash);
}
.offcanvas-sub-toggle[aria-expanded="true"] .arrow {
    transform: rotate(180deg);
    color: var(--ember);
}

.offcanvas-sub-links {
    padding-left: 12px;
    padding-top: 4px;
}
.offcanvas-sub-links a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--fog);
    text-decoration: none;
    padding: 5px 0;
    transition: color 0.2s;
}
.offcanvas-sub-links a:hover { color: var(--ember); }

/* ========================
   TEAM CARD & UTILS
======================== */
.team-card {
    transition: all 0.4s ease;
}
.team-card img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}
.team-card:hover img {
    transform: scale(1.08);
}
.team-card .team-desc {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    height: 0;
    margin-top: 0;
    overflow: hidden;
}
.team-card:hover .team-desc {
    opacity: 1;
    transform: translateY(0);
    height: 40px;
    margin-top: 8px;
}
.opacity-10 { opacity: 0.1 !important; }

/* ========================
   FOOTER UTILS
======================== */
.footer-link {
    transition: color 0.2s, padding-left 0.2s;
}
.footer-link:hover {
    color: var(--ember) !important;
    padding-left: 4px;
}

/* ======= HERO ======= */
.contact-hero {
    background: var(--obsidian);
    position: relative;
    overflow: hidden;
    padding: 100px 0 80px;
}
.contact-hero::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(255,90,0,0.1) 0%, transparent 65%);
    top: -200px; right: -100px;
    pointer-events: none;
}
.contact-hero::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,90,0,0.06) 0%, transparent 65%);
    bottom: 0; left: -80px;
    pointer-events: none;
}

/* ======= CHANNEL CARDS ======= */
.channel-card {
    background: var(--snow);
    border: 1px solid var(--cloud);
    border-radius: 20px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.channel-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 3px;
    background: var(--ember);
    transition: width 0.4s ease;
    border-radius: 0 3px 0 0;
}
.channel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.09);
    border-color: rgba(255,90,0,0.2);
    color: inherit;
}
.channel-card:hover::before { width: 100%; }
.channel-card:hover .ch-icon { background: var(--obsidian); }
.ch-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--ember);
    background: var(--paper);
    flex-shrink: 0;
    transition: all 0.35s ease;
}
.ch-arrow { transition: transform 0.3s ease; color: var(--mist); font-size: 1.1rem; }
.channel-card:hover .ch-arrow { transform: translate(3px, -3px); color: var(--ember); }

/* ======= FORM AREA ======= */
.contact-form-wrap {
    /* background: var(--snow);
    border: 1px solid var(--cloud);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06); */
}
@media (max-width: 767px) { .contact-form-wrap { padding: 28px 20px; } }

.form-input-custom {
    background: var(--paper);
    border: 1.5px solid var(--cloud);
    border-radius: 12px;
    padding: 14px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--obsidian);
    transition: all 0.25s ease;
    width: 100%;
    outline: none;
}
.form-input-custom::placeholder { color: var(--ash); }
.form-input-custom:focus {
    background: var(--snow);
    border-color: var(--ember);
    box-shadow: 0 0 0 4px rgba(255,90,0,0.08);
}
.form-label-custom {
    font-size: 13px;
    font-weight: 700;
    color: var(--graphite);
    margin-bottom: 8px;
    display: block;
}
.topic-btn {
    padding: 8px 18px;
    border-radius: 100px;
    border: 1.5px solid var(--cloud);
    background: var(--paper);
    color: var(--graphite);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.topic-btn:hover, .topic-btn.active, .topic-btn:has(input:checked) {
    background: var(--obsidian);
    color: var(--snow);
    border-color: var(--obsidian);
}
.interest-chk { width: 16px; height: 16px; accent-color: var(--ember); cursor: pointer; flex-shrink: 0; }

/* ======= COUNTRY DROPDOWN ======= */
.country-dropdown { position: relative; flex-shrink: 0; }
.country-toggle {
    display: flex; align-items: center; gap: 8px;
    width: auto; cursor: pointer;
}
.cflag { width: 24px; height: 18px; border-radius: 3px; object-fit: cover; flex-shrink: 0; box-shadow: 0 0 0 1px rgba(0,0,0,0.06); }
.country-menu {
    position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
    width: 330px; max-width: 86vw;
    background: var(--snow);
    border: 1.5px solid var(--cloud);
    border-radius: 16px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.14);
    padding: 12px;
    display: none;
}
.country-menu.open { display: block; }
.country-list { max-height: 260px; overflow-y: auto; margin-top: 10px; }
.country-option {
    display: flex; align-items: center; gap: 10px;
    padding: 9px 10px; border-radius: 10px; cursor: pointer;
    font-size: 14px; font-weight: 500; color: var(--obsidian);
}
.country-option:hover, .country-option.active { background: var(--paper); }
.country-option .co-dial { margin-left: auto; color: var(--ash); font-size: 13px; font-weight: 600; }
.co-caret { font-size: .75rem; color: var(--ash); }

/* Toggled from JS instead of an inline style="display:none", so the page needs
   no 'unsafe-inline' in the CSP style-src. */
.is-hidden { display: none; }

/* Full-width pill for the stacked "I'm interested in" radio labels. */
.topic-btn-block { border-radius: 12px; width: 100%; }

/* Server-rendered status banners (Smarty), separate from the JS-driven
   #successMsg / #errorMsg used by the WhatsApp path. */
.server-alert {
    border-radius: 14px;
    padding: 16px 20px;
    font-weight: 600;
    font-size: 14px;
}
.server-alert-success {
    background: rgba(0, 150, 80, 0.06);
    border: 1.5px solid rgba(0, 150, 80, 0.25);
    color: #1a7a4a;
}
.server-alert-error {
    background: rgba(200, 40, 40, 0.06);
    border: 1.5px solid rgba(200, 40, 40, 0.25);
    color: #b3261e;
}

/* Full-width variant — used by the standalone Country field, where the toggle
   is the whole form row instead of a prefix sitting next to a phone input. */
.country-dropdown-block { width: 100%; flex-shrink: 1; }
.country-dropdown-block .country-toggle { width: 100%; }
.country-dropdown-block .country-toggle .co-caret { margin-left: auto; }
.country-dropdown-block .country-menu { width: 100%; max-width: none; }
.send-btn {
    background: var(--obsidian);
    color: var(--snow);
    border: none;
    border-radius: 14px;
    padding: 16px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.send-btn:hover {
    background: var(--ember);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255,90,0,0.3);
}

/* ======= INFO PANEL ======= */
.info-panel {
    background: var(--obsidian);
    border-radius: 28px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    height: 100%;
}
@media (max-width: 767px) { .info-panel { padding: 32px 24px; } }
.info-panel::before {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,90,0,0.12), transparent 70%);
    top: -80px; right: -80px;
    pointer-events: none;
}
.info-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 28px 0;
}
.info-link {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: all 0.25s ease;
}
.info-link:last-child { border-bottom: none; }
.info-link:hover { padding-left: 6px; }
.info-link:hover .il-arrow { color: var(--ember); transform: translateX(4px); }
.il-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.06);
    font-size: 1.1rem;
    color: var(--ember);
    flex-shrink: 0;
    transition: background 0.25s ease;
}
.info-link:hover .il-icon { background: rgba(255,90,0,0.15); }
.il-arrow { color: rgba(255,255,255,0.2); transition: all 0.25s ease; }

/* ======= TRUST STRIP ======= */
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--paper);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.trust-item:hover { background: var(--snow); box-shadow: 0 8px 24px rgba(0,0,0,0.05); }

/* ======= SUCCESS STATE ======= */
#successMsg {
    display: none;
    background: rgba(0, 150, 80, 0.06);
    border: 1.5px solid rgba(0, 150, 80, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    color: #1a7a4a;
    font-weight: 600;
    align-items: center;
    gap: 12px;
}
/* ======= ERROR STATE ======= */
#errorMsg {
    display: none;
    background: rgba(200, 40, 40, 0.06);
    border: 1.5px solid rgba(200, 40, 40, 0.25);
    border-radius: 14px;
    padding: 20px 24px;
    color: #b3261e;
    font-weight: 600;
    align-items: center;
    gap: 12px;
}

/* ========================
   RESPONSIVE FIXES
======================== */
@media (max-width: 767px) {
    .scroll-mobile-x {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        padding-top: 20px;
        padding-bottom: 40px;
        margin-left: -16px;
        margin-right: -16px;
        padding-left: 16px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
        align-items: stretch;
        justify-content: flex-start !important;
    }
    .scroll-mobile-x::after {
        content: "";
        flex: 0 0 1px;
    }
    .scroll-mobile-x::-webkit-scrollbar {
        display: none; /* Safari and Chrome */
    }
    .scroll-mobile-x > div {
        flex: 0 0 85%;
        max-width: 85%;
        scroll-snap-align: center;
        /* Disable AOS transform clipping */
        transform: none !important;
        opacity: 1 !important;
    }
    
    .pseo_h1 {
        font-size: clamp(26px, 7.5vw, 40px);
        line-height: 1.18;
    }
    .awesomic-card {
        border-radius: 20px;
        padding: 20px;
    }
    .btn-black, .btn-white {
        font-size: 14px;
        padding: 11px 20px;
    }
    .marquee-item {
        font-size: 11px;
        padding: 0 18px;
    }
}

/* ========================
   CUSTOM ANIMATIONS FOR VISION & MISSION
======================== */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}
@keyframes float-reverse {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}
@keyframes ping-custom {
    0% { transform: scale(1); opacity: 0.5; }
    75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping-custom {
    animation: ping-custom 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.vision-card:hover, .mission-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12) !important;
}
.vision-card:hover .card-glow, .mission-card:hover .card-glow {
    opacity: 1 !important;
}
.hover-lift-item {
    transition: transform 0.3s ease, color 0.3s ease;
}
.hover-lift-item:hover {
    transform: translateX(6px);
}@media (max-width: 480px) {
    .pseo_h1 {
        font-size: clamp(24px, 7vw, 36px);
    }
}



