/* ==========================================================================
   GLOBAL IMMIGRATION GROUP - STYLESHEET
   ========================================================================== */

/* --- CSS Variables --- */
:root {
    --primary-navy: #1D4A6D;
    --dark-navy: #123048;
    --primary-red: #CD2A2C;
    --dark-red: #A51C1E;
    --accent-gold: #C8A96B;

    --text-black: #1B1B1B;
    --text-gray: #475569;
    --bg-light: #F5F7FA;
    --border-gray: #E5E7EB;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s ease;
}

/* --- Global Reset & Typography --- */
html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-gray);
    line-height: 1.7;
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-black);
    font-weight: 700;
}

a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-red);
}

/* --- Utilities --- */
.text-navy {
    color: var(--primary-navy) !important;
}

.text-red {
    color: var(--primary-red) !important;
}

.text-gold {
    color: var(--accent-gold) !important;
}

.bg-light-gray {
    background-color: var(--bg-light);
}

.bg-navy {
    background-color: var(--primary-navy);
}

/* --- Buttons --- */
.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary-red) 0%, #E63946 100%);
    color: #fff;
    border-radius: 14px;
    padding: 12px 28px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(193, 18, 31, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(193, 18, 31, 0.4);
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    border-radius: 14px;
    padding: 10px 26px;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-navy);
    color: #fff;
}

/* --- Header & Navbar --- */
.navbar {
    padding: 5px 0;
    transition: var(--transition);
    background: #fff;
    border-bottom: 1px solid var(--border-gray);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 70px;
}

/* Custom Hamburger Animation */
.custom-toggler {
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    outline: none;
    background: transparent;
    z-index: 1050;
}

.custom-toggler span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--primary-navy);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transition: 0.3s ease-in-out;
}

.custom-toggler span:nth-child(1) {
    top: 0px;
}

.custom-toggler span:nth-child(2) {
    top: 10px;
}

.custom-toggler span:nth-child(3) {
    top: 20px;
}

.custom-toggler[aria-expanded="true"] span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.custom-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.custom-toggler[aria-expanded="true"] span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}


.nav-link {
    color: var(--text-black) !important;
    font-weight: 600;
    font-size: 15px;
    margin: 0 10px;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.nav-link.active {
    color: var(--primary-red) !important;
    font-weight: 700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 10%;
    width: 80%;
    height: 3px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--dark-navy);
}

/* --- Hero Slider --- */
.hero-slider {
    position: relative;
    padding: 0;
    margin: 0;
}

.hero-swiper {
    width: 100%;
    height: 90vh;
    min-height: 600px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(29, 74, 109, 0.85) 0%, rgba(18, 48, 72, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-content .hero-title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.btn-outline-custom-light {
    border: 2px solid #ffffff;
    color: #ffffff;
    border-radius: 14px;
    padding: 10px 26px;
    font-weight: 600;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-custom-light:hover {
    background: #ffffff;
    color: var(--primary-navy);
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.hero-swiper .swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-red);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--dark-navy);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-gray);
}

.trust-badges {
    margin-top: 40px;
    display: flex;
    gap: 20px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--primary-navy);
}

.badge-item i {
    color: var(--accent-gold);
    font-size: 1.5rem;
}

/* --- Features / Why Choose Us --- */
.feature-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    height: 100%;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--border-gray);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

/* --- Services --- */
.service-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 25px;
}

/* --- Process --- */
.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--primary-navy);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.process-step:hover .process-icon-wrap {
    background: var(--primary-red);
    color: #fff;
}

/* Timeline line */
.process-row {
    position: relative;
}

.process-row::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border-gray);
    z-index: 0;
}

/* --- Statistics --- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    padding: 80px 0;
    color: #fff;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* --- Visa Programs --- */
.visa-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: var(--transition);
}

.visa-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-hover);
}

.visa-flag {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Testimonials --- */
.testimonial-card {
    background: #fff;
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    margin: 15px;
}

.quote-icon {
    font-size: 3rem;
    color: var(--border-gray);
    opacity: 0.5;
    margin-bottom: -20px;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* --- FAQ --- */
.accordion-item {
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-md) !important;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    font-family: var(--font-heading);
    padding: 20px 25px;
    color: var(--text-black);
}

.accordion-button:not(.collapsed) {
    background-color: var(--bg-light);
    color: var(--primary-navy);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, 0.1);
}

