/* ==========================================================================
   Passage Consultant — Brand Color Override (Emerald Green + Metallic Gold)
   Loaded AFTER theme's style.css to remap CSS variables to our brand palette
   ========================================================================== */

:root {
    --pc-primary: #1D5036;
    --pc-primary-dark: #153D29;
    --pc-secondary: #CDAF68;
    --pc-gold-light: #E1CDA1;

    --pc-bg-light: #F5F3EA;
    --pc-white: #FFFFFF;

    --pc-text: #1F2A24;
    --pc-muted: #6B7280;
    --pc-border: #D6DCE5;

    --pc-whatsapp: #25D366;
    --pc-bronze: #82541C;

    --pc-gradient-premium: linear-gradient(135deg, #153D29 0%, #1D5036 55%, #CDAF68 100%);
    --pc-gradient-soft: linear-gradient(135deg, #F5F3EA 0%, #FFFFFF 100%);
    --pc-gradient-gold: linear-gradient(135deg, #CDAF68 0%, #E1CDA1 100%);
    --pc-gradient-footer: linear-gradient(135deg, #153D29 0%, #1D5036 100%);
    --pc-gradient-hero: linear-gradient(135deg, rgba(21, 61, 41, 0.92) 0%, rgba(29, 80, 54, 0.88) 55%, rgba(205, 175, 104, 0.82) 100%);

    /* Bootstrap-compatible overrides */
    --bs-primary: #1D5036;
    --bs-primary-rgb: 29, 80, 54;
    --bs-secondary: #CDAF68;
    --bs-secondary-rgb: 205, 175, 104;
    --bs-success: #25D366;
    --bs-light: #F5F3EA;
    --bs-light-rgb: 245, 243, 234;
    --bs-dark: #153D29;
    --bs-dark-rgb: 21, 61, 41;

    /* Legacy variable aliases (for backward compat) */
    --pc-gold-warm: #E1CDA1;
    --pc-gold: #CDAF68;
    --pc-bronze: #82541C;
    --pc-navy: #1D5036;
    --pc-navy-dark: #153D29;
    --pc-font-heading: 'Poppins', 'Inter', sans-serif;
    --pc-bg-soft: #F0EDE0;

    --pc-text: #1F2A24;
    --pc-muted: #6B7280;
    --pc-border: #D6DCE5;
    --pc-input-bg: #F0EDE0;
    --pc-radius: 10px;
    --pc-shadow: 0 8px 24px rgba(var(--bs-dark-rgb), .08);
}

/* Force Bootstrap utility classes to use our brand colors */
.bg-light { background-color: var(--bs-light) !important; }
.text-light { color: var(--bs-light) !important; }
.border-light { border-color: var(--bs-light) !important; }
.bg-dark { background-color: var(--bs-dark) !important; }
.text-dark { color: var(--pc-text) !important; }
.border-dark { border-color: var(--bs-dark) !important; }
.border-primary { border-color: var(--bs-primary) !important; }
.border-secondary { border-color: var(--bs-secondary) !important; }
.text-muted { color: var(--pc-muted) !important; }
.bg-primary { background-color: var(--bs-primary) !important; }
.bg-secondary { background-color: var(--bs-secondary) !important; }
.text-primary { color: var(--bs-primary) !important; }
.text-secondary { color: var(--bs-secondary) !important; }

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    color: var(--pc-text);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6,
.navbar-brand {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--pc-primary);
}

h1, h2, h3 {
    color: var(--pc-primary);
}

/* ==========================================================================
   Section Backgrounds
   ========================================================================== */

.section-light {
    background: var(--pc-bg-light);
}

.section-white {
    background: var(--pc-white);
}

.section-premium {
    background: var(--pc-gradient-premium);
    color: var(--pc-white);
}

.section-premium h1,
.section-premium h2,
.section-premium h3 {
    color: var(--pc-white);
}

.section-subtitle,
.text-muted {
    color: var(--pc-muted);
}

.section-title,
.page-title {
    color: var(--pc-primary);
}

/* Sub-style / sub-title underline accent */
.sub-style, .sub-title, .pc-eyebrow {
    color: var(--pc-primary) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    margin-bottom: 12px;
    display: inline-block;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn-primary,
.hero-section .btn-primary {
    background: var(--pc-secondary);
    border-color: var(--pc-secondary);
    color: var(--pc-primary-dark);
    font-weight: 700;
}

.btn-primary:hover,
.hero-section .btn-primary:hover {
    background: var(--pc-gold-light);
    border-color: var(--pc-gold-light);
    color: var(--pc-primary-dark);
}

.btn-secondary,
.btn-outline-brand {
    background: var(--pc-primary);
    border-color: var(--pc-primary);
    color: var(--pc-white);
}

.btn-secondary:hover,
.btn-outline-brand:hover {
    background: var(--pc-primary-dark);
    border-color: var(--pc-primary-dark);
    color: var(--pc-white);
}

/* Brand CTA button — matches the gold / dark text rule */
.btn-pc-primary,
.btn.btn-pc-primary {
    background: var(--pc-gold-light);
    color: var(--pc-primary-dark);
    border: none;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: var(--pc-radius);
    transition: .25s;
}
.btn-pc-primary:hover,
.btn.btn-pc-primary:hover {
    background: var(--pc-secondary);
    color: var(--pc-primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(var(--bs-secondary-rgb), .35);
}

.btn-pc-navy,
.btn.btn-pc-navy {
    background: var(--pc-primary);
    color: #fff;
    border: 1px solid var(--pc-primary);
    font-weight: 600;
    border-radius: var(--pc-radius);
    transition: .25s;
}
.btn-pc-navy:hover {
    background: var(--pc-primary-dark);
    border-color: var(--pc-primary-dark);
    color: #fff;
}

.btn-pc-outline-navy,
.btn.btn-pc-outline-navy {
    background: transparent;
    color: var(--pc-primary);
    border: 1.5px solid var(--pc-primary);
    font-weight: 600;
    border-radius: var(--pc-radius);
    transition: .25s;
}
.btn-pc-outline-navy:hover {
    background: var(--pc-primary);
    color: #fff;
}

.btn-pc-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .6);
    font-weight: 600;
    border-radius: var(--pc-radius);
    transition: .25s;
}
.btn-pc-outline:hover {
    background: #fff;
    color: var(--pc-primary);
}

/* ==========================================================================
   Topbar
   ========================================================================== */

.topbar {
    background: var(--pc-primary) !important;
    color: #fff;
}
.topbar a, .topbar a i { color: #fff; }
.topbar a:hover, .topbar a i:hover { color: var(--bs-secondary) !important; }

/* ==========================================================================
   Header / Navbar
   ========================================================================== */

/* ==========================================================================
   Header — Top Utility Bar
   ========================================================================== */
.pc-header-topbar {
    background: var(--pc-primary, #153D29);
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    padding: 5px 0;
    transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    max-height: 36px;
    overflow: hidden;
}
.pc-topbar--hidden {
    max-height: 0;
    opacity: 0;
    padding: 0;
}
.pc-topbar-link {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease;
}
.pc-topbar-link:hover { color: var(--pc-secondary, #CDAF68); }
.pc-topbar-divider {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
}
.pc-topbar-tag {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
}
.pc-topbar-wa {
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #4dda7f;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: background 0.25s ease, color 0.25s ease;
}
.pc-topbar-wa:hover {
    background: rgba(37, 211, 102, 0.28);
    color: #6ee89d;
}

/* ==========================================================================
   Header — Main Bar
   ========================================================================== */
.pc-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pc-header--hidden {
    transform: translateY(-100%);
}
.pc-header-inner {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(21, 61, 41, 0.08);
    box-shadow: 0 2px 20px rgba(21, 61, 41, 0.04);
    transition: background 0.35s ease, box-shadow 0.35s ease;
    /* Fixed height — logo size is clamped inside, bar never grows */
    height: var(--pc-header-height, 72px);
    overflow: visible;
    position: relative;
}
.pc-header--scrolled .pc-header-inner {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 4px 32px rgba(21, 61, 41, 0.10);
    border-bottom-color: rgba(21, 61, 41, 0.12);
}
/* Navbar fills the header inner height — all padding/margin zeroed throughout the chain */
.pc-header-inner > .container-fluid,
.pc-header-inner > .container-fluid > nav.navbar {
    height: 100%;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0;
    margin-bottom: 0;
}
/* Bootstrap .navbar adds its own padding — strip it completely inside our header */
#pcHeader .navbar {
    padding: 0 !important;
}
/* Brand link: flex row, perfectly centred, zero gap from navbar edges */
#pcHeader .pc-brand {
    padding: 0;
    margin: 0;
    align-self: center;
}

/* Left gold accent line on scroll */
.pc-header--scrolled .pc-header-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--pc-primary, #153D29), var(--pc-secondary, #CDAF68), var(--pc-primary, #153D29));
    background-size: 200% 100%;
    animation: pcHeaderGoldSlide 3s linear infinite;
}
@keyframes pcHeaderGoldSlide {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

/* ==========================================================================
   Brand Logo
   ========================================================================== */
.pc-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
    flex-shrink: 0;
}
.pc-brand-logo-wrap {
    /* Size controlled by admin-set CSS vars — can overflow if set larger than header */
    width: var(--logo-header-w, 40px);
    height: var(--logo-header-h, 40px);
    max-width: 320px;           /* prevents logo eating into the nav menu */
    overflow: visible;          /* never clip a wide logo */
    flex-shrink: 0;
    /* Clean — no border, no shadow, no radius, no spacing */
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pc-brand:hover .pc-brand-logo-wrap {
    transform: scale(1.04);
}
.pc-brand-logo-wrap img {
    /* Fill the full wrap dimensions, using object-fit to prevent distortion */
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0;
    margin: 0;
    border: none;
    vertical-align: middle;
}
.pc-brand-text {
    display: flex;
    flex-direction: column;
}
.pc-brand-eyebrow {
    font-size: 7px;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(21, 61, 41, 0.45);
    line-height: 1;
    margin-bottom: 2px;
}
.pc-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    color: var(--pc-primary, #153D29);
    letter-spacing: -0.3px;
}
.pc-brand-name em {
    font-style: normal;
    color: var(--pc-secondary, #CDAF68);
}

/* ==========================================================================
   Nav Links
   ========================================================================== */
.pc-nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pc-primary, #153D29) !important;
    text-decoration: none;
    padding: 22px 4px !important;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}
/* Animated underline */
.pc-nav-link::after {
    content: '';
    position: absolute;
    bottom: 14px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--pc-secondary, #CDAF68);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pc-nav-link:hover,
.pc-nav-link.active {
    color: var(--pc-secondary, #CDAF68) !important;
}
.pc-nav-link:hover::after,
.pc-nav-link.active::after {
    transform: scaleX(1);
}
/* Dropdown caret */
.pc-drop-caret {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    margin-left: 2px;
}
.pc-dropdown:hover .pc-drop-caret {
    transform: rotate(180deg);
}
/* Hide underline on dropdown triggers */
.pc-has-dropdown::after { display: none; }

/* ==========================================================================
   Custom Dropdown Panel
   ========================================================================== */
.pc-dropdown { position: relative; }

/* Invisible bridge keeps the dropdown active while the cursor crosses the visual gap. */
.pc-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 14px;
}

/* ── Panel ─────────────────────────────────────────────────── */
.pc-dropdown-panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: 380px;
    max-width: calc(100vw - 32px);
    background: #ffffff;
    border: 1px solid rgba(21, 61, 41, 0.09);
    border-radius: 16px;
    /* Layered shadow for depth */
    box-shadow:
        0 2px 6px  rgba(21, 61, 41, 0.06),
        0 8px 24px rgba(21, 61, 41, 0.10),
        0 24px 56px rgba(21, 61, 41, 0.14),
        0 0 0 1px rgba(21, 61, 41, 0.04);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.22s ease,
        transform 0.26s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.26s;
    overflow: hidden;
    z-index: 1050;
}
/* Green→Gold accent bar at top */
.pc-dropdown-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pc-primary, #153D29) 0%, var(--pc-secondary, #CDAF68) 100%);
    border-radius: 16px 16px 0 0;
}
.pc-dropdown-panel.pc-dp--open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition:
        opacity 0.2s ease,
        transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0s;
}

/* ── Inner padding ──────────────────────────────────────────── */
.pc-dropdown-inner {
    padding: 10px 0 6px;
}

/* ── Divider line between items ─────────────────────────────── */
.pc-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    text-decoration: none;
    color: var(--pc-primary, #153D29);
    font-size: 0.855rem;
    font-weight: 500;
    position: relative;
    transition:
        background 0.22s ease,
        padding-left 0.22s ease,
        color 0.22s ease;
    /* Divider as ::after pseudo so it can animate */
}
/* Bottom divider — animates gold on hover of the item above */
.pc-dropdown-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 1px;
    background: rgba(21, 61, 41, 0.07);
    transition: background 0.25s ease, left 0.25s ease, right 0.25s ease;
}
.pc-dropdown-item:last-of-type::after { display: none; }

/* Hover state — item */
.pc-dropdown-item:hover {
    background: linear-gradient(90deg, rgba(21, 61, 41, 0.04) 0%, rgba(205, 175, 104, 0.04) 100%);
    padding-left: 24px;
    color: var(--pc-primary, #153D29);
}
/* On hover the divider ABOVE stretches to full width and turns gold */
.pc-dropdown-item:hover::after {
    background: rgba(205, 175, 104, 0.35);
    left: 0;
    right: 0;
}
/* Left gold bar reveal on hover */
.pc-dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 3px;
    background: var(--pc-secondary, #CDAF68);
    border-radius: 0 3px 3px 0;
    transform: scaleY(0);
    transform-origin: center;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pc-dropdown-item:hover::before {
    transform: scaleY(1);
}

/* ── Icon badge ─────────────────────────────────────────────── */
.pc-di-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 61, 41, 0.06);
    color: var(--pc-secondary, #CDAF68);
    font-size: 0.72rem;
    flex-shrink: 0;
    border-radius: 6px;
    transition: background 0.22s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pc-dropdown-item:hover .pc-di-icon {
    background: rgba(205, 175, 104, 0.15);
    transform: scale(1.15) rotate(-4deg);
}

/* ── Item text ──────────────────────────────────────────────── */
.pc-di-text {
    flex: 1;
    line-height: 1.3;
    transition: color 0.22s ease;
}
.pc-dropdown-item:hover .pc-di-text {
    color: var(--pc-primary, #153D29);
    font-weight: 600;
}

/* ── Footer "View All" ──────────────────────────────────────── */
.pc-dropdown-footer {
    border-top: 1px solid rgba(21, 61, 41, 0.07);
    padding: 10px 18px;
    margin-top: 4px;
    background: rgba(21, 61, 41, 0.02);
}
.pc-dropdown-all {
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--pc-primary, #153D29);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s ease, gap 0.22s ease, letter-spacing 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.pc-dropdown-all:hover {
    color: var(--pc-secondary, #CDAF68);
    gap: 12px;
    letter-spacing: 1.2px;
}

/* ==========================================================================
   Header CTA Button
   ========================================================================== */
.pc-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--pc-primary, #153D29) 0%, #1D5036 100%);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 16px rgba(21, 61, 41, 0.28), inset 0 1px 0 rgba(255,255,255,0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    letter-spacing: 0.2px;
}
/* Gold shimmer sweep */
.pc-header-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(205,175,104,0.3), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}
.pc-header-cta:hover::before { left: 130%; }
.pc-header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(21, 61, 41, 0.35);
    background: linear-gradient(135deg, #1D5036 0%, #265F40 100%);
    color: #fff !important;
}
.pc-header-cta:active { transform: translateY(0); }

/* ==========================================================================
   Hamburger Toggler
   ========================================================================== */
.pc-nav-toggler {
    display: none; /* hidden on desktop — shown only via mobile media query */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: rgba(21, 61, 41, 0.06);
    border: 1px solid rgba(21, 61, 41, 0.1);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.pc-nav-toggler:hover { background: rgba(21, 61, 41, 0.12); }
.pc-tog-bar {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--pc-primary, #153D29);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
/* Animate to X when open */
.pc-nav-toggler[aria-expanded="true"] .pc-tog-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.pc-nav-toggler[aria-expanded="true"] .pc-tog-bar:nth-child(2) {
    opacity: 0;
    width: 0;
}
.pc-nav-toggler[aria-expanded="true"] .pc-tog-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   Mobile Nav Collapse
   ========================================================================== */
@media (max-width: 991.98px) {
    /* Show the toggler only on mobile */
    .pc-nav-toggler { display: flex !important; }

    .pc-header-inner {
        padding: 0;
        height: auto !important;
        min-height: var(--pc-header-height, 72px);
        overflow: visible !important;
    }
    .pc-nav-link {
        padding: 12px 0 !important;
        border-bottom: 1px solid rgba(21, 61, 41, 0.06);
        width: 100%;
        justify-content: space-between;
    }
    .pc-nav-link::after { display: none; }
    .pc-dropdown::after { display: none; }
    .pc-dropdown-panel {
        position: static;
        transform: none !important;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: rgba(21, 61, 41, 0.03);
        backdrop-filter: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
        padding: 4px 0;
    }
    .pc-dropdown-panel.pc-dp--open { display: block; }
    .pc-dropdown-panel::before { display: none; }
    .pc-dropdown-item { padding: 8px 20px; font-size: 0.82rem; }
    .pc-header-cta { width: 100%; justify-content: center; margin: 8px 0; }
    #pcNav { padding: 8px 0 16px; }
    .navbar-collapse { border-top: 1px solid rgba(21, 61, 41, 0.08); margin-top: 4px; }
}

/* Desktop — ensure collapse is always visible as flex row */
@media (min-width: 992px) {
    .pc-nav-toggler { display: none !important; }
    #pcNav.collapse:not(.show) {
        display: flex !important;
        height: auto !important;
        overflow: visible !important;
    }
    #pcNav {
        flex-basis: auto;
        align-items: center;
    }
    #pcHeader .pc-header-nav {
        flex-direction: row !important;
        margin-left: clamp(16px, 2.5vw, 36px);
        margin-right: 0;
    }
}

/* Legacy nav-bar / site-header compat */
.nav-bar, .site-header { display: none !important; }

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
    background: var(--pc-gradient-hero);
    color: var(--pc-white);
}

.hero-section h1,
.hero-section .hero-title {
    color: var(--pc-white);
}

.hero-section p,
.hero-section .hero-subtitle {
    color: rgba(255, 255, 255, 0.88);
}

.hero-highlight {
    color: var(--pc-gold-light);
}

/* Carousel hero */
.carousel-header .carousel-inner .carousel-item .carousel-caption {
    background: var(--pc-gradient-hero) !important;
    z-index: 3 !important;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

/* Hero form */
.pc-hero-form {
    background: rgba(21, 61, 41, 0.3); /* High transparency glassmorphism */
    backdrop-filter: blur(18px) saturate(170%);
    -webkit-backdrop-filter: blur(18px) saturate(170%);
    border-radius: 12px;
    padding: 12px 14px;
    box-shadow: 0 15px 35px rgba(var(--bs-dark-rgb), 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid var(--bs-secondary);
    transition: all 0.3s ease-in-out;
    max-width: 310px;
    width: 100%;
    margin: 0 auto;
}

.pc-hero-form h3 {
    color: #ffffff;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 2px !important;
    font-family: 'Poppins', sans-serif;
}

.pc-hero-form .pc-form-sub {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.72rem !important;
    margin-bottom: 8px !important;
}

/* Compact form fields inside hero form */
.pc-hero-form .form-control,
.pc-hero-form .form-select {
    padding: 6px 10px !important;
    font-size: 0.8rem !important;
    border-radius: 6px !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    transition: all 0.2s ease-in-out;
}

.pc-hero-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
}

.pc-hero-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.pc-hero-form .form-control:hover,
.pc-hero-form .form-select:hover {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}

.pc-hero-form .form-control:focus,
.pc-hero-form .form-select:focus {
    background-color: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-color: var(--bs-secondary) !important;
    box-shadow: 0 0 0 3px rgba(var(--bs-secondary-rgb), 0.25) !important;
}

.pc-hero-form .form-select option {
    background: #153D29 !important;
    color: #ffffff !important;
}

.pc-hero-form textarea {
    height: 44px !important;
    resize: none !important;
}

/* Premium Gold CTA button */
.pc-hero-form .pc-form-cta {
    display: block;
    width: 100%;
    background: var(--bs-secondary) !important;
    border-color: var(--bs-secondary) !important;
    color: var(--bs-primary) !important;
    font-family: 'Poppins', sans-serif;
    font-weight: 700 !important;
    padding: 6px 10px !important;
    font-size: 0.82rem !important;
    border-radius: 6px !important;
    transition: all 0.2s ease-in-out;
}

.pc-hero-form .pc-form-cta:hover {
    background: var(--pc-gold-light) !important;
    border-color: var(--pc-gold-light) !important;
    color: var(--bs-primary) !important;
    transform: translateY(-1px);
}

/* Responsive expansion for desktop/tablet viewports */
@media (min-width: 768px) {
    .pc-hero-form {
        padding: 20px 24px !important;
        max-width: 330px !important; /* Slightly wider for better text flow on larger screens */
    }
    
    .pc-hero-form h3 {
        font-size: 1.15rem !important;
        margin-bottom: 4px !important;
    }
    
    .pc-hero-form .pc-form-sub {
        font-size: 0.78rem !important;
        margin-bottom: 12px !important;
    }
    
    .pc-hero-form .form-control,
    .pc-hero-form .form-select {
        padding: 9px 12px !important;
        font-size: 0.86rem !important;
    }

    .pc-hero-form .form-control.mb-1,
    .pc-hero-form .form-select.mb-1 {
        margin-bottom: 10px !important; /* Spaced out for breathing room */
    }
    
    .pc-hero-form textarea {
        height: 64px !important;
    }
    
    .pc-hero-form .pc-form-cta {
        padding: 10px 15px !important;
        font-size: 0.88rem !important;
        margin-top: 4px !important;
    }

    .pc-hero-form p.text-center {
        font-size: 0.72rem !important;
        margin-top: 10px !important;
    }
}

/* ==========================================================================
   About Section Image Collage
   ========================================================================== */
.pc-about-img-wrapper {
    position: relative;
    padding-bottom: 30px;
}

.pc-about-img-main {
    width: 88%;
    height: 400px;
    margin-left: auto;
    border-radius: 12px;
}

.pc-about-img-accent {
    width: 48%;
    height: 200px;
    left: 0;
    bottom: 0;
    background: #ffffff;
    z-index: 2;
    border-radius: 12px;
}

.pc-about-badge {
    right: 6%;
    top: -20px;
    z-index: 3;
    border-top: 4px solid var(--bs-primary);
    border-radius: 12px !important;
}

@media (max-width: 575.98px) {
    .pc-about-img-wrapper {
        padding-bottom: 0;
        min-height: auto !important;
    }
    .pc-about-img-main {
        width: 100%;
        height: 280px;
        margin-left: 0;
    }
    .pc-about-badge {
        right: 15px;
        top: 15px;
        padding: 8px 12px !important;
    }
    .pc-about-badge h1 {
        font-size: 2rem !important;
    }
}

/* ==========================================================================
   Cards / Services / Country Blocks
   ========================================================================== */

.card,
.service-card,
.country-card,
.process-card,
.blog-card {
    background: var(--pc-white);
    border: 1px solid var(--pc-border);
    color: var(--pc-text);
    transition: all 0.25s ease;
}

.card:hover,
.service-card:hover,
.country-card:hover,
.process-card:hover,
.blog-card:hover {
    border-color: var(--pc-secondary);
    box-shadow: 0 18px 45px rgba(7, 59, 41, 0.12);
    transform: translateY(-4px);
}

.card-icon,
.service-icon,
.country-icon {
    background: rgba(205, 175, 104, 0.12);
    color: var(--pc-primary);
}

.card:hover .card-icon,
.service-card:hover .service-icon {
    background: var(--pc-gradient-gold);
    color: var(--pc-primary-dark);
}

/* ==========================================================================
   Forms / Booking Form / Contact Forms
   ========================================================================== */

.form-control,
.form-select,
input,
textarea,
select {
    border-color: var(--pc-border);
    color: var(--pc-text);
}

.form-control:focus,
.form-select:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--pc-secondary);
    box-shadow: 0 0 0 0.2rem rgba(205, 175, 104, 0.18);
}

label,
.form-label {
    color: var(--pc-text);
    font-weight: 600;
}

.form-help,
.help-text,
small {
    color: var(--pc-muted);
}

button[type="submit"],
.form-submit-btn {
    background: var(--pc-primary);
    border-color: var(--pc-primary);
    color: var(--pc-white);
}

button[type="submit"]:hover,
.form-submit-btn:hover {
    background: var(--pc-secondary);
    border-color: var(--pc-secondary);
    color: var(--pc-primary-dark);
}

/* Override form styles from theme */
.form-control, .form-select {
    background: var(--pc-input-bg);
    border: 1px solid var(--pc-border);
    color: var(--pc-text);
    border-radius: 8px;
    padding: 12px 14px;
}
.form-control:focus, .form-select:focus {
    background: #fff;
    border-color: var(--pc-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), .12);
}

