/* ==========================================================================
   HIMEL ONLINE - Modern High-Speed ISP Theme
   Branded with Himel Blue (#00629B / #0084FF) & Vibrant Orange (#F37023)
   ========================================================================== */

:root {
    --himel-blue: #00629B;
    --himel-blue-vibrant: #0080E8;
    --himel-blue-light: #EBF5FF;
    --himel-blue-soft: rgba(0, 98, 155, 0.08);
    --himel-blue-glow: rgba(0, 128, 232, 0.35);

    --himel-orange: #F37023;
    --himel-orange-hover: #DE5F15;
    --himel-orange-light: #FFF4EC;
    --himel-orange-soft: rgba(243, 112, 35, 0.1);
    --himel-orange-glow: rgba(243, 112, 35, 0.4);

    --dark-bg: #070e24;
    --dark-surface: #0b1739;
    --dark-card: #101f49;
    --dark-card-border: rgba(255, 255, 255, 0.1);

    --light-bg: #F8FAFC;
    --light-surface: #FFFFFF;
    --border-light: #E2E8F0;
    --border-hover: #CBD5E1;

    --text-heading: #0F172A;
    --text-body: #475569;
    --text-muted: #64748B;
    --text-white: #FFFFFF;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-pill: 9999px;

    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 30px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
    --shadow-glow-blue: 0 10px 35px -5px rgba(0, 128, 232, 0.3);
    --shadow-glow-orange: 0 10px 35px -5px rgba(243, 112, 35, 0.35);

    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   Base & Reset
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: var(--text-body);
    background-color: #FFFFFF;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 65px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 45px 0;
    }
}

/* ==========================================================================
   Section Headers & Pre-titles
   ========================================================================== */
.section-pretitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--himel-orange);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.section-pretitle::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background: var(--himel-orange);
    border-radius: 2px;
}

.section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto;
}

.text-himel-blue {
    color: var(--himel-blue-vibrant) !important;
}

.text-himel-orange {
    color: var(--himel-orange) !important;
}

/* ==========================================================================
   Header & Navbar (Dark Modern Tech ISP Navbar)
   ========================================================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: var(--transition);
    background: rgba(7, 14, 36, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-scrolled {
    background: rgba(7, 14, 36, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(0, 132, 255, 0.15);
}

.navbar-custom {
    padding: 16px 0;
    transition: var(--transition);
}

.header-scrolled .navbar-custom {
    padding: 10px 0;
}

.navbar-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    position: relative;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #FFFFFF !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--himel-orange);
    border-radius: 2px;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Language switch */
.lang-switcher {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #FFFFFF;
}

.lang-btn {
    color: rgba(255, 255, 255, 0.6);
    padding: 2px 6px;
    border-radius: 12px;
    transition: var(--transition);
}

.lang-btn.active, .lang-btn:hover {
    color: #FFFFFF;
    background: var(--himel-blue);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 4px;
}

/* Login button */
.btn-login-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 132, 255, 0.45);
    background: rgba(0, 132, 255, 0.1);
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.btn-login-nav:hover {
    background: var(--himel-blue-vibrant);
    border-color: var(--himel-blue-vibrant);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 132, 255, 0.4);
    transform: translateY(-1px);
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 10px;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ==========================================================================
   Hero Section (Cyberpunk ISP Tech Room)
   ========================================================================== */
.hero-section {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(0, 128, 232, 0.18) 0%, transparent 45%),
                radial-gradient(circle at 15% 75%, rgba(243, 112, 35, 0.14) 0%, transparent 40%),
                var(--dark-bg);
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 115px;
    padding-bottom: 85px;
    overflow: hidden;
    color: #FFFFFF;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-glow-1 {
    width: 380px;
    height: 380px;
    background: rgba(0, 132, 255, 0.22);
    top: 10%;
    right: 5%;
}

