:root {
    --ha-blue: #1155CC;
    --ha-blue-rgb: 17, 85, 204;
    --ha-blue-2: #2563EB;
    --ha-blue-2-rgb: 37, 99, 235;
    --ha-accent: #3B82F6;
    --ha-accent-rgb: 59, 130, 246;
    --ha-blue-light: #EFF6FF;
    --ha-ink: #0A1628;
    --ha-muted: #475569;
    --ha-soft: #F8FAFC;
    --ha-soft-indigo: rgba(17, 85, 204, 0.04);
    --ha-border: rgba(203, 213, 225, 0.85);
    --ha-border-light: rgba(255, 255, 255, 0.6);
    --ha-shadow: 0 20px 40px -15px rgba(17, 85, 204, 0.12);
    --ha-shadow-sm: 0 4px 16px -4px rgba(17, 85, 204, 0.08);
    --ha-shadow-lg: 0 30px 60px -15px rgba(10, 22, 40, 0.10), 0 0 50px -10px rgba(17, 85, 204, 0.06);
    --ha-radius: 18px;
    --ha-radius-lg: 32px;
    --ha-whatsapp: #25D366;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--ha-ink);
    background: #FFF;
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 1rem;
    width: 100%;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--ha-soft);
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--ha-blue), var(--ha-blue-2));
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--ha-blue);
}

/* Typography Scale */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--ha-ink);
    letter-spacing: -0.02em;
    line-height: 1.25;
}

h1 {
    font-weight: 800;
}

p {
    color: var(--ha-muted);
    font-weight: 400;
    font-size: 1.05rem;
}

.container {
    max-width: 1200px;
}

/* Premium Background Assets */
.bg-grid-pattern {
    position: relative;
}
.bg-grid-pattern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 85, 204, 0.04) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    width: min(500px, 90vw);
    height: min(500px, 90vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(17, 85, 204, 0.07) 0%, rgba(37, 99, 235, 0.03) 60%, transparent 100%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}
.gradient-blob-1 { top: 10%; left: -150px; }
.gradient-blob-2 { bottom: 15%; right: -150px; }
.gradient-blob-3 { top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* Global Eyebrow */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ha-blue);
    background: rgba(10, 102, 255, 0.06);
    border: 1px solid rgba(10, 102, 255, 0.12);
    padding: 6px 14px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

/* Section Spacing */
.section-pad {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.soft-band {
    background: linear-gradient(180deg, #FFF, var(--ha-soft) 40%, #FFF);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 18px;
}
.section-header p {
    font-size: 1.1rem;
    color: var(--ha-muted);
}

/* Navbar Premium Styling */
.site-nav {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: padding 0.3s ease, background 0.3s ease;
}
.site-nav.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}
.logo-container {
    background: transparent !important;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.logo-container img {
    display: block;
    height: 56px;
    width: auto;
    object-fit: contain;
}

.site-nav .nav-link {
    color: #475569;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    border-radius: 99px;
    transition: all 0.25s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--ha-blue);
    background: rgba(10, 102, 255, 0.05);
}

/* Buttons (CTA) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 700;
    border-radius: 99px;
    padding: 12px 28px;
    font-size: 0.98rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.btn-lg {
    padding: 15px 36px;
    font-size: 1.05rem;
}
.btn-primary {
    background: linear-gradient(135deg, var(--ha-blue) 0%, var(--ha-blue-2) 100%);
    border: none;
    color: #FFF;
    box-shadow: 0 10px 25px -5px rgba(10, 102, 255, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(10, 102, 255, 0.4), 0 0 15px rgba(10, 102, 255, 0.2);
    background: linear-gradient(135deg, var(--ha-blue-2) 0%, var(--ha-blue) 100%);
}
.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--ha-border);
    color: var(--ha-ink);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}
.btn-ghost:hover {
    background: var(--ha-soft);
    border-color: rgba(10, 102, 255, 0.3);
    color: var(--ha-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.05);
}

.btn-light {
    background: #FFF;
    border: 1px solid #FFF;
    color: var(--ha-blue);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.2);
    color: var(--ha-blue-2);
}

/* Subpage main layout padding to prevent header text from being covered by fixed navbar */
main > div.bg-grid-pattern:first-child {
    padding-top: 160px;
}

.error-page {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--ha-soft), #FFF);
}

