/* ===== ROOT VARIABLES ===== */
:root {
    --bg-dark: #0a0a0a;
    --bg-section: #141414;
    --bg-card: #1c1c1c;
    --bg-header: rgba(10, 10, 10, 0.95);
    --topbar-bg: #1c1c1c;
    --text-white: #ffffff;
    --text-light: #f5f5f5;
    --text-muted: #9e9e9e;
    --text-dim: #666666;
    --accent: #ffffff;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.2);
    --font-primary: 'Poppins', sans-serif;
    --font-accent: 'Montserrat', sans-serif;
    --font-serif: 'Georgia', serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== GLOBAL RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: var(--transition-smooth); }
img { max-width: 100%; height: auto; display: block; }

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ===== SCROLL TRIGGERED CLASSES ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ===== TOP ANNOUNCEMENT BAR ===== */
.top-bar {
    background: var(--topbar-bg);
    color: var(--text-white);
    padding: 8px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    border-bottom: 1px solid var(--border-subtle);
}
.top-bar-text { font-weight: 400; }
.top-bar-btn {
    display: inline-block;
    border: 1px solid var(--text-white);
    padding: 4px 16px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    background: transparent;
    color: var(--text-white);
}
.top-bar-btn:hover {
    background: var(--text-white);
    color: #000;
    transform: translateY(-2px);
}

/* ===== STICKY HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-header);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-badge {
    width: 36px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    transition: transform 0.5s ease;
}
.brand-logo:hover .logo-badge {
    transform: rotate(360deg);
}
.brand-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.brand-subtitle {
    font-size: 0.55rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}
.nav-link {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 4px 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--text-white); }

/* ===== DROPDOWN MENU ===== */
.nav-menu li.dropdown {
    position: relative;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: #141414;
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 190px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
    z-index: 1000;
}
.nav-menu li.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-menu li.dropdown .dropdown-toggle i {
    transition: transform 0.3s ease;
}
.nav-menu li.dropdown:hover .dropdown-toggle i,
.nav-menu li.dropdown.open .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu li {
    width: 100%;
    text-align: left;
}
.dropdown-menu a {
    display: block;
    padding: 8px 18px;
    font-size: 0.8rem;
    color: var(--text-muted);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.dropdown-menu a:hover {
    color: #fff;
    background: rgba(255,255,255,0.06);
    padding-left: 22px;
}

.nav-extra { display: flex; align-items: center; gap: 12px; }

.search-icon {
    font-size: 1rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}
.search-icon:hover { color: var(--text-white); transform: scale(1.1); }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%),
                url('/images/hero-bg.png') center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}
.hero-logo-large {
    width: 75px;
    height: 75px;
    border: 2px solid rgba(255,255,255,0.85);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease-out 0.1s both;
}
.hero-title-main {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}
.hero-subtitle {
    font-size: 0.78rem;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 25px;
    font-weight: 300;
    animation: fadeInDown 0.8s ease-out 0.3s both;
}
.hero-page-title {
    font-size: 2.6rem;
    font-weight: 700;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.35);
    border-radius: 12px;
    cursor: pointer;
}
.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    border-radius: 2px;
    animation: scrollBounce 2s infinite;
}

/* ===== EXPAND BRAND SECTION ===== */
.expand-section {
    position: relative;
    padding: 90px 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.9) 100%),
                url('/images/expand-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}
.expand-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}
.expand-heading em {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 300;
    font-size: 2.5rem;
}
.expand-subtext {
    font-size: 0.95rem;
    max-width: 650px;
    margin: 0 auto;
    color: #d5d5d5;
    line-height: 1.7;
}

/* ===== WE PROVIDE SECTION ===== */
.provide-section {
    position: relative;
    padding: 90px 5%;
    min-height: 380px;
    background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.78) 100%),
                url('/images/provide-bg.png') center/cover no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}
.provide-content { max-width: 550px; }
.provide-dropcap {
    font-size: 6rem;
    font-family: var(--font-accent);
    font-weight: 200;
    line-height: 0.75;
    float: left;
    margin-right: 6px;
    margin-top: 5px;
    color: #fff;
}
.provide-title {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
}
.provide-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    color: #ccc;
    line-height: 1.4;
    margin-top: 10px;
    clear: both;
}

