* {
    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: #0d2c6c;
    transition: width 0.25s;
}
.navbar-link:hover::after {
    width: 100%;
}
.navbar-link:hover {
    color: #0d2c6c;
}

/* Buttons */
.btn-consult {
    background: #0d2c6c;
    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);
}
.btn-continue {
    background: #1a1826;
    transition:
        background 0.2s,
        box-shadow 0.2s;
}
.btn-continue:hover {
    background: #2d2d44;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

/* ── Hero overlay ── */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(10, 15, 30, 0.75) 0%,
        rgba(20, 30, 60, 0.6) 100%
    );
}

/* 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;
}

/* Pricing tabs */
.pkg-tab {
    cursor: pointer;
    padding: 8px 20px;
    border-bottom: 2px solid transparent;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    transition:
        color 0.2s,
        border-color 0.2s;
}
.pkg-tab.active {
    color: #0d2c6c;
    border-color: #0d2c6c;
}

/* Carousel */
.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
    min-width: 100%;
}

/* Feature dot */
.feat-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0d2c6c;
    flex-shrink: 0;
    margin-top: 6px;
}

/* Footer */
.footer-link {
    transition: color 0.2s;
    font-size: 13.5px;
    color: #9ca3af;
}
.footer-link:hover {
    color: #0d2c6c;
}
.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: #0d2c6c;
    transform: scale(1.1);
}

/* Pricing card */
.pricing-card {
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

/* Like/share */
.action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #6b7280;
    cursor: pointer;
    transition: color 0.2s;
}
.action-btn:hover {
    color: #0d2c6c;
}

/* Feature highlight card */
.feat-card {
    border-radius: 12px;
    border: 1.5px solid #f0f0f5;
    transition:
        transform 0.2s,
        box-shadow 0.2s;
}
.feat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

/* Blue bullet */
.blue-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3b82f6;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Breadcrumb */
.bc-link {
    font-size: 13px;
    color: #6b7280;
    transition: color 0.2s;
}
.bc-link:hover {
    color: #0d2c6c;
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fade-up {
    animation: fadeUp 0.5s ease forwards;
}
.d1 {
    animation-delay: 0.05s;
    opacity: 0;
}
.d2 {
    animation-delay: 0.12s;
    opacity: 0;
}
.d3 {
    animation-delay: 0.18s;
    opacity: 0;
}

/* Carousel image */
.slide-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

/* Badge floating */
.badge-float {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}