/* ==========================================================================
   Blog System
   ========================================================================== */

.blog-title,
.blog-card-title,
.blog-detail-title {
    color: var(--pc-primary);
}

.blog-title:hover,
.blog-card-title:hover,
.blog-card a:hover {
    color: var(--pc-secondary);
}

.blog-category-badge,
.category-badge {
    background: rgba(205, 175, 104, 0.12);
    color: var(--pc-primary);
    border: 1px solid rgba(205, 175, 104, 0.35);
}

.blog-meta,
.blog-excerpt {
    color: var(--pc-muted);
}

/* Admin blog SEO status badges */
.badge-seo-complete {
    background: rgba(29, 80, 54, 0.12);
    color: var(--pc-primary);
    border: 1px solid rgba(29, 80, 54, 0.25);
}

.badge-seo-warning {
    background: rgba(205, 175, 104, 0.14);
    color: #8A6B24;
    border: 1px solid rgba(205, 175, 104, 0.35);
}

.badge-seo-critical {
    background: rgba(220, 38, 38, 0.10);
    color: #B91C1C;
    border: 1px solid rgba(220, 38, 38, 0.25);
}

/* ==========================================================================
   Footer — Premium Modern Design
   ========================================================================== */

/* ----- Base Shell ----- */
.pc-footer {
    background: linear-gradient(175deg, var(--pc-primary-dark) 0%, rgba(var(--bs-dark-rgb), 0.9) 55%, rgba(var(--bs-dark-rgb), 0.8) 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

/* ----- Top Gold Shimmer Line ----- */
.pc-footer-topline {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--pc-secondary) 25%,
        var(--pc-gold-light) 50%,
        var(--pc-secondary) 75%,
        transparent 100%);
    z-index: 10;
    opacity: 0.85;
}