@media (max-width: 991.98px) {
    main > div.bg-grid-pattern:first-child {
        padding-top: 130px;
    }
}

/* Premium Redesigned Hero Section */
.hero-section {
    padding-top: 150px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 30%, rgba(96, 165, 250, 0.08), transparent 45%);
    pointer-events: none;
    z-index: 0;
}

.hero-section h1 {
    font-size: clamp(2.8rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--ha-ink) 30%, var(--ha-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: 36px;
    color: var(--ha-muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust-indicators {
    display: flex;
    align-items: center;
    gap: 24px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 24px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ha-muted);
}
.trust-item i {
    color: #10B981;
    font-size: 1.1rem;
}

/* Premium Floating Container for Hero Image */
.hero-showcase-wrapper {
    position: relative;
    padding: 10px;
    z-index: 1;
}

.hero-glow-backdrop {
    position: absolute;
    inset: 20px;
    background: linear-gradient(135deg, var(--ha-blue), var(--ha-accent));
    filter: blur(50px);
    opacity: 0.15;
    border-radius: var(--ha-radius-lg);
    z-index: -1;
}

.hero-glass-container {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    border: 1px solid var(--ha-border-light);
    box-shadow: var(--ha-shadow-lg);
    border-radius: var(--ha-radius-lg);
    padding: 12px;
    position: relative;
}

.hero-img-box {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.8s ease;
}
.hero-glass-container:hover .hero-image {
    transform: scale(1.04);
}

/* Stats Section Background Slider */
.stats-section-with-bg {
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 160px 0 !important; /* Increase height significantly to show images clearly */
}

.stats-bg-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
}

.stats-bg-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.45); /* Soft overlay to keep images bright and visible */
    z-index: 3;
}

.stats-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%; /* Focus on screens */
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.stats-bg-image.active {
    opacity: 1;
    z-index: 2;
}

.stats-grid {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    backdrop-filter: none !important;
    position: relative;
    z-index: 10;
}

/* Floating Badges overlay */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.15);
    z-index: 5;
    max-width: 250px;
}

.floating-badge i {
    font-size: 1.4rem;
    color: var(--ha-blue);
    background: rgba(10, 102, 255, 0.08);
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-title {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ha-muted);
    display: block;
}

.floating-badge-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ha-ink);
    display: block;
}

/* Badge specific positioning */
.badge-live {
    top: 24px;
    right: -20px;
}
.badge-cloud {
    bottom: 30px;
    left: -30px;
}
.badge-screens {
    bottom: -15px;
    right: 24px;
}

/* Animations */
@keyframes float-slow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(0.5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.float-slow {
    animation: float-slow 6s ease-in-out infinite;
}
.float-delayed {
    animation: float-slow 6s ease-in-out infinite;
    animation-delay: 3s;
}

/* Statistics Strip */
.stats-container {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid var(--ha-border-light);
    padding: 30px;
    border-radius: var(--ha-radius-lg);
    box-shadow: var(--ha-shadow);
}

.stats-card {
    padding: 35px 25px;
    border-radius: var(--ha-radius);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 35px -5px rgba(10, 22, 40, 0.08);
    text-align: center;
    position: relative;
    z-index: 10;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(10, 22, 40, 0.12);
}

.stats-card:not(:last-child)::after {
    display: none;
}

.stats-num {
    display: block;
    font-size: clamp(2rem, 3vw, 2.75rem);
    font-weight: 800;
    color: var(--ha-blue);
    line-height: 1.1;
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
}

.stats-label {
    display: block;
    color: var(--ha-muted);
    font-size: 0.95rem;
    font-weight: 600;
}

/* About Section Overhaul */
.about-image-wrapper {
    position: relative;
    border-radius: var(--ha-radius-lg);
    overflow: hidden;
    box-shadow: var(--ha-shadow);
    border: 1px solid var(--ha-border);
}
.about-image {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.value-box {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    padding: 20px;
    background: var(--ha-soft);
    border-radius: var(--ha-radius);
    border: 1px solid var(--ha-border);
}
.value-box i {
    font-size: 1.5rem;
    color: var(--ha-blue);
    background: #FFF;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.05);
}
.value-box h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}
.value-box p {
    font-size: 0.95rem;
    margin: 0;
}

/* Timeline Components */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.timeline-step {
    padding: 30px;
    background: #FFF;
    border-radius: var(--ha-radius);
    border: 1px solid var(--ha-border);
    box-shadow: var(--ha-shadow-sm);
    position: relative;
    overflow: hidden;
}
.timeline-step::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--ha-blue), var(--ha-blue-2));
}