/* --- FAQ Custom Accordion --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: rgba(18, 59, 99, 0.2);
    box-shadow: 0 6px 22px rgba(18, 59, 99, 0.09);
    transform: translateY(-1px);
}

.faq-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.3s ease;
}

.faq-btn:not(.collapsed) {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
}

.faq-btn:not(.collapsed) .faq-number {
    color: var(--accent-gold);
    border-color: rgba(200, 169, 107, 0.55);
    background: rgba(200, 169, 107, 0.1);
}

.faq-btn:not(.collapsed) .faq-question {
    color: #ffffff;
}

.faq-btn:not(.collapsed) .faq-icon {
    color: var(--accent-gold);
    transform: rotate(45deg);
}

.faq-number {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary-navy);
    border: 1.5px solid rgba(18, 59, 99, 0.2);
    border-radius: 8px;
    padding: 3px 9px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    transition: var(--transition);
    background: rgba(18, 59, 99, 0.04);
}

.faq-question {
    flex: 1;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.97rem;
    color: var(--dark-navy);
    line-height: 1.45;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--text-gray);
    flex-shrink: 0;
    transition: transform 0.35s ease, color 0.3s ease;
}

.faq-body {
    padding: 4px 24px 22px calc(24px + 42px + 14px);
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.78;
}

/* FAQ Right CTA Card */
.faq-cta-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 12px 40px rgba(18, 59, 99, 0.1);
    border: 1px solid var(--border-gray);
    position: sticky;
    top: 100px;
}

.faq-cta-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: var(--accent-gold);
    margin-bottom: 22px;
    box-shadow: 0 6px 18px rgba(18, 59, 99, 0.25);
}

.faq-contact-item {
    padding: 13px 16px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.faq-contact-item:hover {
    border-color: var(--border-gray);
    background: #ffffff;
    transform: translateX(4px);
}

.faq-contact-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.faq-stat-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.faq-stat-card:hover {
    box-shadow: 0 6px 20px rgba(18, 59, 99, 0.1);
    border-color: rgba(18, 59, 99, 0.15);
    transform: translateY(-2px);
}

/* --- Consultation Form --- */
.consultation-section {
    padding: 80px 0;
}

.form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.form-control,
.form-select {
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-navy);
    box-shadow: 0 0 0 0.25rem rgba(18, 59, 99, 0.1);
}

.consult-bg {
    background: url('https://images.unsplash.com/photo-1556761175-5973dc0f32e7?q=80&w=1632&auto=format&fit=crop') center/cover no-repeat;
    border-radius: var(--radius-lg);
    height: 100%;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.consult-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(18, 59, 99, 0.9) 0%, rgba(14, 47, 77, 0.8) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: var(--dark-navy);
}

/* --- Footer --- */
.footer {
    background: var(--dark-navy);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
}

.social-icons a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
}

/* --- Utilities & Animations --- */
.section-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--dark-navy);
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 50px;
}

.section-padding {
    padding: 60px 0;
}

.hover-lift {
    transition: var(--transition);
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover) !important;
}

/* Subtle Image Zoom Hover */
.zoom-img-wrapper {
    overflow: hidden;
    border-radius: inherit;
}

.zoom-img-wrapper img {
    transition: transform 0.6s ease;
}

.zoom-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Custom Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating-card-1 {
    animation: float 4s ease-in-out infinite;
}

.floating-card-2 {
    animation: float 5s ease-in-out infinite 1s;
}

/* Fade In Up Animation */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Custom Utilities --- */
.custom-img-1 {
    min-height: 480px;
}

.custom-img-2 {
    min-height: 450px;
}