/* ----- Ambient Glow Orbs ----- */
.pc-footer-glow-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(80px);
}
.pc-footer-glow-orb--gold {
    width: 600px; height: 600px;
    top: -200px; right: -150px;
    background: radial-gradient(circle, rgba(var(--bs-secondary-rgb), 0.06) 0%, transparent 65%);
}
.pc-footer-glow-orb--blue {
    width: 700px; height: 700px;
    bottom: -250px; left: -200px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.2) 0%, transparent 65%);
}

/* ----- Floating Background Icons ----- */
.pc-footer-bg-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.pc-fbg-icon {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: calc(var(--s) * 2.2rem);
    color: #fff;
    opacity: var(--op);
    animation: pc-float-icon 8s ease-in-out var(--d) infinite alternate;
    transform-origin: center;
}
@keyframes pc-float-icon {
    0%   { transform: translateY(0px) rotate(-5deg); }
    50%  { transform: translateY(-18px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(-5deg); }
}

/* ----- CTA Strip ----- */
.pc-footer-cta-strip {
    position: relative;
    z-index: 5;
    background: linear-gradient(90deg, 
        rgba(var(--bs-secondary-rgb), 0.08) 0%, 
        rgba(var(--bs-primary-rgb), 0.15) 50%, 
        rgba(var(--bs-secondary-rgb), 0.08) 100%
    );
    background-size: 200% auto;
    animation: pc-gradient-shift 8s ease infinite;
    border-bottom: 1px solid rgba(var(--bs-secondary-rgb), 0.12);
    padding: 12px 0;
    transition: border-color 0.4s ease;
}
.pc-footer-cta-strip:hover {
    border-bottom-color: rgba(var(--bs-secondary-rgb), 0.25);
}
.pc-footer-cta-icon {
    width: 38px; height: 38px; min-width: 38px;
    background: linear-gradient(135deg, var(--pc-secondary), var(--pc-gold-light));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pc-primary-dark);
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(201,162,77,0.25);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}
.pc-footer-cta-icon i {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.pc-footer-cta-strip:hover .pc-footer-cta-icon {
    transform: scale(1.05) rotate(-3deg);
    box-shadow: 0 6px 20px rgba(201,162,77,0.35);
}
.pc-footer-cta-strip:hover .pc-footer-cta-icon i {
    animation: pc-paper-plane-glide 1.8s ease-in-out infinite;
}
.pc-footer-cta-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
}
.pc-footer-cta-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: linear-gradient(135deg, var(--pc-secondary), var(--pc-gold-light));
    color: var(--pc-primary-dark) !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 14px rgba(201,162,77,0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.pc-footer-cta-btn::after {
    content: '';
    position: absolute;
    top: 0; left: -60%;
    width: 130%; height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-30deg);
    transition: left 0.6s ease;
    z-index: -1;
}
.pc-footer-cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 24px rgba(201,162,77,0.4);
    color: var(--pc-primary-dark) !important;
}
.pc-footer-cta-btn:hover::after {
    left: 130%;
}
.pc-footer-cta-btn i {
    transition: transform 0.3s ease;
}
.pc-footer-cta-btn:hover i {
    transform: rotate(360deg) scale(1.1);
}

@keyframes pc-gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes pc-paper-plane-glide {
    0% { transform: translate(0, 0) rotate(0deg) scale(1); }
    30% { transform: translate(3px, -3px) rotate(-10deg) scale(1.1); }
    60% { transform: translate(-1px, 1px) rotate(5deg) scale(0.95); }
    100% { transform: translate(0, 0) rotate(0deg) scale(1); }
}
.pc-footer-cta-btn-wa {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(37,211,102,0.12);
    border: 1px solid rgba(37,211,102,0.3);
    color: #4ade80 !important;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.pc-footer-cta-btn-wa:hover {
    background: #25D366;
    color: #fff !important;
    border-color: #25D366;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

/* ----- Footer Main Body ----- */
.pc-footer-body {
    position: relative;
    z-index: 5;
    padding-top: 36px;
    padding-bottom: 24px;
}

/* ----- Brand Column ----- */
.pc-footer-brand {
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
}
.pc-footer-logo-wrap {
    /* Size controlled by admin-set CSS vars — never changes footer layout height */
    width: var(--logo-footer-w, 38px);
    height: var(--logo-footer-h, 38px);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(226, 232, 240, 0.68));
    backdrop-filter: blur(12px) saturate(140%);
    -webkit-backdrop-filter: blur(12px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.18),
        inset 0 1px 1px rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-footer-brand:hover .pc-footer-logo-wrap {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(238, 242, 247, 0.86));
    border-color: rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 7px 30px rgba(0, 0, 0, 0.28),
        inset 0 1px 1px rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}
.pc-footer-logo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.pc-footer-brand-eye {
    font-size: 7px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.45);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}
.pc-footer-brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.pc-footer-brand-name span {
    color: var(--pc-gold-light);
}
.pc-footer-desc {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ----- Social Buttons ----- */
.pc-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.pc-soc-btn {
    width: 40px; height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    display: inline-flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}
.pc-soc-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.pc-soc-btn:hover {
    transform: translateY(-4px) scale(1.08);
    color: #fff !important;
    border-color: transparent;
}
.pc-soc-btn:hover::before { opacity: 1; }
.pc-soc-fb::before  { background: #1877F2; }
.pc-soc-ig::before  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.pc-soc-li::before  { background: #0077B5; }
.pc-soc-tw::before  { background: #000; }
.pc-soc-wa::before  { background: #25D366; }
.pc-soc-fb:hover  { box-shadow: 0 8px 20px rgba(24,119,242,0.35); }
.pc-soc-ig:hover  { box-shadow: 0 8px 20px rgba(220,39,67,0.35); }
.pc-soc-li:hover  { box-shadow: 0 8px 20px rgba(0,119,181,0.35); }
.pc-soc-tw:hover  { box-shadow: 0 8px 20px rgba(0,0,0,0.4); }
.pc-soc-wa:hover  { box-shadow: 0 8px 20px rgba(37,211,102,0.35); }

/* ----- Trust Badges ----- */
.pc-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding: 5px 10px;
    border-radius: 20px;
}
.pc-trust-badge i {
    color: var(--pc-gold-light);
    font-size: 0.7rem;
}

/* ----- Footer Nav Headings ----- */
.pc-footer-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
}
.pc-footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: linear-gradient(90deg, var(--pc-secondary), var(--pc-gold-light));
    border-radius: 2px;
}

/* ----- Footer Nav List ----- */
.pc-fnav-list { margin: 0; padding: 0; }
.pc-fnav-list li { margin-bottom: 4px; }
.pc-fnav-list a {
    color: rgba(255,255,255,0.52);
    text-decoration: none;
    font-size: 0.84rem;
    display: inline-block;
    position: relative;
    padding: 3px 0 4px 0;
    transition: color 0.3s ease, padding-left 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Left-to-right expanding underline */
.pc-fnav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--pc-secondary, #CDAF68), rgba(205, 175, 104, 0.3));
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 1px;
}

/* Small gold arrow dot — slides in from left */
.pc-fnav-list a::before {
    content: '›';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%) translateX(-4px);
    color: var(--pc-secondary, #CDAF68);
    font-size: 1rem;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pc-fnav-list a:hover {
    color: var(--pc-gold-light, #E1CDA1) !important;
    padding-left: 16px;
}
.pc-fnav-list a:hover::after {
    transform: scaleX(1);
}
.pc-fnav-list a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ----- Contact List ----- */
.pc-fcontact-list { display: flex; flex-direction: column; gap: 8px; }
.pc-fcontact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: rgba(255,255,255,0.55) !important;
    font-size: 0.83rem;
    line-height: 1.4;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.04);
    background: rgba(255,255,255,0.02);
    transition: all 0.3s ease;
}
.pc-fcontact-item:hover {
    color: rgba(255,255,255,0.85) !important;
    border-color: rgba(201,162,77,0.2);
    background: rgba(201,162,77,0.04);
    transform: translateX(3px);
}
.pc-fcontact-ico {
    width: 32px; height: 32px; min-width: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--pc-secondary);
    font-size: 0.8rem;
    transition: all 0.3s ease;
}
.pc-fcontact-item:hover .pc-fcontact-ico {
    background: rgba(201,162,77,0.12);
    border-color: rgba(201,162,77,0.3);
}
.pc-fcontact-ico--wa {
    color: #4ade80;
    background: rgba(37,211,102,0.06) !important;
    border-color: rgba(37,211,102,0.12) !important;
}
.pc-fcontact-wa:hover .pc-fcontact-ico--wa {
    background: rgba(37,211,102,0.15) !important;
    border-color: rgba(37,211,102,0.35) !important;
}
.pc-fcontact-wa:hover { border-color: rgba(37,211,102,0.2) !important; background: rgba(37,211,102,0.04) !important; }

/* ----- Working Hours ----- */
.pc-footer-hours {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
}
.pc-footer-hours i { color: var(--pc-secondary); }

/* ----- Divider Line ----- */
.pc-footer-divider {
    position: relative;
    z-index: 5;
    padding: 0;
}
.pc-footer-hr {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.06) 30%, rgba(201,162,77,0.15) 50%, rgba(255,255,255,0.06) 70%, transparent 100%);
}

