:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #2563eb;
    --accent-orange: #f97316;
    --orange-hover: #ea580c;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-top-bar: #0f172a;
    --bg-light: #f8fafc;
    --border-light: #e2e8f0;
    --card-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    --dark-bg: #0b1329;
    --dark-card-bg: #152243;
    --dark-border: #233560;
    --dark-text-main: #f8fafc;
    --dark-text-muted: #94a3b8;
    --dark-icon-bg: #1e3a8a;
    --transition: all 0.25s ease;

    --primary: #1e3a8a;
    --primary-dark: #172554;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --secondary: #6c757d;
    --success: #16a34a;
    --danger: #dc2626;
    --warning: #f59e0b;
    --info: #0ea5e9;
    --light: #f8f9fa;
    --dark: #0b1329;
    --body-bg: #f8fafc;
    --border-color: #e2e8f0;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --radius: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; background: var(--body-bg); color: var(--text-main); line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: var(--primary-blue); transition: all 0.2s; }
a:hover { color: var(--secondary-blue); }

/* =======================================================
   HEADER & NAVIGATION (SCOPED UNDER .site-header)
   ======================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}
.site-header .top-bar {
    background-color: var(--bg-top-bar);
    color: #94a3b8;
    padding: 6px 5%;
    font-size: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.site-header .top-bar-left { display: flex; gap: 20px; }
.site-header .top-bar-left span { display: inline-flex; align-items: center; gap: 6px; }
.site-header .top-bar-left a { color: #cbd5e1; transition: color 0.2s; }
.site-header .top-bar-left a:hover { color: #ffffff; }
.site-header .top-bar-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.site-header .top-bar-right a { color: #cbd5e1; text-decoration: none; transition: color 0.2s; }
.site-header .top-bar-right a:hover { color: #ffffff; }

.site-header .navbar {
    position: relative;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    gap: 16px;
}
.site-header .nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.site-header .mobile-menu-btn {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    background: #ffffff;
    color: var(--primary-blue);
    font-size: 16px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.site-header .mobile-menu-btn:hover { background: #eff6ff; border-color: var(--secondary-blue); }

.site-header .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.site-header .brand-logo-image { display: block; width: 184px; height: auto; max-height: 58px; object-fit: contain; }
.site-header .logo-icon { font-size: 26px; color: var(--primary-blue); }
.site-header .logo-text { display: flex; flex-direction: column; }
.site-header .logo-title { font-size: 21px; font-weight: 800; color: var(--primary-blue); line-height: 1.1; letter-spacing: -0.02em; }
.site-header .logo-subtitle { font-size: 11px; color: var(--text-muted); font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }

.site-header .nav-links { display: flex; list-style: none; gap: 6px; align-items: center; }
.site-header .nav-item { position: relative; }
.site-header .nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 14.5px;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}
.site-header .nav-link:hover, .site-header .nav-item:hover > .nav-link { color: var(--secondary-blue); background-color: #f1f5f9; }
.site-header .nav-link.active { color: var(--primary-blue); background-color: #eff6ff; }
.site-header .nav-link i { font-size: 12px; }
.site-header .nav-link i.fa-chevron-down { font-size: 9px; }

.site-header .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1001;
}
.site-header .nav-item:hover .dropdown-menu,
.site-header .nav-item:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); display: block; }
.site-header .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.15s;
}
.site-header .dropdown-menu a i { font-size: 12px; color: var(--secondary-blue); width: 16px; text-align: center; }
.site-header .dropdown-menu a span { flex: 1; }
.site-header .dropdown-menu a:hover { background-color: #f8fafc; color: var(--secondary-blue); }

.site-header .btn-orange {
    background-color: var(--accent-orange);
    color: #ffffff;
    border: none;
    padding: 9px 18px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: var(--transition);
}
.site-header .btn-orange:hover { background-color: var(--orange-hover); color: #fff; transform: translateY(-1px); }

/* =======================================================
   HERO SECTION & STATS BAR
   ======================================================= */