/* ===== COVERAGE SECTION ===== */
.coverage-banner {
    position: relative;
    padding: 70px 5%;
    background: linear-gradient(180deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.9) 100%),
                url('/images/coverage-bg.png') center/cover no-repeat;
    text-align: center;
}
.coverage-heading {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}
.coverage-heading strong { font-weight: 800; }

.coverage-grid-section {
    padding: 50px 5% 70px;
    background: var(--bg-section);
}
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.location-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.card-img-wrapper {
    height: 180px;
    overflow: hidden;
}
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.location-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}
.card-body {
    padding: 16px;
    text-align: center;
}
.card-sublabel {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.card-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
}
.dot.active { background: #fff; }
.card-country {
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ===== AWARENESS SECTION (CAROUSEL) ===== */
.awareness-section {
    background: linear-gradient(180deg, #f2f2f2 0%, #e8e8e8 50%, #f5f5f5 100%);
    color: #1c1c1c;
    padding: 70px 5%;
    text-align: center;
}
.awareness-carousel-container {
    max-width: 760px;
    height: 350px;
    margin: 0 auto 16px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    position: relative;
}
.carousel-slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.05);
    will-change: opacity, transform;
}
.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.awareness-sublabel {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 12px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.carousel-dots-wrapper {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 18px;
}
.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bbb;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-dot.active {
    background: #222;
    transform: scale(1.3);
}
.awareness-heading {
    font-size: 1.25rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    color: #222;
    line-height: 1.5;
}


/* ===== TRUSTED BY SECTION ===== */
.trusted-section {
    background: #fafafa;
    color: #111;
    padding: 60px 5% 45px;
    text-align: center;
}
.trusted-heading {
    font-size: 1.15rem;
    font-family: var(--font-serif);
    color: #888;
    letter-spacing: 3px;
    margin-bottom: 35px;
    font-weight: 400;
}
.trusted-logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.logo-item {
    font-size: 0.85rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.65;
    transition: var(--transition-smooth);
}
.logo-item:hover {
    opacity: 1;
    color: #000;
    transform: scale(1.1);
}

/* ===== MARQUEE STYLES FOR TRUSTED BY ===== */
.trusted-marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trusted-marquee-track {
    display: flex;
    align-items: center;
    gap: 50px;
    width: max-content;
    animation: marquee-scroll 35s linear infinite;
    will-change: transform;
}

.trusted-marquee-container:hover .trusted-marquee-track {
    animation-play-state: paused;
}

.marquee-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}

.marquee-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.marquee-img {
    height: 48px;
    max-width: 160px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.marquee-item:hover .marquee-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.12);
}

.marquee-text-logo {
    font-size: 0.9rem;
    font-weight: 700;
    color: #555;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    opacity: 0.65;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.marquee-item:hover .marquee-text-logo {
    opacity: 1;
    color: #000;
    transform: scale(1.12);
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== MAIN FOOTER ===== */
.main-footer {
    background: linear-gradient(180deg, rgba(10,10,10,0.94) 0%, rgba(10,10,10,0.98) 100%),
                url('/images/footer-bg.png') center/cover no-repeat;
    padding: 60px 5% 30px;
    color: var(--text-light);
}
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto 40px;
}
.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}
.footer-logo-badge {
    width: 45px;
    height: 45px;
    border: 2px solid rgba(255,255,255,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
}
.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.3px;
}
.footer-brand-tagline {
    font-size: 0.58rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}
.footer-phone {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}
.footer-contact-line {
    font-size: 0.82rem;
    color: #bbb;
    line-height: 1.6;
}
.office-block { text-align: right; margin-bottom: 12px; }
.office-title {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 2px;
    color: #fff;
}
.office-address {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    line-height: 1.4;
}