/* ----- Disclaimer Strip ----- */
.pc-footer-disclaimer-wrap {
    position: relative;
    z-index: 5;
    background: rgba(255,255,255,0.012);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 8px 0;
    transition: background-color 0.3s ease;
}
.pc-footer-disclaimer-wrap:hover {
    background: rgba(255,255,255,0.025);
}
.pc-footer-disclaimer-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.pc-footer-disclaimer-icon {
    color: rgba(201,162,77,0.5);
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform 0.4s ease, color 0.3s ease;
}
.pc-footer-disclaimer-wrap:hover .pc-footer-disclaimer-icon {
    transform: scale(1.2) rotate(15deg);
    color: var(--pc-gold-light);
}
.pc-footer-disclaimer-text {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.5;
    transition: color 0.3s ease;
}
.pc-footer-disclaimer-wrap:hover .pc-footer-disclaimer-text {
    color: rgba(255,255,255,0.5);
}

/* ----- Copyright Strip ----- */
.pc-footer-copyright {
    position: relative;
    z-index: 5;
    background: rgba(0,0,0,0.25);
    border-top: 1px solid rgba(255,255,255,0.03);
    padding: 8px 0;
}
.pc-copyright-text {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
}
.pc-copyright-text strong { color: rgba(255,255,255,0.6); }
.pc-legal-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
}
.pc-legal-links a {
    font-size: 0.76rem;
    color: rgba(255,255,255,0.35) !important;
    text-decoration: none;
    transition: color 0.25s ease;
    padding: 0 4px;
}
.pc-legal-links a:hover { color: var(--pc-gold-light) !important; }
.pc-legal-dot {
    color: rgba(201,162,77,0.3);
    font-size: 0.75rem;
}

/* ----- Responsive ----- */
@media (max-width: 767.98px) {
    .pc-footer-body { padding-top: 24px; padding-bottom: 18px; }
    .pc-footer-cta-strip .pc-footer-cta-btn,
    .pc-footer-cta-strip .pc-footer-cta-btn-wa { width: 100%; justify-content: center; margin: 4px 0 0; }
    .pc-legal-links { justify-content: center; }
    .pc-copyright-text { text-align: center; }
    .pc-fnav-list a:hover { padding-left: 16px; }
}

/* ==========================================================================
   WhatsApp Button Rule
   ========================================================================== */

.whatsapp-btn,
.whatsapp-floating,
.btn-whatsapp {
    background: var(--pc-whatsapp);
    color: var(--pc-white);
}

.whatsapp-btn:hover,
.whatsapp-floating:hover,
.btn-whatsapp:hover {
    background: #1EBE5D;
    color: var(--pc-white);
}

/* Floating WhatsApp Button */
.pc-wa-float {
    position: fixed;
    bottom: 96px; /* Positioned above the back-to-top button */
    right: 30px;
    width: 56px;
    height: 56px;
    background: var(--pc-whatsapp, #25D366) !important;
    color: #fff !important;
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none !important;
}

.pc-wa-float:hover {
    background: #1EBE5D !important;
    color: #fff !important;
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   Spinner / Back-to-top
   ========================================================================== */

#spinner {
    background: var(--pc-primary);
}

.back-to-top,
.pc-back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px; /* Positioned below the WhatsApp float button */
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    background: var(--pc-primary) !important;
    color: var(--pc-white) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 50%;
    z-index: 998;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}
.back-to-top.show,
.pc-back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover,
.pc-back-to-top:hover {
    background: var(--pc-secondary) !important;
    color: var(--pc-primary-dark) !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(var(--bs-secondary-rgb), 0.3);
}

@media (max-width: 767.98px) {
    .back-to-top,
    .pc-back-to-top {
        bottom: 80px; /* Shifted up to avoid overlapping with the mobile bar */
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ==========================================================================
   Admin Panel
   ========================================================================== */

.admin-sidebar,
.pc-admin-sidebar {
    background: var(--pc-primary-dark);
}

.admin-sidebar a,
.pc-admin-sidebar a {
    color: var(--pc-bg-light);
}

.admin-sidebar a:hover,
.admin-sidebar a.active,
.pc-admin-sidebar a:hover,
.pc-admin-sidebar a.active {
    background: rgba(205, 175, 104, 0.18);
    color: var(--pc-gold-light);
}

.admin-header,
.pc-admin-topbar {
    background: var(--pc-white);
    border-bottom: 1px solid var(--pc-border);
}

.admin-title,
.admin-page-title {
    color: var(--pc-primary);
}

.admin-btn-primary,
.btn-admin-primary {
    background: var(--pc-primary);
    border-color: var(--pc-primary);
    color: var(--pc-white);
}

.admin-btn-primary:hover,
.btn-admin-primary:hover {
    background: var(--pc-primary-dark);
    border-color: var(--pc-primary-dark);
}

.admin-btn-accent,
.btn-admin-accent {
    background: var(--pc-secondary);
    border-color: var(--pc-secondary);
    color: var(--pc-primary-dark);
}

/* ==========================================================================
   PC-Specific Components
   ========================================================================== */

/* Mobile sticky bar */
.pc-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 98;
    display: flex;
    background: #fff;
    box-shadow: 0 -4px 14px rgba(var(--bs-primary-rgb), .12);
    padding: 8px 6px;
    border-top: 1px solid var(--pc-border);
}
.pc-mb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6px 4px;
    font-size: .75rem;
    color: var(--pc-primary);
    text-decoration: none;
    border-radius: 8px;
    transition: .2s;
}
.pc-mb-item i { font-size: 1.1rem; margin-bottom: 2px; }
.pc-mb-item:hover { background: var(--pc-input-bg); }
.pc-mb-item.wa i { color: #25D366; }
.pc-mb-item.call i { color: var(--pc-primary); }
.pc-mb-item.pc-mb-cta {
    background: var(--pc-primary);
    color: #fff;
}
.pc-mb-item.pc-mb-cta i { color: var(--pc-secondary); }
.pc-mb-item.pc-mb-cta:hover { background: var(--pc-primary-dark); color: #fff; }

body { padding-bottom: 0; }
@media (max-width: 767.98px) {
    body { padding-bottom: 60px; }
}


/* ---- Section title enhancements ---- */
.section-title .display-5 {
    background: linear-gradient(135deg, var(--pc-primary) 0%, var(--pc-primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.section-title > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--pc-text);
    opacity: 0.8;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   Services Section — Premium
   ========================================================================== */

#pc-services-section {
    background: linear-gradient(175deg, #F5F3EA 0%, #F0EDE0 50%, #EBE8D8 100%);
    transition: background 0.6s ease;
}

/* ---- Parallax background layer ---- */
.pc-services-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, rgba(29, 80, 54, 0.015) 0%, transparent 50%, rgba(205, 175, 104, 0.02) 100%);
    background-attachment: fixed;
    background-size: cover;
    pointer-events: none;
}

/* ---- Subtle dot pattern overlay ---- */
.pc-services-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: radial-gradient(rgba(29, 80, 54, 0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

/* ---- Decorative blobs ---- */
.pc-services-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
    opacity: 0.35;
}
.pc-services-blob--1 {
    width: 500px; height: 500px;
    top: -200px; right: -100px;
    background: radial-gradient(circle, rgba(var(--bs-secondary-rgb), 0.06) 0%, transparent 70%);
    animation: pcBlobFloat 20s ease-in-out infinite;
}
.pc-services-blob--2 {
    width: 350px; height: 350px;
    bottom: -100px; left: -80px;
    background: radial-gradient(circle, rgba(var(--bs-primary-rgb), 0.05) 0%, transparent 70%);
    animation: pcBlobFloat 25s ease-in-out infinite reverse;
}
.pc-services-blob--3 {
    width: 200px; height: 200px;
    top: 40%; left: 55%;
    background: radial-gradient(circle, rgba(var(--bs-secondary-rgb), 0.04) 0%, transparent 70%);
    animation: pcBlobFloat 18s ease-in-out infinite 3s;
}

@keyframes pcBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -40px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ---- Floating travel icons ---- */
.pc-services-icon {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
    color: var(--pc-primary);
    animation: pcIconDrift 20s linear infinite;
}
.pc-services-icon--1 { top: 8%; left: 5%; font-size: 2.2rem; animation-delay: 0s; animation-duration: 22s; }
.pc-services-icon--2 { top: 15%; right: 8%; font-size: 1.8rem; animation-delay: 4s; animation-duration: 18s; }
.pc-services-icon--3 { bottom: 20%; left: 10%; font-size: 2rem; animation-delay: 8s; animation-duration: 24s; }
.pc-services-icon--4 { bottom: 10%; right: 5%; font-size: 1.6rem; animation-delay: 2s; animation-duration: 20s; }

@keyframes pcIconDrift {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.04; }
    90% { opacity: 0.03; }
    100% { transform: translateY(-120px) rotate(15deg); opacity: 0; }
}

/* ---- Top edge divider ---- */
.pc-services-divider-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 18px;
    z-index: 1;
    pointer-events: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 18'%3E%3Cpath fill='%23ffffff' d='M0,10 C360,18 720,2 1440,10 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: 100% 18px;
}

/* ---- Card base ---- */
.service .service-item {
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 4px 18px rgba(var(--bs-primary-rgb), 0.06);
    transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    will-change: transform;
}
.service .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(var(--bs-primary-rgb), 0.14), 0 0 0 1px rgba(var(--bs-secondary-rgb), 0.15);
}

/* ---- Card accent bar (bottom) ---- */
.pc-service-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bs-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
}
.service .service-item:hover .pc-service-accent {
    transform: scaleX(1);
}

/* ---- Image wrapper ---- */
.service .service-item .service-inner .service-img {
    position: relative;
    overflow: hidden;
}
.service .service-item .service-inner .service-img img {
    transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: block;
    width: 100%;
}
.service .service-item:hover .service-inner .service-img img {
    transform: scale(1.12);
}

/* Image overlay on hover */
.pc-service-img-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to top, rgba(21, 61, 41, 0.5) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.45s ease;
    pointer-events: none;
}
.service .service-item:hover .pc-service-img-overlay {
    opacity: 1;
}

/* ---- Title name (green pill) ---- */
.service .service-item .service-inner .service-title {
    position: relative;
    margin-top: -30px;
    text-align: center;
    transition: 0.5s;
    z-index: 2;
}
.service .service-item:hover .service-inner .service-title .service-title-name {
    opacity: 0;
    transform: translateY(10px);
    transition: 0.35s ease;
}

/* ---- Glassmorphism overlay (slides up on hover) ---- */
.service .service-item .service-inner .service-title .service-content {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    margin-left: 16px;
    margin-right: 16px;
    text-align: center;
    border-radius: 12px;
    background: rgba(21, 61, 41, 0.88);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    padding: 14px 16px;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.service .service-item:hover .service-inner .service-title .service-content {
    bottom: 16px;
    opacity: 1;
}

.service .service-item .service-inner .service-title .service-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.78rem;
    line-height: 1.45;
    margin-bottom: 12px;
}

.service .service-item .service-inner .service-title .service-content h5 {
    color: var(--bs-secondary);
    font-size: 1.0rem;
    font-weight: 700;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding-bottom: 6px;
}

.service .service-item .service-inner .service-title .service-content a {
    text-decoration: none;
}

/* Explore More button */
.service .service-item .service-inner .service-title .service-content .btn-primary {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-primary);
    font-weight: 700;
    font-size: 0.78rem;
    padding: 7px 18px;
    border-radius: 50rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.service .service-item .service-inner .service-title .service-content .btn-primary:hover {
    background: var(--pc-gold-light);
    border-color: var(--pc-gold-light);
    color: var(--bs-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(var(--bs-secondary-rgb), 0.3);
}
.service .service-item .service-inner .service-title .service-content .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .pc-services-icon { display: none; }
    .pc-services-blob { opacity: 0.15; }
}
@media (max-width: 767.98px) {
    #pc-services-section { padding-top: 40px !important; padding-bottom: 40px !important; }
    .pc-services-bg { background-attachment: scroll; }
    .pc-services-divider-top { height: 12px; background-size: 100% 12px; }
}

/* ==========================================================================
   Countries Section
   ========================================================================== */

#pc-countries-section {
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.pc-bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

#pc-countries-section > .container-fluid {
    position: relative;
    z-index: 2;
}

/* Blobs / Drops */
.decor-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    mix-blend-mode: multiply;
    pointer-events: none;
}

.decor-blob-1 {
    top: -10%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--bs-primary) 0%, transparent 70%);
}

.decor-blob-2 {
    bottom: -10%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--bs-secondary) 0%, transparent 70%);
}