.timeline-step strong {
    font-family: 'Sora', sans-serif;
    font-size: 1.15rem;
    color: var(--ha-ink);
    display: block;
    margin-bottom: 12px;
}

.timeline-step p {
    font-size: 0.95rem;
    margin: 0;
}

/* Services section cards */
.service-card {
    height: 100%;
    padding: 40px 30px;
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius-lg);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: var(--ha-shadow-sm);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 100% 100%, rgba(10, 102, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

/* Gradient Border Hover effect */
.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--ha-radius-lg);
    padding: 1.5px;
    background: linear-gradient(135deg, var(--ha-blue) 0%, var(--ha-blue-2) 50%, var(--ha-accent) 100%);
    -webkit-mask: linear-gradient(#FFF 0 0) content-box, linear-gradient(#FFF 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

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

.service-card:hover::before,
.service-card:hover::after {
    opacity: 1;
}

.service-card .icon-pill {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: var(--ha-blue);
    background: rgba(10, 102, 255, 0.07);
    border: 1px solid rgba(10, 102, 255, 0.1);
    font-size: 1.65rem;
    margin-bottom: 24px;
    transition: transform 0.4s ease, background 0.4s ease, color 0.4s ease;
}

.service-card:hover .icon-pill {
    transform: rotate(8deg) scale(1.05);
    background: var(--ha-blue);
    color: #FFF;
}

.service-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.service-card p {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--ha-muted);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card a {
    color: var(--ha-blue);
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.service-card a i {
    transition: transform 0.25s ease;
}
.service-card:hover a i {
    transform: translateX(4px);
}

/* Why Hyper Adz section feature cards */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.why-card {
    height: 100%;
    padding: 35px;
    background: #FFF;
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius);
    box-shadow: var(--ha-shadow-sm);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ha-blue), var(--ha-accent));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.06);
}

.why-card:hover::before {
    opacity: 1;
}

.why-card i {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--ha-blue);
    background: rgba(10, 102, 255, 0.08);
    font-size: 1.35rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 0.95rem;
    margin: 0;
}

/* Feature grid (Used in Why section summary on Home) */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-tile {
    padding: 24px;
    background: #FFF;
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius);
    box-shadow: var(--ha-shadow-sm);
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-tile i {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10, 102, 255, 0.06);
    color: var(--ha-blue);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-tile span {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--ha-ink);
}

.feature-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

/* Premium Map Section Layout */
.network-section {
    padding: 80px 0;
}

.network-shell {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--ha-border-light);
    border-radius: var(--ha-radius-lg);
    box-shadow: var(--ha-shadow-lg);
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.network-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.network-panel h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.network-panel p {
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.network-search-box {
    position: relative;
    margin-bottom: 20px;
}
.network-search-box input {
    width: 100%;
    padding: 10px 16px;
    padding-left: 40px;
    border-radius: 12px;
    border: 1px solid var(--ha-border);
    font-size: 0.9rem;
    background: #FFF;
}
.network-search-box input:focus {
    outline: none;
    border-color: var(--ha-blue);
}
.network-search-box i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--ha-muted);
}

.network-cats-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ha-muted);
    margin-bottom: 10px;
    display: block;
}

.network-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}
.network-cats span {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 14px;
    background: var(--ha-soft);
    color: var(--ha-muted);
    border: 1px solid var(--ha-border);
    border-radius: 99px;
    cursor: not-allowed;
    user-select: none;
    transition: all 0.2s ease;
}
.network-cats span:hover {
    background: #FFF;
    color: var(--ha-blue);
    border-color: rgba(10, 102, 255, 0.3);
}

.network-panel-footer {
    margin-top: auto;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 20px;
}
.network-panel-footer h4 {
    font-size: 0.92rem;
    margin-bottom: 8px;
}
.network-panel-footer p {
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* Map Container & Premium Empty Overlay */
.network-map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--ha-border);
    background: #E2E8F0;
    min-height: 520px;
}

.network-map {
    width: 100%;
    height: 100%;
    min-height: 520px;
    z-index: 1;
}

.network-map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    pointer-events: auto;
}