.footer-social-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 35px 0 18px;
    flex-wrap: wrap;
}
.social-icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255,255,255,0.08);
}
.social-icon-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px) scale(1.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 950px;
    margin: 30px auto 0;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    gap: 30px;
}
.footer-links-list {
    list-style: none;
    line-height: 1.8;
    font-size: 0.78rem;
}
.footer-links-list a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.footer-operated {
    font-size: 0.75rem;
    color: #777;
    line-height: 1.6;
}
.qr-code-box {
    width: 95px;
    height: 95px;
    background: #fff;
    padding: 6px;
    border-radius: 6px;
    flex-shrink: 0;
}
.footer-copyright {
    text-align: center;
    font-size: 0.65rem;
    color: #555;
    letter-spacing: 1px;
    padding-top: 20px;
    margin-top: 15px;
    border-top: 1px solid var(--border-subtle);
    text-transform: uppercase;
}

/* ===== ABOUT PAGE SPECIFIC ===== */
.about-hero { height: 50vh; min-height: 350px; }
/* ===== DISTRICTS NETWORK BAR ===== */
.districts-bar {
    background: var(--bg-section);
    padding: 22px 5% 14px;
    border-bottom: 1px solid var(--border-subtle);
}
.districts-bar-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 2.2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2px 0;
}
.district-link {
    color: #bbb;
    padding: 2px 5px;
    transition: color 0.3s ease, background 0.3s ease;
    text-decoration: none;
    border-radius: 3px;
    white-space: nowrap;
}
.district-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.district-sep {
    color: #444;
    margin: 0 2px;
    user-select: none;
}
.district-hidden {
    display: none;
}
.districts-bar.expanded .district-hidden {
    display: inline;
}
.districts-more-wrapper {
    text-align: center;
    margin-top: 10px;
    padding-bottom: 4px;
}
.districts-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ccc;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 24px;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
}
.districts-more-btn:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.districts-more-btn i {
    font-size: 0.65rem;
    transition: transform 0.35s ease;
}
.districts-bar.expanded .districts-more-btn i {
    transform: rotate(180deg);
}

.about-content-section {
    padding: 70px 5%;
    background: var(--bg-dark);
}
.about-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: center;
}
.about-text h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.25;
}
.about-text h2 span { color: #fff; text-decoration: underline; text-underline-offset: 4px; }
.about-text p {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 14px;
}
.about-text p strong { color: #fff; }
.about-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.about-video-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* About Stats Grid - Compact & Neat */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}
.about-stat-card {
    background: var(--bg-card);
    padding: 24px 16px;
    border-radius: 8px;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.25);
}
.about-stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.about-stat-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* About Solutions Grid */
.about-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.about-solution-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.about-solution-card-body {
    padding: 20px;
}
.about-solution-card-body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.about-solution-card-body p {
    font-size: 0.85rem;
    color: #bbb;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    border: 1.5px solid #fff;
    padding: 10px 26px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 10px;
    background: transparent;
    color: #fff;
    transition: var(--transition-smooth);
}
.cta-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