.decor-blob-3 {
    top: 40%;
    left: 45%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--pc-gold) 0%, transparent 70%);
    opacity: 0.08;
}

/* Floating Immigration Icons */
.decor-icon {
    position: absolute;
    color: var(--bs-primary);
    opacity: 0.035;
    font-size: 5rem;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.decor-icon-1 {
    top: 15%;
    left: 8%;
    font-size: 6rem;
    transform: rotate(-25deg);
}

.decor-icon-2 {
    top: 25%;
    right: 12%;
    font-size: 5rem;
    transform: rotate(15deg);
}

.decor-icon-3 {
    bottom: 12%;
    left: 15%;
    font-size: 7rem;
    transform: rotate(10deg);
}

.decor-icon-4 {
    bottom: 20%;
    right: 20%;
    font-size: 5.5rem;
    transform: rotate(-15deg);
}

.decor-icon-5 {
    top: 45%;
    left: 3%;
    font-size: 4.5rem;
    transform: rotate(35deg);
}

.decor-icon-6 {
    bottom: 35%;
    right: 5%;
    font-size: 6.5rem;
    transform: rotate(-40deg);
}

@keyframes floatDecor {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@media (min-width: 992px) {
    .decor-icon-1 { animation: floatDecor 12s ease-in-out infinite; }
    .decor-icon-2 { animation: floatDecor 15s ease-in-out infinite; }
    .decor-icon-3 { animation: floatDecor 18s ease-in-out infinite; }
    .decor-icon-4 { animation: floatDecor 14s ease-in-out infinite; }
    .decor-icon-5 { animation: floatDecor 16s ease-in-out infinite; }
    .decor-icon-6 { animation: floatDecor 20s ease-in-out infinite; }
}

.office-item {
    text-align: center;
    border-radius: 14px;
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.06) !important;
    background: #ffffff !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    overflow: hidden;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.06);
}
.office-item:hover {
    box-shadow: 0 16px 36px rgba(var(--bs-primary-rgb), 0.12) !important;
    transform: translateY(-8px) !important;
    border-color: var(--bs-secondary) !important;
}
.country-explore-btn {
    color: var(--pc-primary) !important;
    border-color: var(--pc-primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}
.country-explore-btn:hover {
    background-color: var(--pc-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 10px rgba(var(--bs-primary-rgb), 0.15);
}

/* ==========================================================================
   Process Cards
   ========================================================================== */

.process-card {
    background: #ffffff !important;
    border-radius: 14px;
    border-top: 4px solid var(--bs-secondary);
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.process-card:hover {
    box-shadow: 0 12px 30px rgba(var(--bs-primary-rgb), 0.12);
    transform: translateY(-6px);
}
.process-card:hover .pc-check-icon {
    transform: scale(1.1) rotate(5deg);
    background-color: var(--bs-secondary) !important;
    color: var(--pc-primary) !important;
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-accordion-item {
    box-shadow: 0 4px 15px rgba(var(--bs-primary-rgb), 0.04) !important;
    border-radius: 8px !important;
    overflow: hidden;
    margin-bottom: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
}
.faq-accordion-button {
    background: var(--bs-light) !important;
    color: var(--pc-primary) !important;
    font-weight: 600;
    padding: 18px 24px;
    border: none;
    box-shadow: none !important;
    transition: all 0.2s ease;
    font-size: 1.15rem;
    border-bottom: 1.5px solid rgba(var(--bs-primary-rgb), 0.08) !important;
}
.faq-accordion-button:not(.collapsed) {
    background: var(--pc-primary) !important;
    color: #ffffff !important;
    border-bottom-color: var(--bs-secondary) !important;
}
.faq-accordion-button::after {
    filter: brightness(0.2);
}
.faq-accordion-button:not(.collapsed)::after {
    filter: brightness(1) invert(1);
}

/* ==========================================================================
   CTA Card
   ========================================================================== */

.cta-card {
    background: var(--pc-gradient-premium) !important;
    box-shadow: 0 20px 50px rgba(var(--bs-primary-rgb), 0.28) !important;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.pc-cta-section {
    background: var(--pc-gradient-premium) !important;
}
.pc-cta-circle {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(var(--bs-secondary-rgb), 0.06) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

/* ==========================================================================
   Timeline
   ========================================================================== */

.timeline-line {
    background: linear-gradient(180deg,
            rgba(var(--bs-primary-rgb), 0.1) 0%,
            rgba(var(--bs-primary-rgb), 0.3) 50%,
            rgba(var(--bs-primary-rgb), 0.1) 100%);
}
.timeline-progress {
    background: linear-gradient(180deg, var(--pc-primary) 0%, var(--pc-secondary) 100%);
}
.timeline-number {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
}
.timeline-card {
    background: rgba(255, 255, 255, 0.95);
}
.timeline-card::before {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
}
.timeline-icon {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), rgba(var(--bs-secondary-rgb), 0.1));
}
.timeline-icon::before {
    background: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
}
.timeline-icon i {
    background-image: linear-gradient(135deg, var(--pc-primary), var(--pc-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.timeline-content h4 {
    color: var(--pc-primary);
}
.timeline-card::after {
    background: linear-gradient(90deg, var(--pc-primary), var(--pc-secondary));
}

/* ==========================================================================
   Process Section Background
   ========================================================================== */

.process-section {
    position: relative;
    padding: 30px 0 !important;
    background-color: var(--bs-light);
    background-image:
        linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.06) 0%, rgba(var(--bs-secondary-rgb), 0.04) 50%, rgba(var(--bs-primary-rgb), 0.06) 100%),
        radial-gradient(circle at center center, rgba(var(--bs-primary-rgb), 0.04), var(--bs-light)),
        repeating-radial-gradient(circle at center center, rgba(var(--bs-primary-rgb), 0.015), rgba(var(--bs-primary-rgb), 0.015), 10px, transparent 20px, transparent 10px);
    background-blend-mode: multiply;
    overflow: hidden;
}

/* ==========================================================================
   Hero indicators & arrows
   ========================================================================== */

.pc-hero-dots button.active {
    background: var(--bs-secondary) !important;
}
.pc-hero-arrow:hover {
    background: var(--bs-secondary) !important;
    color: var(--pc-primary) !important;
    border-color: var(--bs-secondary) !important;
    box-shadow: 0 0 15px rgba(var(--bs-secondary-rgb), 0.4);
}

/* ==========================================================================
   Mobile responsive navbar
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-light .navbar-toggler {
        border: none !important;
        padding: 0 !important;
        outline: none !important;
        box-shadow: none !important;
        width: 24px;
        height: 24px;
        position: relative;
        z-index: 1055 !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .navbar-toggler::before,
    .navbar-toggler::after,
    .navbar-toggler span {
        content: '';
        position: absolute;
        left: 0;
        width: 24px;
        height: 2px;
        background-color: var(--pc-primary);
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }
    .navbar-toggler::before { top: 4px; }
    .navbar-toggler span { top: 11px; }
    .navbar-toggler::after { top: 18px; }
    .navbar-toggler[aria-expanded="true"]::before {
        transform: rotate(45deg);
        top: 11px;
    }
    .navbar-toggler[aria-expanded="true"] span {
        opacity: 0;
        transform: translateX(-6px);
    }
    .navbar-toggler[aria-expanded="true"]::after {
        transform: rotate(-45deg);
        top: 11px;
    }
}

/* ==========================================================================
   CUSTOM PREMIUM CLOCK CURSOR SYSTEM
   ========================================================================== */

@media (hover: hover) {
    .pc-custom-cursor-active,
    .pc-custom-cursor-active body,
    .pc-custom-cursor-active a,
    .pc-custom-cursor-active button,
    .pc-custom-cursor-active .btn,
    .pc-custom-cursor-active [role="button"],
    .pc-custom-cursor-active input,
    .pc-custom-cursor-active select,
    .pc-custom-cursor-active textarea,
    .pc-custom-cursor-active .timeline-card,
    .pc-custom-cursor-active .office-item,
    .pc-custom-cursor-active .service-item,
    .pc-custom-cursor-active .faq-accordion-button {
        cursor: none !important;
    }

    .pc-cursor-dot {
        width: 6px;
        height: 6px;
        background-color: var(--bs-secondary);
        position: fixed;
        top: 0;
        left: 0;
        margin-top: -3px;
        margin-left: -3px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 10000;
        transition: opacity 0.3s ease, background-color 0.3s ease;
        opacity: 0;
    }

    .pc-cursor-outline {
        width: 44px;
        height: 44px;
        border: 2px solid var(--pc-primary);
        position: fixed;
        top: 0;
        left: 0;
        margin-top: -22px;
        margin-left: -22px;
        border-radius: 50%;
        pointer-events: none;
        z-index: 9999;
        transition: opacity 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
        opacity: 0;
        background-color: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(2px);
    }

    .pc-clock-face {
        position: absolute;
        top: calc(50% - 2px);
        left: calc(50% - 2px);
        width: 4px;
        height: 4px;
        background-color: var(--bs-secondary);
        border-radius: 50%;
        z-index: 5;
    }

    .pc-clock-hand {
        position: absolute;
        background-color: var(--pc-primary);
        border-radius: 4px;
        transform-origin: bottom center;
        bottom: 50%;
        left: calc(50% - 1px);
        transition: background-color 0.3s ease;
    }

    .hand-hour { width: 2px; height: 9px; z-index: 2; }
    .hand-minute { width: 2px; height: 13px; z-index: 3; }
    .hand-second {
        width: 1px;
        height: 16px;
        background-color: var(--bs-secondary) !important;
        z-index: 4;
    }

    .pc-cursor-outline.pc-cursor-hovered {
        border-color: var(--bs-secondary);
        background-color: rgba(var(--bs-secondary-rgb), 0.08);
        box-shadow: 0 0 15px rgba(var(--bs-secondary-rgb), 0.25);
    }

    .pc-cursor-outline.pc-cursor-hovered .pc-clock-hand {
        background-color: var(--bs-secondary);
    }

    .pc-cursor-outline.pc-cursor-hovered .hand-second {
        background-color: var(--pc-primary) !important;
    }

    .pc-cursor-dot.pc-cursor-hovered {
        background-color: var(--pc-primary);
    }

    .pc-cursor-dot.pc-cursor-enlarged {
        transform: translate3d(0, 0, 0) scale(1.4) !important;
    }

    .pc-cursor-outline.pc-cursor-clicking {
        background-color: rgba(var(--bs-primary-rgb), 0.15) !important;
        border-color: var(--pc-primary) !important;
        box-shadow: 0 0 12px rgba(var(--bs-primary-rgb), 0.2);
    }
}



/* ==========================================================================
   Stats / Trust / Team Card-less Styles
   ========================================================================== */

/* ==========================================================================
   Why Choose Us — List + Minimal Grid
   ========================================================================== */
.pc-why-section {
    background: linear-gradient(135deg, #f8f7f2 0%, #f0ede0 100%);
}

.pc-why-dots {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background-image: radial-gradient(var(--bs-primary) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
}

/* Feature List (no cards) */
.pc-feature-list {
    display: flex;
    flex-direction: column;
}

.pc-feature-row {
    transition: all 0.2s ease;
    padding-left: 2px;
    border-color: rgba(var(--bs-primary-rgb), 0.06) !important;
}

.pc-feature-row:hover {
    padding-left: 6px;
}

.pc-feature-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1rem;
    transition: color 0.2s ease;
}

.pc-feature-row:hover .pc-feature-icon {
    color: var(--bs-secondary);
}

.pc-feature-title {
    font-size: 0.88rem;
    color: var(--bs-dark);
    transition: color 0.2s ease;
}

.pc-feature-row:hover .pc-feature-title {
    color: var(--bs-secondary);
}

.pc-feature-desc {
    font-size: 0.76rem;
    line-height: 1.45;
}

/* ==========================================================================
   Trust Items — Enhanced List
   ========================================================================== */
.pc-trust-grid {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.06);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.02);
}

.pc-trust-item {
    position: relative;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
    transition: background 0.3s ease;
}

.pc-trust-item:hover {
    background: rgba(255, 255, 255, 0.8);
}

.pc-trust-item-border {
    border-right: 1px solid rgba(var(--bs-primary-rgb), 0.06);
}

@media (max-width: 991.98px) {
    .pc-trust-item-border {
        border-right: none;
        border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.06);
    }
    .pc-trust-item-border:last-child {
        border-bottom: none;
    }
}

.pc-trust-item-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: rgba(var(--bs-primary-rgb), 0.04);
    border-radius: 8px;
    color: var(--bs-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.pc-trust-item:hover .pc-trust-item-icon {
    background: var(--bs-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(var(--bs-primary-rgb), 0.08);
}

.pc-trust-item-title {
    font-size: 0.9rem;
    color: var(--bs-dark);
    transition: color 0.25s ease;
}

.pc-trust-item:hover .pc-trust-item-title {
    color: var(--bs-secondary);
}

.pc-trust-item-desc {
    font-size: 0.78rem;
    line-height: 1.45;
}

/* Decorative background shapes */
/* Trust Decorative Icons */
.pc-trust-deco-shape {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    font-size: 1.4rem;
    opacity: 0.04;
}

.pc-trust-deco-1 {
    top: 8%;
    left: 5%;
    color: var(--bs-primary);
}
.pc-trust-deco-1::before { content: '\f2ab'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* passport */

.pc-trust-deco-2 {
    bottom: 10%;
    right: 5%;
    color: var(--bs-secondary);
}
.pc-trust-deco-2::before { content: '\f072'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* plane */

.pc-trust-deco-3 {
    top: 30%;
    right: 12%;
    color: var(--bs-primary);
}
.pc-trust-deco-3::before { content: '\f0ac'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* globe */

.pc-trust-deco-4 {
    bottom: 25%;
    left: 10%;
    color: var(--bs-secondary);
}
.pc-trust-deco-4::before { content: '\f15c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* file-alt */

/* Stat Simple Grid (no cards) */
.pc-stat-grid-simple {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(var(--bs-primary-rgb), 0.06);
    border-radius: 10px;
    overflow: hidden;
}

.pc-stat-cell {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    transition: background 0.25s ease;
}

.pc-stat-cell:hover {
    background: #ffffff;
}

.pc-stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    transition: color 0.25s ease;
}

.pc-stat-cell:hover .pc-stat-number {
    color: var(--bs-secondary);
}

.pc-stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--bs-secondary-color, #6B7280);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* ==========================================================================
   Team — Enhanced
   ========================================================================== */
.pc-team-grid {
    border: 1px solid rgba(var(--bs-primary-rgb), 0.06);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.02);
}

.pc-team-border {
    border-right: 1px solid rgba(var(--bs-primary-rgb), 0.06);
}

@media (max-width: 767.98px) {
    .pc-team-border {
        border-right: none;
        border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.06);
    }
    .pc-team-border:last-child {
        border-bottom: none;
    }
}

.pc-team-tile {
    border: 1px solid transparent;
    transition: border-color 0.4s ease;
    aspect-ratio: 1/1;
}

.pc-team-img-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

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

.pc-team-tile:hover .pc-team-img {
    transform: scale(1.06);
}

.pc-team-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--bs-primary-rgb), 0.92) 0%, rgba(var(--bs-primary-rgb), 0.25) 60%, transparent 100%);
    padding-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pc-team-tile:hover .pc-team-overlay {
    background: linear-gradient(to top, rgba(var(--bs-primary-rgb), 0.97) 0%, rgba(var(--bs-primary-rgb), 0.4) 60%, transparent 100%);
}

.pc-team-tile::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.pc-team-tile:hover::after {
    opacity: 1;
}

/* Gold border on hover */
.pc-team-tile:hover {
    border-color: var(--bs-secondary);
}

/* Credentials badge */
.pc-team-creds {
    color: rgba(var(--bs-secondary-rgb), 0.8);
    font-size: 0.68rem;
    letter-spacing: 0.3px;
}

/* Role text */
.pc-team-role {
    letter-spacing: 1px;
    color: var(--bs-secondary) !important;
}

/* Bio wrap - hidden by default, reveals on hover */
.pc-team-bio-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.pc-team-tile:hover .pc-team-bio-wrap {
    max-height: 120px;
}

/* Language icon */
.pc-team-lang-icon {
    color: var(--bs-secondary);
}

/* Team Decorative Icons */
.pc-team-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    font-size: 1.3rem;
    opacity: 0.04;
}

.pc-team-deco-1 {
    top: 6%;
    right: 5%;
    color: var(--bs-primary);
}
.pc-team-deco-1::before { content: '\f3ed'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* shield-alt */

.pc-team-deco-2 {
    bottom: 8%;
    left: 4%;
    color: var(--bs-secondary);
}
.pc-team-deco-2::before { content: '\f2c2'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* id-card */

.pc-team-deco-3 {
    top: 40%;
    left: 8%;
    color: var(--bs-primary);
}
.pc-team-deco-3::before { content: '\f5bf'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* stamp */

.pc-team-deco-4 {
    bottom: 35%;
    right: 12%;
    color: var(--bs-secondary);
}
.pc-team-deco-4::before { content: '\f0f2'; font-family: 'Font Awesome 6 Free'; font-weight: 900; } /* suitcase */

/* ==========================================================================
   Testimonials — Google Maps Review Style
   ========================================================================== */

/* Aggregate rating */
.pc-testi-aggregate {
    background: rgba(var(--bs-primary-rgb), 0.03);
    border: 1px solid rgba(var(--bs-secondary-rgb), 0.08);
    border-radius: 100px;
    padding: 4px 16px 4px 12px;
    width: fit-content;
}
.pc-testi-aggregate-stars i {
    font-size: 0.7rem;
    color: var(--bs-secondary);
}
.pc-testi-aggregate-text {
    color: var(--bs-primary);
    font-size: 0.82rem;
}
.pc-testi-aggregate-text .fw-semibold {
    font-size: 0.95rem;
}

/* Section background */
.pc-testi-section {
    background: #f8f9fa;
    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}

/* --- Individual testimonial card (Google Maps look) --- */
.pc-testi-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #e8eaed;
    border-radius: 8px;
    padding: 16px;
    box-shadow: none;
    transition: box-shadow 0.2s ease;
}

.pc-testi-card:hover {
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.08), 0 4px 8px rgba(60, 64, 67, 0.05);
}

/* Header: avatar + name/country */
.pc-testi-card-header {
    min-width: 0;
}
.pc-testi-card-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.pc-testi-card-avatar-initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1D5036;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}
.pc-testi-card-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #202124;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pc-testi-card-country {
    color: #5f6368;
    font-size: 0.75rem;
    line-height: 1.3;
    margin-top: 1px;
}

/* Stars */
.pc-testi-card-stars {
    display: flex;
    gap: 1px;
}
.pc-testi-card-stars i {
    font-size: 0.8rem;
    color: #fbbc04;
}

/* Review text */
.pc-testi-card-text {
    font-size: 0.875rem;
    line-height: 1.5;
    color: #3c4043;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer: Helpful button */
.pc-testi-card-footer {
    margin-top: 12px;
    padding-top: 8px;
}
.pc-testi-card-helpful {
    background: transparent;
    border: 0;
    padding: 6px 10px;
    border-radius: 4px;
    color: #5f6368;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease;
}
.pc-testi-card-helpful i {
    font-size: 0.75rem;
    margin-right: 4px;
}
.pc-testi-card-helpful:hover {
    background: #f1f3f4;
    color: #202124;
}

.min-w-0 { min-width: 0; }

/* Testimonial Decorative Icons */
.pc-testi-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    font-size: 1.3rem;
    opacity: 0.04;
}

.pc-testi-deco-1 {
    top: 8%;
    right: 6%;
    color: var(--bs-primary);
}
.pc-testi-deco-1::before { content: '\f3c5'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.pc-testi-deco-2 {
    bottom: 12%;
    left: 5%;
    color: var(--bs-secondary);
}
.pc-testi-deco-2::before { content: '\f2ab'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.pc-testi-deco-3 {
    top: 50%;
    left: 10%;
    color: var(--bs-primary);
}
.pc-testi-deco-3::before { content: '\f072'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

.pc-testi-deco-4 {
    top: 30%;
    right: 12%;
    color: var(--bs-secondary);
}
.pc-testi-deco-4::before { content: '\f0ac'; font-family: 'Font Awesome 6 Free'; font-weight: 900; }

/* ==========================================================================
   About Page — Enhanced
   ========================================================================== */
.pc-about-img-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-secondary), var(--bs-primary));
}

.pc-about-card {
    background: #ffffff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.04);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.pc-about-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(var(--bs-primary-rgb), 0.05);
    border-color: rgba(var(--bs-secondary-rgb), 0.12);
}

.pc-about-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.04);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.pc-about-card:hover .pc-about-card-icon {
    background: var(--bs-primary);
    color: #ffffff;
}

.pc-about-card-title {
    font-size: 0.92rem;
    transition: color 0.25s ease;
}

.pc-about-card:hover .pc-about-card-title {
    color: var(--bs-secondary);
}

/* Approach block */
.pc-about-approach {
    background: rgba(var(--bs-primary-rgb), 0.02);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.05);
}