.hero-glow-2 {
    width: 320px;
    height: 320px;
    background: rgba(243, 112, 35, 0.18);
    bottom: 5%;
    left: 10%;
}

.hero-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 18px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 22px;
    backdrop-filter: blur(6px);
}

.hero-tag-pill .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.dot-blue { background: #00A3FF; box-shadow: 0 0 10px #00A3FF; }
.dot-orange { background: #FF7A00; box-shadow: 0 0 10px #FF7A00; }
.dot-cyan { background: #00F0FF; box-shadow: 0 0 10px #00F0FF; }

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-desc {
    font-size: 1.12rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 530px;
    margin-bottom: 34px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-himel-orange {
    background: linear-gradient(135deg, var(--himel-orange) 0%, #FF8D3B 100%);
    color: #FFFFFF !important;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 34px;
    border-radius: var(--radius-pill);
    border: none;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-glow-orange);
    transition: var(--transition);
}

.btn-himel-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px rgba(243, 112, 35, 0.5);
    color: #FFFFFF;
}

.btn-himel-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 30px;
    border-radius: var(--radius-pill);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.btn-himel-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #FFFFFF;
}

/* Hero Showcase Visual */
.hero-visual-wrapper {
    position: relative;
    z-index: 2;
}

.hero-image-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.7),
                0 0 50px rgba(0, 132, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.hero-image-card:hover {
    transform: scale(1.015);
    box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.8),
                0 0 60px rgba(0, 132, 255, 0.35);
}

.hero-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Floating Badges on Hero Image */
.floating-wifi-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(7, 14, 36, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 240, 255, 0.3);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    animation: floatUpDown 4s ease-in-out infinite;
}

.floating-wifi-badge i {
    font-size: 1.3rem;
    color: #00F0FF;
}

.floating-wifi-badge span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFFFFF;
}

.floating-speed-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(7, 14, 36, 0.85);
    border: 1px solid rgba(243, 112, 35, 0.4);
    box-shadow: 0 8px 25px rgba(243, 112, 35, 0.3);
    padding: 10px 18px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    animation: floatUpDown 5s ease-in-out infinite reverse;
}

.floating-speed-badge .speed-icon {
    width: 36px;
    height: 36px;
    background: rgba(243, 112, 35, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--himel-orange);
    font-size: 1.1rem;
}

.floating-speed-badge .speed-text h5 {
    font-size: 0.95rem;
    font-weight: 800;
    margin: 0;
    color: #FFFFFF;
}

.floating-speed-badge .speed-text p {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ==========================================================================
   Quick Highlights Strip (Floating overlap bar)
   ========================================================================== */
.highlights-strip-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -65px;
    margin-bottom: 20px;
}

.highlights-strip-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 24px 34px;
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12),
                0 0 0 1px rgba(0, 0, 0, 0.04);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 14px;
}

.highlight-icon-box {
    width: 54px;
    height: 54px;
    min-width: 54px;
    background: var(--himel-blue-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--himel-blue);
    font-size: 1.45rem;
    transition: var(--transition);
}

.highlight-item:hover .highlight-icon-box {
    background: var(--himel-blue);
    color: #FFFFFF;
    transform: scale(1.08);
}

.highlight-info h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
    margin: 0 0 2px 0;
}

.highlight-info p {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted);
    margin: 0;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    position: relative;
    background: #FFFFFF;
    overflow: hidden;
}

.about-visual-box {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.about-visual-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 36, 0.1) 0%, rgba(7, 14, 36, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: #FFFFFF;
}

.about-visual-overlay h3 {
    color: #FFFFFF;
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.about-visual-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

.about-feature-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.about-pill-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--light-bg);
    border: 1px solid var(--border-light);
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-heading);
    transition: var(--transition);
}

.about-pill-item i {
    color: var(--himel-blue-vibrant);
    font-size: 1.1rem;
}

.about-pill-item:hover {
    border-color: var(--himel-blue-vibrant);
    background: var(--himel-blue-light);
    transform: translateY(-2px);
}