/* ===== SHARED PAGE INTRO SECTION ===== */
.page-intro-section {
    padding: 60px 5%;
    background: var(--bg-dark);
    text-align: center;
}
.page-intro-inner {
    max-width: 700px;
    margin: 0 auto;
}
.page-intro-heading {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.page-intro-heading span {
    font-weight: 300;
    color: var(--text-muted);
}
.page-intro-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== PORTFOLIO PAGE ===== */
.portfolio-section {
    padding: 0 5% 70px;
    background: var(--bg-dark);
}
.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}
.filter-btn {
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 8px 22px;
    border-radius: 30px;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
}
.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}
.portfolio-item {
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    transition: var(--transition-smooth);
}
.portfolio-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}
.portfolio-img-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.portfolio-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.portfolio-item:hover .portfolio-img-wrapper img {
    transform: scale(1.08);
}
.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}
.portfolio-overlay-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.portfolio-item-body {
    padding: 16px 18px;
}
.portfolio-item-body h3 {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.portfolio-item-body p {
    font-size: 0.78rem;
    color: var(--text-muted);
}
.portfolio-item-body p i {
    margin-right: 4px;
    font-size: 0.72rem;
}

/* ===== BILLBOARDS PAGE ===== */
.billboard-types-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.billboard-type-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}
.billboard-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.billboard-type-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.3rem;
    color: #fff;
    transition: var(--transition-smooth);
}
.billboard-type-card:hover .billboard-type-icon {
    background: #fff;
    color: #000;
    border-color: #fff;
}
.billboard-type-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.billboard-type-card p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}
.billboard-type-stat {
    font-size: 0.78rem;
    color: #bbb;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}
.billboard-type-stat i {
    margin-right: 5px;
    font-size: 0.72rem;
}
.billboard-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.billboard-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.billboard-showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}
.billboard-showcase-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.billboard-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.billboard-showcase-card:hover .billboard-showcase-img img {
    transform: scale(1.06);
}
.billboard-showcase-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.5px;
}
.billboard-showcase-badge i {
    margin-right: 4px;
    color: #f59e0b;
}
.billboard-showcase-body {
    padding: 18px;
}
.billboard-showcase-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}
.billboard-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}
.billboard-location i {
    margin-right: 4px;
    font-size: 0.72rem;
}
.billboard-specs {
    display: flex;
    gap: 16px;
    font-size: 0.75rem;
    color: #999;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}
.billboard-specs i {
    margin-right: 4px;
    font-size: 0.68rem;
}

/* ===== BLOG PAGE ===== */
.blog-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.blog-featured:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}
.blog-featured-img {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}
.blog-featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-featured:hover .blog-featured-img img {
    transform: scale(1.04);
}
.blog-featured-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    color: #f59e0b;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.blog-featured-badge i {
    margin-right: 4px;
}
.blog-featured-content {
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.blog-featured-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.4;
}
.blog-featured-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 14px;
    flex-wrap: wrap;
}
.blog-meta i {
    margin-right: 4px;
}
.blog-tag {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 500;
    color: #ccc;
    letter-spacing: 0.5px;
}
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition-smooth);
}
.blog-read-more:hover {
    gap: 10px;
    color: #ccc;
}
.blog-read-more i {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}
.blog-read-more:hover i {
    transform: translateX(4px);
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.blog-card-img {
    position: relative;
    height: 190px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
    transform: scale(1.06);
}
.blog-card-img .blog-tag {
    position: absolute;
    top: 12px;
    left: 12px;
}
.blog-card-body {
    padding: 18px;
}
.blog-card-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}
.blog-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 14px;
}
.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
    margin: 0 auto;
}
.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    border: 1px solid var(--border-subtle);
    border-radius: 6px;
    background: var(--bg-card);
    color: #fff;
    font-family: var(--font-primary);
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}
.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.35);
}
.newsletter-input::placeholder {
    color: #666;
}
.newsletter-btn {
    padding: 12px 22px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 6px;
    font-family: var(--font-primary);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}
.newsletter-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}
.newsletter-btn i {
    margin-right: 5px;
}

/* ===== HAMBURGER MENU ===== */