.network-overlay-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--ha-shadow-lg);
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 480px;
}

.network-overlay-content i {
    font-size: 2.5rem;
    color: var(--ha-blue);
    margin-bottom: 20px;
    display: block;
}

.network-overlay-content h3 {
    font-size: 1.45rem;
    margin-bottom: 12px;
}

.network-overlay-content p {
    font-size: 0.95rem;
    color: var(--ha-muted);
    margin-bottom: 24px;
}

.network-preview-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 12px;
    margin-top: 30px;
}
.network-preview-horizontal span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--ha-soft);
    color: var(--ha-ink);
    font-weight: 700;
    font-size: 0.88rem;
    border: 1px solid var(--ha-border);
}
.network-preview-horizontal span i {
    color: var(--ha-blue);
    font-size: 1.05rem;
    margin: 0;
}

/* Trusted Logos / Cloud Grid */
.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.logo-cloud span {
    padding: 14px 28px;
    background: #FFF;
    border: 1px solid var(--ha-border);
    border-radius: 16px;
    font-weight: 700;
    color: var(--ha-muted);
    box-shadow: var(--ha-shadow-sm);
    display: flex;
    align-items: center;
    gap: 8px;
}
.logo-cloud span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--ha-accent);
    border-radius: 50%;
}

/* Contact Area & Placeholders */
.contact-card {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius-lg);
    padding: 40px;
    height: 100%;
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 24px;
    font-weight: 800;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    color: var(--ha-ink);
    font-weight: 600;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    text-decoration: none;
}
.contact-link:hover {
    color: var(--ha-blue);
}
.contact-link i {
    font-size: 1.25rem;
    color: var(--ha-blue);
    background: rgba(10, 102, 255, 0.06);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder {
    margin-top: 30px;
    min-height: 200px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--ha-blue);
    font-weight: 800;
    background: linear-gradient(135deg, rgba(10,102,255,.05), rgba(96,165,250,.08));
    border: 1px solid rgba(10, 102, 255, 0.1);
}

.contact-form {
    background: #FFF;
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius-lg);
    padding: 45px;
    box-shadow: var(--ha-shadow);
}

.form-control,
.form-select {
    min-height: 52px;
    border-radius: 12px;
    border: 1px solid var(--ha-border);
    padding: 10px 18px;
    font-size: 0.95rem;
    color: var(--ha-ink);
    background: var(--ha-soft);
}
.form-control:focus,
.form-select:focus {
    background: #FFF;
    border-color: var(--ha-blue);
    box-shadow: 0 0 0 4px rgba(10, 102, 255, 0.12);
}

.contact-form label {
    font-weight: 700;
    color: var(--ha-ink);
    font-size: 0.88rem;
    margin-bottom: 8px;
}

/* Premium CTA Section */
.cta-band {
    margin: 80px 0;
    position: relative;
    z-index: 1;
}

.cta-glass-container {
    background: linear-gradient(135deg, rgba(10, 102, 255, 0.98), rgba(59, 130, 246, 0.98));
    border-radius: var(--ha-radius-lg);
    padding: 60px;
    color: #FFF;
    position: relative;
    overflow: hidden;
    box-shadow: var(--ha-shadow-lg);
}

.cta-glass-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    color: #FFF;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-inner p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin: 0;
    font-size: 1.08rem;
}