.pc-about-approach-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--bs-secondary), var(--bs-primary));
    border-radius: 0 2px 2px 0;
}

/* FAQ items */
.pc-about-faq-item {
    border-radius: 10px !important;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.04) !important;
    box-shadow: 0 2px 6px rgba(var(--bs-primary-rgb), 0.02);
    transition: all 0.3s ease;
}

.pc-about-faq-item:hover {
    border-color: rgba(var(--bs-secondary-rgb), 0.12) !important;
}

.pc-about-faq-btn {
    padding: 14px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--bs-primary) !important;
    background: transparent !important;
    transition: all 0.2s ease;
}

.pc-about-faq-btn:not(.collapsed) {
    background: rgba(var(--bs-primary-rgb), 0.03) !important;
    color: var(--bs-secondary) !important;
}

.pc-about-faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--bs-secondary);
    background: rgba(var(--bs-secondary-rgb), 0.06);
    border-radius: 6px;
    margin-right: 10px;
    flex-shrink: 0;
}




.bg-light-soft { background: var(--bs-light); }

/* Print styles */
@media print {
    .topbar, .navbar, .footer, .copyright,
    .pc-mobile-bar, .pc-whatsapp-float,
    .pc-cookie-banner, .back-to-top, .pc-back-to-top,
    .pc-final-cta, header, footer, nav, .no-print { display: none !important; }
    body { color: #000; background: #fff; }
    a, a:visited { color: #000; text-decoration: underline; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 90%; }
}

/* Section padding default */
section.py-6, .py-6 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
}

/* ==========================================================================
   Carousel & Hero Heights — keep the home page compact on every breakpoint
   (theme/style.css sets min-height: 100vh on .carousel-item; override here)
   ========================================================================== */

.carousel-header .carousel-inner .carousel-item {
    position: relative;
    min-height: auto !important;
    height: 460px !important;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-header .carousel-caption h1 { font-size: 2.0rem !important; margin-bottom: 8px !important; }
    .carousel-header .carousel-caption h5 { font-size: 0.75rem !important; margin-bottom: 6px !important; }
    .carousel-header .carousel-caption p  { font-size: 0.9rem !important; margin-bottom: 15px !important; }
    .carousel-header .carousel-caption .btn { padding: 8px 18px !important; font-size: 0.82rem !important; }
}

@media (min-width: 992px) {
    .carousel-header .carousel-inner .carousel-item { height: 500px !important; }
    .carousel-header .carousel-caption h1 { font-size: 2.5rem !important; margin-bottom: 12px !important; }
    .carousel-header .carousel-caption p  { font-size: 1.0rem !important; margin-bottom: 20px !important; }
    .carousel-header .carousel-caption .btn { padding: 10px 22px !important; font-size: 0.9rem !important; }
}

@media (min-width: 1200px) {
    .carousel-header .carousel-inner .carousel-item { height: 540px !important; }
}

@media (min-width: 1400px) {
    .carousel-header .carousel-inner .carousel-item { height: 580px !important; }
}

@media (max-width: 767.98px) {
    .carousel-header { height: 350px !important; }
    .carousel-header .carousel-inner .carousel-item { height: 350px !important; }
    .carousel-header .carousel-control-prev,
    .carousel-header .carousel-control-next {
        margin-top: 0 !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
    }
    .carousel-header .carousel-caption { padding: 15px 10px !important; }
    .carousel-header .carousel-caption h5 { font-size: 0.75rem !important; margin-bottom: 6px !important; }
    .carousel-header .carousel-caption h1 { font-size: 1.8rem !important; margin-bottom: 8px !important; }
    .carousel-header .carousel-caption p  { font-size: 0.85rem !important; margin-bottom: 12px !important; }
    .carousel-header .carousel-caption .btn { padding: 8px 16px !important; font-size: 0.8rem !important; }
}

/* ==========================================================================
   Hero Indicators & Arrows (compact positioning)
   ========================================================================== */

.pc-hero-dots {
    position: absolute;
    bottom: 30px !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
}
.pc-hero-dots button {
    width: 8px !important;
    height: 8px !important;
    border-radius: 4px !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease-in-out !important;
    padding: 0 !important;
    cursor: pointer;
}
.pc-hero-dots button.active {
    width: 24px !important;
    background: var(--pc-secondary) !important;
}

.pc-hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    opacity: 0.8;
}
.pc-hero-arrow:hover {
    background: var(--pc-secondary) !important;
    color: var(--pc-primary) !important;
    border-color: var(--pc-secondary) !important;
    box-shadow: 0 0 15px rgba(205, 175, 104, 0.4);
    transform: translateY(-50%) scale(1.05);
    opacity: 1;
}
.pc-hero-arrow .carousel-control-prev-icon,
.pc-hero-arrow .carousel-control-next-icon { display: none !important; }
.pc-hero-arrow.prev { left: 24px; }
.pc-hero-arrow.next { right: 24px; }