.hamburger-menu {
    display: none;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hamburger-menu { display: inline-flex; align-items: center; justify-content: center; }
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        background: rgba(12, 12, 12, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px 5%;
        gap: 16px;
        border-bottom: 1px solid var(--border-subtle);
        transform: translateY(-130%);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.4s ease, opacity 0.3s ease, visibility 0.3s;
        z-index: 999;
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li { width: 100%; text-align: center; }
    .nav-link { font-size: 1rem; display: block; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-menu li:last-child .nav-link { border-bottom: none; }

    /* Mobile Dropdown (Accordion Expand) */
    .nav-menu li.dropdown {
        width: 100%;
    }
    .nav-menu li.dropdown:hover .dropdown-menu {
        transform: none;
        position: static;
    }
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        display: block;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
        min-width: 100%;
        padding: 0;
        margin-top: 8px;
        border-radius: 8px;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease, visibility 0.3s;
    }
    .nav-menu li.dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 450px;
        padding: 8px 0;
        transform: none !important;
    }
    .dropdown-menu li {
        text-align: center;
        width: 100%;
    }
    .dropdown-menu a {
        padding: 10px 15px;
        font-size: 0.95rem;
        color: #ccc;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        display: block;
    }
    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    .dropdown-menu a:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 15px;
    }



    
    .coverage-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .footer-top { grid-template-columns: 1fr; }
    .office-block { text-align: left; }

    /* Portfolio responsive */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

    /* Billboards responsive */
    .billboard-types-grid { grid-template-columns: repeat(2, 1fr); }
    .billboard-showcase-grid { grid-template-columns: repeat(2, 1fr); }

    /* Blog responsive */
    .blog-featured { grid-template-columns: 1fr; gap: 0; }
    .blog-featured-img { min-height: 240px; }
    .blog-featured-content { padding: 24px 20px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-title-main { font-size: 2rem; }
    .hero-page-title { font-size: 2.2rem; }
    .expand-heading { font-size: 1.7rem; }
    .expand-heading em { font-size: 2rem; }
    .provide-title { font-size: 1.6rem; }
    .provide-dropcap { font-size: 4.5rem; }
    .coverage-heading { font-size: 1.6rem; }
    .coverage-grid { grid-template-columns: 1fr; }
    .about-solutions-grid { grid-template-columns: 1fr; gap: 18px; }
    .about-text h2 { font-size: 1.4rem; }
    .about-stat-number { font-size: 1.5rem; }
    .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
    .footer-links-list { text-align: center; }

    /* Portfolio responsive */
    .portfolio-grid { grid-template-columns: 1fr; }
    .portfolio-img-wrapper { height: 220px; }
    .page-intro-heading { font-size: 1.4rem; }

    /* Billboards responsive */
    .billboard-types-grid { grid-template-columns: 1fr; }
    .billboard-showcase-grid { grid-template-columns: 1fr; }

    /* Blog responsive */
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-img { height: 200px; }
    .blog-featured-content h2 { font-size: 1.15rem; }

    /* Newsletter responsive */
    .newsletter-form { flex-direction: column; }
    .newsletter-input { width: 100%; }
}
@media (max-width: 576px) {
    .top-bar { flex-direction: column; gap: 6px; text-align: center; padding: 6px 4%; }
    .hero-title-main { font-size: 1.5rem; }
    .hero-page-title { font-size: 1.8rem; }
    .hero-logo-large { width: 60px; height: 60px; font-size: 0.9rem; }
    .footer-brand-name { font-size: 1.2rem; }
    .about-stats-grid { grid-template-columns: 1fr; gap: 12px; }
    .about-stat-card { padding: 18px 12px; }
    .about-stat-number { font-size: 1.5rem; }
}

/* ===== BILLBOARD LOCATION SEARCH POPUP ===== */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
}
.search-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-popup-modal {
    background: var(--bg-card, #1c1c1c);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.12));
    border-radius: 14px;
    width: 100%;
    max-width: 480px;
    padding: 34px 28px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.9), 0 0 1px rgba(255, 255, 255, 0.2);
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.search-popup-overlay.active .search-popup-modal {
    transform: scale(1) translateY(0);
}

.search-popup-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted, #9e9e9e);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth, all 0.3s ease);
}
.search-popup-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    transform: rotate(90deg);
}