.section-title-sm {
    font-size: 2rem;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 991px) {
    .process-row::before {
        display: none;
    }

    .process-step {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-overlay {
        background: linear-gradient(to bottom, rgba(29, 74, 109, 0.85) 0%, rgba(18, 48, 72, 0.4) 100%);
    }

    /* Offcanvas Menu for Mobile */
    .navbar-collapse,
    .navbar-collapse.collapsing {
        position: fixed;
        top: 0;
        right: -100%;
        left: auto;
        width: 100%;
        max-width: 350px;
        height: 100vh !important;
        background-color: #fff;
        transition: right 0.3s ease-in-out !important;
        display: block !important;
        padding: 80px 30px 30px;
        box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1040;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav .nav-item {
        margin-bottom: 20px;
    }

    .navbar-nav .nav-link {
        font-size: 1.15rem;
        padding-bottom: 5px;
        margin: 0;
    }

    .navbar-nav .nav-link.active::after {
        left: 0;
        width: 100%;
        bottom: -5px;
    }
}

@media (max-width: 767px) {
    .page-header {
        height: 220px !important;
        margin-top: 70px !important;
    }
    
    .page-header h1 {
        font-size: 2.2rem !important;
    }

    .hero-swiper {
        height: 60vh;
        min-height: 380px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-title-sm {
        font-size: 1.25rem;
    }
    
    .section-padding {
        padding: 30px 0 !important;
    }

    .trust-badges {
        flex-direction: column;
        gap: 8px;
        margin-top: 15px !important;
    }

    .hero-buttons {
        gap: 8px !important;
    }

    .consult-bg {
        min-height: auto;
        margin-bottom: 20px;
    }

    .consult-overlay {
        position: relative;
        padding: 25px;
        height: 100%;
    }

    .section-padding {
        padding: 40px 0;
    }

    .custom-img-1,
    .custom-img-2 {
        min-height: 250px;
    }

    .floating-card-1,
    .floating-card-2 {
        position: relative !important;
        bottom: auto !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        width: 100%;
        margin-top: 15px;
        transform: none !important;
        animation: none !important;
        padding: 15px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05) !important;
    }

    .btn-primary-custom,
    .btn-outline-custom,
    .btn-outline-custom-light {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .feature-card,
    .service-content,
    .visa-card,
    .requirement-card,
    .timeline-content {
        padding: 15px;
    }

    .service-detail-title {
        font-size: 1.6rem;
    }

    .feature-card h4 {
        font-size: 1.1rem;
        margin-bottom: 8px !important;
    }

    .feature-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .navbar-brand img {
        height: 50px;
    }

    .hero-content {
        padding-top: 60px;
    }

    .consultation-section {
        padding: 40px 0px;
    }
}

/* --- Page Header (About / Inner pages) --- */
.page-header {
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* --- Expert Team --- */
.team-card {
    transition: var(--transition);
}

.team-img-wrapper img {
    transition: transform 0.5s ease;
}

.team-card:hover .team-img-wrapper img {
    transform: scale(1.05);
}

.team-card:hover .team-social {
    opacity: 1 !important;
    bottom: 25px !important;
}

.team-social-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* LinkedIn button — màu thương hiệu LinkedIn */
.team-social-btn[title="LinkedIn"] {
    background: linear-gradient(135deg, #0A66C2 0%, #004182 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.45);
}

/* Email button — màu gold nổi bật */
.team-social-btn[title="Email"] {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8870e 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 14px rgba(200, 169, 107, 0.45);
}

.team-social-btn:hover {
    transform: translateY(-5px) scale(1.15);
}

.team-social-btn[title="LinkedIn"]:hover {
    background: linear-gradient(135deg, #1275d1 0%, #0A66C2 100%);
    box-shadow: 0 10px 24px rgba(10, 102, 194, 0.55);
    border-color: rgba(255, 255, 255, 0.5);
}

.team-social-btn[title="Email"]:hover {
    background: linear-gradient(135deg, #e0b84a 0%, var(--accent-gold) 100%);
    box-shadow: 0 10px 24px rgba(200, 169, 107, 0.55);
    border-color: rgba(255, 255, 255, 0.5);
}

/* --- Timeline --- */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 7px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold) 0%, rgba(200, 169, 107, 0.2) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -30px;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    border: 3px solid var(--primary-navy);
    box-shadow: 0 0 10px rgba(200, 169, 107, 0.6), 0 0 0 4px rgba(200, 169, 107, 0.3);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background-color: var(--accent-gold);
    transform: scale(1.3);
    box-shadow: 0 0 20px rgba(200, 169, 107, 0.9), 0 0 0 6px rgba(200, 169, 107, 0.4);
}

.timeline-content {
    background: linear-gradient(135deg, rgba(29, 74, 109, 0.75) 0%, rgba(18, 48, 72, 0.95) 100%);
    padding: 28px;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--accent-gold);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.timeline-content:hover {
    background: linear-gradient(135deg, rgba(29, 74, 109, 0.95) 0%, rgba(18, 48, 72, 1) 100%);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(200, 169, 107, 0.25);
    border-left-color: var(--accent-gold) !important;
}

.timeline-item:hover .timeline-content p {
    color: rgba(255, 255, 255, 0.95) !important;
}

.timeline-year {
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-weight: 800;
    transition: var(--transition);
}

.timeline-item:hover .timeline-year {
    color: var(--accent-gold) !important;
    text-shadow: 0 0 15px rgba(200, 169, 107, 0.65), 0 2px 4px rgba(0, 0, 0, 0.4);
}

/* --- Floating Action Buttons --- */
.floating-action-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background-color: var(--primary-navy);
}

.fab-item:hover {
    transform: scale(1.1);
    color: white;
}

.fab-call {
    background-color: #28a745;
    animation: pulse-green 2s infinite;
}

.fab-call i {
    animation: ring 2s infinite ease-in-out;
}

.fab-messenger {
    background-color: #0084ff;
    animation: pulse-blue 2s infinite;
    animation-delay: 0.5s;
}

.fab-zalo {
    background-color: #0068ff;
    animation: pulse-blue 2s infinite;
    animation-delay: 1s;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0, 132, 255, 0.7);
    }

    70% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 15px rgba(0, 132, 255, 0);
    }

    100% {
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3), 0 0 0 0 rgba(0, 132, 255, 0);
    }
}