/* Modernized Footer */
.site-footer {
    padding: 80px 0 30px;
    background: #0A1628;
    color: #94A3B8;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer p,
.site-footer a {
    font-size: 0.95rem;
    color: #94A3B8;
    line-height: 1.8;
}

.site-footer a:hover {
    color: #FFF;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #94A3B8 !important;
    font-size: 1.05rem;
    transition: all 0.25s ease;
    text-decoration: none !important;
}

.footer-social:hover {
    background: rgba(17, 85, 204, 0.3);
    border-color: rgba(17, 85, 204, 0.5);
    color: #FFF !important;
    transform: translateY(-2px);
}

.site-footer h3 {
    color: #FFF;
    font-size: 0.92rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.footer-logo {
    width: 160px;
    height: auto;
    filter: brightness(1.2);
    margin-bottom: 20px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-size: 0.88rem;
}
.footer-bottom a {
    margin-left: 20px;
}

/* Policies Page Layout */
.policy-page {
    padding: 180px 0 100px;
    background: linear-gradient(180deg, var(--ha-soft), #FFF);
}
.policy-page h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 40px;
}
.policy-page h2 {
    font-size: 1.35rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

/* Media Queries for Responsiveness */
@media (max-width: 991.98px) {
    .site-nav .navbar-collapse {
        margin-top: 16px;
        padding: 20px;
        border-radius: var(--ha-radius);
        background: #FFF;
        box-shadow: var(--ha-shadow);
        border: 1px solid var(--ha-border);
    }
    
    .hero-section {
        padding-top: 120px;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-trust-indicators {
        justify-content: center;
    }
    .hero-showcase-wrapper {
        margin-top: 50px;
    }
    .badge-live { right: -5px; }
    .badge-cloud { left: -5px; }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-card:not(:last-child)::after {
        display: none;
    }

    .network-shell {
        grid-template-columns: 1fr;
    }
    .network-panel {
        padding: 10px;
    }
    .network-map-wrapper {
        min-height: 450px;
    }
    .network-map {
        min-height: 450px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    .cta-glass-container {
        padding: 40px;
    }
}

@media (max-width: 767.98px) {
    .section-pad {
        padding: 70px 0;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 30px 20px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-bottom a {
        margin: 0 10px;
    }
    .floating-badge {
        padding: 8px 12px;
        font-size: 0.85rem;
    }
    .floating-badge i {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }
}

/* =============================================
   WhatsApp Floating Button
   ============================================= */
.wa-float {
    position: fixed;
    bottom: 95px;
    right: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ha-whatsapp);
    color: #FFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.wa-float::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wa-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
    color: #FFF;
    text-decoration: none;
}

.wa-float:hover::before {
    opacity: 1;
}

.wa-float i {
    font-size: 1.8rem;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .wa-float {
        bottom: 85px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .wa-float i {
        font-size: 1.5rem;
    }
}

/* =============================================
   Narrow Container (Policy Pages)
   ============================================= */
.container.narrow {
    max-width: 760px;
}

.policy-page h1 {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 40px;
}

.policy-page h2 {
    font-size: 1.35rem;
    margin-top: 30px;
    margin-bottom: 12px;
}

/* =============================================
   Partner Page Styles
   ============================================= */
.partner-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin: 40px 0;
}

.partner-cat-card {
    background: #FFF;
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius);
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--ha-shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
}

.partner-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--ha-shadow);
    border-color: rgba(17, 85, 204, 0.25);
}

.partner-cat-card i {
    font-size: 2rem;
    color: var(--ha-blue);
    background: var(--ha-blue-light);
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.partner-cat-card h4 {
    font-size: 0.95rem;
    margin: 0;
    font-weight: 700;
    color: var(--ha-ink);
}

.partner-benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.partner-benefit-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius);
    padding: 28px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--ha-shadow-sm);
}

.partner-benefit-card i {
    font-size: 1.5rem;
    color: var(--ha-blue);
    background: var(--ha-blue-light);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.partner-benefit-card h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.partner-benefit-card p {
    font-size: 0.9rem;
    margin: 0;
}

.partner-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    counter-reset: partner-step;
    margin: 40px 0;
}

.partner-step {
    background: #FFF;
    border: 1px solid var(--ha-border);
    border-radius: var(--ha-radius);
    padding: 28px 22px;
    box-shadow: var(--ha-shadow-sm);
    position: relative;
}

.partner-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--ha-blue), var(--ha-blue-2));
    color: #FFF;
    font-weight: 800;
    font-size: 0.95rem;
    border-radius: 10px;
    margin-bottom: 14px;
    font-family: 'Sora', sans-serif;
}

.partner-step h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.partner-step p {
    font-size: 0.88rem;
    margin: 0;
}

/* =============================================
   Venue Gallery Slider
   ============================================= */
.venue-gallery-section {
    overflow: hidden;
    padding-bottom: 80px;
}

/* Slider wrapper — full bleed */
.vg-slider-wrapper {
    position: relative;
    width: 100%;
    height: clamp(420px, 60vh, 680px);
    overflow: hidden;
    border-radius: 0;
    background: var(--ha-ink);
}

/* Individual slide */
.vg-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    transform: scale(1.04);
}

.vg-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.vg-slide.prev {
    opacity: 0;
    transform: scale(0.97);
}