.search-popup-header {
    text-align: center;
    margin-bottom: 28px;
}
.search-popup-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle, rgba(255, 255, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.25rem;
    color: #ffffff;
}
.search-popup-header h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-white, #ffffff);
    margin-bottom: 6px;
    font-family: var(--font-primary);
}
.search-popup-header p {
    font-size: 0.82rem;
    color: var(--text-muted, #9e9e9e);
    line-height: 1.5;
}

.search-popup-body {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 26px;
}
.search-popup-step {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.search-popup-label {
    font-size: 0.73rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted, #9e9e9e);
    display: flex;
    align-items: center;
    gap: 8px;
}
.step-number {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== CUSTOM LUXURY DROPDOWN COMPONENT ===== */
.custom-select-box {
    position: relative;
    width: 100%;
}
.custom-select-trigger {
    width: 100%;
    padding: 13px 16px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    color: #ffffff;
    font-size: 0.88rem;
    font-family: var(--font-primary);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-select-trigger span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.custom-select-box.has-value .custom-select-trigger {
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-weight: 500;
}
.custom-select-trigger:hover:not(:disabled) {
    border-color: rgba(255, 255, 255, 0.35);
    background: #121212;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}
.custom-select-trigger:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: #0a0a0a;
    border-color: rgba(255, 255, 255, 0.05);
}
.custom-select-arrow {
    font-size: 0.7rem;
    color: #777;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}
.custom-select-dropdown.open ~ .custom-select-trigger .custom-select-arrow,
.custom-select-dropdown.open .custom-select-arrow {
    transform: rotate(180deg);
    color: #fff;
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    z-index: 1000;
    background: #161616;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.95), 0 0 1px rgba(255, 255, 255, 0.2);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.custom-select-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.custom-select-options {
    max-height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-right: 2px;
}
/* Custom Scrollbar for dropdown options */
.custom-select-options::-webkit-scrollbar {
    width: 5px;
}
.custom-select-options::-webkit-scrollbar-track {
    background: transparent;
}
.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}
.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.custom-option {
    padding: 10px 14px;
    border-radius: 6px;
    color: #d8d8d8;
    font-size: 0.86rem;
    font-family: var(--font-primary);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}
.custom-option:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding-left: 18px;
}
.custom-option.selected {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
}
.custom-option.clear-opt {
    color: #888888;
    font-size: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
    padding-bottom: 8px;
}
.custom-option.clear-opt:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    padding-left: 14px;
}

.search-popup-footer {
    margin-top: 8px;
}
.search-popup-btn {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    background: #ffffff;
    color: #000000;
    border: 1px solid #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-smooth, all 0.3s ease);
}
.search-popup-btn:hover:not(:disabled) {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}
.search-popup-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted, #888);
    border-color: transparent;
    transform: none;
}

/* ===== BILLBOARD DETAIL PAGE STYLES ===== */
.billboard-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.billboard-detail-media {
    position: sticky;
    top: 100px;
}
.billboard-detail-img-box {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    max-height: 420px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
.billboard-detail-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.billboard-detail-premium-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: #f59e0b;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}
.billboard-detail-cat-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    color: #a5b4fc;
    font-size: 0.75rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.billboard-detail-header h2 {
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.3;
}
.billboard-detail-bd-location {
    font-size: 0.85rem;
    color: #34d399;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    background: rgba(52, 211, 153, 0.08);
    padding: 8px 14px;
    border-radius: 8px;
    border: 1px solid rgba(52, 211, 153, 0.15);
    margin-bottom: 20px;
}

.billboard-specs-box-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 24px 0;
}
.billboard-spec-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.spec-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.spec-card-label {
    font-size: 0.73rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}
.spec-card-value {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
}

.billboard-detail-description {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}
.billboard-detail-description h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #eee;
}
.billboard-detail-description p {
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .billboard-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .billboard-detail-media {
        position: static;
    }
}

@media (max-width: 576px) {
    .search-popup-modal {
        padding: 24px 18px;
    }
    .billboard-specs-box-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== MISSION & VISION SECTION ===== */
.mission-vision-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border-subtle);
}
.mission-vision-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.mission-vision-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}
.mv-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 36px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.mv-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}
.mv-card:hover::before {
    opacity: 1;
}
.mv-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}
.mission-icon {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.2);
    color: #34d399;
}
.mv-card:hover .mission-icon {
    background: #34d399;
    color: #000;
    border-color: #34d399;
    box-shadow: 0 8px 25px rgba(52, 211, 153, 0.3);
}
.vision-icon {
    background: rgba(165, 180, 252, 0.1);
    border: 1px solid rgba(165, 180, 252, 0.2);
    color: #a5b4fc;
}
.mv-card:hover .vision-icon {
    background: #a5b4fc;
    color: #000;
    border-color: #a5b4fc;
    box-shadow: 0 8px 25px rgba(165, 180, 252, 0.3);
}
.mv-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.mv-card-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.35;
}
.mv-card-text {
    font-size: 0.88rem;
    color: #bbb;
    line-height: 1.7;
    margin-bottom: 20px;
}
.mv-card-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-subtle);
}
.mv-card-highlights span {
    font-size: 0.8rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mv-card-highlights span i {
    font-size: 0.72rem;
    color: #34d399;
}

/* ===== INFINITE SCROLL LOADER ===== */
.infinite-scroll-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px 0 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.scroll-spinner {
    width: 24px;
    height: 24px;
    border: 2.5px solid rgba(255, 255, 255, 0.1);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spinLoader 0.7s linear infinite;
}
@keyframes spinLoader {
    to { transform: rotate(360deg); }
}

/* Mission & Vision Responsive */
@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .mv-card {
        padding: 28px 22px;
    }
    .mv-card-heading {
        font-size: 1.05rem;
    }
}