@keyframes ring {
    0% {
        transform: rotate(0);
    }

    10% {
        transform: rotate(30deg);
    }

    20% {
        transform: rotate(-28deg);
    }

    30% {
        transform: rotate(34deg);
    }

    40% {
        transform: rotate(-32deg);
    }

    50% {
        transform: rotate(30deg);
    }

    60% {
        transform: rotate(-28deg);
    }

    70% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(0);
    }
}

.zalo-text {
    font-size: 14px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.fab-scroll-top {
    background-color: var(--accent-gold);
    color: var(--primary-navy);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.fab-scroll-top:hover {
    color: var(--primary-navy);
}

.fab-scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Responsive adjustment to avoid overlapping with mobile bottom bar */
@media (max-width: 991px) {
    .floating-action-buttons {
        bottom: 25px;
        right: 15px;
        flex-direction: column-reverse;
    }

    .fab-item {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .floating-action-buttons .fab-call,
    .floating-action-buttons .fab-messenger,
    .floating-action-buttons .fab-zalo {
        position: absolute;
        bottom: 0;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px) scale(0.5);
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
    }
    
    .floating-action-buttons.active .fab-zalo { bottom: 55px; opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .floating-action-buttons.active .fab-messenger { bottom: 110px; opacity: 1; visibility: visible; transform: translateY(0) scale(1); }
    .floating-action-buttons.active .fab-call { bottom: 165px; opacity: 1; visibility: visible; transform: translateY(0) scale(1); }

    .floating-action-buttons #scrollToTopBtn {
        position: fixed;
        bottom: 25px;
        left: 15px;
        right: auto;
    }

    .zalo-text {
        font-size: 12px;
    }
}

/* --- Service Detail Styles --- */
.service-detail-title {
    font-size: 2.2rem;
}

.service-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    color: var(--primary-navy);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-nav-link:hover,
.service-nav-link.active {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(18, 59, 99, 0.15);
}

.service-nav-link i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-nav-link:hover i {
    transform: translateX(4px);
}

.service-download-card {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 4px solid var(--accent-gold);
    box-shadow: 0 15px 35px rgba(18, 48, 72, 0.2);
    transition: var(--transition);
}

.service-download-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(18, 48, 72, 0.35), 0 0 25px rgba(200, 169, 107, 0.15);
    border-color: rgba(200, 169, 107, 0.2);
}

.service-download-card h4 {
    color: var(--accent-gold) !important;
    font-size: 1.5rem;
    font-weight: 800;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-download-card p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8870e 100%);
    color: #ffffff !important;
    font-weight: 700;
    padding: 14px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--accent-gold);
    box-shadow: 0 4px 15px rgba(200, 169, 107, 0.4);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.service-download-btn:hover {
    background: transparent;
    color: var(--accent-gold) !important;
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(200, 169, 107, 0.5);
}

.requirement-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
    padding: 24px;
    transition: var(--transition);
    height: 100%;
}