/* ==========================================================================
   Services Section ("What We Offer")
   ========================================================================== */
.services-section {
    background: var(--light-bg);
}

.service-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 98, 155, 0.25);
}

.service-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--himel-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--himel-blue);
    font-size: 1.85rem;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--himel-blue);
    color: #FFFFFF;
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-glow-blue);
}

.service-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Internet Packages Section ("CHOOSE YOUR PLAN")
   ========================================================================== */
.packages-section {
    background: #FFFFFF;
}

.pkg-card {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pkg-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--himel-blue-vibrant);
}

/* Popular Package Card */
.pkg-card.popular-plan {
    border: 2px solid var(--himel-orange);
    box-shadow: 0 16px 40px -10px rgba(243, 112, 35, 0.2);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--himel-orange);
    color: #FFFFFF;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(243, 112, 35, 0.35);
}

.pkg-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 14px;
}

.pkg-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--border-light);
}

.pkg-currency {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--himel-blue-vibrant);
}

.popular-plan .pkg-currency {
    color: var(--himel-orange);
}

.pkg-amount {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-heading);
    line-height: 1;
}

.pkg-period {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: 2px;
}

.pkg-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex-grow: 1;
}

.pkg-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.93rem;
    color: var(--text-body);
    margin-bottom: 12px;
}

.pkg-features li i {
    color: var(--himel-blue-vibrant);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.popular-plan .pkg-features li i {
    color: var(--himel-orange);
}

.btn-pkg-buy {
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    background: var(--himel-blue-vibrant);
    color: #FFFFFF;
    border: none;
    transition: var(--transition);
    display: block;
}

.btn-pkg-buy:hover {
    background: var(--himel-blue);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-blue);
    transform: translateY(-2px);
}

.popular-plan .btn-pkg-buy {
    background: var(--himel-orange);
    box-shadow: 0 6px 20px rgba(243, 112, 35, 0.35);
}

.popular-plan .btn-pkg-buy:hover {
    background: var(--himel-orange-hover);
    color: #FFFFFF;
    box-shadow: var(--shadow-glow-orange);
}

/* ==========================================================================
   Government Approved Packages (BTRC) - Dark with Parliament Backdrop
   ========================================================================== */
.gov-packages-section {
    position: relative;
    background: linear-gradient(180deg, rgba(7, 14, 36, 0.92) 0%, rgba(7, 14, 36, 0.96) 100%),
                url('../../images/frontend/parliament_bg.jpg') center center/cover no-repeat;
    color: #FFFFFF;
    overflow: hidden;
}

.gov-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    color: var(--text-heading);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gov-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.gov-pkg-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: 10px;
}

.gov-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.gov-currency {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--himel-orange);
}

.gov-amount {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--text-heading);
}

.gov-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.gov-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 22px;
    flex-grow: 1;
}

.btn-gov-buy {
    width: 100%;
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.92rem;
    text-align: center;
    background: var(--himel-blue-vibrant);
    color: #FFFFFF;
    border: none;
    transition: var(--transition);
}

.btn-gov-buy:hover {
    background: var(--himel-blue);
    color: #FFFFFF;
}

/* ==========================================================================
   FTP Servers Section
   ========================================================================== */
.ftp-section {
    background: #FFFFFF;
}

.ftp-card {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ftp-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--himel-blue-vibrant);
}

.ftp-img-wrap {
    position: relative;
    height: 160px;
    background: var(--dark-bg);
    overflow: hidden;
}

.ftp-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.ftp-card:hover .ftp-img-wrap img {
    transform: scale(1.08);
}

.ftp-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 14, 36, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.ftp-card:hover .ftp-overlay {
    opacity: 1;
}

.ftp-body {
    padding: 18px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ftp-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0;
}

/* ==========================================================================
   Counters Strip (Curved Dark Banner)
   ========================================================================== */