/* ==========================================================================
   Header / Footer safety resets — make sure they sit correctly on every page
   ========================================================================== */

header { position: relative; z-index: 1050 !important; }
.nav-bar { z-index: 1050 !important; }
.site-header,
.navbar { position: relative; z-index: 1030; }

.pc-mobile-bar { display: none; }
@media (max-width: 767.98px) { .pc-mobile-bar { display: flex; } }

.footer,
.site-footer,
.pc-footer { position: relative; z-index: 1; }

/* ==========================================================================
   Hero static overlay form — must be absolutely positioned over the carousel
   so it does NOT participate in block flow and collapse the page layout
   ========================================================================== */

.hero-static-form-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    pointer-events: none; /* let carousel clicks through by default */
}

/* Re-enable pointer events only on the form itself */
.hero-static-form-container .pc-hero-form,
.hero-static-form-container .wow {
    pointer-events: auto;
}

/* ==========================================================================
   Active slide caption reveals (brand.css sets opacity:0 on all captions)
   ========================================================================== */

.carousel-header .carousel-inner .carousel-item.active .carousel-caption {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* ==========================================================================
   Eligibility Assessment Page
   ========================================================================== */

/* Trust badge row */
.pc-elig-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(var(--bs-primary-rgb), 0.025);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 10px;
    height: 100%;
}
.pc-elig-trust-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 8px;
    background: var(--bs-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.pc-elig-trust-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--bs-primary);
    line-height: 1.2;
}
.pc-elig-trust-sub {
    font-size: 0.7rem;
    color: var(--bs-secondary-color, #6B7280);
    line-height: 1.2;
    margin-top: 1px;
}

/* Form card */
.pc-elig-card {
    background: #ffffff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.06);
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 16px rgba(var(--bs-primary-rgb), 0.04);
    position: relative;
}
.pc-elig-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 0 0 4px 4px;
}

/* Stepper */
.pc-elig-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-bottom: 24px;
    padding: 0 4px;
}
.pc-elig-step-line {
    position: absolute;
    top: 14px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 2px;
    z-index: 0;
}
.pc-elig-step-progress {
    height: 100%;
    background: var(--bs-primary);
    border-radius: 2px;
    transition: width 0.35s ease;
}
.pc-elig-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    cursor: pointer;
    background: #fff;
    padding: 0 4px;
}
.pc-elig-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid rgba(var(--bs-primary-rgb), 0.2);
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    transition: all 0.3s ease;
}
.pc-elig-step.active .pc-elig-step-num {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(var(--bs-primary-rgb), 0.12);
}
.pc-elig-step.completed .pc-elig-step-num {
    background: var(--bs-secondary);
    border-color: var(--bs-secondary);
    color: var(--bs-primary);
}
.pc-elig-step-label {
    font-size: 0.65rem;
    color: var(--bs-secondary-color, #6B7280);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.pc-elig-step.active .pc-elig-step-label {
    color: var(--bs-primary);
    font-weight: 600;
}

/* Form panels */
.pc-elig-panel {
    display: none;
}
.pc-elig-panel.active {
    display: block;
    animation: eligStepIn 0.3s ease;
}
@keyframes eligStepIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.pc-elig-panel-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 4px;
}
.pc-elig-panel-sub {
    font-size: 0.78rem;
    color: var(--bs-secondary-color, #6B7280);
    margin-bottom: 16px;
}

/* Form fields */
.pc-elig-card .form-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--bs-body-color, #1F2A24);
    margin-bottom: 4px;
}
.pc-elig-card .form-control,
.pc-elig-card .form-select {
    font-size: 0.88rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.12);
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pc-elig-card .form-control:focus,
.pc-elig-card .form-select:focus {
    border-color: var(--bs-primary);
    box-shadow: 0 0 0 3px rgba(var(--bs-primary-rgb), 0.1);
}
.pc-elig-card .form-control::placeholder {
    color: rgba(var(--bs-secondary-color-rgb, 108, 117, 125), 0.6);
}
.pc-elig-card .pc-gibberish-input {
    border-color: #d97706 !important;
    background-color: rgba(217, 119, 6, 0.04);
}
.pc-elig-card .pc-gibberish-hint {
    font-size: 0.78rem;
    color: #d97706;
    margin-top: 4px;
    line-height: 1.4;
}
.pc-elig-card .pc-gibberish-hint i {
    color: #d97706;
}

/* Sidebar cards */
.pc-elig-sidebar-card {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.06);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(var(--bs-primary-rgb), 0.03);
}
.pc-elig-sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 12px;
}
.pc-elig-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
    color: var(--bs-body-color, #1F2A24);
}
.pc-elig-sidebar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
}
.pc-elig-sidebar-list li i {
    color: var(--bs-secondary);
    font-size: 0.7rem;
    width: 14px;
    flex-shrink: 0;
}
.pc-elig-sidebar-text {
    font-size: 0.82rem;
    color: var(--bs-body-color, #1F2A24);
    line-height: 1.55;
}
.pc-elig-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: 0.85rem;
}
.pc-elig-contact-row i {
    width: 18px;
    font-size: 0.9rem;
    flex-shrink: 0;
    text-align: center;
}
.pc-elig-contact-row a {
    color: var(--bs-body-color, #1F2A24);
    text-decoration: none;
}
.pc-elig-contact-row a:hover {
    color: var(--bs-primary);
}
.pc-elig-contact-card {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.04), rgba(var(--bs-secondary-rgb), 0.05));
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
}

/* FAQ */
.pc-elig-faq-item {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.06) !important;
    border-radius: 10px !important;
    overflow: hidden;
}
.pc-elig-faq-btn {
    background: #fff !important;
    color: var(--bs-primary) !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    padding: 12px 16px !important;
    box-shadow: none !important;
}
.pc-elig-faq-btn:hover {
    background: rgba(var(--bs-primary-rgb), 0.02) !important;
}
.pc-elig-faq-btn:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(20%) sepia(15%) saturate(800%) hue-rotate(95deg) brightness(90%) contrast(85%);
}
.pc-elig-faq-item .accordion-body {
    padding: 0 16px 14px !important;
}

/* Responsive */
@media (max-width: 575.98px) {
    .pc-elig-card {
        padding: 22px 18px;
    }
    .pc-elig-stepper {
        margin-bottom: 20px;
    }
    .pc-elig-step-label {
        font-size: 0.6rem;
    }
}

/* ==========================================================================
   Eligibility Assessment — AI Result Page (redesigned)
   ========================================================================== */
.pc-result-page { position: relative; }

.pc-result-toolbar {
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.04), rgba(var(--bs-secondary-rgb), 0.04));
    border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    padding: 10px 0;
}
.pc-result-back {
    font-size: 0.85rem;
    color: var(--bs-primary);
    text-decoration: none;
    font-weight: 500;
}
.pc-result-back:hover { color: var(--bs-secondary); }

.pc-result-tool-btn {
    background: #fff;
    color: var(--bs-primary);
    border: 1px solid rgba(var(--bs-primary-rgb), 0.2);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}