.requirement-card:hover {
    border-color: rgba(200, 169, 107, 0.4);
    box-shadow: 0 8px 24px rgba(18, 59, 99, 0.06);
}

.requirement-badge {
    background: rgba(200, 169, 107, 0.1);
    color: var(--accent-gold);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
}

/* --- Premium Accordion styling for EB-3 FAQ --- */
#eb3FAQ {
    margin-top: 25px;
}

#eb3FAQ .accordion-item {
    background: #ffffff;
    border: 1px solid var(--border-gray) !important;
    border-radius: 14px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

#eb3FAQ .accordion-item:hover {
    box-shadow: 0 8px 22px rgba(18, 48, 72, 0.06);
    border-color: rgba(200, 169, 107, 0.35) !important;
}

#eb3FAQ .accordion-button {
    padding: 20px 24px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary-navy);
    background: #ffffff;
    border: none;
    box-shadow: none;
    transition: var(--transition);
}

#eb3FAQ .accordion-button:not(.collapsed) {
    background: var(--bg-light);
    color: var(--primary-navy);
    border-bottom: 1px solid var(--border-gray);
}

#eb3FAQ .accordion-body {
    padding: 22px 24px;
    background: #ffffff;
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.8;
}

#eb3FAQ .accordion-button::after {
    background-size: 1.25rem;
    transition: transform 0.3s ease;
}

/* --- Resources Page Styles --- */
.resource-filter-bar {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 10px 30px rgba(18, 59, 99, 0.04);
    border: 1px solid var(--border-gray);
}

.resource-search-wrap {
    position: relative;
    width: 100%;
}

.resource-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-navy);
    font-size: 1.1rem;
    pointer-events: none;
    transition: var(--transition);
}

.resource-search-input {
    width: 100%;
    padding: 13px 45px 13px 48px;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    background-color: var(--bg-light);
    color: var(--dark-navy);
    outline: none;
    transition: var(--transition);
}

.resource-search-input:focus {
    background-color: #ffffff;
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 4px rgba(200, 169, 107, 0.15);
}

.resource-search-input:focus+.resource-search-icon {
    color: var(--accent-gold);
}

.resource-search-clear {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.resource-search-clear:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: var(--primary-red);
}

.resource-filter-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
    padding-bottom: 2px;
}

.resource-filter-pills::-webkit-scrollbar {
    display: none;
    /* Safari & Chrome */
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--bg-light);
    color: var(--primary-navy);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: var(--transition);
}

.filter-pill:hover {
    background-color: #ffffff;
    border-color: var(--primary-navy);
}

.filter-pill.active {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(18, 59, 99, 0.15);
}

/* Resource Cards */
.resource-card {
    position: relative;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gray);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 38px rgba(18, 59, 99, 0.08);
    border-color: rgba(200, 169, 107, 0.35);
}

.resource-card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.resource-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.resource-card:hover .resource-card-img {
    transform: scale(1.06);
}

.resource-card-badge {
    position: absolute;
    left: 16px;
    top: 16px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-card-featured {
    position: absolute;
    right: 16px;
    top: 16px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #b8870e 100%);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(200, 169, 107, 0.3);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.resource-card-meta {
    display: flex;
    align-items: center;
    color: var(--text-gray);
    font-size: 0.82rem;
}

.resource-meta-dot {
    margin: 0 8px;
    color: var(--border-gray);
}

.resource-meta-item i {
    color: var(--accent-gold);
}

.resource-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.45;
    margin: 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 3.3rem;
    /* 2 lines height safety */
    transition: color 0.3s ease;
}

.resource-card:hover .resource-card-title {
    color: var(--accent-gold);
}

.resource-card-excerpt {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 4.3rem;
    /* 3 lines height safety */
}

.resource-card-link {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-navy);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: var(--transition);
}