.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0b1329 0%, #12224b 45%, #1e3a8a 100%);
    background-size: 200% 200%;
    animation: heroGradientShift 16s ease-in-out infinite;
    padding: 64px 5% 60px;
    border-bottom: 1px solid var(--dark-border);
}
@keyframes heroGradientShift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.hero-glow.glow-1 { width: 430px; height: 430px; background: rgba(249, 115, 22, 0.20); top: -140px; right: -90px; animation: glowFloat 9s ease-in-out infinite; }
.hero-glow.glow-2 { width: 380px; height: 380px; background: rgba(37, 99, 235, 0.30); bottom: -150px; left: -110px; animation: glowFloat 12s ease-in-out infinite reverse; }
.hero-glow.glow-3 { width: 220px; height: 220px; background: rgba(249, 115, 22, 0.12); top: 40%; left: 55%; animation: glowFloat 14s ease-in-out 2s infinite; }
@keyframes glowFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-30px) scale(1.08); }
}
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 24px;
    align-items: center;
}
.hero-badge {
    background-color: rgba(255, 255, 255, 0.08);
    color: #c7d2fe;
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(4px);
}
.hero-title { font-size: clamp(23.8px, 3.15vw, 36.4px); font-weight: 800; line-height: 1.18; color: #ffffff; margin-bottom: 14px; letter-spacing: -0.015em; }
.hero-title span { color: var(--accent-orange); }
.hero-description { font-size: 16px; color: #c7d2fe; margin-bottom: 28px; max-width: 520px; line-height: 1.65; }
.hero-caret {
    display: inline-block;
    width: 3px;
    height: 0.95em;
    background: var(--accent-orange);
    margin-left: 5px;
    vertical-align: -0.12em;
    border-radius: 2px;
    animation: caretBlink 0.95s steps(2, start) infinite;
}
@keyframes caretBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.search-container {
    background: #ffffff;
    padding: 6px;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    display: flex;
    align-items: center;
    max-width: 580px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
}
.search-input-group { display: flex; align-items: center; padding: 0 12px; flex: 1; }
.search-input-group i { color: var(--secondary-blue); margin-right: 8px; font-size: 15px; }
.search-input-group input, .search-input-group select { border: none; outline: none; width: 100%; font-size: 14px; color: var(--text-main); background: transparent; font-family: inherit; }
.divider { height: 24px; width: 1px; background-color: var(--border-light); flex-shrink: 0; }
.btn-search {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 11px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: inherit;
}
.btn-search:hover { background-color: var(--orange-hover); }

.hero-features-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 600px; }
.hero-feature-item { display: flex; align-items: center; gap: 8px; }
.hero-feature-icon { width: 34px; height: 34px; border-radius: 50%; background-color: rgba(255, 255, 255, 0.10); color: #f8fafc; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.hero-feature-text h4 { font-size: 14px; font-weight: 700; color: #ffffff; line-height: 1.2; }
.hero-feature-text p { font-size: 12px; color: #94a3b8; line-height: 1.2; }

.hero-visual { position: relative; display: flex; justify-content: flex-end; align-items: center; }
.graphic-frame { position: relative; width: 100%; max-width: 420px; }
.hero-art {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background: linear-gradient(160deg, #1c2d5e 0%, #101d42 55%, #0b1329 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
    animation: heroArtFloat 5s ease-in-out infinite;
}
@keyframes heroArtFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
.hero-art img { width: 101.4%; max-width: 380px; height: auto; display: block; object-fit: contain; filter: drop-shadow(0 0 24px rgba(249, 115, 22, 0.38)); animation: heroIconPulse 3.2s ease-in-out infinite; }
@keyframes heroIconPulse {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50%      { transform: scale(1.06); opacity: 1; }
}
.hero-art .hero-art-score {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #ffffff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(30, 58, 138, 0.15);
    color: var(--accent-orange);
    font-size: 20px;
}
.category-menu { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; gap: 8px; }
.cat-item {
    background: #ffffff;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 13px;
    width: 168px;
    justify-content: space-between;
    transition: var(--transition);
}
.cat-item:hover { transform: translateX(-4px); border-color: var(--secondary-blue); color: var(--secondary-blue); }
.cat-item-left { display: flex; align-items: center; gap: 8px; }
.cat-item i.icon { color: var(--accent-orange); font-size: 13px; }
.cat-item i.arrow { font-size: 10px; color: #94a3b8; }
.expert-tag {
    position: absolute;
    bottom: 12px;
    right: 160px;
    z-index: 3;
    color: var(--primary-blue);
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    pointer-events: none;
    background: rgba(255,255,255,0.9);
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: var(--card-shadow);
}

.stats-bar { background: #ffffff; padding: 20px 5%; border-bottom: 1px solid var(--border-light); }
.stats-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats-bar .stat-box { display: flex; align-items: center; gap: 12px; justify-content: center; border-right: 1px solid var(--border-light); }
.stats-bar .stat-box:last-child { border-right: none; }
.stats-bar .stat-icon { width: 38px; height: 38px; background-color: #eff6ff; color: var(--primary-blue); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.stats-bar .stat-info h3 { font-size: 26px; font-weight: 800; color: var(--primary-blue); line-height: 1.1; }
.stats-bar .stat-info p { font-size: 13px; color: var(--text-muted); font-weight: 500; line-height: 1.3; }

/* Section scaffolding */
.section-container { max-width: 1200px; margin: 0 auto; }
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}
.section-title { font-size: clamp(26px, 3vw, 34px); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.015em; line-height: 1.2; }
.section-subtitle { font-size: 16px; margin-bottom: 36px; max-width: 600px; line-height: 1.65; color: var(--text-muted); }

/* =======================================================
   SECTION 1: HOW IT WORKS (DARK BACKGROUND)
   ======================================================= */
.how-it-works { padding: 60px 5%; background-color: var(--dark-bg); color: var(--dark-text-main); }
.how-it-works .section-badge { background-color: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.3); }
.how-it-works .section-title { color: #ffffff; }
.how-it-works .section-subtitle { color: var(--dark-text-muted); }

.steps-wrapper { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 30px; align-items: center; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; position: relative; }
.step-card { background: var(--dark-card-bg); border: 1px solid var(--dark-border); border-radius: 10px; padding: 20px 14px; position: relative; transition: var(--transition); }
.step-card:hover { transform: translateY(-4px); border-color: var(--secondary-blue); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.step-icon-wrapper { width: 38px; height: 38px; background-color: var(--dark-icon-bg); color: #93c5fd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; margin-bottom: 14px; }
.step-header { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.step-number { width: 24px; height: 24px; background-color: var(--accent-orange); color: #ffffff; font-size: 12.5px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-title { font-size: 15px; font-weight: 700; color: #ffffff; }
.step-desc { font-size: 13px; color: var(--dark-text-muted); line-height: 1.5; }
.step-arrow { position: absolute; right: -12px; top: 40%; transform: translateY(-50%); color: var(--dark-border); font-size: 12px; z-index: 2; }

.how-it-works-visual { position: relative; display: flex; justify-content: center; }
.pro-card-visual { position: relative; width: 100%; max-width: 300px; text-align: center; }
.pro-avatar {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background: linear-gradient(160deg, var(--dark-card-bg) 0%, #1e3a8a 100%);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
    position: relative;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
}
.pro-avatar-image {
    width: 118%;
    max-width: 340px;
    height: auto;
    object-fit: contain;
    display: block;
    position: absolute;
    left: 50%;
    bottom: -68px;
    transform: translate(-50%, -12%);
}
.verified-badge-card {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--dark-card-bg);
    border: 1px solid var(--dark-border);
    padding: 8px 12px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}
.verified-badge-card i { color: var(--accent-orange); font-size: 16px; }
.verified-badge-card div h5 { font-size: 13px; font-weight: 700; color: #ffffff; }
.verified-badge-card div p { font-size: 11px; color: var(--dark-text-muted); }

/* =======================================================
   SECTION 2: POPULAR CATEGORIES (LIGHT BACKGROUND)
   ======================================================= */
.categories-section { padding: 60px 5%; background-color: var(--bg-light); border-top: 1px solid var(--border-light); border-bottom: 1px solid var(--border-light); }
.categories-section .section-badge { background-color: #dbeafe; color: var(--primary-blue); }
.categories-section .section-title { color: var(--primary-blue); }
.categories-section .section-subtitle { color: var(--text-muted); }

.categories-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; gap: 14px; }
.view-all-link { color: var(--accent-orange); font-weight: 700; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.view-all-link:hover { color: var(--orange-hover); transform: translateX(2px); }

.categories-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.category-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--card-shadow);
}
.category-card:hover { border-color: var(--secondary-blue); transform: translateY(-2px); }
.cat-info { display: flex; align-items: center; gap: 10px; }
.cat-icon-box { width: 32px; height: 32px; border-radius: 6px; background-color: #eff6ff; color: var(--secondary-blue); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.cat-text h4 { font-size: 14px; font-weight: 700; color: var(--text-main); line-height: 1.2; }
.cat-text p { font-size: 12px; color: var(--text-muted); line-height: 1.2; }
.cat-arrow { font-size: 11px; color: #94a3b8; margin-left: 4px; }

.cta-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1e40af 100%);
    border-radius: 10px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(30, 58, 138, 0.15);
}
.cta-left { display: flex; align-items: center; gap: 16px; }
.cta-icon { width: 42px; height: 42px; background: rgba(255, 255, 255, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.cta-text h3 { font-size: 20px; font-weight: 800; line-height: 1.2; }
.cta-text p { font-size: 13px; color: #93c5fd; }
.btn-cta {
    background-color: var(--accent-orange);
    color: #ffffff;
    border: none;
    padding: 11px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}
.btn-cta:hover { background-color: var(--orange-hover); color: #fff; transform: translateY(-1px); }

/* =======================================================
   SECTION 3: WHY CHOOSE US (DARK BACKGROUND)
   ======================================================= */
.why-choose-us { padding: 60px 5%; background-color: var(--dark-bg); color: var(--dark-text-main); }
.why-choose-us .section-badge { background-color: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.3); }
.why-choose-us .section-title { color: #ffffff; }
.why-choose-us .section-title span { color: var(--accent-orange); }
.why-choose-us .section-subtitle { color: var(--dark-text-muted); }

.why-wrapper { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 35px; align-items: center; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { background: var(--dark-card-bg); border: 1px solid var(--dark-border); border-radius: 10px; padding: 20px 16px; transition: var(--transition); }
.feature-card:hover { transform: translateY(-4px); border-color: var(--secondary-blue); box-shadow: 0 10px 20px rgba(0,0,0,0.3); }
.feature-icon-wrapper { width: 38px; height: 38px; background-color: var(--dark-icon-bg); color: #93c5fd; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 15px; margin-bottom: 14px; }
.feature-card-title { font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 6px; }
.feature-card-desc { font-size: 13px; color: var(--dark-text-muted); line-height: 1.55; }

.visual-container { position: relative; display: flex; justify-content: center; align-items: center; }
.trust-badges-stack { position: absolute; right: -10px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 3; }
.badge-pill { background: var(--dark-card-bg); border: 1px solid var(--dark-border); padding: 8px 12px; border-radius: 8px; box-shadow: 0 8px 16px rgba(0,0,0,0.3); display: flex; align-items: center; gap: 10px; width: 160px; transition: var(--transition); }
.badge-pill:hover { transform: translateX(-4px); border-color: var(--secondary-blue); }
.badge-icon { width: 28px; height: 28px; border-radius: 50%; background-color: var(--dark-icon-bg); color: #93c5fd; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.badge-text h5 { font-size: 13px; font-weight: 700; color: #ffffff; line-height: 1.1; }
.badge-text p { font-size: 11px; color: var(--dark-text-muted); }

.bottom-banner {
    margin-top: 40px;
    background: linear-gradient(135deg, var(--dark-card-bg) 0%, #1e3a8a 100%);
    border: 1px solid var(--dark-border);
    border-radius: 10px;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    gap: 20px;
    flex-wrap: wrap;
}
.banner-left { max-width: 480px; }
.banner-badge { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--accent-orange); font-weight: 700; margin-bottom: 4px; }
.banner-title { font-size: 20px; font-weight: 800; line-height: 1.25; margin-bottom: 6px; }
.banner-subtitle { font-size: 13px; color: var(--dark-text-muted); line-height: 1.5; }
.banner-icons-group { display: flex; align-items: center; gap: 16px; }
.icon-item { display: flex; flex-direction: column; align-items: center; gap: 6px; color: #ffffff; text-decoration: none; transition: var(--transition); }
.icon-item:hover { transform: translateY(-2px); color: #ffffff; }
.icon-item:hover .icon-circle { background-color: var(--accent-orange); color: #ffffff; }
.icon-circle { width: 42px; height: 42px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.1); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: var(--transition); }
.icon-label { font-size: 11.5px; font-weight: 600; color: var(--dark-text-muted); }
.btn-banner {
    background-color: var(--accent-orange);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    font-family: inherit;
}
.btn-banner:hover { background-color: var(--orange-hover); color: #fff; transform: translateY(-1px); }

/* =======================================================
   SECTION 4: FEATURED PROFESSIONALS (LIGHT BACKGROUND)
   ======================================================= */
.professionals-section { padding: 60px 5%; background-color: #ffffff; }
.professionals-section .section-badge { background-color: #dbeafe; color: var(--primary-blue); }
.professionals-section .section-title { color: var(--primary-blue); }
.professionals-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; gap: 14px; }

.pro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pro-listing-card { background: #ffffff; border: 1px solid var(--border-light); border-radius: 10px; overflow: hidden; box-shadow: var(--card-shadow); transition: var(--transition); }
.pro-listing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1); }
.pro-listing-photo { height: 170px; position: relative; overflow: hidden; background: #eef2f7; display: flex; align-items: center; justify-content: center; }
.pro-listing-photo img { width: 100%; height: 100%; object-fit: cover; }
.pro-listing-photo .pro-photo-icon { font-size: 64px; color: var(--secondary-blue); opacity: 0.85; }
.pro-listing-verified { position: absolute; top: 10px; left: 10px; background: #ffffff; border-radius: 16px; padding: 4px 10px; font-size: 11px; font-weight: 700; color: #166534; display: flex; align-items: center; gap: 4px; }
.pro-listing-like { position: absolute; right: 10px; top: 10px; width: 28px; height: 28px; border: 0; border-radius: 50%; background: #ffffff; color: var(--text-muted); cursor: pointer; }
.pro-listing-body { padding: 16px; }
.pro-listing-title { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 6px; }
.pro-listing-title h3 { font-size: 15px; font-weight: 800; color: var(--primary-blue); }
.pro-listing-title small { display: block; font-size: 12px; color: var(--text-muted); margin-top: 2px; font-weight: 500; }
.pro-listing-rating { font-size: 12.5px; font-weight: 800; white-space: nowrap; color: var(--text-main); }
.pro-listing-rating i { color: #f59e0b; margin-right: 3px; }
.pro-listing-location { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; }
.pro-listing-location i { color: var(--secondary-blue); margin-right: 4px; }
.pro-listing-footer { border-top: 1px solid var(--border-light); padding-top: 12px; display: flex; justify-content: space-between; align-items: center; }
.pro-listing-footer b { font-size: 13px; color: var(--primary-blue); }

/* =======================================================
   SECTION 5: SERVICE LOCATIONS (DARK BACKGROUND / COUNTRIES)
   ======================================================= */
.locations-section { padding: 60px 5%; background-color: var(--dark-bg); color: var(--dark-text-main); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.locations-section .section-badge { background-color: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.3); margin-left: auto; margin-right: auto; }
.locations-section .section-title { color: #ffffff; }
.locations-section .section-subtitle { color: var(--dark-text-muted); }
.locations-header { text-align: center; display: flex; flex-direction: column; align-items: center; }
.locations-header .section-subtitle { margin-left: auto; margin-right: auto; }

.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.country-card {
    background: var(--dark-card-bg);
    border: 1px solid var(--dark-border);
    border-radius: 8px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: var(--transition);
}
.country-card:hover { transform: translateY(-2px); border-color: #3b5bb0; background: #182a58; }
.country-flag { width: 38px; height: 38px; background-color: rgba(37, 99, 235, 0.18); color: #60a5fa; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.country-card b { display: block; font-size: 15px; font-weight: 700; color: #f8fafc; }
.country-card small { display: block; font-size: 12.5px; color: var(--dark-text-muted); }
.country-card > i { margin-left: auto; font-size: 12px; color: #64748b; }

/* =======================================================
   SECTION 6: CUSTOMER REVIEWS (WHITE BACKGROUND)
   ======================================================= */
.reviews-section { padding: 60px 5%; background-color: #ffffff; }
.reviews-section .section-badge { background-color: #dbeafe; color: var(--primary-blue); }
.reviews-section .section-title { color: var(--primary-blue); }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card { border: 1px solid var(--border-light); border-radius: 10px; padding: 22px; background: var(--bg-light); box-shadow: var(--card-shadow); }
.review-stars { color: #f59e0b; font-size: 13px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.reviewer-row { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border-light); padding-top: 14px; }
.reviewer-avatar { width: 34px; height: 34px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.reviewer-avatar-placeholder {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reviewer-row b { font-size: 13px; font-weight: 700; color: var(--text-main); display: block; }
.reviewer-row b a { color: var(--text-main); }
.reviewer-row b a:hover { color: var(--secondary-blue); }
.reviewer-row span { font-size: 11.5px; color: var(--text-muted); }

/* =======================================================
   SECTION 7: BLOG / HOME GUIDES (DARK BACKGROUND)
   ======================================================= */
.blog-section { padding: 60px 5%; background-color: var(--dark-bg); color: var(--dark-text-main); border-top: 1px solid var(--dark-border); border-bottom: 1px solid var(--dark-border); }
.blog-section .section-badge { background-color: rgba(37, 99, 235, 0.2); color: #60a5fa; border: 1px solid rgba(96, 165, 250, 0.3); }
.blog-section .section-title { color: #ffffff; }
.blog-section .section-subtitle { color: var(--dark-text-muted); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.blog-card { border: 1px solid var(--dark-border); border-radius: 10px; overflow: hidden; background: var(--dark-card-bg); box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); transition: var(--transition); display: block; text-decoration: none; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35); border-color: #3b5bb0; }
.blog-card .blog-card-image { width: 100%; height: 150px; object-fit: cover; display: block; background: #eef2f7; }
.blog-card-image { position: relative; height: 150px; display: flex; align-items: center; justify-content: center; background: #152243; }
.blog-card-image i { font-size: 44px; color: #60a5fa; opacity: 0.85; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.blog-card-body { padding: 16px; }
.blog-category { font-size: 11px; font-weight: 800; color: #60a5fa; letter-spacing: 0.5px; text-transform: uppercase; }
.blog-card h3 { font-size: 15px; font-weight: 800; line-height: 1.35; margin: 6px 0; color: #f8fafc; }
.blog-card h3 a { color: #f8fafc; }
.blog-card h3 a:hover { color: #93c5fd; }
.blog-card p { font-size: 13px; color: var(--dark-text-muted); margin-bottom: 12px; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-read-more { font-size: 12.5px; font-weight: 700; color: var(--accent-orange); display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.blog-read-more:hover { color: var(--orange-hover); }
.blog-meta { font-size: 12px; color: #94a3b8; display: flex; gap: 12px; }

/* =======================================================
   SECTION 8: FAQ (WHITE BACKGROUND)
   ======================================================= */
.faq-section { padding: 60px 5%; background-color: #ffffff; }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 45px; }
.faq-section .section-badge { background-color: #dbeafe; color: var(--primary-blue); }
.faq-list details { border-bottom: 1px solid var(--border-light); padding: 14px 0; }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 14.5px; font-weight: 700; color: var(--primary-blue); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { font-size: 12px; color: var(--text-muted); transition: var(--transition); flex-shrink: 0; }
.faq-list details[open] summary i { transform: rotate(45deg); color: var(--accent-orange); }
.faq-list p { font-size: 13.5px; color: var(--text-muted); padding-top: 10px; line-height: 1.65; }
.btn-outline-faq {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 6px;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    background: #ffffff;
    font-family: inherit;
}
.btn-outline-faq:hover { border-color: var(--secondary-blue); color: var(--secondary-blue); background-color: #eff6ff; }

/* =======================================================
   FINAL CTA BANNER
   ======================================================= */
.final-cta { background: linear-gradient(160deg, #0b1329 0%, #152243 55%, #0f172a 100%); color: #ffffff; padding: 50px 5%; }
.final-cta-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.final-cta h2 { font-size: 28px; font-weight: 800; color: #ffffff; }
.final-cta p { font-size: 14.5px; color: #cbd5e1; margin-top: 4px; }
.final-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-cta-white { background: #ffffff; color: var(--primary-blue); }
.btn-cta-white:hover { background: #eff6ff; color: var(--primary-blue); }

/* =======================================================
   FOOTER (SCOPED UNDER .site-footer)
   ======================================================= */
.site-footer {
    position: relative;
    background-color: #0b1329;
    background-image: linear-gradient(rgba(11, 19, 41, 0.52), rgba(11, 19, 41, 0.52)), url('../images/footer.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #94a3b8;
    font-size: 12px;
    margin-top: 0;
    padding-top: 0;
}
.site-footer .footer-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.site-footer .newsletter-row {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.site-footer .newsletter-row h3 { font-size: 20px; color: #ffffff; font-weight: 800; }
.site-footer .newsletter-row p { color: #64748b; font-size: 13px; margin-top: 3px; }
.site-footer .newsletter-form { display: flex; background: #152243; border: 1px solid var(--dark-border); border-radius: 8px; padding: 4px; width: 380px; max-width: 100%; }
.site-footer .newsletter-form input { background: transparent; border: 0; outline: 0; color: #ffffff; padding: 9px 12px; flex: 1; font-size: 13.5px; font-family: inherit; }
.site-footer .newsletter-form input::placeholder { color: #64748b; }
.site-footer .newsletter-form button { border: 0; background: var(--accent-orange); color: #ffffff; border-radius: 6px; padding: 9px 16px; font-weight: 700; font-size: 13.5px; cursor: pointer; font-family: inherit; }

.site-footer .footer-columns { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 24px; padding: 40px 0; }
.site-footer .footer-brand-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.site-footer .footer-brand-image { display: block; width: 205px; height: auto; max-height: 76px; object-fit: contain; filter: brightness(0) invert(1); }
.site-footer .footer-brand-logo .logo-icon { color: #93c5fd; font-size: 24px; }
.site-footer .footer-brand-logo .logo-title { color: #ffffff; font-size: 18px; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
.site-footer .footer-brand-logo .logo-subtitle { font-size: 11px; color: #94a3b8; font-weight: 600; letter-spacing: 0.3px; text-transform: uppercase; }
.site-footer p.footer-desc { font-size: 13px; color: #64748b; margin: 10px 0; max-width: 270px; line-height: 1.65; }
.site-footer .footer-col .footer-socials { display: flex; gap: 10px; margin-top: 14px; }
.site-footer .footer-col .footer-socials a { width: 38px; height: 38px; margin: 0; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #a5b4fc; text-decoration: none; transition: var(--transition); font-size: 15px; background: rgba(255, 255, 255, 0.05); line-height: 1; }
.site-footer .footer-col .footer-socials a:hover { transform: translateY(-3px); color: #ffffff; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35); }
.site-footer .footer-col .footer-socials a[aria-label="Facebook"]:hover { background: #1877f2; border-color: #1877f2; }
.site-footer .footer-col .footer-socials a[aria-label="LinkedIn"]:hover { background: #0a66c2; border-color: #0a66c2; }
.site-footer .footer-col .footer-socials a[aria-label="Instagram"]:hover { background: radial-gradient(circle at 30% 110%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285aeb 90%); border-color: transparent; }
.site-footer .footer-col .footer-socials a[aria-label="YouTube"]:hover { background: #ff0000; border-color: #ff0000; }
.site-footer .footer-col .footer-socials a i { line-height: 1; display: block; }
.site-footer .footer-col .footer-socials a[aria-label="YouTube"] i, .site-footer .footer-col .footer-socials a[aria-label="Instagram"] i { transform: translateY(1px); }
.site-footer .footer-col h4 { color: #ffffff; font-size: 12.5px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.site-footer .footer-col a, .site-footer .footer-col p { display: block; color: #94a3b8; margin: 8px 0; font-size: 13px; text-decoration: none; transition: var(--transition); }
.site-footer .footer-col a:hover { color: #ffffff; }
.site-footer .footer-col p i { margin-right: 6px; color: var(--secondary-blue); width: 14px; }
.site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #64748b;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(11, 19, 41, 0.10);
}
.site-footer .footer-bottom-links { display: flex; gap: 18px; }
.site-footer .footer-bottom-links a { color: #64748b; text-decoration: none; font-size: 12px; }
.site-footer .footer-bottom-links a:hover { color: #93c5fd; }

/* =======================================================
   SHARED COMPONENTS
   ======================================================= */
.company-list-card { background: #fff; border-radius: var(--radius); border: 1px solid var(--border-color); padding: 20px; margin-bottom: 16px; transition: all 0.3s; display: flex; gap: 20px; }
.company-list-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); border-color: var(--primary); }
.company-list-card .company-logo { width: 80px; height: 80px; border-radius: 12px; background: #eff6ff; display: flex; align-items: center; justify-content: center; font-size: 24px; font-weight: 700; color: var(--primary); flex-shrink: 0; overflow: hidden; }
.company-list-card .company-logo img { width: 100%; height: 100%; object-fit: cover; }
.company-list-card .company-info { flex: 1; }
.company-list-card .company-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.company-list-card .company-name a { color: var(--text-primary); }
.company-list-card .company-name a:hover { color: var(--primary); }
.company-list-card .company-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.company-list-card .company-desc { color: var(--text-secondary); font-size: 14px; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.company-list-card .company-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.company-list-card .company-tags span { background: #eff6ff; color: var(--primary); padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; border: 1px solid #dbeafe; }
.company-list-card .company-meta { display: flex; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--text-secondary); }
.company-list-card .company-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; flex-shrink: 0; }

/* Auth Pages */
.auth-container { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0b1329 0%, #1e3a8a 100%); padding: 40px 20px; }
.auth-card { background: #fff; border-radius: 16px; padding: 40px; width: 100%; max-width: 440px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.auth-card h2 { font-size: 24px; font-weight: 700; text-align: center; margin-bottom: 8px; }
.auth-card .auth-subtitle { text-align: center; color: var(--text-secondary); margin-bottom: 24px; font-size: 14px; }
.auth-card .form-label { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.auth-card .form-control { border-radius: 8px; padding: 10px 14px; border: 1px solid var(--border-color); }
.auth-card .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
.auth-card .btn-primary { width: 100%; padding: 12px; font-weight: 700; border-radius: 8px; font-size: 15px; background: var(--primary); border-color: var(--primary); }
.auth-card .btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.auth-card .auth-links { text-align: center; margin-top: 16px; font-size: 14px; color: var(--text-secondary); }
.auth-card .auth-links a { font-weight: 600; }

/* Cards */
.card { border: 1px solid var(--border-color); border-radius: var(--radius); box-shadow: var(--card-shadow); }
.card-header { background: #fff; border-bottom: 1px solid var(--border-color); padding: 16px 20px; }
.card-header h5 { font-size: 16px; font-weight: 700; margin: 0; }
.card-body { padding: 20px; }

/* Buttons */
.btn { border-radius: 6px; font-weight: 600; font-size: 14px; padding: 8px 16px; transition: all 0.2s; }
.btn-primary { background: var(--primary); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }
.btn-danger { background: var(--accent); border-color: var(--accent); }
.btn-danger:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-sm { padding: 4px 12px; font-size: 13px; }

/* Forms */
.form-control, .form-select { border-radius: 8px; padding: 10px 14px; border: 1px solid var(--border-color); font-size: 14px; font-family: inherit; }
.form-control:focus, .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15); }
.form-label { font-weight: 600; font-size: 14px; margin-bottom: 6px; }

/* ============================================================
   AVAILABLE LOCATIONS SECTION (Redesigned)
   ============================================================ */
.loc-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.loc-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f2350, #1e3a8a, #f97316);
}
.loc-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}
.loc-title {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #0b1329;
    margin: 0 0 6px;
}
.loc-icon {
    color: #f97316;
    flex-shrink: 0;
}
.loc-subtitle {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
.loc-group {
    margin-bottom: 24px;
}
.loc-group:last-child {
    margin-bottom: 0;
}
.loc-group-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0 0 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}
.loc-group-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, #eef2ff, #dbeafe);
    color: #4f46e5;
    flex-shrink: 0;
}
.loc-group-count {
    margin-left: auto;
    font-size: 11px;
    font-weight: 700;
    color: #94a3b8;
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 10px;
}
.loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}
.loc-grid-cities {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
}
.loc-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    position: relative;
    min-height: 56px;
}
.loc-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
    text-decoration: none;
    color: inherit;
}
.loc-card:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}
.loc-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
    color: #fff;
}
.loc-card-icon.country {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}
.loc-card-icon.state {
    background: linear-gradient(135deg, #0d9488, #14b8a6);
}
.loc-card-icon.city {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}
.loc-card-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.loc-card-name {
    font-size: 14px;
    font-weight: 600;
    color: #0b1329;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loc-card-meta {
    font-size: 12px;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.loc-card-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    padding: 0 10px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: #334155;
    flex-shrink: 0;
}
.loc-card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f97316;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
}
.loc-card.active {
    border-color: #f97316;
    background: linear-gradient(135deg, #fff, #fffbeb);
}
.loc-card.active:hover {
    border-color: #f97316;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}
.loc-card.active .loc-card-count {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff;
}
.loc-card.active .loc-card-name {
    color: #f97316;
}

/* Responsive */
@media (max-width: 991.98px) {
    .loc-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .loc-grid-cities {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
}
@media (max-width: 575.98px) {
    .loc-section {
        padding: 18px 16px;
    }
    .loc-grid,
    .loc-grid-cities {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   TOP LOCATION FILTER BAR
   ============================================================ */
.top-filter-bar {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
}
.top-filter-bar .filter-field {
    flex: 1;
    min-width: 180px;
    max-width: 280px;
}
.top-filter-bar .filter-field:first-child {
    flex: 2;
}
.top-filter-bar .form-select {
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    padding: 8px 12px;
    font-size: 13px;
    background: #fafbfc;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.top-filter-bar .form-select:focus {
    border-color: #f97316;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
    background: #fff;
}
.top-filter-bar .form-select:disabled {
    background: #f1f5f9;
    color: #94a3b8;
    cursor: not-allowed;
}
.top-filter-bar .btn-outline-secondary {
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 767.98px) {
    .top-filter-bar {
        padding: 12px;
    }
    .top-filter-bar .filter-field {
        min-width: 100%;
        max-width: 100%;
    }
    .top-filter-bar .filter-field:first-child {
        flex: 1;
    }
    .top-filter-bar .d-flex {
        width: 100%;
    }
}

/* Compare */
.compare-bar { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: #fff; border-top: 2px solid var(--primary); padding: 12px 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.12); }
.btn-compare-unselected { background: #f1f5f9; color: #475569; border: 1px solid #cbd5e1; font-size: 12px; }
.btn-compare-unselected:hover { background: #eff6ff; border-color: var(--primary); color: var(--primary-dark); }
.btn-compare-selected { background: var(--primary); color: #fff; border: 1px solid var(--primary); font-size: 12px; }
.btn-compare-selected:hover { background: var(--primary-dark); }
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th { background: #f8fafc; border-bottom: 2px solid #e2e8f0; padding: 12px 16px; font-size: 13px; font-weight: 600; color: #475569; text-align: left; vertical-align: top; width: 180px; white-space: nowrap; }
.compare-table td { border-bottom: 1px solid #f1f5f9; padding: 12px 16px; vertical-align: top; }
.compare-table tr:hover td { background: #fafbfc; }
.compare-table .company-header { text-align: center; padding: 20px 10px; }
.compare-table .company-header img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; margin-bottom: 8px; }
.compare-table .company-header h6 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.compare-table .rating-badge { display: inline-flex; align-items: center; gap: 4px; background: #fef3c7; color: #92400e; font-weight: 700; font-size: 13px; padding: 3px 10px; border-radius: 20px; }
.compare-table .highlight-best { background: #eff6ff !important; }

/* =======================================================
   RESPONSIVE
   ======================================================= */
@media (max-width: 1200px) {
    .banner-title { font-size: 16px; }
}
@media (max-width: 1080px) {
    .site-header .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        background: #ffffff;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 12px 20px rgba(0,0,0,0.08);
        padding: 10px 5% 16px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.3s ease, opacity 0.2s ease;
        z-index: 1001;
    }
    .site-header .nav-links.open { max-height: 600px; opacity: 1; visibility: visible; }
    .site-header .nav-item { width: 100%; }
    .site-header .nav-link { width: 100%; justify-content: space-between; }
    .site-header .nav-item .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        width: 100%;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--border-light);
        border-radius: 0;
        margin: 2px 0 4px 12px;
        display: none;
        padding: 4px 0 4px 10px;
    }
    .site-header .nav-item.dropdown-open .dropdown-menu { display: block; }
    .site-header .nav-item.dropdown-open > .nav-link { color: var(--secondary-blue); background-color: #f1f5f9; }
    .site-header .mobile-menu-btn { display: flex; }
}
@media (max-width: 1024px) {
    .steps-wrapper, .why-wrapper { grid-template-columns: 1fr; }
    .how-it-works-visual, .visual-container { display: none; }
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .pro-grid, .review-grid, .blog-grid, .country-grid { grid-template-columns: repeat(2, 1fr); }
    .faq-grid { grid-template-columns: 1fr; gap: 30px; }
    .site-footer .footer-columns { grid-template-columns: 1.5fr repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { justify-content: center; margin-top: 20px; }
    .category-menu { right: 0; }
    .stats-container { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stats-bar .stat-box { border-right: none; justify-content: flex-start; }
    .professionals-header, .categories-header { flex-direction: column; align-items: flex-start; gap: 12px; }
}
@media (max-width: 860px) {
    .cta-banner, .bottom-banner { flex-direction: column; gap: 20px; text-align: center; }
    .cta-left { flex-direction: column; }
    .banner-icons-group { flex-wrap: wrap; justify-content: center; }
    .final-cta-inner { flex-direction: column; align-items: flex-start; }
    .newsletter-row { flex-direction: column; align-items: flex-start; }
    .newsletter-form { width: 100%; }
}
@media (max-width: 768px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .step-arrow { display: none; }
    .categories-grid, .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pro-grid, .review-grid, .blog-grid, .country-grid { grid-template-columns: 1fr; }
    .site-footer .footer-columns { grid-template-columns: 1fr; gap: 30px; }
    .site-header .top-bar-left span:nth-child(2) { display: none; }
    .expert-tag { right: 10px; bottom: 8px; font-size: 13px; }
    .section-title { font-size: 24px; }
    .banner-icons-group { gap: 10px; }
    .icon-circle { width: 36px; height: 36px; font-size: 13px; }
    .company-list-card { flex-direction: column; }
    .company-list-card .company-actions { flex-direction: row; }
}
@media (max-width: 640px) {
    .hero-title { font-size: 26px; }
    .hero-features-bar { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: 1fr; }
    .search-container { flex-direction: column; padding: 10px; gap: 8px; }
    .divider { display: none; }
    .btn-search { width: 100%; justify-content: center; }
    .site-header .top-bar { flex-direction: column; gap: 4px; padding: 8px 5%; }
    .site-header .top-bar-left { gap: 12px; }
    .site-header .top-bar-right { display: none; }
    .category-menu { position: static; transform: none; margin-top: 16px; width: 100%; }
    .cat-item { width: 100%; }
    .expert-tag { display: none; }
    .graphic-frame { max-width: 260px; margin: 0 auto; }
    .site-header .nav-actions .btn-orange { padding: 8px 12px; }
    .site-header .brand-logo-image { width: 142px; max-height: 46px; }
    .site-footer .footer-brand-image { width: 190px; max-height: 70px; }
}
@media (max-width: 480px) {
    .steps-grid, .categories-grid, .features-grid { grid-template-columns: 1fr; }
    .hero-features-bar { grid-template-columns: 1fr; }
    .search-input-group { padding: 8px 4px; }
    .final-cta-actions { width: 100%; }
    .final-cta-actions .btn-cta { flex: 1; justify-content: center; }
    .section-title { font-size: 21px; }
    .site-header .nav-actions .btn-orange { display: none; }
}

/* =======================================================
   CATEGORY LISTING PAGE (services/nav, filters, hero)
   ======================================================= */

/* --- Category hero banner --- */
.cat-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #0b1329 0%, #12305f 55%, #1e3a8a 100%);
    padding: 34px 0 40px;
    border-bottom: 3px solid rgba(249, 115, 22, 0.55);
}
.cat-hero-glow {
    position: absolute; border-radius: 50%; filter: blur(64px); pointer-events: none;
}
.cat-hero-glow { width: 340px; height: 340px; background: rgba(249, 115, 22, 0.16); top: -120px; right: 6%; }
.cat-hero-pattern {
    position: absolute; inset: 0; opacity: 0.05; pointer-events: none;
    background-image: radial-gradient(circle at 1px 1px, #ffffff 1px, transparent 0);
    background-size: 26px 26px;
}
.cat-hero-breadcrumb { margin-bottom: 18px !important; }
.cat-hero-breadcrumb .breadcrumb-item { font-size: 13px; font-weight: 500; }
.cat-hero-breadcrumb .breadcrumb-item a { color: #93c5fd; text-decoration: none; transition: color .2s; }
.cat-hero-breadcrumb .breadcrumb-item a:hover { color: #ffffff; }
.cat-hero-breadcrumb .breadcrumb-item.active { color: #c7d2fe; }
.cat-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #64748b; }
.cat-hero-body { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.cat-hero-icon-box {
    width: 76px; height: 76px; flex-shrink: 0;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.3);
}
.cat-hero-icon-box i { font-size: 32px; color: #fb923c; filter: drop-shadow(0 0 12px rgba(249,115,22,.5)); }
.cat-hero-text { flex: 1; min-width: 260px; }
.cat-hero-title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: #ffffff; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 8px; }
.cat-hero-title span { color: var(--accent-orange); }
.cat-hero-sub { font-size: 15px; color: #c7d2fe; margin-bottom: 18px; max-width: 100%; line-height: 1.6; }
.cat-hero-stats { display: flex; flex-wrap: wrap; gap: 26px; }
.cat-hero-stat { display: flex; flex-direction: column; }
.cat-hero-stat-num { font-size: 20px; font-weight: 800; color: #ffffff; line-height: 1.1; }
.cat-hero-stat-num i { color: #4ade80; font-size: 19px; }
.cat-hero-stat-label { font-size: 12px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-top: 3px; }

@media (max-width: 576px) {
    .cat-hero { padding: 26px 0 30px; }
    .cat-hero-body { gap: 14px; }
    .cat-hero-icon-box { width: 60px; height: 60px; border-radius: 16px; }
    .cat-hero-icon-box i { font-size: 25px; }
    .cat-hero-stats { gap: 18px; }
}

/* --- Services sidebar nav (shared across listing views) --- */
.services-nav .card-header { padding-left: 1.1rem; }
.services-nav-list { padding: .55rem; display: flex; flex-direction: column; gap: .2rem; max-height: 640px; overflow-y: auto; }
.services-nav-list::-webkit-scrollbar { width: 6px; }
.services-nav-list::-webkit-scrollbar-thumb { background: #dbeafe; border-radius: 6px; }
.services-nav-item { border-radius: .7rem; }
.services-nav-head {
    display: flex; align-items: center; justify-content: space-between; gap: .4rem;
    padding: .5rem .65rem; border-radius: .6rem; transition: background .15s;
}
.services-nav-head:hover { background: #f1f5f9; }
.services-nav-head .btn { color: #94a3b8; }
.services-nav-head .btn .fa-chevron-down { transition: transform .2s; }
.services-nav-head .btn[aria-expanded="true"] .fa-chevron-down { transform: rotate(180deg); }
.services-nav-sub { font-weight: 600; font-size: .85rem; color: #334155; text-decoration: none; flex: 1; min-width: 0; }
.services-nav-sub:hover { color: #1d4ed8; }
.services-nav-item.services-nav-active > .services-nav-head { background: #eef4ff; }
.services-nav-item.services-nav-active > .services-nav-head .services-nav-sub { color: #1e3a8a; font-weight: 700; }
.services-nav-item.services-nav-active > .services-nav-head .btn { color: #1e3a8a; }
.services-nav-sublist {
    display: flex; flex-direction: column; gap: .1rem;
    padding: .2rem .15rem .35rem 1.1rem;
    margin: 0 .15rem .2rem .65rem;
    border-left: 2px solid #dbeafe;
}
.services-nav-svc {
    display: flex; align-items: center; gap: .35rem;
    padding: .32rem .6rem; border-radius: .5rem;
    font-size: .8rem; color: #64748b; text-decoration: none; transition: background .15s;
}
.services-nav-svc:hover { background: #eef2ff; color: #4338ca; }
.services-nav-svc.services-nav-svc-active {
    color: #fff; background: linear-gradient(135deg, #1e3a8a, #312e81);
    font-weight: 600; box-shadow: 0 3px 10px rgba(30,58,138,.28);
}
.services-nav-svc.services-nav-svc-active:hover { color: #fff; }

/* --- Filter sidebar polish --- */
.sidebar-filter-group .form-select, .sidebar-filter-group .form-control { border-radius: 8px; font-size: 13px; padding: 7px 12px; border: 1px solid #e2e8f0; }
.sidebar-filter-group .form-select:hover, .sidebar-filter-group .form-control:hover { border-color: #c7d2fe; }
.sidebar-filter-group .form-select:focus, .sidebar-filter-group .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12); }

/* --- Company list card enhancement --- */
.company-list-card {
    border: 1px solid #eef2f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.company-list-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.12);
    border-color: #c7d2fe;
}
.company-list-card .company-score-pill {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: rgba(11, 19, 41, 0.78); color: #ffffff;
    backdrop-filter: blur(4px);
    padding: 4px 10px; border-radius: 20px;
    font-size: 12px; font-weight: 700;
    display: inline-flex; align-items: center; gap: 5px;
}
.company-list-card .company-score-pill i { color: #fbbf24; }
.company-list-card .company-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.company-list-card .company-badges .badge {
    border-radius: 20px; padding: 4px 10px; font-weight: 600; font-size: 11px;
}
.company-list-card .company-title-link:hover { color: var(--primary); }
.company-actions-col { border-left: 1px solid #f1f5f9; background: #fcfdff; }
@media (max-width: 767px) {
    .company-actions-col { border-left: 0; border-top: 1px solid #f1f5f9; }
}

/* --- Location links card polish --- */
.loc-links-section { box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05); }

/* --- Content above/below & FAQ cards --- */
.directory-content-card { border-radius: 16px !important; border: 1px solid #eef2f7 !important; box-shadow: 0 2px 10px rgba(15,23,42,0.05) !important; }
.directory-content-card .card-body { color: var(--text-secondary); line-height: 1.75; }
.directory-section-title { font-size: 18px; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.accordion-item { border-radius: 10px !important; overflow: hidden; }
.accordion-button:not(.collapsed) { background: #eff6ff; color: var(--primary); box-shadow: none; }
.accordion-button:focus { box-shadow: none; border-color: transparent; }

/* Empty state */
.empty-state-icon {
    width: 84px; height: 84px; margin: 0 auto 18px;
    background: #eff6ff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.empty-state-icon i { font-size: 34px; color: var(--secondary-blue); }

/* ==========================================================================
   COMPANY PROFILE PAGE (views/company/profile.php)
   All styles scoped to the profile template classes
   ========================================================================== */

/* --- Hero --- */
.company-hero {
    position: relative;
    background: radial-gradient(900px 420px at 18% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a 0%, #122a62 55%, #0b1329 100%);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
    padding: 26px 0 34px;
    overflow: hidden;
}
.company-hero-glow {
    position: absolute; top: -120px; right: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .18), transparent 65%);
    pointer-events: none;
}
.company-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,.4), transparent 80%);
    pointer-events: none;
}
.company-hero .container { position: relative; z-index: 1; }
.company-hero-breadcrumb { color: #94a3b8; }
.company-hero-breadcrumb .breadcrumb-item a { color: #c7d2fe; }
.company-hero-breadcrumb .breadcrumb-item a:hover { color: #ffffff; }
.company-hero-breadcrumb .breadcrumb-item.active { color: #ffffff; }
.company-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #475569; }

.company-hero-body {
    display: flex; align-items: center; gap: 26px;
    margin-top: 20px;
}
.company-hero-logo {
    width: 96px; height: 96px; flex-shrink: 0;
    border-radius: 20px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35), inset 0 1px 0 rgba(255, 255, 255, .12);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.company-hero-logo img { width: 100%; height: 100%; object-fit: cover; }
.company-hero-logo span {
    font-size: 30px; font-weight: 800; color: #fb923c;
    letter-spacing: .02em; text-shadow: 0 0 18px rgba(249, 115, 22, .55);
}
.company-hero-text { flex: 1; min-width: 260px; }
.company-hero-title {
    font-size: clamp(26px, 3.2vw, 38px); font-weight: 800;
    color: #ffffff; line-height: 1.1; letter-spacing: -0.02em; margin: 0;
}
.company-hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    padding: 4px 11px; border-radius: 20px;
    letter-spacing: .2px;
}
.hero-badge-success { background: rgba(74, 222, 128, .14); color: #4ade80; border: 1px solid rgba(74, 222, 128, .35); }
.hero-badge-primary { background: rgba(96, 165, 250, .14); color: #60a5fa; border: 1px solid rgba(96, 165, 250, .35); }
.hero-badge-info    { background: rgba(56, 189, 248, .14); color: #38bdf8; border: 1px solid rgba(56, 189, 248, .35); }
.hero-badge-warning { background: rgba(251, 191, 36, .14); color: #fbbf24; border: 1px solid rgba(251, 191, 36, .35); }
.company-hero-sub {
    font-size: 15px; color: #c7d2fe; margin: 12px 0 0; line-height: 1.6; max-width: 620px;
}
.company-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.hero-chip {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; color: #e2e8f0;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 20px; padding: 5px 12px;
}
.hero-chip i { color: #fb923c; }

.company-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.company-hero-actions .btn { border-radius: 20px; padding: 8px 18px; font-weight: 600; font-size: 14px; }
.hero-phone-btn {
    background: rgba(255, 255, 255, .08); color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, .22);
}
.company-hero-actions .hero-phone-btn:hover { background: rgba(255, 255, 255, .16); color: #ffffff; border-color: rgba(255, 255, 255, .4); }
.hero-save-btn {
    background: rgba(251, 113, 133, .12); color: #fda4af;
    border: 1px solid rgba(251, 113, 133, .4);
}
.company-hero-actions .hero-save-btn:hover { background: rgba(251, 113, 133, .22); color: #fff; border-color: rgba(251, 113, 133, .6); }
.hero-save-btn i { transition: transform .15s; }
.hero-save-btn:hover i { transform: scale(1.15); }

.company-hero-stats-card {
    flex-shrink: 0; min-width: 240px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px; padding: 18px 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}
.company-hero-stats-card .rating-stars { justify-content: flex-start; }
.hero-rating-num { font-size: 40px; font-weight: 800; color: #ffffff; line-height: 1; }
.hero-rating-label { font-size: 12px; color: #94a3b8; margin-top: 4px; }
.company-hero-stats { display: flex; gap: 20px; margin-top: 14px; padding-top: 14px; border-top: 1px solid rgba(255, 255, 255, .12); }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num { font-size: 18px; font-weight: 800; color: #ffffff; line-height: 1.1; }
.hero-stat-label { font-size: 11px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; margin-top: 3px; }

@media (max-width: 991px) {
    .company-hero-body { flex-wrap: wrap; }
    .company-hero-stats-card { width: 100%; }
}
@media (max-width: 576px) {
    .company-hero { padding: 20px 0 26px; }
    .company-hero-body { gap: 16px; }
    .company-hero-logo { width: 72px; height: 72px; border-radius: 16px; }
    .company-hero-logo span { font-size: 22px; }
    .company-hero-actions .btn { flex: 1 1 auto; }
}

/* --- Make a Connection ribbon --- */
.company-connect { position: relative; background: linear-gradient(100deg, #f97316, #fb923c 55%, #f59e0b); }
.company-connect-inner {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 14px 0;
}
.company-connect-text { display: flex; align-items: center; gap: 14px; }
.company-connect-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: rgba(255, 255, 255, .22);
    color: #ffffff; font-size: 19px;
    display: inline-flex; align-items: center; justify-content: center;
}
.company-connect-text strong { display: block; color: #ffffff; font-size: 14px; letter-spacing: .6px; }
.company-connect-text span { color: #fff7ed; font-size: 13px; }
.company-connect .btn { border-radius: 20px; font-weight: 700; color: #c2410c; white-space: nowrap; }
@media (max-width: 576px) {
    .company-connect-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .company-connect-text { justify-content: center; }
    .company-connect .btn { width: 100%; }
}

/* --- Sticky tabs --- */
.company-profile-tabs .profile-tabs-nav {
    position: sticky; top: 100px; z-index: 990;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(8px);
    border: 1px solid #e8edf5;
    border-radius: 14px;
    padding: 5px;
    gap: 4px;
    flex-wrap: wrap;
    box-shadow: 0 6px 20px rgba(15, 23, 42, .08);
}
.company-profile-tabs .profile-tabs-nav .nav-link {
    border: none; border-radius: 10px;
    color: #475569; font-weight: 600; font-size: 13.5px;
    padding: 9px 15px;
    transition: all .2s ease; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 7px;
}
.company-profile-tabs .profile-tabs-nav .nav-link i { color: #94a3b8; font-size: 13px; transition: color .2s; }
.company-profile-tabs .profile-tabs-nav .nav-link:hover { background: #f1f5f9; color: #1e3a8a; }
.company-profile-tabs .profile-tabs-nav .nav-link:hover i { color: #1e3a8a; }
.company-profile-tabs .profile-tabs-nav .nav-link.active {
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    color: #ffffff; box-shadow: 0 4px 12px rgba(30, 58, 138, .32);
}
.company-profile-tabs .profile-tabs-nav .nav-link.active i { color: #fb923c; }
.company-profile-tabs .tab-content { padding-top: 22px; }
@media (max-width: 767px) {
    .company-profile-tabs .profile-tabs-nav {
        top: 70px; border-radius: 12px;
        flex-wrap: nowrap; overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .company-profile-tabs .profile-tabs-nav::-webkit-scrollbar { display: none; }
}

/* --- Section titles (scoped to profile so home page big titles are untouched) --- */
.company-profile .section-title {
    font-size: 1.2rem; font-weight: 800; color: #1e293b;
    display: flex; align-items: center; gap: 10px;
    padding-bottom: .65rem; margin-bottom: 1.1rem;
    border-bottom: 2px solid #eef2f7;
}
.company-profile .sec-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 10px;
    background: #eef4ff; color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.company-profile .subsection-title {
    font-size: 1rem; font-weight: 700; color: #1e293b;
    margin-bottom: .8rem;
    display: flex; align-items: center; gap: 8px;
}
.company-profile .section-divider { border-top: 1px solid #eef2f7; margin: 1.75rem 0; }
.company-profile .profile-tagline-card {
    border-left: 4px solid var(--accent-orange);
    background: linear-gradient(90deg, #fff7ed, #fffbeb);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 22px;
    box-shadow: 0 2px 10px rgba(249, 115, 22, .08);
}
.company-profile .profile-tagline-mark { color: #fb923c; font-size: 15px; margin-right: 8px; }
.company-profile .profile-tagline-card blockquote {
    font-size: 16px; font-style: italic; color: #7c2d12;
    margin: 0;
}

/* --- Profile info rows (Company Details / Contact) --- */
.company-profile .profile-rows { display: flex; flex-direction: column; gap: 2px; }
.company-profile .profile-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 9px 0; border-bottom: 1px dashed #eef2f7;
}
.company-profile .profile-row:last-child { border-bottom: 0; }
.company-profile .profile-row-icon {
    width: 30px; height: 30px; flex-shrink: 0; margin-top: 1px;
    border-radius: 8px;
    background: #eef4ff; color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 12px;
}
.company-profile .profile-row-label { font-size: 12px; color: #94a3b8; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.company-profile .profile-row-value { font-size: 14px; color: #1e293b; font-weight: 600; margin-top: 1px; }
.company-profile .profile-row-sm .profile-row-icon { width: 26px; height: 26px; font-size: 11px; }

/* --- Social pills --- */
.company-profile .social-pill {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 600; color: #1e3a8a;
    background: #eef4ff; border: 1px solid #dbeafe;
    border-radius: 20px; padding: 4px 11px;
    text-decoration: none; transition: all .15s;
}
.company-profile .social-pill:hover { background: var(--primary); border-color: var(--primary); color: #ffffff; }

/* --- Service area map --- */
.company-profile .profile-map-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 1.05rem; font-weight: 800; color: #1e293b;
}
.company-profile #map-canvas { border: 1px solid #eef2f7; border-radius: 12px; min-height: 260px; }

/* --- Why Choose chips --- */
.company-profile .strength-chip {
    display: flex; align-items: center; gap: 12px;
    background: #f8fafc; border: 1px solid #eef2f7;
    border-radius: 12px; padding: 12px 14px;
    transition: all .18s ease;
}
.company-profile .strength-chip:hover { border-color: #c7d2fe; box-shadow: 0 4px 14px rgba(30, 58, 138, .08); transform: translateY(-1px); }
.company-profile .strength-ico {
    width: 34px; height: 34px; flex-shrink: 0;
    border-radius: 10px; background: #eef4ff; color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center; font-size: 14px;
}
.company-profile .strength-chip strong { font-size: 14px; color: #1e293b; }

/* --- Awards / certifications --- */
.company-profile .award-chip {
    transition: all .18s ease;
    border: 1px solid transparent;
}
.company-profile .award-chip:hover { border-color: #fed7aa; background: #fff7ed; }
.company-profile .award-chip .award-ico { color: #f59e0b; }

/* --- Verification & compliance --- */
.company-profile .verify-card {
    transition: all .18s ease;
    border: 1px solid #eef2f7;
}
.company-profile .verify-card:hover { border-color: #bbf7d0; box-shadow: 0 4px 14px rgba(22, 163, 74, .08); }
.company-profile .verify-card .verify-ico { color: #16a34a; }

/* --- Blog cards inside profile --- */
.company-profile .section-title-inline { margin-bottom: 0 !important; border-bottom: 0; padding-bottom: 0; }
.company-profile .blog-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; flex-wrap: wrap;
    padding-bottom: 14px; margin-bottom: 14px;
    border-bottom: 2px solid #eef2f7;
}
.company-profile .blog-view-all { white-space: nowrap; }
.company-profile .blog-lead { font-size: 13px; color: var(--text-secondary); margin: 0 0 18px; }
.company-profile .blog-featured {
    display: flex; border: 1px solid #eef2f7; border-radius: 14px; overflow: hidden;
    background: #ffffff; margin-bottom: 10px;
    transition: all .2s ease;
}
.company-profile .blog-featured:hover { border-color: #c7d2fe; box-shadow: 0 12px 28px rgba(30, 58, 138, .1); transform: translateY(-2px); }
.company-profile .blog-featured-media {
    width: 44%; min-height: 230px; position: relative; flex-shrink: 0;
    background: linear-gradient(135deg, #122a62, #1e3a8a 60%, #312e81);
}
.company-profile .blog-featured-media img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.company-profile .blog-featured-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255, 255, 255, .22); font-size: 56px;
}
.company-profile .blog-featured-fallback::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(320px 200px at 85% 15%, rgba(249, 115, 22, .22), transparent 70%);
}
.company-profile .blog-featured-body { padding: 22px 24px; display: flex; flex-direction: column; }
.company-profile .blog-meta-chip {
    align-self: flex-start;
    background: #eef4ff; color: #1e3a8a;
    font-size: 12px; font-weight: 700;
    border-radius: 20px; padding: 4px 12px; margin-bottom: 12px;
}
.company-profile .blog-featured-title { font-size: 19px; font-weight: 800; color: #1e293b; line-height: 1.3; margin-bottom: 8px; }
.company-profile .blog-featured-excerpt { font-size: 13.5px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.company-profile .blog-read {
    margin-top: auto; align-self: flex-start;
    color: var(--primary); font-weight: 700; font-size: 13px;
    border-bottom: 2px solid transparent; transition: border-color .15s;
}
.company-profile .blog-featured:hover .blog-read { border-bottom-color: var(--accent-orange); }
.company-profile .blog-list { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.company-profile .blog-list-row {
    display: flex; align-items: center; gap: 14px;
    border: 1px solid #eef2f7; border-radius: 12px;
    padding: 12px 14px; background: #ffffff;
    transition: all .18s ease;
}
.company-profile .blog-list-row:hover { border-color: #c7d2fe; box-shadow: 0 6px 18px rgba(30, 58, 138, .08); transform: translateX(3px); }
.company-profile .blog-thumb {
    width: 78px; height: 64px; flex-shrink: 0;
    border-radius: 10px; overflow: hidden;
    background: linear-gradient(135deg, #eef4ff, #e0e7ff); color: #1e3a8a;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.company-profile .blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.company-profile .blog-list-body { flex: 1; min-width: 0; }
.company-profile .blog-list-title {
    font-size: 14px; font-weight: 700; color: #1e293b;
    margin-bottom: 4px; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.company-profile .blog-list-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: #94a3b8; }
.company-profile .blog-list-meta i { font-size: 11px; }
.company-profile .blog-list-arrow { color: #cbd5e1; font-size: 14px; flex-shrink: 0; transition: all .18s ease; }
.company-profile .blog-list-row:hover .blog-list-arrow { color: var(--accent-orange); transform: translateX(3px); }
@media (max-width: 767px) {
    .company-profile .blog-featured { flex-direction: column; }
    .company-profile .blog-featured-media { width: 100%; min-height: 170px; }
    .company-profile .blog-featured-body { padding: 16px 18px; }
}

/* --- Services tab --- */
.company-profile .company-service-list { display: flex; flex-direction: column; gap: 14px; }
.company-profile .company-service-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: #ffffff; border: 1px solid #eef2f7; border-radius: 14px;
    padding: 18px 20px; transition: all .2s ease;
}
.company-profile .company-service-card:hover { border-color: #c7d2fe; box-shadow: 0 8px 22px rgba(30, 58, 138, .08); transform: translateY(-2px); }
.company-profile .company-service-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #eef4ff, #e0e7ff);
    color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.company-profile .company-service-body { flex: 1; min-width: 0; }
.company-profile .company-service-name { font-size: 16px; font-weight: 800; color: #1e293b; }
.company-profile .company-service-desc { font-size: 13.5px; color: var(--text-secondary); margin-top: 3px; line-height: 1.6; }
.company-profile .company-service-side { text-align: right; flex-shrink: 0; }
.company-profile .company-service-price { font-size: 13px; color: var(--text-secondary); }
.company-profile .company-service-price b { color: var(--primary); font-size: 17px; }
@media (max-width: 576px) {
    .company-profile .company-service-card { flex-direction: column; }
    .company-profile .company-service-side { text-align: left; }
}

/* --- Portfolio --- */
.company-profile .portfolio-card {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    overflow: hidden;
}
.company-profile .portfolio-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(15, 23, 42, .12); border-color: #c7d2fe; }

/* --- Reviews tab --- */
.company-profile .review-summary-row { align-items: center; }
.company-profile .review-big-score { font-size: 44px; font-weight: 800; color: #1e293b; line-height: 1; }
.company-profile .review-big-score small { font-size: 16px; color: #94a3b8; font-weight: 600; }
.company-profile .review-card {
    background: #ffffff; border: 1px solid #eef2f7; border-radius: 14px;
    padding: 20px; transition: all .2s ease;
}
.company-profile .review-card:hover { border-color: #c7d2fe; box-shadow: 0 8px 22px rgba(15, 23, 42, .07); }
.company-profile .reviewer-avatar {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    color: #ffffff; font-weight: 800; font-size: 18px;
    display: inline-flex; align-items: center; justify-content: center;
}
.company-profile .review-card-head .reviewer-name { font-size: 15px; font-weight: 800; color: #1e293b; }
.company-profile .review-card-head .reviewer-meta { font-size: 12px; color: #94a3b8; }
.company-profile .review-chip {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 600;
    border-radius: 20px; padding: 3px 10px;
}
.company-profile .review-chip-q { background: #eef4ff; color: #1e3a8a; }
.company-profile .review-chip-t { background: #fdf4ff; color: #9333ea; }
.company-profile .review-chip-c { background: #fff7ed; color: #c2410c; }
.company-profile .review-chip-r { background: #ecfdf5; color: #047857; }
.company-profile .review-cta-card {
    background: linear-gradient(135deg, #fff7ed, #fffbeb);
    border: 1px solid #fed7aa; border-radius: 14px;
    padding: 22px;
}
.company-profile .review-cta-card .section-title { justify-content: center; border-bottom: 0; }
.company-profile .empty-state { color: #94a3b8; }

/* --- Locations / Leadership tabs --- */
.company-profile .location-row { transition: background .15s ease; border-radius: 8px; }
.company-profile .location-row:hover { background: #f8fafc; }
.company-profile .leadership-scroll::-webkit-scrollbar { height: 6px; }
.company-profile .leadership-scroll::-webkit-scrollbar-thumb { background: #dbeafe; border-radius: 6px; }
.company-profile .leadership-scroll .leadership-member-card { transition: all .2s ease; }
.company-profile .leadership-scroll .leadership-member-card:hover { transform: translateY(-3px); box-shadow: 0 10px 22px rgba(15, 23, 42, .1) !important; border-color: #c7d2fe; }

/* --- Similar companies --- */
.company-profile .sim-company-card {
    display: flex; align-items: center; gap: 14px;
    background: #ffffff; border: 1px solid #eef2f7; border-radius: 14px;
    padding: 16px; height: 100%;
    transition: all .2s ease;
}
.company-profile .sim-company-link:hover .sim-company-card { border-color: #c7d2fe; box-shadow: 0 10px 24px rgba(30, 58, 138, .1); transform: translateY(-2px); }
.company-profile .sim-company-logo {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px; overflow: hidden;
    background: #eef4ff;
    display: flex; align-items: center; justify-content: center;
}
.company-profile .sim-company-logo img { width: 100%; height: 100%; object-fit: cover; }
.company-profile .sim-company-logo span { font-size: 15px; font-weight: 800; color: var(--primary); }
.company-profile .sim-score {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 12px; font-weight: 700; color: #1e293b;
}
.company-profile .sim-score i { color: #f59e0b; }
.company-profile .sim-arrow { color: #cbd5e1; transition: all .2s ease; font-size: 14px; }
.company-profile .sim-company-link:hover .sim-arrow { color: var(--accent-orange); transform: translateX(3px); }

/* --- Sidebar polish --- */
.company-profile .profile-side-card {
    border: 1px solid #eef2f7; border-radius: 16px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
    transition: box-shadow .2s ease;
}
.company-profile .profile-side-card:hover { box-shadow: 0 8px 22px rgba(15, 23, 42, .09); }
.company-profile .side-card-title { font-size: 15px; display: flex; align-items: center; gap: 10px; color: #1e293b; }
.company-profile .rel-search-link { color: #475569; transition: color .15s, padding .15s; }
.company-profile .rel-search-link:hover { color: var(--primary); }
.company-profile .rel-search-arrow { color: #cbd5e1; font-size: 10px; transition: all .15s; }
.company-profile .rel-search-link:hover .rel-search-arrow { color: var(--accent-orange); }
.company-profile .rel-search-card { background: linear-gradient(165deg, #ffffff 45%, #f4f8ff); }
.company-profile .rel-search-hint { font-size: 12px; color: #94a3b8; margin: -4px 0 14px; }
.company-profile .rel-search-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.company-profile .rel-search-chip {
    display: inline-flex; align-items: center; gap: 7px;
    background: #ffffff; border: 1px solid #e2e8f0; border-radius: 20px;
    padding: 7px 13px; font-size: 12.5px; font-weight: 600; color: #475569;
    text-decoration: none; transition: all .18s ease; max-width: 100%;
}
.company-profile .rel-search-chip > i:first-child { color: var(--secondary-blue); font-size: 11px; }
.company-profile .rel-search-chip .chip-arrow { color: #cbd5e1; font-size: 11px; opacity: 0; transform: translateX(-4px); transition: all .18s ease; }
.company-profile .rel-search-chip:hover {
    background: linear-gradient(135deg, #1e3a8a, #312e81); color: #ffffff;
    border-color: transparent; box-shadow: 0 6px 14px rgba(30, 58, 138, .25);
    transform: translateY(-2px);
}
.company-profile .rel-search-chip:hover > i:first-child { color: #fb923c; }
.company-profile .rel-search-chip:hover .chip-arrow { color: #ffffff; opacity: 1; transform: translateX(0); }
.company-profile .rel-search-chip span { line-height: 1.3; }
.company-profile .share-btn {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 16px; color: #ffffff;
    transition: all .18s ease;
}
.company-profile .share-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 16px rgba(15, 23, 42, .18); }
.company-profile .share-facebook  { background: #1877F2; }
.company-profile .share-twitter   { background: #14171a; }
.company-profile .share-linkedin  { background: #0A66C2; }
.company-profile .share-whatsapp  { background: #25D366; }
.company-profile .share-pinterest { background: #E60023; }

/* --- Phone reveal & misc --- */
.company-profile #phoneBtn { cursor: pointer; }
.company-profile .form-control:focus, .company-profile .form-select:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}

/* --- Global orange CTA (hero, banners) --- */
.btn-orange {
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .35);
}
.btn-orange:hover, .btn-orange:focus, .btn-orange:active, .btn-orange.show {
    background: linear-gradient(135deg, #ea580c, #f97316);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(249, 115, 22, .45);
}
.btn-orange:hover { transform: translateY(-1px); }
.btn-orange:active { transform: translateY(0); box-shadow: 0 5px 14px rgba(249, 115, 22, .35); }
.btn-orange i { color: inherit; }

/* ==========================================================================
   COMPARE PAGE (views/compare/index.php) - scoped under .compare-page
   Grid column count driven by inline --cc on .compare-page
   ========================================================================== */
.compare-page .compare-hero {
    position: relative; overflow: hidden; padding: 26px 0 46px;
    background: radial-gradient(900px 420px at 20% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.compare-page .compare-hero-glow {
    position: absolute; top: -130px; left: 34%;
    width: 460px; height: 460px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .16), transparent 65%);
    pointer-events: none;
}
.compare-page .compare-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent 85%);
    pointer-events: none;
}
.compare-page .compare-hero .container { position: relative; z-index: 1; }
.compare-page .compare-hero-breadcrumb { color: #94a3b8; }
.compare-page .compare-hero-breadcrumb .breadcrumb-item a { color: #c7d2fe; }
.compare-page .compare-hero-breadcrumb .breadcrumb-item a:hover { color: #ffffff; }
.compare-page .compare-hero-breadcrumb .breadcrumb-item.active { color: #ffffff; }
.compare-page .compare-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.compare-page .compare-hero-body {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 18px; margin-top: 16px;
}
.compare-page .compare-hero-text { flex: 1; min-width: 0; }
.compare-page .compare-hero-title {
    font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #ffffff;
    letter-spacing: -0.02em; margin: 0 0 6px;
}
.compare-page .compare-hero-title i { color: #fb923c; margin-right: 10px; }
.compare-page .compare-hero-sub { font-size: 14.5px; color: #c7d2fe; margin: 0; line-height: 1.6; max-width: 640px; }
.compare-page .compare-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.compare-page .compare-back-btn {
    background: rgba(255, 255, 255, .08); color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 20px; padding: 8px 18px; font-weight: 600; font-size: 14px;
    flex-shrink: 0;
}
.compare-page .compare-back-btn:hover { background: rgba(255, 255, 255, .16); color: #ffffff; border-color: rgba(255, 255, 255, .4); }

/* --- Company header cards --- */
.compare-page .compare-company-cards {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px; margin-top: -32px; position: relative; z-index: 2;
}
.compare-page .compare-company-card {
    position: relative; overflow: hidden;
    background: #ffffff; border: 1px solid #eef2f7; border-radius: 18px;
    padding: 26px 18px 20px; text-align: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .1);
    transition: all .2s ease;
}
.compare-page .compare-company-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, #1e3a8a, #2563eb 60%, #fb923c); opacity: .85;
}
.compare-page .compare-company-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(30, 58, 138, .14); border-color: #c7d2fe; }
.compare-page .compare-card-head { margin-bottom: 14px; }
.compare-page .compare-logo {
    width: 76px; height: 76px; border-radius: 20px; object-fit: cover; margin: 0 auto;
    background: #eef4ff; border: 1px solid #eef2f7;
    box-shadow: 0 8px 18px rgba(30, 58, 138, .14);
}
.compare-page .compare-logo-placeholder {
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; font-weight: 800; color: #ffffff;
}
.compare-page .compare-name { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.compare-page .compare-name a { color: #1e293b; text-decoration: none; }
.compare-page .compare-name a:hover { color: var(--primary); }
.compare-page .compare-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.compare-page .compare-badge {
    display: inline-flex; align-items: center; gap: 4px;
    background: #f1f5f9; color: #475569;
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px;
    border: 1px solid #e2e8f0;
}
.compare-page .compare-badge.verified { background: rgba(74, 222, 128, .14); color: #15803d; border-color: rgba(74, 222, 128, .5); }
.compare-page .compare-badge.licensed { background: rgba(96, 165, 250, .14); color: #1d4ed8; border-color: rgba(96, 165, 250, .5); }
.compare-page .compare-badge.featured { background: rgba(251, 191, 36, .16); color: #b45309; border-color: rgba(251, 191, 36, .55); }
.compare-page .compare-rating-big {
    display: inline-flex; align-items: center; gap: 6px;
    background: #fef3c7; color: #92400e; font-weight: 800;
    padding: 4px 14px; border-radius: 24px; margin: 10px 0 6px;
}
.compare-page .compare-rating-num { font-size: 18px; }
.compare-page .compare-rating-big i { font-size: 12px; color: #f59e0b; }
.compare-page .compare-reviews { font-size: 12px; color: #94a3b8; margin-bottom: 6px; }
.compare-page .compare-loc { font-size: 12.5px; color: #64748b; }
.compare-page .compare-loc i { color: #ef4444; }

/* --- Comparison table sections --- */
.compare-page .compare-section {
    background: #ffffff; border: 1px solid #eef2f7; border-radius: 18px;
    padding: 22px 20px 10px; overflow: hidden;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
    margin-bottom: 22px;
}
.compare-page .compare-section-head {
    display: flex; align-items: center; gap: 10px;
    font-size: 15px; font-weight: 800; color: #1e293b;
    text-transform: uppercase; letter-spacing: .5px;
    margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 2px solid #eef2f7;
}
.compare-page .sec-icon {
    width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
    background: #eef4ff; color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.compare-page .compare-label {
    grid-column: 1 / -1;
    display: grid; grid-template-columns: 200px repeat(var(--cc, 3), 1fr);
    align-items: stretch; border-bottom: 1px solid #f1f5f9;
}
.compare-page .compare-section .compare-label:last-of-type { border-bottom: 0; }
.compare-page .compare-label-text {
    font-size: 12px; font-weight: 700; color: #475569;
    padding: 13px 16px; background: #f8fafc;
    display: flex; align-items: center; gap: 8px; border-right: 1px solid #f1f5f9;
    text-transform: uppercase; letter-spacing: .3px;
}
.compare-page .compare-label-text i { font-size: 12px; color: var(--primary); width: 16px; text-align: center; }
.compare-page .compare-value {
    position: relative; font-size: 13px; color: #1e293b;
    padding: 13px 16px; min-height: 44px;
    display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
    border-right: 1px solid #f1f5f9;
}
.compare-page .compare-value:last-child { border-right: none; }
.compare-page .compare-value.best { background: linear-gradient(180deg, #f0fdf4, #ecfdf3); }
.compare-page .compare-value.best::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: #22c55e;
}
.compare-page .compare-na { color: #cbd5e1; font-style: italic; font-weight: 500; }
.compare-page .compare-progress { width: 100%; height: 7px; background: #eef2f7; border-radius: 10px; overflow: hidden; margin-top: 6px; }
.compare-page .compare-progress-bar { height: 100%; border-radius: 10px; transition: width .6s ease; }
.compare-page .compare-strength-item { font-size: 12.5px; padding: 3px 0; color: #374151; width: 100%; }
.compare-page .compare-strength-item i { color: #22c55e; font-size: 11px; margin-right: 6px; }

/* --- Action cards --- */
.compare-page .compare-actions {
    display: grid; grid-template-columns: repeat(var(--cc, 3), 1fr);
    gap: 16px; padding: 6px 0 16px;
}
.compare-page .compare-action-card {
    text-align: center; padding: 18px 16px 16px;
    background: #f8fafc; border-radius: 14px; border: 1px solid #eef2f7;
}
.compare-page .compare-action-name { font-size: 13px; }

@media (max-width: 991px) {
    .compare-page .compare-hero-body { align-items: flex-start; flex-direction: column; }
    .compare-page .compare-back-btn { align-self: flex-start; }
}
@media (max-width: 767px) {
    .compare-page .compare-company-cards { grid-template-columns: 1fr; margin-top: -24px; gap: 12px; }
    .compare-page .compare-label { grid-template-columns: 1fr; }
    .compare-page .compare-label-text { border-right: none; border-bottom: 1px solid #f1f5f9; }
    .compare-page .compare-value { border-right: none; border-bottom: 1px solid #f1f5f9; min-height: auto; }
    .compare-page .compare-actions { grid-template-columns: 1fr; }
    .compare-page .compare-section { padding: 18px 14px 8px; }
}

/* ==========================================================================
   SUBMIT PROJECT PAGE (views/submit-project/index.php) - scoped under .submit-page
   ========================================================================== */
.submit-page .submit-hero {
    position: relative; overflow: hidden; padding: 26px 0 40px;
    background: radial-gradient(900px 420px at 18% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.submit-page .submit-hero-glow {
    position: absolute; top: -140px; right: -60px;
    width: 440px; height: 440px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .17), transparent 65%);
    pointer-events: none;
}
.submit-page .submit-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
    background-size: 22px 22px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .4), transparent 85%);
    pointer-events: none;
}
.submit-page .submit-hero .container { position: relative; z-index: 1; }
.submit-page .submit-hero-breadcrumb { color: #94a3b8; }
.submit-page .submit-hero-breadcrumb .breadcrumb-item a { color: #c7d2fe; }
.submit-page .submit-hero-breadcrumb .breadcrumb-item a:hover { color: #ffffff; }
.submit-page .submit-hero-breadcrumb .breadcrumb-item.active { color: #ffffff; }
.submit-page .submit-hero-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.submit-page .submit-hero-body {
    display: flex; align-items: center; justify-content: space-between;
    gap: 26px; margin-top: 18px;
}
.submit-page .submit-hero-text { flex: 1; min-width: 260px; }
.submit-page .submit-hero-title {
    font-size: clamp(26px, 3.2vw, 38px); font-weight: 800; color: #ffffff;
    letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 12px;
}
.submit-page .submit-hero-title i { color: #fb923c; margin-right: 10px; }
.submit-page .submit-hero-sub { font-size: 15px; color: #c7d2fe; margin: 0; line-height: 1.6; max-width: 620px; }
.submit-page .submit-hero-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.submit-page .submit-hero-card {
    flex-shrink: 0; min-width: 250px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px; padding: 18px 20px;
    backdrop-filter: blur(6px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}
.submit-page .submit-hero-card-icon {
    width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
    background: rgba(251, 146, 60, .18); color: #fb923c;
    display: inline-flex; align-items: center; justify-content: center; font-size: 20px;
}
.submit-page .submit-hero-card-num { font-size: 24px; font-weight: 800; color: #ffffff; line-height: 1.1; }
.submit-page .submit-hero-card-label { font-size: 12px; color: #94a3b8; }
.submit-page .submit-hero-card-note { font-size: 12.5px; color: #c7d2fe; margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255, 255, 255, .12); }
.submit-page .submit-hero-card-note i { color: #4ade80; }
@media (max-width: 991px) {
    .submit-page .submit-hero-body { flex-direction: column; align-items: flex-start; }
    .submit-page .submit-hero-card { width: 100%; }
}

/* --- Form card --- */
.submit-page .submit-form-card {
    border: 1px solid #eef2f7; border-radius: 18px;
    box-shadow: 0 4px 24px rgba(15, 23, 42, .06);
}
.submit-page .submit-form-head {
    display: flex; align-items: center; gap: 14px;
    padding-bottom: 16px; margin-bottom: 22px;
    border-bottom: 2px solid #eef2f7;
}
.submit-page .sec-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    background: #eef4ff; color: var(--primary);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 17px;
}
.submit-page .submit-form-head h2 { font-size: 20px; font-weight: 800; color: #1e293b; }
.submit-page .submit-form-step {
    display: flex; align-items: center; gap: 10px;
    font-size: 14px; font-weight: 800; color: #1e3a8a;
    text-transform: uppercase; letter-spacing: .4px;
    margin: 22px 0 14px;
}
.submit-page .submit-form-step > span { display: inline-flex; gap: 10px; align-items: center; }
.submit-page .submit-form-step::after { content: ''; flex: 1; height: 1px; background: #eef2f7; }
.submit-page .submit-input, .submit-page .form-select.submit-input {
    border-radius: 10px; border: 1px solid #e2e8f0; font-size: 14px; padding: 9px 12px;
}
.submit-page .submit-input:focus, .submit-page .form-select.submit-input:focus {
    border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12);
}
.submit-page .submit-input-addon {
    background: #f8fafc; border: 1px solid #e2e8f0; border-right: 0;
    border-radius: 10px 0 0 10px !important; color: #94a3b8; font-size: 13px;
}
.submit-page .submit-input-addon + .submit-input { border-top-left-radius: 0; border-bottom-left-radius: 0; }
.submit-page .submit-form-card .form-label { font-size: 13px; color: #334155; }

/* --- Sidebar --- */
.submit-page .submit-side-card {
    border: 1px solid #eef2f7; border-radius: 16px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, .05);
}
.submit-page .submit-side-card .side-card-title { font-size: 15px; display: flex; align-items: center; gap: 10px; color: #1e293b; }
.submit-page .submit-side-card .sec-icon { width: 34px; height: 34px; font-size: 14px; border-radius: 10px; }
.submit-page .submit-steps .submit-step-num {
    width: 30px; height: 30px; flex-shrink: 0; margin-right: 12px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1e3a8a, #312e81); color: #ffffff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800;
}
.submit-page .submit-trust-card { background: linear-gradient(165deg, #ffffff 45%, #f4f8ff); }
.submit-page .submit-check { color: #16a34a; font-size: 13px; }
.submit-page .submit-provider-card { border-color: #fed7aa; }
.submit-page .submit-provider-ico {
    width: 56px; height: 56px; margin: 0 auto 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5); color: #ea580c;
    display: flex; align-items: center; justify-content: center; font-size: 22px;
}
@media (max-width: 576px) {
    .submit-page .submit-hero { padding: 20px 0 30px; }
    .submit-page .submit-hero-title i { display: block; margin: 0 0 8px; }
}

/* ==========================================================================
   LOCATIONS INDEX PAGE (views/locations/index.php) - scoped under .locations-page
   ========================================================================== */
.locations-page .loc-hero {
    position: relative; overflow: hidden;
    padding: 44px 0 76px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.locations-page .loc-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.locations-page .loc-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.locations-page .loc-hero .container { position: relative; z-index: 2; }
.locations-page .loc-hero .breadcrumb-item a { color: #c7d2fe; }
.locations-page .loc-hero .breadcrumb-item a:hover { color: #fff; }
.locations-page .loc-hero .breadcrumb-item.active { color: #fff; }
.locations-page .loc-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.locations-page .loc-hero-title {
    font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; color: #fff;
    letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 14px;
}
.locations-page .loc-hero-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; vertical-align: middle;
    border-radius: 14px; background: linear-gradient(150deg, #f97316, #fb923c);
    color: #fff; font-size: 22px;
    box-shadow: 0 10px 24px rgba(249, 115, 22, .4);
}
.locations-page .loc-hero-sub {
    max-width: 640px; font-size: 15.5px; line-height: 1.65;
    color: #c7d2fe; margin: 0;
}
.locations-page .loc-quote-card {
    border-radius: 18px; padding: 22px 24px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}
.locations-page .loc-quote-ico {
    width: 44px; height: 44px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251, 146, 60, .18); color: #fb923c; font-size: 19px;
    margin-bottom: 12px;
}
.locations-page .loc-quote-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.locations-page .loc-quote-text { font-size: .88rem; line-height: 1.6; color: #c7d2fe; }

.locations-page .loc-section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.locations-page .loc-section-icon {
    flex: none;
    width: 46px; height: 46px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #eef2ff; color: var(--primary); font-size: 19px;
}
.locations-page .loc-section-title { font-size: 1.45rem; font-weight: 800; color: #101a30; letter-spacing: -.01em; margin: 0; }
.locations-page .loc-section-hint { color: #8891a7; font-size: .95rem; margin: 0; }

.locations-page .loc-country-card {
    display: block; height: 100%;
    border-radius: 16px; padding: 16px;
    background: #fff; border: 1px solid #e5e9f2;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.locations-page .loc-country-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 26, 48, .12);
    border-color: rgba(249, 115, 22, .5);
}
.locations-page .loc-flag-tile {
    width: 100%; height: 92px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 30px; margin-bottom: 14px;
}
.locations-page .loc-country-body { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.locations-page .loc-country-name { font-size: 1.02rem; font-weight: 700; color: #101a30; width: 100%; margin: 0; }
.locations-page .loc-pros-pill {
    display: inline-flex; align-items: center;
    font-size: .78rem; font-weight: 600; color: #1e3a8a;
    background: #eef2ff; border-radius: 999px; padding: 4px 10px;
}
.locations-page .loc-arrow {
    margin-left: auto;
    display: inline-flex; align-items: center; justify-content: center;
    width: 27px; height: 27px; border-radius: 50%;
    background: #fff1e8; color: #f97316; font-size: 12px;
    transition: transform .18s ease;
}
.locations-page .loc-country-card:hover .loc-arrow { transform: translateX(3px); background: #f97316; color: #fff; }

@media (max-width: 991px) {
    .locations-page .loc-hero { padding: 38px 0 60px; }
}
@media (max-width: 575.98px) {
    .locations-page .loc-hero { padding: 28px 0 48px; }
    .locations-page .loc-flag-tile { height: 76px; font-size: 24px; }
}

/* --- Drill-down (country / state / city) shared pieces --- */
.locations-page .loc-side-card {
    background: #fff; border: 1px solid #e5e9f2; border-radius: 14px;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05); overflow: hidden;
}
.locations-page .loc-side-head {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; font-weight: 800; color: #1e293b;
    padding: 12px 16px; border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #f8fafc, #fff);
}
.locations-page .loc-side-head i { color: var(--primary); font-size: 14px; width: 18px; text-align: center; }
.locations-page .loc-side-head-danger i { color: #dc2626; }
.locations-page .loc-side-body { padding: 8px 10px; }
.locations-page .loc-side-select {
    border-radius: 10px; border: 1px solid #e2e8f0; font-size: 13.5px; padding: 7px 10px;
}
.locations-page .loc-side-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(37, 99, 235, .12); }
.locations-page .loc-side-card .form-label { font-size: 12.5px; color: #334155; }
.locations-page .loc-cat-link {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
    padding: 7px 8px; border-radius: 8px;
    font-size: 13px; color: #334155; text-decoration: none;
    transition: background .15s ease, color .15s ease;
}
.locations-page .loc-cat-link:hover { background: #f1f5ff; color: #1e3a8a; }
.locations-page .loc-cat-count {
    flex-shrink: 0; min-width: 24px; text-align: center;
    font-size: 11.5px; font-weight: 700; color: #1e3a8a;
    background: #eef2ff; border-radius: 999px; padding: 2px 8px;
}

/* --- City pro listing cards --- */
.locations-page .loc-company-card {
    background: #fff; border: 1px solid #e5e9f2; border-radius: 16px;
    padding: 18px; height: 100%;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05);
    display: flex; flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.locations-page .loc-company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(16, 26, 48, .11);
    border-color: rgba(249, 115, 22, .45);
}
.locations-page .loc-logo {
    width: 56px; height: 56px; object-fit: cover;
    border-radius: 12px; border: 1px solid #eef2f7;
}
.locations-page .loc-logo-mono {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    color: #fff; font-weight: 800; font-size: 18px;
    border: 0;
}
.locations-page .loc-rating-pill {
    display: inline-flex; align-items: center; gap: 4px;
    font-size: 12px; font-weight: 700; color: #b45309;
    background: #fef3c7; border-radius: 999px; padding: 3px 10px;
}
.locations-page .loc-rating-pill i { font-size: 10px; color: #f59e0b; }
.locations-page .loc-rating-pill span { color: #92400e; font-weight: 600; opacity: .7; }
.locations-page .loc-chip {
    font-size: 11px; font-weight: 600; color: #475569;
    background: #f8fafc; border: 1px solid #e2e8f0;
    border-radius: 999px; padding: 3px 10px;
}
.locations-page .loc-pagination .page-link {
    color: #1e3a8a; border-color: #e5e9f2; border-radius: 10px;
    margin: 0 3px; font-size: 13.5px; font-weight: 600;
}
.locations-page .loc-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    border-color: #1e3a8a;
}
.locations-page .loc-pagination .page-link:focus { box-shadow: 0 0 0 3px rgba(37, 99, 235, .15); }

/* ==========================================================================
   BLOG INDEX PAGE (views/blog/index.php) - scoped under .blog-page
   ========================================================================== */
.blog-page .blog-hero {
    position: relative; overflow: hidden;
    padding: 44px 0 76px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.blog-page .blog-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.blog-page .blog-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.blog-page .blog-hero .container { position: relative; z-index: 2; }
.blog-page .blog-hero .breadcrumb-item a { color: #c7d2fe; }
.blog-page .blog-hero .breadcrumb-item a:hover { color: #fff; }
.blog-page .blog-hero .breadcrumb-item.active { color: #fff; }
.blog-page .blog-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.blog-page .blog-hero-title {
    font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; color: #fff;
    letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 14px;
}
.blog-page .blog-hero-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; vertical-align: middle;
    border-radius: 14px; background: linear-gradient(150deg, #f97316, #fb923c);
    color: #fff; font-size: 22px;
    box-shadow: 0 10px 24px rgba(249, 115, 22, .4);
}
.blog-page .blog-hero-sub {
    max-width: 620px; font-size: 15.5px; line-height: 1.65;
    color: #c7d2fe; margin: 0;
}
.blog-page .blog-search-card {
    border-radius: 18px; padding: 20px 22px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}
.blog-page .blog-search-head {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.blog-page .blog-search-head i { color: #fb923c; }
.blog-page .blog-search-input {
    border-radius: 10px 0 0 10px !important;
    border: 1px solid rgba(255, 255, 255, .22) !important;
    background: rgba(255, 255, 255, .12); color: #fff; font-size: 14px; padding: 10px 14px;
}
.blog-page .blog-search-input::placeholder { color: rgba(255, 255, 255, .55); }
.blog-page .blog-search-input:focus {
    background: rgba(255, 255, 255, .16);
    border-color: rgba(251, 146, 60, .7) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .25) !important;
    color: #fff;
}
.blog-page .blog-search-clear {
    display: inline-flex; align-items: center;
    font-size: 12.5px; color: #c7d2fe; text-decoration: none; margin-top: 10px;
}
.blog-page .blog-search-clear:hover { color: #fb923c; }

/* --- Topic filter strip --- */
.blog-page .blog-topic-strip {
    display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
    padding: 14px 16px; margin-top: 4px;
    background: #fff; border: 1px solid #e5e9f2; border-radius: 14px;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05);
}
.blog-page .blog-topic-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 800; color: #101a30;
    margin-right: 4px;
}
.blog-page .blog-topic-label i { color: var(--primary); }
.blog-page .blog-topic-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 13px; font-weight: 600; color: #475569;
    text-decoration: none; padding: 6px 13px; border-radius: 999px;
    background: #f1f5f9; border: 1px solid transparent;
    transition: all .15s ease;
}
.blog-page .blog-topic-chip:hover { color: #1e3a8a; background: #eef2ff; }
.blog-page .blog-topic-chip.active {
    color: #fff; background: linear-gradient(135deg, #1e3a8a, #312e81);
}
.blog-page .blog-topic-count {
    font-size: 11px; font-weight: 700;
    background: rgba(15, 23, 42, .08); border-radius: 999px; padding: 1px 7px;
    color: inherit;
}
.blog-page .blog-topic-chip.active .blog-topic-count { background: rgba(255, 255, 255, .22); color: #fff; }

/* --- Shared chips / meta --- */
.blog-page .blog-meta-chip {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 700; color: #1e3a8a;
    background: #eef2ff; border-radius: 999px; padding: 5px 12px;
}
.blog-page .blog-meta-chip i { font-size: 10px; }

/* --- Featured card --- */
.blog-page .blog-feature-card {
    display: block; border-radius: 20px;
    background: #fff; border: 1px solid #e5e9f2;
    box-shadow: 0 4px 20px rgba(16, 26, 48, .08);
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-page .blog-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(16, 26, 48, .13);
    border-color: rgba(249, 115, 22, .5);
}
.blog-page .blog-feature-media { position: relative; min-height: 300px; }
.blog-page .blog-feature-img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; }
.blog-page .blog-feature-fallback {
    width: 100%; height: 100%; min-height: 300px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #0b1d4a, #1e3a8a 60%, #312e81);
    color: #fff; font-size: 56px; opacity: .92;
}
.blog-page .blog-feature-featured {
    position: absolute; top: 14px; left: 14px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; font-weight: 800; color: #fff;
    background: linear-gradient(135deg, #f97316, #fb923c);
    border-radius: 999px; padding: 6px 13px;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .45);
}
.blog-page .blog-feature-body { padding: 26px 28px; height: 100%; }
.blog-page .blog-feature-title {
    font-size: 1.45rem; font-weight: 800; color: #101a30;
    line-height: 1.3; margin: 0 0 12px; letter-spacing: -.01em;
}
.blog-page .blog-feature-card:hover .blog-feature-title { color: #1e3a8a; }
.blog-page .blog-feature-excerpt { font-size: 14.5px; line-height: 1.7; color: #566070; margin: 0; }
.blog-page .blog-avatar-md {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #312e81); color: #fff;
    font-size: 13px; font-weight: 800;
}
.blog-page .blog-author-name { font-size: 13px; font-weight: 700; color: #101a30; }
.blog-page .blog-author-meta { font-size: 12px; color: #8891a7; }

/* --- Grid cards --- */
.blog-page .blog-grid-card {
    display: flex; flex-direction: column; height: 100%;
    border-radius: 16px; overflow: hidden;
    background: #fff; border: 1px solid #e5e9f2;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-page .blog-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 26, 48, .11);
    border-color: rgba(249, 115, 22, .45);
}
.blog-page .blog-grid-media { position: relative; overflow: hidden; }
.blog-page .blog-grid-img { width: 100%; height: 190px; object-fit: cover; transition: transform .5s ease; }
.blog-page .blog-grid-card:hover .blog-grid-img { transform: scale(1.05); }
.blog-page .blog-grid-fallback {
    width: 100%; height: 190px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #0b1d4a, #1e3a8a 60%, #312e81);
    color: #fff; font-size: 42px;
}
.blog-page .blog-meta-chip-abs { position: absolute; top: 12px; left: 12px; }
.blog-page .blog-grid-body { padding: 18px; flex: 1; }
.blog-page .blog-grid-title {
    font-size: 1rem; font-weight: 800; color: #101a30; line-height: 1.4;
    margin: 0 0 8px;
}
.blog-page .blog-grid-card:hover .blog-grid-title { color: #1e3a8a; }
.blog-page .blog-grid-excerpt { font-size: 13px; line-height: 1.6; color: #6b7280; margin: 0; }
.blog-page .blog-grid-meta { border-top: 1px solid #eef2f7; gap: 8px; }
.blog-page .blog-grid-author { font-size: 12.5px; font-weight: 600; color: #374151; }
.blog-page .blog-grid-date { font-size: 12px; color: #8891a7; }

/* --- Pagination --- */
.blog-page .blog-pagination .page-link {
    color: #1e3a8a; border-color: #e5e9f2; border-radius: 10px;
    margin: 0 3px; font-size: 13.5px; font-weight: 600; width: 38px; text-align: center;
}
.blog-page .blog-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #1e3a8a, #312e81);
    border-color: #1e3a8a;
}
.blog-page .blog-pagination .page-link:focus { box-shadow: 0 0 0 3px rgba(37, 99, 235, .15); }

/* --- Sidebar --- */
.blog-page .blog-side-card {
    background: #fff; border: 1px solid #e5e9f2; border-radius: 14px;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05); overflow: hidden;
}
.blog-page .blog-side-head {
    display: flex; align-items: center; gap: 9px;
    font-size: 13.5px; font-weight: 800; color: #1e293b;
    padding: 13px 16px; border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #f8fafc, #fff);
}
.blog-page .blog-side-head i { color: var(--primary); font-size: 14px; width: 18px; text-align: center; }
.blog-page .blog-side-body { padding: 8px 12px; }
.blog-page .blog-recent-row {
    display: flex; align-items: center; gap: 12px;
    padding: 9px 4px; border-radius: 10px; text-decoration: none;
    transition: background .15s ease;
}
.blog-page .blog-recent-row:hover { background: #f1f5ff; }
.blog-page .blog-thumb {
    flex-shrink: 0; width: 58px; height: 58px; border-radius: 10px; object-fit: cover;
}
.blog-page .blog-thumb-fallback {
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #312e81); color: #fff; font-size: 18px;
}
.blog-page .blog-recent-title {
    display: block; font-size: 13px; font-weight: 700; color: #1e293b;
    line-height: 1.4; margin-bottom: 4px;
}
.blog-page .blog-recent-row:hover .blog-recent-title { color: #1e3a8a; }
.blog-page .blog-recent-date { font-size: 11.5px; color: #8891a7; }

/* --- Newsletter --- */
.blog-page .blog-newsletter {
    border: 0;
    background: radial-gradient(600px 260px at 20% 0%, rgba(56, 89, 204, .4), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62);
    color: #fff; padding: 8px;
}
.blog-page .blog-newsletter-body { padding: 18px 20px; }
.blog-page .blog-newsletter-icon {
    width: 44px; height: 44px; border-radius: 13px; margin-bottom: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251, 146, 60, .18); color: #fb923c; font-size: 18px;
}
.blog-page .blog-newsletter-title { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 4px; }
.blog-page .blog-newsletter-text { font-size: 12.5px; line-height: 1.55; color: #c7d2fe; }
.blog-page .blog-newsletter-input {
    border-radius: 10px 0 0 10px !important;
    border: 1px solid rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .1); color: #fff; font-size: 13.5px; padding: 9px 13px;
}
.blog-page .blog-newsletter-input::placeholder { color: rgba(255, 255, 255, .55); }
.blog-page .blog-newsletter-input:focus {
    background: rgba(255, 255, 255, .16); color: #fff;
    border-color: rgba(251, 146, 60, .7) !important;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .25) !important;
}
.blog-page .blog-newsletter-ok { font-size: 12.5px; font-weight: 600; color: #4ade80; }

/* --- Social --- */
.blog-page .blog-social {
    width: 38px; height: 38px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px; text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.blog-page .blog-social:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(16, 26, 48, .18); }

@media (max-width: 991px) {
    .blog-page .blog-hero { padding: 38px 0 60px; }
    .blog-page .blog-feature-media, .blog-page .blog-feature-fallback, .blog-page .blog-feature-img { min-height: 240px; }
}
@media (max-width: 575.98px) {
    .blog-page .blog-hero { padding: 28px 0 48px; }
    .blog-page .blog-feature-body { padding: 20px; }
}

/* ==========================================================================
   SERVICES INDEX PAGE (views/agencies/categories.php) - scoped under .services-page
   ========================================================================== */
.services-page .svc-hero {
    position: relative; overflow: hidden;
    padding: 44px 0 76px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.services-page .svc-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 520px; height: 520px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.services-page .svc-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.services-page .svc-hero .container { position: relative; z-index: 2; }
.services-page .svc-hero .breadcrumb-item a { color: #c7d2fe; }
.services-page .svc-hero .breadcrumb-item a:hover { color: #fff; }
.services-page .svc-hero .breadcrumb-item.active { color: #fff; }
.services-page .svc-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.services-page .svc-hero-title {
    font-size: clamp(26px, 3.2vw, 40px); font-weight: 800; color: #fff;
    letter-spacing: -0.02em; line-height: 1.12; margin: 0 0 14px;
}
.services-page .svc-hero-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; vertical-align: middle;
    border-radius: 14px; background: linear-gradient(150deg, #f97316, #fb923c);
    color: #fff; font-size: 22px;
    box-shadow: 0 10px 24px rgba(249, 115, 22, .4);
}
.services-page .svc-hero-sub {
    max-width: 640px; font-size: 15.5px; line-height: 1.65;
    color: #c7d2fe; margin: 0;
}
.services-page .svc-cta-card {
    border-radius: 18px; padding: 22px 24px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .32);
}
.services-page .svc-cta-ico {
    width: 44px; height: 44px; border-radius: 13px; margin-bottom: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251, 146, 60, .18); color: #fb923c; font-size: 19px;
}
.services-page .svc-cta-title { font-weight: 700; font-size: 1rem; color: #fff; margin-bottom: 4px; }
.services-page .svc-cta-text { font-size: .88rem; line-height: 1.6; color: #c7d2fe; }

.services-page .svc-section-head { display: flex; align-items: center; gap: 14px; }
.services-page .svc-section-icon {
    flex: none;
    width: 46px; height: 46px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #eef2ff; color: var(--primary); font-size: 19px;
}
.services-page .svc-section-icon-alt { background: #fff1e8; color: #f97316; }
.services-page .svc-section-title { font-size: 1.45rem; font-weight: 800; color: #101a30; letter-spacing: -.01em; margin: 0; }
.services-page .svc-section-hint { color: #8891a7; font-size: .95rem; margin: 0; }

.services-page .svc-card {
    display: block; height: 100%; border-radius: 16px;
    padding: 18px 18px 16px;
    background: #fff; border: 1px solid #e5e9f2;
    box-shadow: 0 2px 10px rgba(16, 26, 48, .05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.services-page .svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16, 26, 48, .12);
    border-color: rgba(249, 115, 22, .5);
}
.services-page .svc-icon-tile {
    width: 54px; height: 54px; border-radius: 14px; margin-bottom: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 24px;
    box-shadow: 0 6px 16px rgba(16, 26, 48, .18);
}
.services-page .svc-name { font-size: 1.02rem; font-weight: 700; color: #101a30; }
.services-page .svc-pros-pill {
    display: inline-flex; align-items: center;
    font-size: .78rem; font-weight: 600; color: #1e3a8a;
    background: #eef2ff; border-radius: 999px; padding: 4px 10px;
}
.services-page .svc-arrow {
    margin-left: auto;
    display: inline-flex; align-items: center; justify-content: center;
    width: 27px; height: 27px; border-radius: 50%;
    background: #fff1e8; color: #f97316; font-size: 12px;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.services-page .svc-card:hover .svc-arrow { transform: translateX(3px); background: #f97316; color: #fff; }

.services-page .svc-card-sm { display: flex; align-items: center; gap: 12px; padding: 14px 16px; }
.services-page .svc-icon-tile-sm { width: 42px; height: 42px; border-radius: 11px; margin-bottom: 0; font-size: 19px; flex-shrink: 0; box-shadow: none; }
.services-page .svc-name-sm { font-size: .95rem; line-height: 1.3; }
.services-page .svc-arrow-sm { width: 24px; height: 24px; font-size: 11px; }

.services-page .svc-cta-band {
    display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
    border-radius: 18px; padding: 22px 26px;
    background: radial-gradient(700px 240px at 12% 0%, rgba(56, 89, 204, .38), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62);
    color: #fff;
    border: 1px solid rgba(251, 146, 60, .3);
}
.services-page .svc-cta-band-ico {
    width: 48px; height: 48px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251, 146, 60, .18); color: #fb923c; font-size: 21px;
}
.services-page .svc-cta-band-title { font-size: 1.1rem; font-weight: 800; }
.services-page .svc-cta-band-text { font-size: .9rem; color: #c7d2fe; }

@media (max-width: 991px) {
    .services-page .svc-hero { padding: 38px 0 60px; }
}
@media (max-width: 575.98px) {
    .services-page .svc-hero { padding: 28px 0 48px; }
}

/* ==========================================================================
   BLOG SINGLE PAGE (views/blog/single.php) - scoped under .blog-single
   ========================================================================== */
.blog-single .bs-hero {
    position: relative; overflow: hidden;
    padding: 0 0 40px;
    background: linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
}
.blog-single .bs-hero-noimg { padding: 40px 0 38px; }
.blog-single .bs-hero-img-wrap { position: relative; max-height: 420px; overflow: hidden; }
.blog-single .bs-hero-img { width: 100%; height: 420px; object-fit: cover; display: block; }
.blog-single .bs-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(11,19,41,0) 30%, rgba(11,19,41,.88) 100%);
    pointer-events: none;
}
.blog-single .bs-hero-body { position: relative; z-index: 2; }
.blog-single .bs-hero-noimg { background: radial-gradient(900px 400px at 82% -10%, rgba(56,89,204,.32), transparent 60%),
    linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329); padding: 44px 0 40px; }
.blog-single .bs-hero .breadcrumb-item a { color: #c7d2fe; text-decoration: none; }
.blog-single .bs-hero .breadcrumb-item a:hover { color: #fff; }
.blog-single .bs-hero .breadcrumb-item.active { color: #fff; }
.blog-single .bs-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.blog-single .bs-hero-chip {
    display: inline-flex; align-items: center;
    font-size: 12px; font-weight: 700; color: #fff;
    background: rgba(249,115,22,.22); border: 1px solid rgba(251,146,60,.45);
    border-radius: 999px; padding: 4px 14px; margin-bottom: 14px; text-decoration: none;
    transition: background .15s ease;
}
.blog-single .bs-hero-chip:hover { background: rgba(249,115,22,.38); color: #fff; }
.blog-single .bs-hero-title {
    font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; color: #fff;
    line-height: 1.14; letter-spacing: -.02em; margin: 0 0 16px;
}
.blog-single .bs-hero-meta {
    display: flex; flex-wrap: wrap; gap: 14px;
    font-size: 13.5px; font-weight: 500; color: #c7d2fe;
}
.blog-single .bs-hero-meta i { font-size: 12px; margin-right: 5px; opacity: .7; }
.blog-single .bs-meta-updated { color: #fbbf24; }
.blog-single .bs-hero-author {
    display: flex; align-items: center; gap: 12px; margin-top: 18px;
}
.blog-single .bs-hero-avatar {
    width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255,255,255,.3); flex-shrink: 0;
}
.blog-single .bs-hero-avatar-fallback {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    font-size: 15px; font-weight: 800; border: 2px solid rgba(255,255,255,.3);
}
.blog-single .bs-hero-author-name { display: block; font-size: 14px; font-weight: 700; color: #fff; }
.blog-single .bs-hero-author-role { display: block; font-size: 12.5px; color: #94a3b8; }

/* --- TOC --- */
.blog-single .bs-toc-wrap {
    position: sticky;
    top: 96px;
    z-index: 100;
    background: #fff; border: 1px solid #e5e9f2; border-radius: 14px;
    box-shadow: 0 2px 10px rgba(16,26,48,.05); overflow: hidden;
}
.blog-single .bs-toc-head {
    display: flex; align-items: center; gap: 8px;
    font-size: 13.5px; font-weight: 800; color: #1e293b;
    padding: 13px 16px; border-bottom: 1px solid #eef2f7;
    background: linear-gradient(180deg, #f8fafc, #fff);
}
.blog-single .bs-toc-head i { color: var(--primary); font-size: 14px; }
.blog-single .bs-toc-nav { padding: 8px 0; max-height: 65vh; overflow-y: auto; }
.blog-single .bs-toc-nav li a {
    display: block; padding: 7px 16px;
    font-size: 13px; font-weight: 500; color: #64748b;
    border-left: 3px solid transparent; text-decoration: none;
    transition: all .15s ease;
}
.blog-single .bs-toc-nav li a:hover { color: #1e3a8a; background: #f8fafc; }
.blog-single .bs-toc-nav li a.active {
    color: #1e3a8a; font-weight: 700;
    border-left-color: #f97316; background: #fff7ed;
}

/* --- Updated badge --- */
.blog-single .bs-updated-badge {
    display: flex; align-items: center; gap: 9px;
    padding: 12px 16px; border-radius: 12px; margin-bottom: 24px;
    background: #fef9ee; border: 1px solid #fde68a;
    font-size: 13.5px; color: #92400e;
}
.blog-single .bs-updated-badge i { color: #f59e0b; flex-shrink: 0; }

/* --- Article --- */
.blog-single .bs-article {
    font-size: 16.5px; line-height: 1.8; color: #1e293b;
}
.blog-single .bs-article h2 {
    font-size: 1.4rem; font-weight: 800; color: #101a30;
    margin: 2rem 0 0.9rem; letter-spacing: -.01em;
}
.blog-single .bs-article p { margin-bottom: 1.15rem; }
.blog-single .bs-article img { max-width: 100%; height: auto; border-radius: 12px; margin: 1.2rem 0; }
.blog-single .bs-article ul, .blog-single .bs-article ol { margin-bottom: 1.15rem; padding-left: 1.5rem; }
.blog-single .bs-article li { margin-bottom: 0.35rem; }
.blog-single .bs-article blockquote {
    border-left: 4px solid #f97316; margin: 1.5rem 0; padding: 14px 18px;
    background: #fff7ed; border-radius: 0 12px 12px 0;
    color: #475569; font-style: italic;
}
.blog-single .bs-article strong { color: #101a30; }

/* --- Share bar --- */
.blog-single .bs-share-bar {
    display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
    padding: 18px 0; margin: 32px 0 0; border-top: 1px solid #eef2f7;
}
.blog-single .bs-share-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700; color: #64748b; margin-right: 2px;
}
.blog-single .bs-share-btn {
    width: 40px; height: 40px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 15px; border: 0; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease; text-decoration: none;
    position: relative;
}
.blog-single .bs-share-twitter  { background: #000; }
.blog-single .bs-share-facebook { background: #1877F2; }
.blog-single .bs-share-linkedin { background: #0A66C2; }
.blog-single .bs-share-copy    { background: #64748b; }
.blog-single .bs-share-copy span {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    font-size: 11px; font-weight: 600; color: #16a34a; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: opacity .2s ease; margin-top: 4px;
}
.blog-single .bs-share-copy.copied span { opacity: 1; }
.blog-single .bs-share-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(16,26,48,.18); }

/* --- Feedback --- */
.blog-single .bs-feedback {
    display: flex; align-items: center; flex-wrap: wrap; gap: 14px;
    padding: 18px 20px; border-radius: 14px; margin-top: 24px;
    background: #f8fafc; border: 1px solid #e5e9f2;
}
.blog-single .bs-feedback-text {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: #1e293b; margin-right: auto;
}
.blog-single .bs-feedback-text i { color: #f97316; }
.blog-single .bs-feedback-btns { display: flex; gap: 8px; }
.blog-single .bs-fb-btn {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 7px 14px; border-radius: 999px;
    border: 1px solid #e2e8f0; background: #fff;
    font-size: 13px; font-weight: 600; color: #475569; cursor: pointer;
    transition: all .15s ease;
}
.blog-single .bs-fb-btn:hover { border-color: #1e3a8a; color: #1e3a8a; background: #f1f5ff; }
.blog-single .bs-feedback-ok {
    font-size: 13.5px; font-weight: 600; color: #16a34a;
    display: inline-flex; align-items: center; gap: 6px;
}

/* --- CTA Banner --- */
.blog-single .bs-cta-banner {
    display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
    border-radius: 18px; padding: 24px 26px; margin-top: 28px;
    background: radial-gradient(700px 240px at 12% 0%, rgba(56,89,204,.38), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62);
    color: #fff; border: 1px solid rgba(251,146,60,.3);
}
.blog-single .bs-cta-ico {
    width: 48px; height: 48px; border-radius: 14px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(251,146,60,.18); color: #fb923c; font-size: 22px;
}
.blog-single .bs-cta-title { font-size: 1.1rem; font-weight: 800; }
.blog-single .bs-cta-text  { font-size: .9rem; color: #c7d2fe; }

/* --- Author box --- */
.blog-single .bs-author {
    background: linear-gradient(180deg, #ffffff 55%, #f9fbff);
    border: 1px solid #e5e9f2; border-radius: 16px;
    padding: 24px 26px; margin-top: 28px;
    box-shadow: 0 2px 10px rgba(16,26,48,.04);
}
.blog-single .bs-author-label {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 700; color: #8891a7;
    text-transform: uppercase; letter-spacing: .4px; margin-bottom: 16px;
}
.blog-single .bs-author-label i { color: #f97316; }
.blog-single .bs-author-photo {
    width: 80px; height: 80px; border-radius: 50%; object-fit: cover;
    border: 3px solid #f1f5f9; flex-shrink: 0;
}
.blog-single .bs-author-photo-fallback {
    display: inline-flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #1e3a8a, #312e81); color: #fff;
    font-size: 28px; font-weight: 800; border: 3px solid #f1f5f9;
}
.blog-single .bs-author-name { font-size: 1.05rem; font-weight: 800; color: #101a30; }
.blog-single .bs-author-role { font-size: 13px; color: #f97316; font-weight: 600; margin-top: 2px; }
.blog-single .bs-author-bio  { font-size: 14px; line-height: 1.65; color: #566070; margin: 10px 0 12px; }
.blog-single .bs-author-socials { display: flex; gap: 8px; }
.blog-single .bs-social-link {
    width: 36px; height: 36px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff; font-size: 14px; text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.blog-single .bs-social-link:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(16,26,48,.18); }

/* --- Related posts --- */
.blog-single .bs-related { margin-top: 40px; }
.blog-single .bs-related-head { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.blog-single .bs-related-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: inline-flex; align-items: center; justify-content: center;
    background: #eef2ff; color: var(--primary); font-size: 18px;
}
.blog-single .bs-related-title { font-size: 1.3rem; font-weight: 800; color: #101a30; margin: 0; }
.blog-single .bs-related-hint { color: #8891a7; font-size: .9rem; }
.blog-single .bs-related-card {
    display: block; border-radius: 14px; overflow: hidden;
    background: #fff; border: 1px solid #e5e9f2;
    box-shadow: 0 2px 10px rgba(16,26,48,.05);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.blog-single .bs-related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(16,26,48,.11);
    border-color: rgba(249,115,22,.45);
}
.blog-single .bs-related-media { overflow: hidden; }
.blog-single .bs-related-img { width: 100%; height: 170px; object-fit: cover; transition: transform .5s ease; }
.blog-single .bs-related-card:hover .bs-related-img { transform: scale(1.05); }
.blog-single .bs-related-fallback {
    width: 100%; height: 170px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #0b1d4a, #1e3a8a 60%, #312e81);
    color: #fff; font-size: 36px;
}
.blog-single .bs-related-body { padding: 14px 16px; }
.blog-single .bs-related-date {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 11.5px; font-weight: 600; color: #8891a7;
}
.blog-single .bs-related-date i { font-size: 10px; }
.blog-single .bs-related-card-title {
    font-size: .95rem; font-weight: 700; color: #101a30;
    line-height: 1.4; margin: 6px 0 0;
}
.blog-single .bs-related-card:hover .bs-related-card-title { color: #1e3a8a; }

@media (max-width: 991px) {
    .blog-single .bs-toc-wrap { display: none; }
    .blog-single .bs-hero-img { height: 280px; }
}
@media (max-width: 575.98px) {
    .blog-single .bs-hero-noimg { padding: 32px 0 28px; }
    .blog-single .bs-hero-img { height: 220px; }
    .blog-single .bs-author { padding: 18px; }
    .blog-single .bs-cta-banner { padding: 18px; }
}

/* =======================================================
   HOME GUIDES SECTION (REDESIGNED)
   ======================================================= */
.home-guides-section {
    position: relative;
    overflow: hidden;
    padding: 72px 5%;
    background: linear-gradient(180deg, #0b1329 0%, #0e1b3d 55%, #0b1329 100%);
    color: #f8fafc;
}
.home-guides-section::before,
.home-guides-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}
.home-guides-section::before {
    width: 460px; height: 460px;
    top: -160px; left: -140px;
    background: rgba(37, 99, 235, 0.22);
}
.home-guides-section::after {
    width: 420px; height: 420px;
    bottom: -170px; right: -120px;
    background: rgba(249, 115, 22, 0.14);
}
.home-guides-section .section-container { position: relative; z-index: 1; }

.hb-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 38px; }
.hb-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #93c5fd; background: rgba(96,165,250,.1); border: 1px solid rgba(96,165,250,.25); padding: 7px 14px; border-radius: 999px; }
.hb-title { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: #fff; margin: 14px 0 8px; letter-spacing: -0.3px; }
.hb-title-accent { background: linear-gradient(90deg, #f97316, #fb923c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hb-subtitle { color: #94a3b8; font-size: 14.5px; max-width: 560px; margin: 0; line-height: 1.6; }
.hb-view-all { display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: 999px; font-size: 13.5px; font-weight: 700; color: #fff; background: linear-gradient(90deg, #f97316, #fb923c); box-shadow: 0 8px 22px rgba(249,115,22,.35); text-decoration: none; transition: all .25s ease; }
.hb-view-all:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(249,115,22,.45); color: #fff; }
.hb-view-all i { transition: transform .25s ease; }
.hb-view-all:hover i { transform: translateX(4px); }

.hb-layout { display: grid; grid-template-columns: 1.9fr 1.1fr; gap: 24px; align-items: stretch; }

.hb-featured { position: relative; display: block; text-decoration: none; border-radius: 18px; overflow: hidden; border: 1px solid rgba(59,91,176,.45); background: #0f1c3e; box-shadow: 0 24px 55px rgba(0,0,0,.45); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.hb-featured::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 3; background: linear-gradient(90deg, #f97316, #fb923c); }
.hb-featured:hover { transform: translateY(-4px); box-shadow: 0 30px 65px rgba(0,0,0,.55); border-color: rgba(249,115,22,.55); }
.hb-featured-media { position: relative; min-height: 410px; height: 100%; }
.hb-featured-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.hb-featured:hover .hb-featured-media img { transform: scale(1.06); }
.hb-featured-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,19,41,.3) 0%, rgba(11,19,41,.05) 42%, rgba(11,19,41,.95) 100%); }
.hb-featured-noimg { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; background: radial-gradient(circle at 30% 20%, #1c2d5e 0%, #0f1c3e 70%); }
.hb-featured-noimg i { font-size: 64px; color: #60a5fa; opacity: .7; }
.hb-chip { position: absolute; top: 18px; left: 18px; z-index: 3; display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; backdrop-filter: blur(4px); }
.hb-featured-overlay { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px; }
.hb-kicker { font-size: 12px; color: #bfdbfe; display: flex; align-items: center; font-weight: 600; margin-bottom: 8px; }
.hb-kicker i { margin-right: 5px; }
.hb-featured h3 { margin: 0 0 8px; font-size: clamp(19px, 2.4vw, 26px); font-weight: 800; line-height: 1.3; color: #fff; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hb-featured-excerpt { margin: 0 0 14px; font-size: 13.5px; color: #cbd5e1; line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; max-width: 92%; }
.hb-arrow-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 800; color: #fb923c; }
.hb-arrow-link i { transition: transform .25s ease; }
.hb-featured:hover .hb-arrow-link i { transform: translateX(5px); }

.hb-side { display: grid; gap: 24px; align-content: start; }
.hb-card { display: flex; align-items: center; gap: 16px; text-decoration: none; background: var(--dark-card-bg); border: 1px solid var(--dark-border); border-radius: 16px; padding: 14px; transition: all .3s ease; }
.hb-card:hover { transform: translateY(-3px); border-color: rgba(59,91,176,.9); box-shadow: 0 14px 34px rgba(0,0,0,.35); }
.hb-card-media { position: relative; width: 118px; height: 118px; flex-shrink: 0; border-radius: 13px; overflow: hidden; background: #0f1c3e; display: flex; align-items: center; justify-content: center; }
.hb-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.hb-card:hover .hb-card-media img { transform: scale(1.07); }
.hb-card-media i { font-size: 38px; color: #60a5fa; opacity: .8; }
.hb-card-body { flex: 1; min-width: 0; }
.hb-chip-sm { position: static; padding: 4px 9px; font-size: 10px; backdrop-filter: none; }
.hb-card h3 { margin: 8px 0 6px; font-size: 15.5px; font-weight: 800; line-height: 1.35; color: #f8fafc; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hb-card:hover h3 { color: #fb923c; }
.hb-card p { margin: 0 0 10px; font-size: 12.5px; color: #94a3b8; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hb-meta { display: flex; flex-wrap: wrap; gap: 13px; font-size: 11.5px; color: #94a3b8; align-items: center; }
.hb-meta span { display: inline-flex; align-items: center; }
.hb-meta span i { margin-right: 5px; }
.hb-author { font-weight: 600; color: #cbd5e1; }
.hb-avatar { width: 24px; height: 24px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 9.5px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #f97316, #fb923c); flex-shrink: 0; }

@media (max-width: 991.98px) {
    .hb-layout { grid-template-columns: 1fr; }
    .hb-featured-media { min-height: 340px; }
}
@media (max-width: 575.98px) {
    .home-guides-section { padding: 56px 5%; }
    .hb-head-row { flex-direction: column; align-items: flex-start; }
    .hb-featured-media { min-height: 280px; }
    .hb-featured-overlay { padding: 20px; }
    .hb-card { flex-direction: column; align-items: stretch; }
    .hb-card-media { width: 100%; height: 170px; }
}

/* =======================================================
   FEATURED SERVICE EXPERTS SECTION (REDESIGNED)
   ======================================================= */
.featured-pros-section {
    position: relative;
    overflow: hidden;
    padding: 70px 5%;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2fa 100%);
    border-top: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
}
.featured-pros-section::before,
.featured-pros-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}
.featured-pros-section::before { top: -180px; right: -140px; width: 420px; height: 420px; background: rgba(249, 115, 22, 0.10); }
.featured-pros-section::after  { bottom: -160px; left: -140px; width: 420px; height: 420px; background: rgba(37, 99, 235, 0.10); }
.featured-pros-section .section-container { position: relative; z-index: 1; }

.fpro-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 38px; }
.fpro-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #1e3a8a; background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.2); padding: 7px 14px; border-radius: 999px; }
.fpro-title { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: #0b1329; margin: 14px 0 8px; letter-spacing: -0.3px; }
.fpro-title-accent { background: linear-gradient(90deg, #f97316, #fb923c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.fpro-subtitle { color: #64748b; font-size: 14.5px; max-width: 560px; margin: 0; line-height: 1.6; }

.fpro-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fpro-card { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; background: #fff; border: 1px solid #e5e9f2; border-radius: 18px; padding: 26px 22px 20px; text-decoration: none; box-shadow: 0 10px 30px rgba(23,37,84,.06); transition: all .3s ease; }
.fpro-card::before { content: ''; position: absolute; top: 0; left: 22px; right: 22px; height: 3px; border-radius: 0 0 8px 8px; background: linear-gradient(90deg, #f97316, #fb923c); opacity: 0; transition: opacity .3s ease; }
.fpro-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(23,37,84,.14); border-color: rgba(249,115,22,.45); }
.fpro-card:hover::before { opacity: 1; }

.fpro-card-top { position: absolute; top: 16px; left: 16px; right: 16px; display: flex; justify-content: space-between; align-items: center; gap: 6px; }
.fpro-featured-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 10px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; color: #fff; background: linear-gradient(90deg, #f97316, #fb923c); padding: 5px 10px; border-radius: 999px; box-shadow: 0 4px 12px rgba(249,115,22,.35); }
.fpro-verified { display: inline-flex; align-items: center; gap: 4px; font-size: 10px; font-weight: 800; color: #166534; background: #ecfdf5; border: 1px solid #a7f3d0; padding: 4px 9px; border-radius: 999px; }

.fpro-avatar { width: 88px; height: 88px; border-radius: 50%; margin: 30px auto 4px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #0f1c3e 0%, #1e3a8a 55%, #3b5bb0 100%); box-shadow: 0 0 0 5px rgba(249,115,22,.14), 0 10px 22px rgba(15,28,62,.28); overflow: hidden; }
.fpro-avatar img { width: 100%; height: 100%; object-fit: cover; }
.fpro-avatar-initials { font-size: 30px; font-weight: 800; letter-spacing: 1px; color: #fff; text-shadow: 0 2px 6px rgba(11,19,41,.35); }

.fpro-name { font-size: 17px; font-weight: 800; color: #0b1329; margin: 8px 0 4px; }
.fpro-card:hover .fpro-name { color: #1e3a8a; }
.fpro-cat { display: inline-flex; font-size: 11px; font-weight: 700; color: #1e3a8a; background: #dbeafe; padding: 3px 10px; border-radius: 999px; }
.fpro-loc { font-size: 12px; color: #64748b; margin-top: 10px; }
.fpro-loc i { color: #f97316; margin-right: 4px; }

.fpro-rating { display: flex; align-items: center; justify-content: center; gap: 6px; margin: 12px 0 16px; }
.fpro-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.fpro-rating-num { font-size: 13.5px; font-weight: 800; color: #0b1329; }
.fpro-reviews { font-size: 12px; color: #94a3b8; }

.fpro-footer { width: 100%; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #eef1f7; padding-top: 14px; }
.fpro-price { font-size: 12.5px; font-weight: 700; color: #1e3a8a; }
.fpro-cta { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 800; color: #f97316; }
.fpro-cta i { width: 30px; height: 30px; border-radius: 50%; background: #fff1e8; color: #f97316; display: inline-flex; align-items: center; justify-content: center; transition: all .25s ease; }
.fpro-card:hover .fpro-cta i { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; transform: translateX(2px); }

@media (max-width: 991.98px) {
    .fpro-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
    .featured-pros-section { padding: 56px 5%; }
    .fpro-head-row { flex-direction: column; align-items: flex-start; }
    .fpro-grid { grid-template-columns: 1fr; }
}

/* =======================================================
   WHAT HOMEOWNERS SAY SECTION (REDESIGNED)
   ======================================================= */
.home-stories-section {
    position: relative;
    overflow: hidden;
    padding: 70px 5%;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fd 100%);
    border-top: 1px solid #e5e9f2;
    border-bottom: 1px solid #e5e9f2;
}
.home-stories-section::before,
.home-stories-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.home-stories-section::before { top: -150px; left: -130px; width: 400px; height: 400px; background: rgba(37, 99, 235, 0.09); }
.home-stories-section::after  { bottom: -150px; right: -130px; width: 400px; height: 400px; background: rgba(249, 115, 22, 0.09); }
.home-stories-section .section-container { position: relative; z-index: 1; }

.hs-head-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 38px; }
.hs-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 11.5px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: #f97316; background: rgba(249,115,22,.1); border: 1px solid rgba(249,115,22,.25); padding: 7px 14px; border-radius: 999px; }
.hs-title { font-size: clamp(26px, 3.2vw, 34px); font-weight: 800; color: #0b1329; margin: 14px 0 8px; letter-spacing: -0.3px; }
.hs-title-accent { background: linear-gradient(90deg, #f97316, #fb923c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hs-subtitle { color: #64748b; font-size: 14.5px; max-width: 560px; margin: 0; line-height: 1.6; }

.hs-trust { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; background: #fff; border: 1px solid #e5e9f2; border-radius: 16px; padding: 10px 16px 10px 12px; box-shadow: 0 8px 20px rgba(23,37,84,.07); transition: all .25s ease; }
.hs-trust:hover { transform: translateY(-2px); border-color: rgba(249,115,22,.45); box-shadow: 0 12px 28px rgba(23,37,84,.12); }
.hs-trust-score { font-size: 26px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #f97316, #fb923c); width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 8px 16px rgba(249,115,22,.32); }
.hs-trust-info { display: flex; flex-direction: column; gap: 3px; }
.hs-trust-stars { color: #f59e0b; font-size: 12px; letter-spacing: 1px; }
.hs-trust-label { font-size: 11.5px; font-weight: 700; color: #475569; white-space: nowrap; }
.hs-trust-arrow { color: #f97316; font-size: 13px; margin-left: 4px; }

.hs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hs-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid #e5e9f2; border-radius: 18px; padding: 24px; box-shadow: 0 10px 30px rgba(23,37,84,.06); transition: all .3s ease; }
.hs-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px rgba(23,37,84,.13); border-color: rgba(37,99,235,.35); }
.hs-card-head { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 12px; }
.hs-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1.5px; }
.hs-quote { font-size: 26px; color: #c7d2fe; }
.hs-proj { font-size: 15.5px; font-weight: 800; color: #1e3a8a; margin: 0 0 8px; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.hs-quote-text { flex: 1; font-size: 13.5px; color: #64748b; line-height: 1.7; margin: 0 0 16px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.hs-chip-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.hs-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #1e3a8a; background: #dbeafe; padding: 5px 10px; border-radius: 999px; }
.hs-chip-alt { color: #9a3412; background: #ffedd5; }
.hs-card-foot { border-top: 1px solid #eef1f7; padding-top: 14px; display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.hs-reviewer { display: flex; align-items: center; gap: 10px; min-width: 0; }
.hs-avatar { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #f97316, #fb923c); box-shadow: 0 0 0 3px rgba(249,115,22,.14); }
.hs-reviewer b { display: block; font-size: 12.5px; font-weight: 800; color: #0b1329; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hs-reviewer small { display: block; font-size: 10.5px; color: #94a3b8; }
.hs-company { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; color: #1e3a8a; font-size: 12px; font-weight: 700; white-space: nowrap; flex-shrink: 0; }
.hs-company span { display: inline-flex; align-items: center; gap: 4px; max-width: 120px; overflow: hidden; text-overflow: ellipsis; }
.hs-company span i { color: #16a34a; }
.hs-company > i { color: #f97316; font-size: 11px; transition: transform .25s ease; }
.hs-card:hover .hs-company > i { transform: translateX(3px); }

@media (max-width: 991.98px) {
    .hs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 575.98px) {
    .home-stories-section { padding: 56px 5%; }
    .hs-head-row { flex-direction: column; align-items: flex-start; }
    .hs-grid { grid-template-columns: 1fr; }
    .hs-card-foot { flex-direction: column; align-items: flex-start; }
}
/* ================================================================
   About page (about-us) � scoped under .about-page
   Theme: navy #0b1329/#122a62/#1e3a8a | orange #f97316/#fb923c
   ================================================================ */
.about-page .ab-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: #ea580c; margin-bottom: 14px;
}
.about-page .ab-eyebrow-light { color: #fb923c; }
.about-page .ab-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}
.about-page .ab-section-title {
    font-size: clamp(24px, 2.6vw, 34px); font-weight: 800; color: #0b1329;
    letter-spacing: -0.02em; line-height: 1.15; margin: 0;
}
.about-page .ab-section-title-light { color: #fff; }
.about-page .ab-sec-head .ab-sec-lede {
    max-width: 560px; margin: 12px auto 0; font-size: 15.5px; line-height: 1.65; color: #64748b;
}
.about-page .ab-lede-light { color: #c7d2fe !important; }

/* ---------- Hero ---------- */
.about-page .ab-hero {
    position: relative; overflow: hidden; padding: 40px 0 100px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.about-page .ab-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.about-page .ab-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.about-page .ab-hero .container { position: relative; z-index: 2; }
.about-page .ab-hero .breadcrumb-item a { color: #c7d2fe; }
.about-page .ab-hero .breadcrumb-item a:hover { color: #fff; }
.about-page .ab-hero .breadcrumb-item.active { color: #fff; }
.about-page .ab-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.about-page .ab-hero .ab-eyebrow { color: #fb923c; }
.about-page .ab-hero-title {
    font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; color: #fff;
    letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 18px;
}
.about-page .ab-highlight {
    background: linear-gradient(120deg, #fb923c, #f97316);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.about-page .ab-hero-sub {
    max-width: 620px; font-size: 16px; line-height: 1.7; color: #c7d2fe; margin: 0 0 24px;
}
.about-page .ab-hero-chips { gap: 10px; }
.about-page .ab-hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 99px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
    color: #e0e7ff; font-size: 13px; font-weight: 600;
}
.about-page .ab-hero-chip i { color: #fb923c; }

/* Hero highlight card */
.about-page .ab-hero-card {
    position: relative; border-radius: 22px; padding: 26px 26px 24px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px); box-shadow: 0 22px 50px rgba(0, 0, 0, .38);
}
.about-page .ab-hero-card-icon {
    width: 54px; height: 54px; border-radius: 16px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #f97316, #fb923c); color: #fff; font-size: 24px;
    box-shadow: 0 12px 26px rgba(249, 115, 22, .45);
}
.about-page .ab-hero-card-ring {
    width: 108px; height: 108px; border-radius: 50%; margin: 6px auto 14px;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: conic-gradient(#fb923c calc(var(--p, 90) * 1%), rgba(255, 255, 255, .14) 0);
    position: relative;
}
.about-page .ab-hero-card-ring::after {
    content: ""; position: absolute; inset: 9px; border-radius: 50%;
    background: #122a62;
}
.about-page .ab-hero-card-rating { position: relative; z-index: 1; font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.about-page .ab-hero-card-rating-label { position: relative; z-index: 1; font-size: 11px; color: #c7d2fe; margin-top: 4px; text-align: center; }
.about-page .ab-hero-card-text {
    font-size: 13.5px; line-height: 1.6; color: #c7d2fe; text-align: center; margin: 0 0 18px;
}

/* ---------- Stats ---------- */
.about-page .ab-stats { position: relative; z-index: 3; margin-top: -56px; }
.about-page .ab-stats-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px;
    background: #e2e8f0; border: 1px solid #e2e8f0;
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 18px 40px rgba(11, 19, 41, .12);
}
.about-page .ab-stat-item { background: #fff; padding: 24px 16px; text-align: center; }
.about-page .ab-stat-num {
    font-size: clamp(24px, 2.4vw, 34px); font-weight: 800; color: #0b1329;
    letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px;
}
.about-page .ab-stat-raw { color: #1e3a8a; }
.about-page .ab-stat-plus { color: #f97316; }
.about-page .ab-stat-label { font-size: 12.5px; font-weight: 600; color: #64748b; }

/* ---------- Story / mission ---------- */
.about-page .ab-story { position: relative; overflow: hidden; }
.about-page .ab-story-cms { color: #334155; font-size: 15.5px; line-height: 1.75; }
.about-page .ab-story-cms p { margin-bottom: 14px; }
.about-page .ab-story-cms h1, .about-page .ab-story-cms h2, .about-page .ab-story-cms h3 { font-size: 20px; font-weight: 800; color: #0b1329; margin: 0 0 12px; }
.about-page .ab-story-points { list-style: none; padding: 0; margin: 22px 0 0; }
.about-page .ab-story-points li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14.5px; font-weight: 600; color: #1e293b; padding: 7px 0;
}
.about-page .ab-story-points li i { color: #16a34a; margin-top: 3px; }

.about-page .ab-mission {
    position: relative; border-radius: 22px; padding: 40px 34px;
    background: linear-gradient(160deg, #ffffff, #f8faff);
    border: 1px solid #e2e8f0;
    box-shadow: 0 24px 54px rgba(11, 19, 41, .12);
    overflow: hidden;
}
.about-page .ab-mission::before {
    content: ""; position: absolute; top: -70px; right: -70px;
    width: 190px; height: 190px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .14), transparent 68%);
    pointer-events: none;
}
.about-page .ab-mission-corner { position: absolute; top: 22px; right: 26px; font-size: 44px; color: rgba(249, 115, 22, .22); }
.about-page .ab-mission-icon {
    width: 58px; height: 58px; border-radius: 16px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #122a62, #1e3a8a); color: #fff; font-size: 24px;
    box-shadow: 0 12px 26px rgba(18, 42, 98, .35);
}
.about-page .ab-mission h3 { font-size: 20px; font-weight: 800; color: #0b1329; margin: 0 0 12px; }
.about-page .ab-mission blockquote {
    font-size: 19px; font-weight: 600; line-height: 1.6; color: #1e3a8a; margin: 0 0 24px;
}
.about-page .ab-mission-foot { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px dashed #cbd5e1; }
.about-page .ab-mission-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: #0b1329; font-size: 14px; }
.about-page .ab-mission-brand i { color: #f97316; font-size: 16px; }
.about-page .ab-mission-tag { font-size: 12px; font-weight: 600; color: #64748b; }

/* ---------- Values ---------- */
.about-page .ab-values { background: #f8fafc; border-top: 1px solid #eef2f7; border-bottom: 1px solid #eef2f7; }
.about-page .ab-value-card {
    height: 100%; border-radius: 18px; padding: 26px 22px; background: #fff;
    border: 1px solid #e2e8f0; box-shadow: 0 6px 18px rgba(11, 19, 41, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.about-page .ab-value-card:hover {
    transform: translateY(-5px); box-shadow: 0 18px 36px rgba(11, 19, 41, .12);
    border-color: rgba(249, 115, 22, .4);
}
.about-page .ab-value-icon {
    width: 50px; height: 50px; border-radius: 14px; margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #f97316, #fb923c); color: #fff; font-size: 20px;
    box-shadow: 0 10px 22px rgba(249, 115, 22, .35);
}
.about-page .ab-value-card h4 { font-size: 16px; font-weight: 800; color: #0b1329; margin-bottom: 8px; }
.about-page .ab-value-card p { font-size: 13.5px; line-height: 1.65; color: #64748b; margin: 0; }

/* ---------- How it works ---------- */
.about-page .ab-how {
    position: relative; overflow: hidden;
    background: radial-gradient(760px 380px at 15% 0%, rgba(56, 89, 204, .28), transparent 60%),
                linear-gradient(165deg, #0b1d4a, #122a62 60%, #0b1329);
}
.about-page .ab-steps { position: relative; }
.about-page .ab-step {
    position: relative; height: 100%; border-radius: 18px; padding: 34px 22px 26px;
    background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px); box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
    transition: transform .22s ease, background .22s ease;
}
.about-page .ab-step:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .09); }
.about-page .ab-step-num {
    position: absolute; top: 18px; right: 20px;
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(251, 146, 60, .18); color: #fb923c;
    font-size: 13px; font-weight: 800;
}
.about-page .ab-step-icon {
    width: 46px; height: 46px; border-radius: 12px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, #f97316, #fb923c); color: #fff; font-size: 18px;
    box-shadow: 0 10px 22px rgba(249, 115, 22, .4);
}
.about-page .ab-step h4 { font-size: 15.5px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.about-page .ab-step p { font-size: 13.5px; line-height: 1.6; color: #c7d2fe; margin: 0; }

/* ---------- Team ---------- */
.about-page .ab-team-card {
    height: 100%; border-radius: 18px; padding: 30px 20px 22px; background: #fff;
    border: 1px solid #e2e8f0; text-align: center;
    box-shadow: 0 6px 18px rgba(11, 19, 41, .05);
    transition: transform .22s ease, box-shadow .22s ease;
}
.about-page .ab-team-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(11, 19, 41, .12); }
.about-page .ab-team-photo { width: 92px; height: 92px; margin: 0 auto 16px; }
.about-page .ab-team-photo img {
    width: 92px; height: 92px; border-radius: 50%; object-fit: cover;
    border: 4px solid #fb923c; box-shadow: 0 0 0 1px #122a62;
}
.about-page .ab-avatar {
    width: 92px; height: 92px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0f1c3e, #1e3a8a 60%, #3b5bb0);
    color: #fff; font-size: 34px; font-weight: 800;
    border: 3px solid #fb923c; box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}
.about-page .ab-team-name { font-size: 16px; font-weight: 800; color: #0b1329; margin: 0 0 3px; }
.about-page .ab-team-role {
    font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    color: #f97316; margin-bottom: 10px;
}
.about-page .ab-team-bio { font-size: 13px; line-height: 1.6; color: #64748b; margin: 0 0 14px; }
.about-page .ab-team-socials { display: flex; justify-content: center; gap: 8px; }
.about-page .ab-team-socials a {
    width: 32px; height: 32px; border-radius: 9px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #eff6ff; color: #1e3a8a; font-size: 13px;
    transition: background .18s, color .18s, transform .18s;
}
.about-page .ab-team-socials a:hover { background: #1e3a8a; color: #fff; transform: translateY(-2px); }

/* ---------- Final CTA ---------- */
.about-page .ab-cta { padding: 70px 0 90px; background: #f8fafc; }
.about-page .ab-cta-card {
    position: relative; overflow: hidden; border-radius: 24px; padding: 46px 42px;
    background: radial-gradient(560px 300px at 88% -20%, rgba(56, 89, 204, .4), transparent 60%),
                linear-gradient(140deg, #0b1d4a, #122a62 58%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .3);
    box-shadow: 0 26px 60px rgba(11, 19, 41, .28);
}
.about-page .ab-cta-glow {
    position: absolute; top: -160px; right: -100px; width: 420px; height: 420px;
    border-radius: 50%; background: radial-gradient(circle, rgba(249, 115, 22, .2), transparent 65%);
    pointer-events: none;
}
.about-page .ab-cta-card .ab-eyebrow { margin-bottom: 10px; }
.about-page .ab-cta-title {
    font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #fff;
    letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 8px;
}
.about-page .ab-cta-sub { font-size: 15px; line-height: 1.65; color: #c7d2fe; margin: 0; }
.about-page .ab-cta-alt { display: flex; flex-direction: column; gap: 3px; margin-top: 10px; }
.about-page .ab-cta-alt a { font-size: 13px; font-weight: 600; color: #c7d2fe; }
.about-page .ab-cta-alt a:hover { color: #fb923c; }
.about-page .ab-cta-alt a i { font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .about-page .ab-stats-grid { grid-template-columns: repeat(3, 1fr); }
    .about-page .ab-hero-card { margin-top: 10px; }
}
@media (max-width: 575.98px) {
    .about-page .ab-hero { padding: 32px 0 92px; }
    .about-page .ab-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-page .ab-cta-card { padding: 34px 24px; }
}

/* ================================================================
   CONTACT PAGE (views/cms/contact.php) - scoped under .contact-page
   Theme: navy #0b1329/#122a62/#1e3a8a | orange #f97316/#fb923c
   ================================================================ */
.contact-page .cu-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: #ea580c; margin-bottom: 14px;
}
.contact-page .cu-eyebrow-light { color: #fb923c; }
.contact-page .cu-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

/* ---------- Hero ---------- */
.contact-page .cu-hero {
    position: relative; overflow: hidden; padding: 40px 0 46px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.contact-page .cu-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.contact-page .cu-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.contact-page .cu-hero .container { position: relative; z-index: 2; }
.contact-page .cu-hero .breadcrumb-item a { color: #c7d2fe; }
.contact-page .cu-hero .breadcrumb-item a:hover { color: #fff; }
.contact-page .cu-hero .breadcrumb-item.active { color: #fff; }
.contact-page .cu-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.contact-page .cu-hero .cu-eyebrow { color: #fb923c; }
.contact-page .cu-hero-title {
    font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; color: #fff;
    letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 16px;
}
.contact-page .cu-highlight {
    background: linear-gradient(120deg, #fb923c, #f97316);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-page .cu-hero-sub {
    max-width: 600px; font-size: 16px; line-height: 1.7; color: #c7d2fe; margin: 0 0 24px;
}
.contact-page .cu-hero-chips { gap: 10px; }
.contact-page .cu-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 99px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
    color: #e0e7ff; font-size: 13px; font-weight: 600;
}
.contact-page .cu-chip i { color: #fb923c; }

/* -------- Hero "response" card -------- */
.contact-page .cu-hero-card {
    position: relative; border-radius: 22px; padding: 24px 24px 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(5, 10, 40, .4);
}
.contact-page .cu-hero-card-head { margin-bottom: 16px; }
.contact-page .cu-hero-card-icon {
    width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff; font-size: 1.25rem;
    box-shadow: 0 8px 18px rgba(249, 115, 22, .4);
}
.contact-page .cu-hero-card-label {
    font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.01em;
}
.contact-page .cu-response-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13.5px; line-height: 1.5; color: #c7d2fe;
}
.contact-page .cu-response-row:first-of-type { border-top: 0; }
.contact-page .cu-response-row i { color: #fb923c; margin-top: 3px; font-size: 14px; }
.contact-page .cu-response-row strong { color: #fff; font-weight: 700; }

/* ---------- Channels band (overlaps hero) ---------- */
.contact-page .cu-channels {
    position: relative; z-index: 3; padding: 0 0 64px;
    margin-top: -46px; background: transparent;
}
.contact-page .cu-channel {
    position: relative; display: block; height: 100%;
    padding: 26px 24px 22px; border-radius: 18px;
    background: #fff; border: 1px solid #e7ecf5;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .08);
    text-decoration: none; color: inherit;
    transition: transform .22s ease, box-shadow .22s ease;
}
.contact-page .cu-channel:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(15, 23, 42, .14); }
.contact-page .cu-channel-icon {
    width: 52px; height: 52px; border-radius: 14px; margin-bottom: 16px;
    display: flex; align-items: center; justify-content: center; font-size: 1.25rem; color: #fff;
}
.contact-page .cu-icon-orange { background: linear-gradient(135deg, #f97316, #fb923c); box-shadow: 0 8px 18px rgba(249, 115, 22, .35); }
.contact-page .cu-icon-navy { background: linear-gradient(135deg, #1e3a8a, #2563eb); box-shadow: 0 8px 18px rgba(37, 99, 235, .35); }
.contact-page .cu-icon-indigo { background: linear-gradient(135deg, #122a62, #4f46e5); box-shadow: 0 8px 18px rgba(79, 70, 229, .35); }
.contact-page .cu-icon-green { background: linear-gradient(135deg, #059669, #10b981); box-shadow: 0 8px 18px rgba(16, 185, 129, .35); }
.contact-page .cu-channel h3 {
    font-size: 16px; font-weight: 800; color: #0b1329; margin: 0 0 6px; letter-spacing: -.01em;
}
.contact-page .cu-channel-value {
    font-size: 13.5px; font-weight: 600; color: #334155; margin: 0 0 4px; word-break: break-word;
}
.contact-page .cu-channel-note { font-size: 12.5px; color: #64748b; margin: 0; }
.contact-page .cu-chat-btn {
    display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
    padding: 9px 16px; border: 0; border-radius: 10px;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    font-size: 13.5px; font-weight: 700; cursor: pointer;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.contact-page .cu-chat-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(249, 115, 22, .45); }

/* ---------- Main form section ---------- */
.contact-page .cu-main {
    padding: 16px 0 72px;
    background: linear-gradient(180deg, #f6f8fc, #fff);
}
.contact-page .cu-form-card {
    border-radius: 22px; background: #fff; border: 1px solid #e7ecf5;
    box-shadow: 0 16px 44px rgba(15, 23, 42, .07);
    padding: 30px 28px;
}
@media (min-width: 992px) { .contact-page .cu-form-card { padding: 38px 40px; } }
.contact-page .cu-form-head { margin-bottom: 22px; }
.contact-page .cu-form-head .cu-eyebrow { margin-bottom: 10px; }
.contact-page .cu-form-head h2 {
    font-size: clamp(24px, 2.4vw, 30px); font-weight: 800; color: #0b1329;
    letter-spacing: -.02em; margin: 0 0 6px;
}
.contact-page .cu-form-lede { font-size: 14.5px; color: #64748b; margin: 0; }

/* topics (subject pills) */
.contact-page .cu-field-label {
    font-size: 13px; font-weight: 700; color: #0b1329;
}
.contact-page .cu-topic-input { position: absolute; opacity: 0; pointer-events: none; }
.contact-page .cu-topic {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 15px; border-radius: 99px; cursor: pointer;
    font-size: 13px; font-weight: 600; color: #475569;
    background: #f1f5f9; border: 1px solid transparent;
    transition: all .18s ease;
}
.contact-page .cu-topic i { color: #94a3b8; }
.contact-page .cu-topic:hover { background: #e2e8f0; }
.contact-page .cu-topic-input:checked + .cu-topic {
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; border-color: transparent;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .32);
}
.contact-page .cu-topic-input:checked + .cu-topic i { color: #fff; }
.contact-page .cu-topic-input:focus-visible + .cu-topic { box-shadow: 0 0 0 3px rgba(37, 99, 235, .25); }

/* form controls (form-floating) */
.contact-page .form-floating > .form-control { border-radius: 12px; border: 1.5px solid #e7ecf5; background: #fafbfe; }
.contact-page .form-floating > .form-control:focus {
    border-color: #f97316; background: #fff;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}
.contact-page .form-floating > label { color: #94a3b8; }
.contact-page .cu-optional { font-size: 12px; font-weight: 500; color: #94a3b8; }

/* alerts */
.contact-page .cu-alert {
    display: flex; gap: 12px; align-items: flex-start;
    border-radius: 14px; padding: 14px 16px; margin-bottom: 22px;
    font-size: 14px; line-height: 1.55;
}
.contact-page .cu-alert > i { font-size: 1.35rem; margin-top: 2px; }
.contact-page .cu-alert strong { display: block; }
.contact-page .cu-alert span { color: inherit; opacity: .85; }
.contact-page .cu-alert-success {
    background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46;
}
.contact-page .cu-alert-success > i { color: #10b981; }
.contact-page .cu-alert-error {
    background: #fef2f2; border: 1px solid #fecaca; color: #991b1b;
}
.contact-page .cu-alert-error > i { color: #ef4444; }

.contact-page .cu-privacy { font-size: 12.5px; color: #94a3b8; text-align: center; margin: 0; }

/* ---------- Sidebar cards ---------- */
.contact-page .cu-help-card {
    border-radius: 18px; background: #fff; border: 1px solid #e7ecf5;
    box-shadow: 0 14px 40px rgba(15, 23, 42, .06);
    padding: 24px 22px;
}
.contact-page .cu-help-title {
    display: flex; align-items: center; gap: 10px;
    font-size: 16px; font-weight: 800; color: #0b1329; margin: 0 0 16px;
}
.contact-page .cu-help-mark { color: #f97316; font-size: 14px; }
.contact-page .cu-help-list { display: flex; flex-direction: column; gap: 10px; }
.contact-page .cu-help-item {
    display: flex; align-items: center; gap: 14px; padding: 14px 14px;
    border-radius: 14px; background: #f8fafc; border: 1px solid #eef2f7;
    text-decoration: none; color: inherit; transition: all .18s ease;
}
.contact-page .cu-help-item:hover { background: #fff; border-color: #fdba74; box-shadow: 0 8px 20px rgba(249, 115, 22, .12); transform: translateY(-2px); }
.contact-page .cu-help-icon {
    width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #122a62, #1e3a8a); color: #fb923c; font-size: 1rem;
}
.contact-page .cu-help-body { flex: 1; min-width: 0; }
.contact-page .cu-help-body strong { display: block; font-size: 14px; color: #0b1329; }
.contact-page .cu-help-body span { font-size: 12.5px; color: #64748b; line-height: 1.5; }
.contact-page .cu-help-arrow { color: #94a3b8; font-size: 13px; transition: transform .18s ease, color .18s ease; }
.contact-page .cu-help-item:hover .cu-help-arrow { color: #f97316; transform: translateX(3px); }

/* FAQ */
.contact-page .cu-faq .cu-faq-item { border-bottom: 1px solid #eef2f7; }
.contact-page .cu-faq .cu-faq-item:last-child { border-bottom: 0; }
.contact-page .cu-faq .accordion-button {
    font-size: 14px; font-weight: 700; color: #0b1329; padding: 14px 0;
    background: transparent; box-shadow: none;
}
.contact-page .cu-faq .accordion-button:not(.collapsed) { color: #ea580c; }
.contact-page .cu-faq .accordion-button:focus { box-shadow: none; }
.contact-page .cu-faq .accordion-button::after { background-size: 15px; }
.contact-page .cu-faq .accordion-body { font-size: 13.5px; line-height: 1.65; color: #64748b; padding: 0 0 14px; }

/* socials */
.contact-page .cu-socials { display: flex; gap: 10px; }
.contact-page .cu-social {
    width: 44px; height: 44px; border-radius: 12px;
    display: inline-flex; align-items: center; justify-content: center;
    background: #f1f5f9; color: #334155; font-size: 1.05rem;
    text-decoration: none; transition: all .18s ease;
}
.contact-page .cu-social:hover {
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    transform: translateY(-3px); box-shadow: 0 8px 18px rgba(249, 115, 22, .3);
}

/* ---------- Final CTA ---------- */
.contact-page .cu-cta { padding: 0 0 72px; background: #fff; }
.contact-page .cu-cta-card {
    position: relative; overflow: hidden; border-radius: 24px;
    padding: 46px 40px;
    background: radial-gradient(700px 320px at 85% -20%, rgba(249, 115, 22, .22), transparent 60%),
                linear-gradient(150deg, #0b1d4a, #122a62 55%, #0b1329);
    border: 1px solid rgba(251, 146, 60, .3);
}
.contact-page .cu-cta-glow {
    position: absolute; bottom: -160px; left: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 65%);
    pointer-events: none;
}
.contact-page .cu-cta .container { position: relative; }
.contact-page .cu-cta-card .row { position: relative; z-index: 2; }
.contact-page .cu-cta .cu-eyebrow { color: #fb923c; }
.contact-page .cu-cta-title {
    font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #fff;
    letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 8px;
}
.contact-page .cu-cta-sub { font-size: 15px; line-height: 1.65; color: #c7d2fe; margin: 0; }
.contact-page .cu-cta-alt { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.contact-page .cu-cta-chat {
    background: transparent; border: 0; padding: 0; text-align: left;
    font-size: 13.5px; font-weight: 700; color: #fb923c; cursor: pointer;
}
.contact-page .cu-cta-chat:hover { text-decoration: underline; }
.contact-page .cu-cta-alt a { font-size: 13px; font-weight: 600; color: #c7d2fe; }
.contact-page .cu-cta-alt a:hover { color: #fb923c; }
.contact-page .cu-cta-alt a i, .contact-page .cu-cta-chat i { font-size: 11px; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .contact-page .cu-channels { margin-top: 0; }
    .contact-page .cu-hero-card { margin-top: 8px; }
}
@media (max-width: 575.98px) {
    .contact-page .cu-hero { padding: 32px 0 40px; }
    .contact-page .cu-cta-card { padding: 34px 24px; }
}

/* ================================================================
   EVENTS LISTING (views/events/_listing.php) - scoped under .events-page
   Theme: navy #0b1329/#122a62/#1e3a8a | orange #f97316/#fb923c
   ================================================================ */
.events-page .ev-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: #ea580c; margin-bottom: 14px;
}
.events-page .ev-eyebrow-light { color: #fb923c; }
.events-page .ev-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

/* ---------- Hero ---------- */
.events-page .ev-hero {
    position: relative; overflow: hidden; padding: 40px 0 100px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.events-page .ev-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.events-page .ev-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.events-page .ev-hero .container { position: relative; z-index: 2; }
.events-page .ev-hero .breadcrumb-item a { color: #c7d2fe; }
.events-page .ev-hero .breadcrumb-item a:hover { color: #fff; }
.events-page .ev-hero .breadcrumb-item.active { color: #fff; }
.events-page .ev-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.events-page .ev-hero .ev-eyebrow { color: #fb923c; }
.events-page .ev-hero-title {
    font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; color: #fff;
    letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 16px;
}
.events-page .ev-highlight {
    background: linear-gradient(120deg, #fb923c, #f97316);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.events-page .ev-hero-sub {
    max-width: 600px; font-size: 16px; line-height: 1.7; color: #c7d2fe; margin: 0 0 24px;
}
.events-page .ev-hero-chips { gap: 10px; margin-top: 18px; }
.events-page .ev-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 99px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
    color: #e0e7ff; font-size: 13px; font-weight: 600;
}
.events-page .ev-chip i { color: #fb923c; }

/* -------- Hero search -------- */
.events-page .ev-search {
    position: relative; display: flex; align-items: center; max-width: 560px;
    background: #fff; border-radius: 16px; padding: 6px 6px 6px 18px;
    box-shadow: 0 18px 50px rgba(5, 10, 40, .45);
}
.events-page .ev-search-icon { color: #94a3b8; font-size: 15px; margin-right: 12px; flex-shrink: 0; }
.events-page .ev-search-input {
    flex: 1; border: 0; outline: 0; font-size: 15px; color: #0b1329; background: transparent;
}
.events-page .ev-search-input::placeholder { color: #a5b4c2; }
.events-page .ev-search-btn {
    border: 0; border-radius: 12px; padding: 12px 22px;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    font-size: 14px; font-weight: 700; cursor: pointer; flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .35);
    transition: transform .2s ease, box-shadow .2s ease;
}
.events-page .ev-search-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(249, 115, 22, .45); }

/* -------- Hero "what you'll find" card -------- */
.events-page .ev-hero-card {
    position: relative; border-radius: 22px; padding: 24px 24px 18px;
    background: linear-gradient(160deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .045));
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(5, 10, 40, .4);
}
.events-page .ev-hero-card-head { margin-bottom: 16px; }
.events-page .ev-hero-card-icon {
    width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #f97316, #fb923c);
    color: #fff; font-size: 1.25rem;
    box-shadow: 0 8px 18px rgba(249, 115, 22, .4);
}
.events-page .ev-hero-card-label { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -.01em; }
.events-page .ev-see-row {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 10px 0; border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13.5px; line-height: 1.5; color: #c7d2fe;
}
.events-page .ev-see-row:first-of-type { border-top: 0; }
.events-page .ev-see-row i { color: #fb923c; margin-top: 3px; font-size: 14px; }
.events-page .ev-see-row strong { color: #fff; font-weight: 700; }
.events-page .ev-hero-card-foot {
    margin-top: 6px; padding: 12px 0 0; border-top: 1px solid rgba(255, 255, 255, .12);
    font-size: 12px; font-weight: 700; color: #fb923c; text-transform: uppercase; letter-spacing: .08em;
}
.events-page .ev-hero-card-foot i { margin-right: 6px; }

/* ---------- Stats band ---------- */
.events-page .ev-stats {
    position: relative; z-index: 3; padding: 0 0 64px; margin-top: -56px;
    background: transparent;
}
.events-page .ev-stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    background: #fff; border: 1px solid #e7ecf5; border-radius: 22px;
    padding: 30px 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}
.events-page .ev-stat-item { text-align: center; }
.events-page .ev-stat-num {
    font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: #0b1329;
    letter-spacing: -.02em; line-height: 1;
}
.events-page .ev-stat-label { font-size: 12.5px; font-weight: 600; color: #64748b; margin-top: 8px; }

/* ---------- Main section ---------- */
.events-page .ev-main { padding: 16px 0 72px; background: linear-gradient(180deg, #f6f8fc, #fff); }

/* -------- Filters -------- */
.events-page .ev-filters { display: flex; flex-direction: column; gap: 18px; }
.events-page .ev-filter {
    border-radius: 18px; background: #fff; border: 1px solid #e7ecf5;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    overflow: hidden;
}
.events-page .ev-filter-head {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 18px; font-size: 14px; font-weight: 800; color: #0b1329;
    background: #fafbfe; border-bottom: 1px solid #eef2f7;
}
.events-page .ev-filter-head i { color: #f97316; font-size: 13px; }
.events-page .ev-filter-body { padding: 14px 18px 16px; }
.events-page .ev-filter-label {
    display: block; font-size: 12px; font-weight: 700; color: #475569; margin: 0 0 6px;
}
.events-page .ev-filter-label:not(:first-child) { margin-top: 12px; }
.events-page .ev-select {
    border-radius: 10px; border: 1.5px solid #e7ecf5; background: #fafbfe;
    font-size: 13.5px; padding: 9px 12px; color: #334155;
}
.events-page .ev-select:focus {
    border-color: #f97316; background: #fff; box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}

/* checkbox / radio rows */
.events-page .ev-check {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 4px; cursor: pointer; border-radius: 8px;
    transition: background .15s ease;
}
.events-page .ev-check:hover { background: #f8fafc; }
.events-page .ev-check-input { position: absolute; opacity: 0; pointer-events: none; }
.events-page .ev-check-box {
    width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
    border: 1.5px solid #cbd5e1; background: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all .15s ease;
}
.events-page .ev-check-box i { font-size: 11px; color: #fff; opacity: 0; transform: scale(.5); transition: all .15s ease; }
.events-page .ev-check-input:checked + .ev-check-box {
    background: linear-gradient(135deg, #f97316, #fb923c); border-color: transparent;
    box-shadow: 0 3px 8px rgba(249, 115, 22, .35);
}
.events-page .ev-check-input:checked + .ev-check-box i { opacity: 1; transform: scale(1); }
.events-page .ev-check-input:focus-visible + .ev-check-box { box-shadow: 0 0 0 3px rgba(249, 115, 22, .25); }
.events-page .ev-check-label { flex: 1; font-size: 13.5px; font-weight: 500; color: #334155; line-height: 1.4; }
.events-page .ev-check-count {
    font-size: 11px; font-weight: 700; color: #94a3b8;
    background: #f1f5f9; border-radius: 99px; padding: 2px 9px;
}
.events-page .ev-apply { padding: 12px; border-radius: 12px; font-weight: 700; }
.events-page .ev-clear-all {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    font-size: 13px; font-weight: 700; cursor: pointer; text-decoration: none;
    padding: 10px; border-radius: 12px; color: #64748b;
}
.events-page .ev-clear-all:hover { color: #ea580c; background: #f1f5f9; }

/* -------- Results header -------- */
.events-page .ev-res-head {
    display: flex; flex-wrap: wrap; align-items: flex-end; gap: 10px 16px;
    margin-bottom: 24px;
}
.events-page .ev-res-title { font-size: clamp(20px, 2vw, 26px); font-weight: 800; color: #0b1329; margin: 0; }
.events-page .ev-res-sub { font-size: 13.5px; color: #64748b; margin: 4px 0 0; }
.events-page .ev-active { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.events-page .ev-active-chip {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 600; color: #c2410c;
    background: #fff7ed; border: 1px solid #fed7aa; border-radius: 99px; padding: 5px 12px;
}
.events-page .ev-active-chip i { font-size: 11px; }
.events-page .ev-res-head .ev-clear-all { padding: 4px 8px; color: #ea580c; }

/* -------- Event cards -------- */
.events-page .ev-card {
    display: flex; flex-direction: column; height: 100%;
    border-radius: 20px; overflow: hidden; text-decoration: none; color: inherit;
    background: #fff; border: 1px solid #e7ecf5;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.events-page .ev-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, .14);
    border-color: #fdba74;
}
.events-page .ev-card-media { position: relative; min-height: 190px; overflow: hidden; }
.events-page .ev-card-img {
    width: 100%; height: 100%; min-height: 190px; object-fit: cover;
    transition: transform .5s ease;
}
.events-page .ev-card:hover .ev-card-img { transform: scale(1.06); }
.events-page .ev-card-ph {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(500px 220px at 80% -10%, rgba(56, 89, 204, .5), transparent 60%),
                linear-gradient(150deg, #122a62, #0b1d4a);
    color: rgba(251, 146, 60, .8); font-size: 3rem;
}
.events-page .ev-card-ph::after {
    content: ''; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}
.events-page .ev-card-ph i { position: relative; z-index: 1; }
.events-page .ev-date-tile {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: #fff; border-radius: 12px; padding: 6px 13px; text-align: center;
    box-shadow: 0 8px 20px rgba(5, 10, 40, .3); min-width: 46px;
}
.events-page .ev-date-tile-d { display: block; font-size: 19px; font-weight: 800; color: #0b1329; line-height: 1.1; }
.events-page .ev-date-tile-m { display: block; font-size: 11px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: .05em; }
.events-page .ev-ribbon {
    position: absolute; top: 14px; right: 14px; z-index: 2;
    display: inline-flex; align-items: center; gap: 5px;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase;
    padding: 5px 11px; border-radius: 99px;
    box-shadow: 0 6px 16px rgba(249, 115, 22, .45);
}
.events-page .ev-free {
    position: absolute; bottom: 14px; left: 14px; z-index: 2;
    background: #dcfce7; color: #166534;
    font-size: 11px; font-weight: 800; letter-spacing: .04em;
    padding: 4px 10px; border-radius: 7px;
}
.events-page .ev-card-body { display: flex; flex-direction: column; padding: 18px 18px 20px; flex: 1; }
.events-page .ev-card-meta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 8px; }
.events-page .ev-card-meta-item { font-size: 12.5px; font-weight: 600; color: #64748b; }
.events-page .ev-card-meta-item i { color: #f97316; margin-right: 5px; font-size: 12px; }
.events-page .ev-card-title {
    font-size: 16.5px; font-weight: 800; color: #0b1329; line-height: 1.35;
    margin: 0 0 8px; letter-spacing: -.01em;
}
.events-page .ev-card:hover .ev-card-title { color: #0b1329; }
.events-page .ev-card-loc { font-size: 13px; color: #64748b; display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.events-page .ev-card-loc i { color: #2563eb; font-size: 12px; }
.events-page .ev-card-cats { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.events-page .ev-card-cat {
    font-size: 11px; font-weight: 600; color: #1e3a8a;
    background: #eef2ff; border-radius: 99px; padding: 4px 10px;
}
.events-page .ev-card-foot {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; border-top: 1px solid #eef2f7;
}
.events-page .ev-card-price { font-size: 15px; font-weight: 800; color: #0b1329; }
.events-page .ev-card-price-free { color: #059669; }
.events-page .ev-btn {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700; color: #f97316;
    transition: gap .18s ease;
}
.events-page .ev-card:hover .ev-btn { gap: 10px; color: #ea580c; }

/* -------- Pagination -------- */
.events-page .ev-pagination .page-link {
    border: 0; border-radius: 10px; margin: 0 3px; font-weight: 600;
    color: #475569; padding: 10px 16px; box-shadow: none;
}
.events-page .ev-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 6px 16px rgba(249, 115, 22, .35); border: 0; color: #fff;
}
.events-page .ev-pagination .page-link:hover { background: #f1f5f9; color: #ea580c; transform: translateY(-1px); }

/* -------- Empty state -------- */
.events-page .ev-empty {
    text-align: center; padding: 60px 28px; border-radius: 22px;
    background: #fff; border: 1.5px dashed #ccd6e6;
}
.events-page .ev-empty-icon {
    width: 84px; height: 84px; margin: 0 auto 18px; border-radius: 24px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #eef2ff, #fff7ed); color: #f97316; font-size: 2rem;
}
.events-page .ev-empty-title { font-size: 22px; font-weight: 800; color: #0b1329; margin: 0 0 8px; }
.events-page .ev-empty p { max-width: 460px; margin: 0 auto 22px; font-size: 14.5px; color: #64748b; line-height: 1.6; }
.events-page .ev-empty-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; align-items: center; }
.events-page .ev-empty-actions .btn-outline-primary { border-radius: 12px; font-weight: 700; }
.events-page .ev-empty-link {
    font-size: 13.5px; font-weight: 700; color: #ea580c; text-decoration: none;
    display: inline-flex; align-items: center; gap: 6px;
}
.events-page .ev-empty-link:hover { text-decoration: underline; }

/* -------- CTA band -------- */
.events-page .ev-cta { padding: 0 0 72px; background: #fff; }
.events-page .ev-cta-card {
    position: relative; overflow: hidden; border-radius: 24px;
    padding: 46px 40px;
    background: radial-gradient(700px 320px at 85% -20%, rgba(249, 115, 22, .22), transparent 60%),
                linear-gradient(150deg, #0b1d4a, #122a62 55%, #0b1329);
    border: 1px solid rgba(251, 146, 60, .3);
}
.events-page .ev-cta-glow {
    position: absolute; bottom: -160px; left: -80px;
    width: 420px; height: 420px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, .25), transparent 65%);
    pointer-events: none;
}
.events-page .ev-cta .row { position: relative; z-index: 2; }
.events-page .ev-cta .ev-eyebrow { color: #fb923c; }
.events-page .ev-cta-title {
    font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: #fff;
    letter-spacing: -0.02em; line-height: 1.15; margin: 0 0 8px;
}
.events-page .ev-cta-sub { font-size: 15px; line-height: 1.65; color: #c7d2fe; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .events-page .ev-stats { margin-top: 0; }
    .events-page .ev-hero-card { margin-top: 8px; }
    .events-page .ev-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575.98px) {
    .events-page .ev-hero { padding: 32px 0 92px; }
    .events-page .ev-stats-grid { gap: 20px 10px; }
    .events-page .ev-search { flex-wrap: wrap; padding: 10px; gap: 8px; }
    .events-page .ev-search-input { width: 100%; padding: 8px 6px; flex: 1 0 100%; }
    .events-page .ev-search-btn { width: 100%; }
    .events-page .ev-cta-card { padding: 34px 24px; }
}

/* ================================================================
   LEGAL / EDITORIAL DOCUMENTS (views/cms/legal.php) � scoped under .legal-page
   Theme: navy #0b1329/#122a62/#1e3a8a | orange #f97316/#fb923c
   ================================================================ */
.legal-page .lg-eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
    color: #fb923c; margin-bottom: 14px;
}
.legal-page .lg-eyebrow-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

/* ---------- Hero ---------- */
.legal-page .lg-hero {
    position: relative; overflow: hidden; padding: 40px 0 64px;
    background: radial-gradient(900px 420px at 82% -10%, rgba(56, 89, 204, .32), transparent 60%),
                linear-gradient(160deg, #0b1d4a, #122a62 55%, #0b1329);
    border-bottom: 1px solid rgba(251, 146, 60, .25);
}
.legal-page .lg-hero-glow {
    position: absolute; top: -180px; right: -120px;
    width: 540px; height: 540px; border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .22), transparent 65%);
    pointer-events: none;
}
.legal-page .lg-hero-pattern {
    position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .055) 1.2px, transparent 1.2px);
    background-size: 26px 26px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, .45), transparent 88%);
    pointer-events: none;
}
.legal-page .lg-hero .container { position: relative; z-index: 2; }
.legal-page .lg-hero .breadcrumb-item a { color: #c7d2fe; }
.legal-page .lg-hero .breadcrumb-item a:hover { color: #fff; }
.legal-page .lg-hero .breadcrumb-item.active { color: #fff; }
.legal-page .lg-hero .breadcrumb-item + .breadcrumb-item::before { color: #475569; }
.legal-page .lg-hero-title {
    font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; color: #fff;
    letter-spacing: -0.025em; line-height: 1.08; margin: 0 0 14px;
}
.legal-page .lg-hero-sub {
    max-width: 640px; font-size: 16px; line-height: 1.7; color: #c7d2fe; margin: 0 0 22px;
}
.legal-page .lg-hero-meta {
    display: flex; flex-wrap: wrap; gap: 10px 18px;
    padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.legal-page .lg-meta-item {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 13px; color: #aeb9e8;
}
.legal-page .lg-meta-item i { color: #fb923c; }
.legal-page .lg-meta-item a { color: #fff; font-weight: 600; }
.legal-page .lg-hero-badge {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 20px; border-radius: 16px;
    background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(6px);
}
.legal-page .lg-hero-badge > i {
    width: 46px; height: 46px; flex-shrink: 0; display: grid; place-items: center;
    border-radius: 12px; font-size: 18px; color: #fff;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 10px 24px rgba(249, 115, 22, .4);
}
.legal-page .lg-hero-badge-title { font-size: 14px; font-weight: 700; color: #fff; }
.legal-page .lg-hero-badge-sub { font-size: 12px; color: #aeb9e8; }

/* ---------- Document body ---------- */
.legal-page .lg-body { background: #f6f8fc; padding: 48px 0 28px; }
.legal-page .lg-body .row > div { min-width: 0; }

/* TOC */
.legal-page .lg-toc {
    position: sticky; top: 96px;
    background: #fff; border: 1px solid #e5eaf3; border-radius: 16px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(11, 19, 41, .06);
}
.legal-page .lg-toc-head {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 800; color: #0b1329;
    padding-bottom: 12px; margin-bottom: 10px;
    border-bottom: 1px solid #eef1f8;
}
.legal-page .lg-toc-head i { color: #f97316; }
.legal-page .lg-toc-link { display: flex; flex-direction: column; gap: 2px; }
.legal-page .lg-toc-link a {
    display: flex; align-items: center; gap: 10px;
    padding: 7px 10px; border-radius: 8px;
    font-size: 13px; font-weight: 600; color: #475569; text-decoration: none;
    border-left: 2px solid transparent;
    transition: background .15s ease, color .15s ease;
}
.legal-page .lg-toc-link a span {
    font-size: 11px; font-weight: 700; color: #94a3b8;
    font-variant-numeric: tabular-nums;
}
.legal-page .lg-toc-link a:hover { background: #f6f8fc; color: #0b1329; }
.legal-page .lg-toc-link a.active {
    background: rgba(249, 115, 22, .09); color: #c2410c;
    border-left-color: #f97316;
}
.legal-page .lg-toc-link a.active span { color: #f97316; }
.legal-page .lg-toc-help {
    display: flex; align-items: center; gap: 8px; margin-top: 14px;
    padding: 10px 12px; border-radius: 10px;
    background: linear-gradient(135deg, #0f2350, #122a62);
    color: #fff; font-size: 13px; font-weight: 700; text-decoration: none;
}
.legal-page .lg-toc-help:hover { color: #fff; filter: brightness(1.1); }
.legal-page .lg-toc-help i { color: #fb923c; }

/* Prose */
.legal-page .lg-prose {
    background: #fff; border: 1px solid #e5eaf3; border-radius: 16px;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 10px 30px rgba(11, 19, 41, .06);
}
.legal-page .lg-prose h2 {
    font-size: 22px; font-weight: 800; color: #0b1329;
    letter-spacing: -0.02em; margin: 0 0 14px; padding-top: 8px;
    scroll-margin-top: 110px;
}
.legal-page .lg-prose h2:not(:first-child) { margin-top: 34px; }
.legal-page .lg-prose h3 {
    font-size: 17px; font-weight: 700; color: #122a62; margin: 26px 0 10px;
}
.legal-page .lg-prose p { font-size: 15.5px; line-height: 1.8; color: #3f4756; margin: 0 0 16px; }
.legal-page .lg-prose ul,
.legal-page .lg-prose ol { margin: 0 0 18px; padding-left: 8px; }
.legal-page .lg-prose li {
    position: relative; padding-left: 26px; margin-bottom: 10px;
    font-size: 15.5px; line-height: 1.7; color: #3f4756; list-style: none;
}
.legal-page .lg-prose ul li::before {
    content: ""; position: absolute; left: 2px; top: 9px;
    width: 8px; height: 8px; border-radius: 3px;
    background: linear-gradient(135deg, #f97316, #fb923c);
}
.legal-page .lg-prose ol { counter-reset: lg-li; }
.legal-page .lg-prose ol > li { counter-increment: lg-li; }
.legal-page .lg-prose ol > li::before {
    content: counter(lg-li, decimal-leading-zero);
    position: absolute; left: 0; top: 2px;
    font-size: 12px; font-weight: 800; color: #f97316;
}
.legal-page .lg-prose a { color: #ea580c; font-weight: 600; }
.legal-page .lg-prose strong { color: #0b1329; }
.legal-page .lg-prose blockquote {
    margin: 20px 0; padding: 16px 18px; border-radius: 12px;
    background: #f6f8fc; border-left: 4px solid #f97316;
    font-size: 15px; color: #334155; font-style: italic;
}
.legal-page .lg-prose code {
    background: #f1f5f9; border: 1px solid #e2e8f0; border-radius: 6px;
    padding: 2px 7px; font-size: 13.5px; color: #be185d;
}
.legal-page .lg-prose table { width: 100%; margin: 18px 0 22px; border-collapse: collapse; }
.legal-page .lg-prose table th {
    background: #0f2350; color: #fff; text-align: left;
    padding: 10px 14px; font-size: 13px;
}
.legal-page .lg-prose table td { padding: 10px 14px; border-bottom: 1px solid #eef1f8; font-size: 14px; color: #3f4756; }
.legal-page .lg-prose hr { border: 0; border-top: 1px solid #e5eaf3; margin: 24px 0; }

/* ---------- CTA band ---------- */
.legal-page .lg-cta { padding: 44px 0 64px; background: #f6f8fc; }
.legal-page .lg-cta-card {
    display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
    background: linear-gradient(135deg, #0f2350, #122a62);
    border: 1px solid rgba(251, 146, 60, .3); border-radius: 20px;
    padding: clamp(22px, 3.2vw, 34px);
    box-shadow: 0 20px 50px rgba(11, 19, 41, .22);
}
.legal-page .lg-cta-icon {
    width: 52px; height: 52px; flex-shrink: 0; display: grid; place-items: center;
    border-radius: 14px; font-size: 20px; color: #fff;
    background: linear-gradient(135deg, #f97316, #fb923c);
    box-shadow: 0 10px 24px rgba(249, 115, 22, .4);
}
.legal-page .lg-cta-txt { flex: 1; min-width: 240px; }
.legal-page .lg-cta-title { font-size: 19px; font-weight: 800; color: #fff; margin: 0 0 6px; }
.legal-page .lg-cta-sub { font-size: 14px; color: #c7d2fe; margin: 0; line-height: 1.6; }
.legal-page .lg-cta-btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 22px; border-radius: 12px;
    background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
    font-size: 14px; font-weight: 800; text-decoration: none;
    box-shadow: 0 8px 20px rgba(249, 115, 22, .4);
    transition: transform .2s ease, box-shadow .2s ease;
}
.legal-page .lg-cta-btn:hover { color: #fff; transform: translateY(-1px); box-shadow: 0 12px 26px rgba(249, 115, 22, .5); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .legal-page .lg-hero { padding: 32px 0 56px; }
    .legal-page .lg-body { padding: 36px 0 20px; }
    .legal-page .lg-toc { position: static; margin-bottom: 24px; }
    .legal-page .lg-toc-link { flex-direction: row; flex-wrap: wrap; }
    .legal-page .lg-toc-link a { flex: 1 1 45%; }
}
@media (max-width: 575.98px) {
    .legal-page .lg-hero { padding: 28px 0 48px; }
    .legal-page .lg-prose { padding: 24px 18px; }
    .legal-page .lg-cta { padding: 32px 0 48px; }
    .legal-page .lg-cta-btn { width: 100%; justify-content: center; }
}

/* =============================================
   AVAILABLE LOCATIONS SECTION (category pages)
   ============================================= */
.available-locations {
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}
.available-locations h2 { font-size: 1.25rem; font-weight: 700; color: #0b1329; }
.available-locations .badge { font-size: 0.75rem; letter-spacing: 0.3px; }

/* Country flag using CSS */
.country-flag {
    display: inline-block; width: 40px; height: 27px; border-radius: 4px;
    background-size: cover; background-position: center;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 2px 6px rgba(11,19,41,0.08);
}
/* Fallback for countries without flag images - use emoji or gradient */
.country-flag:empty::before {
    content: attr(data-country-code);
    display: flex; align-items: center; justify-content: center;
    width: 100%; height: 100%; font-size: 0.65rem; font-weight: 800;
    color: #fff; text-transform: uppercase;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
}

/* Specific flag backgrounds for major countries */
.country-flag[data-country-code="us"] { background-image: url("https://flagcdn.com/w40/us.png"); }
.country-flag[data-country-code="ca"] { background-image: url("https://flagcdn.com/w40/ca.png"); }
.country-flag[data-country-code="gb"], .country-flag[data-country-code="uk"] { background-image: url("https://flagcdn.com/w40/gb.png"); }
.country-flag[data-country-code="au"] { background-image: url("https://flagcdn.com/w40/au.png"); }
.country-flag[data-country-code="de"] { background-image: url("https://flagcdn.com/w40/de.png"); }
.country-flag[data-country-code="fr"] { background-image: url("https://flagcdn.com/w40/fr.png"); }
.country-flag[data-country-code="in"] { background-image: url("https://flagcdn.com/w40/in.png"); }
.country-flag[data-country-code="ae"] { background-image: url("https://flagcdn.com/w40/ae.png"); }
.country-flag[data-country-code="sg"] { background-image: url("https://flagcdn.com/w40/sg.png"); }

/* Location Cards */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 1rem; }
.location-card {
    background: #fff; border: 1px solid #eef2f7; border-radius: 14px;
    overflow: hidden; transition: all 0.25s ease;
    box-shadow: 0 2px 10px rgba(11,19,41,0.04);
}
.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(11,19,41,0.1);
    border-color: rgba(249,115,22,0.3);
}
.location-card-link { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.location-card-flag { padding: 1.25rem 1rem 0.75rem; display: flex; justify-content: center; }
.location-card-body { padding: 0 1rem 1rem; flex: 1; display: flex; flex-direction: column; }
.location-card-title { font-size: 1rem; font-weight: 700; color: #0b1329; margin: 0 0 0.5rem; line-height: 1.3; }
.location-card-meta { margin-top: auto; }
.location-provider-count { font-size: 0.8rem; color: #6b7280; display: inline-flex; align-items: center; }
.location-card-arrow { padding: 0 1rem 1rem; display: flex; justify-content: flex-end; color: #9ca3af; font-size: 0.75rem; transition: transform 0.2s ease; }
.location-card:hover .location-card-arrow { transform: translateX(4px); color: #f97316; }

/* States expandable */
.location-states { border-top: 1px solid #f1f5f9; background: #fafbfc; }
.location-states-inner { padding: 0.5rem 0.75rem; }
.location-state-item {
    text-decoration: none; color: #374151; border-radius: 8px;
    transition: all 0.15s ease; margin: 0.125rem;
}
.location-state-item:hover {
    background: #fff; color: #1e3a8a;
    box-shadow: 0 2px 8px rgba(30,58,138,0.1);
}
.location-state-name { font-size: 0.875rem; font-weight: 500; }
.location-state-count { font-size: 0.7rem; font-weight: 600; white-space: nowrap; }

/* Toggle button */
.location-toggle { 
    font-size: 0.8rem; 
    margin: 0 1rem 1rem; 
    display: inline-flex; align-items: center; gap: 0.35rem;
    color: #f97316;
}
.location-toggle:hover { color: #ea580c; }
.location-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
.location-toggle i { transition: transform 0.2s ease; }

/* Show more button */
#showMoreLocations { display: none; }
#showMoreLocations.visible { display: inline-flex; }

/* Responsive */
@media (max-width: 767.98px) {
    .available-locations h2 { font-size: 1.1rem; }
    .country-flag { width: 36px; height: 24px; }
}
@media (max-width: 575.98px) {
    .available-locations .badge { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
    .location-card-body { padding: 0 0.75rem 0.75rem; }
}