.vg-slide-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Cinematic gradient overlay */
.vg-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 22, 40, 0.78) 0%,
        rgba(10, 22, 40, 0.45) 50%,
        rgba(10, 22, 40, 0.15) 100%
    );
}

/* Slide content */
.vg-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 48px 60px;
    max-width: 580px;
    z-index: 2;
}

.vg-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFF;
    padding: 10px 20px;
    border-radius: 99px;
    font-weight: 700;
    font-size: 1.05rem;
    font-family: 'Sora', sans-serif;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.vg-slide-badge i {
    font-size: 1.2rem;
    color: var(--ha-accent);
}

.vg-slide-desc {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Auto-play progress bar */
.vg-slider-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--ha-blue), var(--ha-accent));
    z-index: 10;
    animation: vgProgress 5s linear infinite;
}

@keyframes vgProgress {
    from { width: 0%; }
    to   { width: 100%; }
}

/* Arrow controls */
.vg-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #FFF;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.vg-arrow:hover {
    background: var(--ha-blue);
    border-color: var(--ha-blue);
    transform: translateY(-50%) scale(1.08);
}

.vg-prev { left: 24px; }
.vg-next { right: 24px; }

/* Dot navigation */
.vg-dots {
    position: absolute;
    bottom: 22px;
    right: 32px;
    display: flex;
    gap: 8px;
    z-index: 20;
}

.vg-dot {
    width: 8px;
    height: 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.vg-dot.active {
    width: 28px;
    background: #FFF;
}

/* Thumbnail strip */
.vg-thumbs {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.vg-thumb {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--ha-border);
    border-radius: 14px;
    padding: 6px 6px 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    min-width: 100px;
}

.vg-thumb:hover {
    border-color: var(--ha-blue);
    transform: translateY(-3px);
    box-shadow: var(--ha-shadow);
}

.vg-thumb.active {
    border-color: var(--ha-blue);
    background: var(--ha-blue-light);
}

.vg-thumb-img {
    width: 120px;
    height: 70px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    transition: opacity 0.3s ease;
}

.vg-thumb:hover .vg-thumb-img {
    opacity: 0.92;
}

.vg-thumb span {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--ha-muted);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.vg-thumb.active span {
    color: var(--ha-blue);
}

/* Responsive */
@media (max-width: 991.98px) {
    .vg-slider-wrapper {
        height: clamp(320px, 50vw, 480px);
    }
    .vg-slide-content {
        padding: 30px 24px;
    }
    .vg-slide-badge {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .vg-thumb-img {
        width: 80px;
        height: 50px;
    }
    .vg-thumb {
        min-width: 70px;
    }
}

@media (max-width: 575.98px) {
    .vg-slider-wrapper {
        height: 260px;
    }
    .vg-slide-content {
        padding: 16px 18px;
    }
    .vg-slide-badge {
        font-size: 0.82rem;
        padding: 7px 12px;
    }
    .vg-slide-desc {
        display: none;
    }
    .vg-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .vg-prev { left: 10px; }
    .vg-next { right: 10px; }
    .vg-thumbs {
        gap: 8px;
    }
    .vg-thumb-img {
        width: 56px;
        height: 38px;
    }
    .vg-thumb {
        min-width: 56px;
        padding: 4px 4px 7px;
    }
}

/* Premium Subpage Header Banner */
.subpage-banner {
    position: relative;
    background-size: cover;
    background-position: center 25%;
    padding: 240px 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.subpage-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.35) 0%, rgba(10, 22, 40, 0.6) 100%);
    z-index: 1;
}

/* Custom Dropdown Styling */
.site-nav .dropdown-menu {
    border-radius: 16px;
    padding: 10px;
    min-width: 220px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35) !important;
    border: 1px solid #1E293B !important;
}
.site-nav .dropdown-item {
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 500;
}
.site-nav .dropdown-item:hover {
    background-color: var(--ha-blue) !important;
    color: #FFF !important;
    transform: translateX(3px);
}
.site-nav .dropdown-item:hover i {
    color: #FFF !important;
}



/* Service Card Image Hover Animation */
.service-card:hover .service-card-img {
    transform: scale(1.08);
}


/* Why Card Image Hover Animation */
.why-card:hover .why-card-img {
    transform: scale(1.08);
}
.logo-container img {
    mix-blend-mode: multiply;
}