.counters-section {
    background: var(--dark-bg);
    padding: 60px 0;
    color: #FFFFFF;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.counter-item {
    text-align: center;
    padding: 12px;
}

.counter-icon {
    font-size: 2.2rem;
    color: var(--himel-orange);
    margin-bottom: 10px;
}

.counter-number {
    font-size: 2.3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.counter-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: var(--light-bg);
}

.faq-accordion .accordion-item {
    background: #FFFFFF;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--himel-blue-vibrant);
}

.faq-accordion .accordion-button {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text-heading);
    padding: 18px 22px;
    background: #FFFFFF;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--himel-blue-vibrant);
    background: var(--himel-blue-light);
}

.faq-accordion .accordion-button::after {
    filter: grayscale(1);
    transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 16px 22px 22px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.65;
}

/* Need Help Card */
.need-help-card {
    background: linear-gradient(135deg, #00629B 0%, #0080E8 100%);
    border-radius: var(--radius-xl);
    padding: 40px 30px;
    color: #FFFFFF;
    text-align: center;
    box-shadow: var(--shadow-glow-blue);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.need-help-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.need-help-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.need-help-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.btn-help-contact {
    background: var(--himel-orange);
    color: #FFFFFF;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 25px rgba(243, 112, 35, 0.4);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-help-contact:hover {
    background: var(--himel-orange-hover);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background: #FFFFFF;
}

.contact-form-box {
    background: #FFFFFF;
    border-radius: var(--radius-xl);
    padding: 38px 34px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-md);
}

.contact-form-box .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-heading);
    margin-bottom: 6px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    padding: 12px 16px;
    font-size: 0.95rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--light-bg);
    color: var(--text-heading);
    transition: var(--transition);
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    background: #FFFFFF;
    border-color: var(--himel-blue-vibrant);
    box-shadow: 0 0 0 3px rgba(0, 128, 232, 0.15);
    outline: none;
}

.contact-card-item {
    background: #FFFFFF;
    border-radius: var(--radius-lg);
    padding: 24px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-card-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--himel-blue-vibrant);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--himel-blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--himel-blue);
    font-size: 1.35rem;
}

.contact-card-item:hover .contact-card-icon {
    background: var(--himel-blue);
    color: #FFFFFF;
}

.contact-card-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 4px;
}

.contact-card-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

.contact-card-info a {
    color: var(--text-body);
}

.contact-card-info a:hover {
    color: var(--himel-blue-vibrant);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: #040817;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-about-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 24px;
}

.footer-col-title {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
}

.footer-col-title::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--himel-orange);
    margin-top: 8px;
    border-radius: 2px;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-list li {
    margin-bottom: 12px;
}

.footer-nav-list a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-nav-list a:hover {
    color: #FFFFFF;
    transform: translateX(4px);
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.92rem;
}

.footer-contact-list i {
    color: var(--himel-orange);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-list a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
    color: #FFFFFF;
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 50px;
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 0.88rem;
}

.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-social-link:hover {
    background: var(--himel-blue-vibrant);
    border-color: var(--himel-blue-vibrant);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 44px;
    height: 44px;
    background: var(--himel-orange);
    color: #FFFFFF;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-glow-orange);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--himel-orange-hover);
    transform: translateY(-3px);
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-section {
        padding-top: 120px;
        padding-bottom: 80px;
        text-align: center;
    }
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-cta-group {
        justify-content: center;
        margin-bottom: 40px;
    }
    .highlights-strip-wrapper {
        margin-top: 0;
        margin-bottom: 40px;
    }
    .highlights-strip-card {
        padding: 20px;
    }
    .navbar-collapse {
        background: rgba(7, 14, 36, 0.98);
        border-radius: var(--radius-lg);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.85rem;
    }
    .highlight-item {
        padding: 8px 0;
    }
    .btn-himel-orange, .btn-himel-outline {
        width: 100%;
        justify-content: center;
    }
}