.pc-result-tool-btn:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}
.pc-result-tool-btn--gold {
    background: var(--bs-secondary);
    color: var(--bs-primary);
    border-color: var(--bs-secondary);
}
.pc-result-tool-btn--gold:hover {
    background: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

/* Popovers (share / email) */
.pc-result-popover {
    position: absolute;
    top: 56px;
    right: 12px;
    width: 320px;
    max-width: calc(100% - 24px);
    z-index: 50;
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.15);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(var(--bs-primary-rgb), 0.12);
    padding: 14px 16px;
}
.pc-result-popover-arrow {
    position: absolute;
    top: -7px;
    right: 32px;
    width: 14px;
    height: 14px;
    background: #fff;
    border-top: 1px solid rgba(var(--bs-primary-rgb), 0.15);
    border-left: 1px solid rgba(var(--bs-primary-rgb), 0.15);
    transform: rotate(45deg);
}
.pc-result-popover-close {
    background: none;
    border: none;
    color: var(--bs-secondary-color, #6B7280);
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
}
.pc-result-share-input {
    display: flex;
    gap: 6px;
}
.pc-result-share-input .form-control { font-size: 0.78rem; }

/* ---------- HERO verdict card ---------- */
.pc-result-hero {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 18px;
    padding: 28px 32px;
    margin: 8px 0 22px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 32px rgba(var(--bs-primary-rgb), 0.06);
}
.pc-result-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 6px; height: 100%;
    background: linear-gradient(180deg, var(--bs-primary), var(--bs-secondary));
}
.pc-r-likely::before   { background: linear-gradient(180deg, #1D5036, #CDAF68); }
.pc-r-possible::before { background: linear-gradient(180deg, #CDAF68, #E1CDA1); }
.pc-r-no::before       { background: linear-gradient(180deg, #dc3545, #f59e0b); }
.pc-r-info::before     { background: linear-gradient(180deg, #6B7280, #9CA3AF); }

.pc-result-hero-icon {
    flex-shrink: 0;
    width: 76px; height: 76px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), rgba(var(--bs-secondary-rgb), 0.15));
    color: var(--bs-primary);
    font-size: 2.2rem;
    box-shadow: inset 0 0 0 4px rgba(var(--bs-primary-rgb), 0.06);
}
.pc-r-likely .pc-result-hero-icon   { color: var(--bs-primary); }
.pc-r-possible .pc-result-hero-icon { color: #CDAF68; }
.pc-r-no .pc-result-hero-icon       { color: #dc3545; }
.pc-r-info .pc-result-hero-icon     { color: #6B7280; }

.pc-result-hero-body { flex: 1 1 auto; min-width: 0; }
.pc-result-hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 700;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.pc-result-hero-ref {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
    color: var(--bs-secondary-color, #6B7280);
    font-size: 0.75rem;
}
.pc-result-hero-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--bs-primary);
    margin: 6px 0 8px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.pc-r-possible .pc-result-hero-title { color: #CDAF68; }
.pc-r-no .pc-result-hero-title       { color: #dc3545; }

.pc-result-hero-summary {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--bs-body-color, #1F2A24);
    margin: 0;
    max-width: 60ch;
}
.pc-result-hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
}
.pc-result-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(var(--bs-primary-rgb), 0.08);
    color: var(--bs-primary);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 100px;
}
.pc-result-pill i { font-size: 0.7rem; }
.pc-result-pill--muted {
    background: rgba(107, 114, 128, 0.08);
    color: #6B7280;
}
.pc-result-hero-details {
    margin-top: 10px;
    font-size: 0.82rem;
    color: #6B7280;
}
.pc-result-hero-details summary { cursor: pointer; }
.pc-result-hero-details pre {
    margin-top: 6px;
    white-space: pre-wrap;
    word-break: break-word;
    background: #FAF8F2;
    padding: 8px 10px;
    border-radius: 6px;
    font-size: 0.78rem;
}

.pc-result-hero--failed {
    background: #fff5f5;
    border-color: rgba(220, 53, 69, 0.2);
}
.pc-result-hero--failed::before { background: #dc3545; }
.pc-result-hero--failed .pc-result-hero-icon {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}
.pc-result-hero--failed .pc-result-hero-title { color: #dc3545; }

/* Confidence ring */
.pc-result-hero-ring {
    position: relative;
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}
.pc-result-hero-ring svg { transform: rotate(-90deg); }
.pc-ring-track {
    fill: none;
    stroke: rgba(var(--bs-primary-rgb), 0.1);
    stroke-width: 10;
}
.pc-ring-fill {
    fill: none;
    stroke: var(--bs-primary);
    stroke-width: 10;
    stroke-linecap: round;
}
.pc-r-likely   .pc-ring-fill { stroke: var(--bs-primary); }
.pc-r-possible .pc-ring-fill { stroke: #CDAF68; }
.pc-r-no       .pc-ring-fill { stroke: #dc3545; }
.pc-r-info     .pc-ring-fill { stroke: #6B7280; }

.pc-result-hero-ring-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.pc-result-hero-ring-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--bs-primary);
    line-height: 1;
}
.pc-result-hero-ring-value span {
    font-size: 0.95rem;
    font-weight: 600;
    margin-left: 1px;
}
.pc-result-hero-ring-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 600;
    margin-top: 2px;
}

@media (max-width: 575.98px) {
    .pc-result-hero {
        flex-direction: column;
        text-align: center;
        padding: 22px 20px;
    }
    .pc-result-hero::before { width: 100%; height: 5px; }
    .pc-result-hero-eyebrow { justify-content: center; }
    .pc-result-hero-summary { margin-left: auto; margin-right: auto; }
    .pc-result-hero-pills   { justify-content: center; }
}

/* ---------- Key facts strip ---------- */
.pc-result-facts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}
.pc-result-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 4px 12px rgba(var(--bs-primary-rgb), 0.03);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.pc-result-fact:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(var(--bs-primary-rgb), 0.08);
}
.pc-result-fact-icon {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--bs-primary-rgb), 0.1), rgba(var(--bs-secondary-rgb), 0.15));
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.pc-result-fact-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 600;
}
.pc-result-fact-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-top: 2px;
    line-height: 1.3;
}

/* ---------- Strengths + concerns panels ---------- */
.pc-result-row { margin-bottom: 22px; }
.pc-result-panel {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 14px;
    padding: 20px 22px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.04);
}
.pc-result-panel::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
}
.pc-result-panel--good::before { background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary)); }
.pc-result-panel--warn::before { background: linear-gradient(90deg, #d97706, #fbbf24); }

.pc-result-panel-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}
.pc-result-panel-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.pc-result-panel--good .pc-result-panel-icon {
    background: rgba(var(--bs-primary-rgb), 0.1);
    color: var(--bs-primary);
}
.pc-result-panel--warn .pc-result-panel-icon {
    background: rgba(217, 119, 6, 0.12);
    color: #d97706;
}
.pc-result-panel-title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--bs-primary);
}
.pc-result-panel--warn .pc-result-panel-title { color: #d97706; }
.pc-result-panel-sub {
    font-size: 0.78rem;
    color: var(--bs-secondary-color, #6B7280);
    margin: 0;
}

.pc-result-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
}
.pc-result-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--bs-body-color, #1F2A24);
}
.pc-result-list--good li i { color: var(--bs-primary); margin-top: 4px; flex-shrink: 0; }
.pc-result-list--warn li i { color: #d97706; margin-top: 4px; flex-shrink: 0; }
.pc-result-list--neutral li i { color: var(--bs-secondary-color, #6B7280); margin-top: 4px; flex-shrink: 0; }

/* ---------- Generic section wrapper (next steps, documents) ---------- */
.pc-result-section {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(var(--bs-primary-rgb), 0.04);
}
.pc-result-section-head { margin-bottom: 18px; }
.pc-result-section-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pc-result-section-title i {
    color: var(--bs-secondary);
    font-size: 1rem;
}
.pc-result-section-sub {
    font-size: 0.82rem;
    color: var(--bs-secondary-color, #6B7280);
    margin: 4px 0 0 0;
}

/* ---------- Timeline ---------- */
.pc-result-timeline {
    list-style: none;
    counter-reset: tl;
    padding: 0;
    margin: 0;
    position: relative;
}
.pc-result-timeline::before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 8px;
    left: 19px;
    width: 2px;
    background: linear-gradient(180deg, var(--bs-primary) 0%, rgba(var(--bs-primary-rgb), 0.15) 100%);
    border-radius: 2px;
}
.pc-result-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 8px 0 14px;
    position: relative;
}
.pc-result-timeline-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bs-primary);
    color: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 4px #fff;
}
.pc-result-timeline-body {
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--bs-body-color, #1F2A24);
    padding-top: 8px;
}

/* ---------- Document checklist ---------- */
.pc-result-docs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 8px;
}
.pc-result-doc {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #FAF8F2;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.15s ease;
    user-select: none;
}
.pc-result-doc:hover {
    background: rgba(var(--bs-primary-rgb), 0.04);
    border-color: rgba(var(--bs-primary-rgb), 0.25);
}
.pc-result-doc input { display: none; }
.pc-result-doc-box {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(var(--bs-primary-rgb), 0.3);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    transition: all 0.15s ease;
    margin-top: 1px;
}
.pc-result-doc-label {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--bs-body-color, #1F2A24);
}
.pc-result-doc--done .pc-result-doc-box {
    background: var(--bs-primary);
    border-color: var(--bs-primary);
}
.pc-result-doc--done .pc-result-doc-label {
    text-decoration: line-through;
    color: var(--bs-secondary-color, #6B7280);
}
.pc-result-doc-progress {
    flex: 1;
    height: 8px;
    background: rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 4px;
    overflow: hidden;
    min-width: 120px;
    max-width: 240px;
}
.pc-result-doc-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--bs-primary), var(--bs-secondary));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ---------- CTA ---------- */
.pc-result-cta {
    margin-bottom: 22px;
}
.pc-result-cta-inner {
    background: linear-gradient(135deg, var(--bs-primary) 0%, var(--bs-dark, #153D29) 100%);
    color: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(var(--bs-primary-rgb), 0.25);
}
.pc-result-cta-inner::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.pc-result-cta-inner::after {
    content: '';
    position: absolute;
    bottom: -50px; left: -50px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(var(--bs-secondary-rgb), 0.1);
}
.pc-result-cta-icon {
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--bs-secondary);
    color: var(--bs-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.pc-result-cta-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 8px;
    color: #fff;
    position: relative;
    z-index: 1;
}
.pc-result-cta-text {
    font-size: 0.95rem;
    opacity: 0.9;
    max-width: 50ch;
    margin: 0 auto 18px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}
.pc-result-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.pc-result-cta-btn {
    font-size: 0.92rem;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 10px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.15s ease;
}
.pc-result-cta-btn--wa {
    background: #25D366;
    color: #fff;
    border: 1px solid #25D366;
}
.pc-result-cta-btn--wa:hover {
    background: #1DA851;
    color: #fff;
    border-color: #1DA851;
}

/* ---------- Applicant mini-strip ---------- */
.pc-result-meta-strip {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 18px;
    background: #FAF8F2;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 16px;
    font-size: 0.85rem;
}
.pc-result-meta-strip-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 700;
    margin-right: 4px;
}
.pc-result-meta-strip-name {
    font-weight: 700;
    color: var(--bs-primary);
}
.pc-result-meta-strip-detail {
    color: var(--bs-secondary-color, #6B7280);
}
.pc-result-meta-strip-ref {
    text-align: right;
}
.pc-result-meta-strip-ref-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 600;
}
.pc-result-meta-strip-ref-value {
    font-weight: 700;
    color: var(--bs-primary);
    font-size: 0.95rem;
}

/* ---------- Quality banner ---------- */
.pc-result-quality-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8eb;
    border: 1px solid #f5d796;
    border-left: 4px solid #d97706;
    border-radius: 12px;
    padding: 14px 18px;
    margin-bottom: 16px;
    font-size: 0.88rem;
    line-height: 1.55;
    color: #5b4400;
}
.pc-result-quality-banner--bad {
    background: #fff5f5;
    border-color: #f3b5b5;
    border-left-color: #dc3545;
    color: #6a1a1a;
}
.pc-result-quality-banner-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(217, 119, 6, 0.15);
    color: #d97706;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.pc-result-quality-banner--bad .pc-result-quality-banner-icon {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
}
.pc-result-quality-banner-body { flex: 1; }
.pc-result-quality-flags {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    margin: 0 4px;
}
.pc-result-quality-flag {
    display: inline-block;
    background: rgba(217, 119, 6, 0.12);
    color: #7a4d00;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 2px 8px;
}
.pc-result-quality-banner--bad .pc-result-quality-flag {
    background: rgba(220, 53, 69, 0.12);
    color: #6a1a1a;
}

/* ---------- Footer ---------- */
.pc-result-foot {
    border-top: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    padding-top: 14px;
    font-size: 0.8rem;
    color: var(--bs-secondary-color, #6B7280);
    line-height: 1.55;
}
.pc-result-foot-disclaimer {
    margin: 8px 0 0;
    font-size: 0.75rem;
    line-height: 1.55;
}

/* ---------- Print stylesheet ---------- */
@media print {
    body { background: #fff !important; }
    .no-print,
    .navbar,
    .pc-result-toolbar,
    .pc-result-popover,
    .pc-result-doc-reset,
    footer.footer,
    .pc-result-cta-buttons { display: none !important; }
    .pc-result-page { padding: 0 !important; }
    .pc-result-hero {
        box-shadow: none !important;
        page-break-inside: avoid;
        margin-top: 0;
    }
    .pc-result-hero-ring svg .pc-ring-fill { stroke-dashoffset: var(--ring-final, 0) !important; }
    .pc-result-section,
    .pc-result-panel,
    .pc-result-fact {
        box-shadow: none !important;
        page-break-inside: avoid;
    }
    a[href]::after { content: ''; }
    .pc-result-meta-strip-ref { text-align: left; }
}


/* Admin AI section cards (parsed fields) */
.pc-ai-section {
    background: #f8f9fa;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 0.82rem;
}
.pc-ai-section ul, .pc-ai-section ol { padding-left: 1.2rem; }

/* Stat cards (admin) */
.pc-stat {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.05);
    border-radius: 10px;
    padding: 12px 14px;
    text-align: left;
    height: 100%;
}
.pc-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bs-secondary-color, #6B7280);
    font-weight: 600;
}
.pc-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bs-primary);
    line-height: 1.1;
    margin-top: 2px;
}
.pc-stat-primary  { border-left: 3px solid var(--bs-primary); }
.pc-stat-success  { border-left: 3px solid #198754; }
.pc-stat-danger   { border-left: 3px solid #dc3545; }
.pc-stat-warning  { border-left: 3px solid #d97706; }

/* AI config rows (admin settings → AI tab) */
.pc-ai-configs { display: flex; flex-direction: column; gap: 10px; }
.pc-ai-config-row {
    background: #fff;
    border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
    border-radius: 8px;
    padding: 0;
    transition: box-shadow 0.15s ease, border-color 0.15s ease;
}
.pc-ai-config-row:hover { border-color: rgba(var(--bs-primary-rgb), 0.25); }
.pc-ai-config-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(var(--bs-primary-rgb), 0.04);
    border-bottom: 1px solid rgba(var(--bs-primary-rgb), 0.08);
    border-radius: 8px 8px 0 0;
    font-size: 0.85rem;
}
.pc-ai-config-head-left { display: flex; align-items: center; gap: 8px; min-width: 0; }
.pc-ai-config-handle {
    cursor: grab;
    color: var(--bs-secondary-color, #6B7280);
    padding: 2px 4px;
    user-select: none;
}
.pc-ai-config-handle:active { cursor: grabbing; }
.pc-ai-config-title { font-weight: 600; color: var(--bs-primary); }
.pc-ai-config-body { padding: 12px; }
.pc-ai-config-remove { padding: 0 6px; line-height: 1; }
