@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* =========================================================
   MARK MANPOWER — PROFESSIONAL REDESIGN THEME
   ========================================================= */

:root {
    --primary: #E7590F;            /* refined brand orange */
    --primary-dark: #C6470A;
    --primary-gradient: linear-gradient(135deg, #F26419 0%, #E7590F 100%);
    --navy: #0B1B33;               /* deep corporate navy */
    --navy-2: #10254A;
    --navy-3: #071324;
    --steel: #1E3A5F;
    --light: #F5F7FA;
    --light-2: #EEF2F7;
    --card-bg: #FFFFFF;
    --border: #E4E9F0;
    --ink: #1F2A3D;                /* headings text */
    --body: #47526B;              /* body text */
    --muted: #7A879C;             /* muted text */
    --glass-border: rgba(255, 255, 255, 0.10);
    --shadow-sm: 0 2px 10px rgba(11, 27, 51, 0.05);
    --shadow: 0 12px 34px rgba(11, 27, 51, 0.08);
    --shadow-lg: 0 24px 60px rgba(11, 27, 51, 0.14);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 14px;
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: var(--body);
    font-size: 15px;
    line-height: 1.7;
    overflow-x: hidden;
    letter-spacing: 0.1px;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .btn {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.2px;
}

p { margin-bottom: 1rem; }
a { text-decoration: none; }

/* Tame Bootstrap's oversized display sizes into a refined, professional scale */
.display-3 { font-size: 2.9rem; font-weight: 800; line-height: 1.12; }
.display-4 { font-size: 2.4rem; font-weight: 800; line-height: 1.15; }
.display-5 { font-size: 2rem;   font-weight: 800; line-height: 1.2; }
.display-6 { font-size: 1.7rem; font-weight: 700; line-height: 1.25; }

@media (min-width: 992px) {
    .display-3 { font-size: 3.4rem; }
}

.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.bg-light { background-color: var(--light) !important; }
.text-dark { color: var(--ink) !important; }

/* Consistent section container for aligned margins */
.section { padding: 84px 0; }
.section-sm { padding: 56px 0; }
/* Full-width section container with consistent side gutters */
.container-tight { max-width: 100%; margin: 0 auto; padding-left: 4vw; padding-right: 4vw; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 14px;
}
.section-tag::before {
    content: '';
    width: 26px; height: 2px;
    background: var(--primary);
    display: inline-block;
}
.section-title { /* legacy support */
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
    display: block;
}

.lead-sm { font-size: 15px; color: var(--body); line-height: 1.75; }
.text-sm { font-size: 13.5px; line-height: 1.7; font-weight: 400; }
.text-muted-premium { color: var(--muted) !important; }
.text-muted-light { color: rgba(255, 255, 255, 0.72) !important; }

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar {
    background: var(--navy-3);
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topbar a { color: rgba(255, 255, 255, 0.72); transition: var(--transition); }
.topbar a:hover { color: var(--primary); }
.topbar .topbar-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .topbar-item i { color: var(--primary); font-size: 13px; }
.topbar .social a {
    width: 30px; height: 30px; border-radius: 6px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
}
.topbar .social a:hover { background: var(--primary); color: #fff; }

/* =========================================================
   NAVBAR
   ========================================================= */
.sticky-top { z-index: 1030; }
.nav-wrap {
    background: rgba(11, 27, 51, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}
.navbar { padding-top: 0; padding-bottom: 0; }
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.82);
    padding: 26px 16px !important;
    position: relative;
    transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 18px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active { color: #fff; text-shadow: none; }
.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-dark .navbar-nav .nav-link.dropdown-toggle::after { border: none; content: none; }

.dropdown-menu {
    border: 1px solid var(--border) !important;
    border-radius: 12px !important;
    box-shadow: var(--shadow) !important;
    padding: 8px !important;
    margin-top: 6px !important;
}
.dropdown-item {
    font-size: 14px;
    border-radius: 8px;
    padding: 9px 14px;
    color: var(--body);
    transition: var(--transition);
}
.dropdown-item:hover { background: var(--light); color: var(--primary); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    border-radius: 9px;
    padding: 11px 26px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: var(--transition);
}
.btn-primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 8px 20px rgba(231, 89, 15, 0.28);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(231, 89, 15, 0.4);
    color: #fff;
}
.btn-primary::after { display: none; }
.btn-outline-primary {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.btn-outline-light { border: 1.5px solid rgba(255,255,255,0.5); color: #fff; }
.btn-outline-light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--navy); border: none; color: #fff; }
.btn-dark:hover { background: var(--navy-2); color: #fff; transform: translateY(-2px); }
.rounded-pill { border-radius: 50px !important; }

/* =========================================================
   HERO CAROUSEL
   ========================================================= */
.hero-overlay-premium {
    background: linear-gradient(105deg, rgba(7, 19, 36, 0.92) 0%, rgba(7, 19, 36, 0.72) 45%, rgba(7, 19, 36, 0.4) 100%);
    position: absolute; inset: 0; z-index: 1;
}
.carousel-caption { background: transparent !important; backdrop-filter: none !important; left: 0 !important; right: 0 !important; bottom: 0; padding: 0; }
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
    display: inline-block;
    font-size: 12.5px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    padding: 7px 16px;
    border: 1px solid rgba(231, 89, 15, 0.5);
    border-radius: 50px;
    margin-bottom: 22px;
    background: rgba(231, 89, 15, 0.1);
}
.hero-content h1 { color: #fff; font-weight: 800; line-height: 1.12; }
.hero-stats { border-top: 1px solid rgba(255,255,255,0.14); }
.hero-stats .n { font-family: 'Outfit'; font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stats .l { font-size: 12.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.carousel-control-prev, .carousel-control-next { width: 5%; opacity: 0.55; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; }

/* =========================================================
   TRUST / STATS STRIP
   ========================================================= */
.trust-strip {
    background: var(--navy);
    margin-top: -60px;
    position: relative;
    z-index: 5;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.trust-item {
    padding: 30px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-item:last-child { border-right: none; }
.trust-item .num { font-family: 'Outfit'; font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1; }
.trust-item .num span { color: var(--primary); }
.trust-item .cap { font-size: 12.5px; color: rgba(255,255,255,0.62); text-transform: uppercase; letter-spacing: 1.2px; margin-top: 8px; display: block; }

/* =========================================================
   STAT BOXES (about section)
   ========================================================= */
.stats-box {
    background: var(--navy);
    border-radius: 12px;
    padding: 22px 20px;
    text-align: center;
    color: #fff;
    transition: var(--transition);
}
.stats-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stats-box h2 { font-size: 2.2rem; color: var(--primary); margin-bottom: 4px; font-weight: 800; }
.stats-box p { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin: 0; font-weight: 600; color: rgba(255,255,255,0.75); }

.check-item { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.check-item .tick {
    flex: 0 0 26px; width: 26px; height: 26px;
    border-radius: 7px; background: rgba(231, 89, 15, 0.12);
    color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 11px;
}
.check-item span { font-size: 14px; font-weight: 600; color: var(--ink); }

.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow); }
.about-badge {
    position: absolute; bottom: -22px; left: -22px;
    background: var(--primary); color: #fff;
    padding: 20px 26px; border-radius: 12px;
    box-shadow: var(--shadow); text-align: center;
}
.about-badge .b-num { font-family: 'Outfit'; font-size: 1.9rem; font-weight: 800; line-height: 1; color: #fff; }
.about-badge .b-cap { font-size: 12px; letter-spacing: 0.5px; }

/* =========================================================
   SERVICE / INDUSTRY CARDS
   ========================================================= */
.service-card-premium {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.service-card-premium::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
    background: var(--primary);
    transform: scaleY(0); transform-origin: top;
    transition: var(--transition);
}
.service-card-premium:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card-premium:hover::before { transform: scaleY(1); }
.service-icon-box {
    width: 58px; height: 58px;
    background: var(--light);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.service-card-premium:hover .service-icon-box { background: var(--primary); }
.service-icon-box i { font-size: 24px; color: var(--primary); transition: var(--transition); }
.service-card-premium:hover .service-icon-box i { color: #fff; }
.service-card-premium h4 { font-size: 18px; margin-bottom: 10px; }
.service-card-premium p { font-size: 13.5px; color: var(--muted); margin-bottom: 0; line-height: 1.65; }

/* =========================================================
   WHY CHOOSE US (feature row with image)
   ========================================================= */
.feature-panel {
    background: var(--navy);
    border-radius: var(--radius);
    overflow: hidden;
    color: #fff;
}
.feature-list-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.feature-list-item:last-child { border-bottom: none; }
.feature-list-item .fi-icon {
    flex: 0 0 46px; width: 46px; height: 46px; border-radius: 10px;
    background: rgba(231, 89, 15, 0.15); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.feature-list-item h5 { color: #fff; font-size: 16px; margin-bottom: 4px; }
.feature-list-item p { color: rgba(255,255,255,0.62); font-size: 13px; margin: 0; line-height: 1.6; }

/* =========================================================
   PROCESS / HOW IT WORKS
   ========================================================= */
.process-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px 26px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}
.process-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.process-num {
    position: absolute; top: 22px; right: 22px;
    font-family: 'Outfit'; font-size: 2.4rem; font-weight: 800;
    color: var(--light-2); line-height: 1;
}
.process-card .pc-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--primary-gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: 18px;
}
.process-card h5 { font-size: 16px; margin-bottom: 8px; }
.process-card p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* =========================================================
   COUNTRIES / GLOBAL REACH
   ========================================================= */
.country-chip {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 10px 22px 10px 12px;
    display: inline-flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 600; color: var(--ink);
    transition: var(--transition);
}
.country-chip:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.country-chip .flag {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--light); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 13px;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 28px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card .quote-mark { font-family: 'Outfit'; font-size: 3rem; line-height: 0.6; color: var(--primary); opacity: 0.25; }
.testimonial-card p { font-size: 14px; color: var(--body); font-style: italic; line-height: 1.75; }
.testimonial-card .stars { color: #F5A623; font-size: 13px; letter-spacing: 2px; margin-bottom: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--border); }
.testimonial-author .ta-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary-gradient); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit'; font-weight: 700; font-size: 16px;
}
.testimonial-author h6 { margin: 0; font-size: 14px; }
.testimonial-author span { font-size: 12.5px; color: var(--muted); }

/* =========================================================
   JOB / VACANCY CARDS
   ========================================================= */
.job-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}
.job-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.job-card-img-wrapper { position: relative; overflow: hidden; aspect-ratio: 4 / 3; cursor: pointer; }
.job-card-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.job-card:hover .job-card-img { transform: scale(1.06); }
.job-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,27,51,0) 0%, rgba(11,27,51,0.75) 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition);
}
.job-card-img-wrapper:hover .job-card-overlay { opacity: 1; }
.job-card-overlay .btn-apply { transform: scale(0.9); transition: var(--transition); }
.job-card-img-wrapper:hover .job-card-overlay .btn-apply { transform: scale(1); }

/* =========================================================
   SPLIT CONTACT / CALLBACK CARD
   ========================================================= */
.split-contact-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-wrap: wrap;
    border: 1px solid var(--border);
}
.split-left {
    background: var(--navy);
    color: #fff;
    padding: 50px 44px;
    position: relative;
    background-image: linear-gradient(135deg, rgba(11,27,51,0.96), rgba(11,27,51,0.88)), url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=900&q=80');
    background-size: cover; background-position: center;
}
.split-right { background: #fff; padding: 50px 44px; }
.split-contact-card .form-control { background: var(--light) !important; border: 1px solid var(--border) !important; font-size: 14px; }
.split-contact-card .form-control:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 3px rgba(231,89,15,0.12) !important; background: #fff !important; }
.split-contact-card label { color: var(--ink); }
.contact-mini { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.contact-mini .cm-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: rgba(231, 89, 15, 0.18); color: var(--primary);
    display: flex; align-items: center; justify-content: center; font-size: 16px; flex: 0 0 44px;
}
.contact-mini h6 { color: #fff; margin: 0 0 2px; font-size: 13px; }
.contact-mini span { color: rgba(255,255,255,0.7); font-size: 13.5px; }

/* =========================================================
   FORMS (general)
   ========================================================= */
.form-control, .form-select {
    font-size: 14px;
    border-radius: 9px;
    border: 1px solid var(--border);
    padding: 11px 16px;
    color: var(--ink);
}
.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231, 89, 15, 0.12);
}
.form-control::placeholder { color: #9aa6b8; }
.contact-form { border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
label { font-size: 13.5px; font-weight: 600; color: var(--ink); }

/* AJAX form feedback banners */
.ajax-alert { padding: 12px 16px; border-radius: 9px; font-size: 13.5px; font-weight: 500; border: 1px solid transparent; }
.ajax-alert-success { background: #E7F6EC; color: #1B7A43; border-color: #B7E4C7; }
.ajax-alert-error { background: #FDECEC; color: #C0392B; border-color: #F5C2C0; }

/* =========================================================
   PAGE HEADER (inner pages)
   ========================================================= */
.page-header {
    padding: 90px 0 !important;
    background: linear-gradient(rgba(7, 19, 36, 0.86), rgba(7, 19, 36, 0.9)),
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center center no-repeat;
    background-size: cover;
    text-align: center;
    position: relative;
    border-bottom: 3px solid var(--primary);
}
.page-header h1 { color: #fff; font-weight: 800; margin-bottom: 14px !important; }
.page-header .display-3 { font-size: 2.6rem; }
.page-header h6, .page-header h6 a { color: rgba(255,255,255,0.75) !important; font-family: 'Outfit'; font-weight: 500; font-size: 13px; letter-spacing: 1px; }
.page-header h6 a:hover { color: var(--primary) !important; }
.page-header .d-inline-flex { justify-content: center; }

/* Inner pages: full width with consistent side gutters + proper vertical rhythm
   (py-6 is not a Bootstrap class, so its vertical padding must be defined here) */
.container-fluid.py-6 { max-width: 100%; padding: 80px 4vw !important; }
.container-fluid.py-3 { max-width: 100%; padding: 44px 4vw !important; }
.page-body h2, .page-body h3 { color: var(--ink); font-weight: 700; }
.page-body h2 { font-size: 1.55rem; margin-top: 2rem; }
.page-body h3 { font-size: 1.3rem; }
.page-body h5 { font-size: 1.05rem; color: var(--ink); }
.page-body p, .page-body li { font-size: 14.5px; color: var(--body); line-height: 1.8; }
.page-body ul { padding-left: 1.1rem; }
.page-body ul li { margin-bottom: 6px; }

/* =========================================================
   GALLERY / PORTFOLIO
   ========================================================= */
.portfolio-box { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.portfolio-box img { border-radius: var(--radius); transition: var(--transition); width: 100%; height: 100%; object-fit: cover; }
.portfolio-box:hover img { transform: scale(1.06); }
.portfolio-container img { border-radius: var(--radius); transition: var(--transition); }
.portfolio-title {
    position: absolute; left: 20px; bottom: 20px; z-index: 3;
    background: rgba(255,255,255,0.95); padding: 8px 16px; border-radius: 8px;
}
.portfolio-title p { margin: 0; font-size: 12.5px; color: var(--ink); font-weight: 700; }
.portfolio-btn {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.8);
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--primary); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); z-index: 3;
}
.portfolio-box:hover .portfolio-btn { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.portfolio-btn i { font-size: 22px; }

/* =========================================================
   MODALS
   ========================================================= */
.modal-content-premium {
    background: var(--navy);
    color: #fff;
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
}
.modal-header-premium { border-bottom: 1px solid var(--glass-border); padding: 22px 28px; }
/* Heading sits on the dark modal background — force light text for contrast */
.modal-content-premium h1, .modal-content-premium h2, .modal-content-premium h3,
.modal-content-premium h4, .modal-content-premium h5, .modal-content-premium .modal-title { color: #fff; }
.modal-body-premium { padding: 28px; }
.modal-content-premium .form-control {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--glass-border);
    color: #fff; border-radius: 9px; font-size: 14px;
}
.modal-content-premium .form-control:focus { background: rgba(255,255,255,0.1); border-color: var(--primary); box-shadow: 0 0 0 3px rgba(231,89,15,0.2); color: #fff; }
.modal-content-premium label { font-weight: 500; margin-bottom: 7px; color: #E2E8F0; font-size: 13px; }
.custom-choice-btn { display: flex; gap: 12px; margin-top: 5px; }
.custom-choice-btn input[type="radio"] { display: none; }
.custom-choice-btn label {
    flex: 1; text-align: center; padding: 10px; margin: 0;
    background: rgba(255, 255, 255, 0.05); border: 1px solid var(--glass-border);
    border-radius: 8px; cursor: pointer; transition: var(--transition); color: #cbd5e1;
}
.custom-choice-btn input[type="radio"]:checked + label { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: var(--navy-3) !important;
    border-top: 3px solid var(--primary);
    color: rgba(255, 255, 255, 0.62);
    padding: 70px 0 !important;
}
.footer p { font-size: 13.5px; line-height: 1.8; }
.footer h4, .footer h5 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.footer h4::after, .footer h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 34px; height: 2px; background: var(--primary); }
.footer a.text-white-50 { font-size: 13.5px; transition: var(--transition); }
.footer a.text-white-50:hover { color: var(--primary) !important; padding-left: 4px; }
.footer .contact-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer .contact-line i { color: var(--primary); margin-top: 4px; }
.btn-lg-square { width: 42px; height: 42px; display: inline-flex; align-items: center; justify-content: center; border-radius: 8px !important; }
.footer .input-group .form-control { border-radius: 8px 0 0 8px; }
.footer .input-group .btn { border-radius: 0 8px 8px 0; }

/* Back to top */
.back-to-top {
    position: fixed; display: none; right: 28px; bottom: 28px; z-index: 99;
    width: 46px; height: 46px; border-radius: 10px !important;
    display: flex !important; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(231, 89, 15, 0.35);
}

/* =========================================================
   ADMIN POLISH (unchanged behavior)
   ========================================================= */
.sidebar { background: #fff !important; box-shadow: 4px 0 20px rgba(0,0,0,0.03); }
.sidebar .navbar-brand h3 { font-weight: 700; color: var(--navy) !important; }
.content { background: var(--light); }
.bg-light.rounded { border-radius: var(--radius) !important; border: 1px solid var(--border); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
    .navbar-dark .navbar-nav .nav-link { padding: 12px 0 !important; }
    .navbar-dark .navbar-nav .nav-link::after { display: none; }
    .nav-wrap { background: var(--navy); }
    .trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .split-left, .split-right { padding: 40px 28px; }
    .section { padding: 60px 0; }
    .about-badge { left: 0; }
}
@media (max-width: 575.98px) {
    .display-3 { font-size: 2.1rem; }
    .trust-strip { margin-top: -30px; }
}
