@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Oswald:wght@500;600;700&display=swap&subset=latin-ext');

body { font-family: 'Plus Jakarta Sans', sans-serif; scroll-behavior: smooth; }
.font-oswald { font-family: 'Oswald', sans-serif; }

.nav-active { color: #0284c7 !important; font-weight: 800; border-bottom: 2px solid #0284c7; }

.hero-section {
    background: linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.8)), url('https://images.unsplash.com/photo-1576091160550-2173dad99901?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
}

.page-transition { animation: fadeIn 0.4s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.price-row:hover { background-color: #f8fafc; }
.logo-img { max-height: 60px; width: auto; filter: brightness(0); }
@media (max-width: 767px) { .logo-img-mobile { max-height: 36px; } }
.footer-img { max-height: 60px; width: auto; }

.hero-icon-blob {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 8s ease-in-out infinite;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-scrollbar::-webkit-scrollbar { width: 4px; }
.custom-scrollbar::-webkit-scrollbar-track { background: #f8fafc; }
.custom-scrollbar::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 10px; }
.custom-scrollbar::-webkit-scrollbar-thumb:hover { background: #0284c7; }

@keyframes morph {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.article-content img { border-radius: 1rem; margin-bottom: 1.5rem; width: 100%; height: 300px; object-fit: cover; }

.contact-info-box { background: #ffffff; border: 1px solid #f1f5f9; transition: all 0.3s ease; }
.contact-info-box:hover { border-color: #0284c7; box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.05); }

.stat-card { background: #fff; padding: 2rem; border-radius: 1.5rem; box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05); transition: transform 0.3s ease; }
.stat-card:hover { transform: translateY(-5px); }

@keyframes starEntrance {
    0% { transform: translateY(15px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}
.star-appear { opacity: 0; animation: starEntrance 0.5s ease-out forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.review-card:hover .star-appear { transform: scale(1.1); transition: transform 0.3s ease; color: #eab308; }

@keyframes starPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; text-shadow: 0 0 15px rgba(250, 204, 21, 0.6); }
    100% { transform: scale(1); opacity: 1; }
}
.animate-star { display: inline-block; animation: starPulse 2s infinite ease-in-out; }
.star-1 { animation-delay: 0.1s; }
.star-2 { animation-delay: 0.3s; }
.star-3 { animation-delay: 0.5s; }
.star-4 { animation-delay: 0.7s; }
.star-5 { animation-delay: 0.9s; }

/* ── CASMB Announcement Bar ── */
.casmb-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: linear-gradient(90deg, #0369a1 0%, #0284c7 30%, #0ea5e9 50%, #0284c7 70%, #0369a1 100%);
    background-size: 250% 100%;
    animation: casmbShimmer 5s ease-in-out infinite;
    color: white;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s;
}
.casmb-bar:hover { filter: brightness(1.12); }
@keyframes casmbShimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}
.casmb-pulse-dot {
    width: 7px;
    height: 7px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dotPulse 1.8s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    50% { opacity: 0.4; transform: scale(0.7); box-shadow: 0 0 0 5px rgba(255,255,255,0); }
}

/* ── CASMB Page ── */
.casmb-hero {
    background: linear-gradient(135deg, #0c4a6e 0%, #0369a1 45%, #0284c7 75%, #38bdf8 100%);
    position: relative;
    overflow: hidden;
}
.casmb-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
    pointer-events: none;
}
@keyframes floatUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.casmb-reveal { animation: floatUp 0.7s ease-out forwards; opacity: 0; }
.casmb-reveal-1 { animation-delay: 0.1s; }
.casmb-reveal-2 { animation-delay: 0.25s; }
.casmb-reveal-3 { animation-delay: 0.4s; }
.casmb-reveal-4 { animation-delay: 0.6s; }
@keyframes slideInRight {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to   { opacity: 1; transform: translateX(0) scale(1); }
}
.casmb-img-reveal { animation: slideInRight 0.9s ease-out 0.35s forwards; opacity: 0; }
.casmb-doc-card {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 1.5rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px -8px rgba(0,0,0,0.05);
}
.casmb-doc-card:hover { border-color: #0284c7; box-shadow: 0 12px 30px -8px rgba(2,132,199,0.15); transform: translateY(-3px); }
.casmb-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.casmb-step-num {
    width: 44px; height: 44px;
    background: #0284c7; color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 15px; flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(2,132,199,0.35);
}
.casmb-faq-item summary {
    list-style: none; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.25rem 1.5rem; font-weight: 700; font-size: 14px; color: #0f172a;
}
.casmb-faq-item summary::-webkit-details-marker { display: none; }
.casmb-faq-item[open] summary { color: #0284c7; }
.casmb-faq-item[open] summary .faq-icon { transform: rotate(45deg); }
.faq-icon { transition: transform 0.25s ease; color: #0284c7; font-size: 12px; }
.casmb-faq-content { padding: 0 1.5rem 1.25rem; font-size: 13px; color: #475569; line-height: 1.7; border-top: 1px solid #f1f5f9; padding-top: 1rem; }