.resource-card-link i {
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.resource-card-link:hover,
.resource-card:hover .resource-card-link {
    color: var(--accent-gold);
}

.resource-card-link:hover i,
.resource-card:hover .resource-card-link i {
    transform: translateX(4px);
}

/* Pagination Custom Styles */
.resource-pagination-wrap {
    margin-top: 50px;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 10px !important;
}

.page-numbers {
    display: flex;
    gap: 10px;
    align-items: center;
}

.page-btn,
.page-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: #ffffff;
    border: 1px solid var(--border-gray);
    color: var(--primary-navy);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.page-btn:hover:not(.active),
.page-nav-btn:hover:not(:disabled) {
    background-color: var(--bg-light);
    border-color: rgba(18, 59, 99, 0.2);
    transform: translateY(-1px);
}

.page-btn.active {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: #ffffff;
    border-color: var(--primary-navy);
    box-shadow: 0 4px 12px rgba(18, 59, 99, 0.15);
}

.page-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: var(--bg-light);
}

.page-ellipsis {
    color: var(--text-gray);
    font-weight: 600;
    padding: 0 8px;
    user-select: none;
}

/* Sort Select Custom Styles */
.resource-sort-select {
    display: inline-block;
    width: auto;
    min-width: 140px;
    height: 38px;
    padding: 6px 36px 6px 16px !important;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-navy);
    background-color: #ffffff;
    border: 1px solid var(--border-gray) !important;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
    cursor: pointer;
    transition: var(--transition);
}

.resource-sort-select:hover {
    border-color: rgba(18, 59, 99, 0.3) !important;
    box-shadow: 0 4px 12px rgba(18, 59, 99, 0.06);
}

.resource-sort-select:focus {
    outline: none;
    border-color: var(--primary-navy) !important;
    box-shadow: 0 0 0 3px rgba(18, 59, 99, 0.1);
}

/* --- Resource Detail Styles --- */
.resource-detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 24px;
}

.resource-detail-badge {
    padding: 6px 14px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resource-detail-excerpt {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--primary-navy);
    font-style: italic;
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    margin-bottom: 30px;
}

.resource-detail-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.resource-detail-body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 35px;
    margin-bottom: 15px;
}

.resource-detail-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-top: 25px;
    margin-bottom: 10px;
}

.resource-detail-body p {
    margin-bottom: 20px;
}

.resource-detail-body blockquote {
    background-color: var(--bg-light);
    border-left: 4px solid var(--accent-gold);
    padding: 20px 24px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.resource-detail-body blockquote p {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-navy);
}

.resource-detail-body .table-responsive {
    margin: 30px 0;
    width: 100%;
    overflow-x: auto;
}

.resource-detail-body table {
    width: 100%;
    min-width: 600px;
    margin: 0;
    border-collapse: collapse;
}

.resource-detail-body th {
    background-color: var(--primary-navy);
    color: #ffffff;
    padding: 12px;
    font-weight: 600;
}

.resource-detail-body td {
    padding: 12px;
    border: 1px solid var(--border-gray);
}

.resource-detail-body tr:nth-child(even) {
    background-color: var(--bg-light);
}

/* Sidebar Widgets */
.sidebar-widget {
    background-color: #ffffff;
    border: 1px solid var(--border-gray);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.widget-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    border-radius: 2px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--border-gray);
}

.recent-post-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
}

.recent-post-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--primary-navy);
    line-height: 1.4;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.recent-post-title:hover {
    color: var(--accent-gold);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--dark-navy) 100%);
    color: #ffffff;
    border-bottom: 4px solid var(--accent-gold);
}

.newsletter-widget .widget-title {
    color: #ffffff;
}

.newsletter-widget .widget-title::after {
    background-color: var(--accent-gold);
}

.newsletter-widget p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

/* Social Share */
.social-share-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--border-gray);
    border-bottom: 1px solid var(--border-gray);
    margin: 40px 0;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    border: 1px solid var(--border-gray);
    text-decoration: none;
    transition: var(--transition);
}

.share-btn:hover {
    color: #ffffff;
    border-color: transparent;
    transform: translateY(-2px);
}

.share-facebook:hover {
    background-color: #1877f2;
}

.share-linkedin:hover {
    background-color: #0a66c2;
}

.share-twitter:hover {
    background-color: #1da1f2;
}

.share-copy:hover {
    background-color: var(--accent-gold);
}

/* Post Navigation */
.post-nav-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
    height: 100%;
}

.post-nav-card:hover {
    border-color: var(--accent-gold);
    box-shadow: 0 6px 18px rgba(18, 59, 99, 0.04);
}

.post-nav-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.post-nav-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.45;
    margin-bottom: 0;
}

.post-nav-card:hover .post-nav-title {
    color: var(--accent-gold);
}

/* Animation trigger on mount */
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}