* {
    font-family: "Plus Jakarta Sans", sans-serif;
}
html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar-link {
    position: relative;
    transition: color 0.2s;
}
.navbar-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: #f05a28;
    transition: width 0.25s;
}
.navbar-link:hover::after {
    width: 100%;
}
.navbar-link:hover {
    color: #f05a28;
}

/* Blog card */
.blog-card {
    transition:
        transform 0.22s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.22s;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.11);
}
.blog-card img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.blog-card:hover img {
    transform: scale(1.04);
}

/* Read more link */
.read-more {
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition:
        color 0.2s,
        gap 0.2s;
}
.read-more:hover {
    color: #f05a28;
    gap: 9px;
}

/* Btn */
.btn-consult {
    background: #f05a28;
    transition:
        background 0.2s,
        box-shadow 0.2s,
        transform 0.15s;
}
.btn-consult:hover {
    background: #d94d1f;
    box-shadow: 0 4px 16px rgba(240, 90, 40, 0.35);
    transform: translateY(-1px);
}

/* Mobile menu */
#mobile-menu {
    transition:
        max-height 0.3s ease,
        opacity 0.3s;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
}
#mobile-menu.open {
    max-height: 400px;
    opacity: 1;
}

/* Hero */
.hero-bg {
    background: linear-gradient(180deg, #4a4a55 0%, #3a3a44 100%);
}

/* Footer */
.footer-link {
    transition: color 0.2s;
    font-size: 13.5px;
    color: #9ca3af;
}
.footer-link:hover {
    color: #f05a28;
}
.social-icon {
    width: 34px;
    height: 34px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2d2d44;
    transition:
        background 0.2s,
        transform 0.2s;
}
.social-icon:hover {
    background: #f05a28;
    transform: scale(1.1);
}

/* Img wrapper */
.img-wrap {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    height: 195px;
}
.img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Separator dot */
.meta-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d1d5db;
    display: inline-block;
    margin: 0 6px;
    vertical-align: middle;
}

/* Tag */
.author-tag {
    color: #0d2c6c;
    font-size: 12px;
    font-weight: 600;
}
.date-tag {
    color: #0d2c6c;
    font-size: 12px;
    font-weight: 500;
}

/* Fade in */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up {
    animation: fadeUp 0.55s ease forwards;
}
.d1 {
    animation-delay: 0.05s;
    opacity: 0;
}
.d2 {
    animation-delay: 0.12s;
    opacity: 0;
}
.d3 {
    animation-delay: 0.19s;
    opacity: 0;
}
.d4 {
    animation-delay: 0.26s;
    opacity: 0;
}
.d5 {
    animation-delay: 0.33s;
    opacity: 0;
}
.d6 {
    animation-delay: 0.4s;
    opacity: 0;
}
.d7 {
    animation-delay: 0.47s;
    opacity: 0;
}
.d8 {
    animation-delay: 0.54s;
    opacity: 0;
}
.d9 {
    animation-delay: 0.61s;
    opacity: 0;
}
