.faq-summary-icon {
    font-size: 18px;
    color: var(--tertiary,#3ABEF9);
    margin-right: 10px;
    vertical-align: middle;
    transition: transform 0.28s ease, color 0.18s ease, opacity 0.18s ease;
    opacity: 0.95;
}

details[open] .faq-summary-icon { transform: rotate(90deg); color: var(--secondary,#3572EF); }

.faq-content .btn-row { display:flex; gap:12px; margin-top:12px; }
.faq-content .btn-row .btn-avail { flex:1; }
.faq-content .btn-row .close-btn { flex:1; background:#1E88E5; border-radius:8px; padding:12px 18px; color:#fff; text-align:center; display:inline-block; text-decoration:none; }
.faq-content .close-btn:hover { transform:translateY(-2px); box-shadow:0 10px 20px rgba(5,12,156,0.12); }

/* Slightly larger clickable affordance for mobile */
@media (max-width:600px) {
    .faq-summary-icon { font-size:20px; margin-right:12px; }
    summary { padding: 12px 8px; }
}

/* ===== MESSENGER-INSPIRED UI OVERHAUL ===== */

/* Glassmorphism effect for cards and panels */
.glass-effect {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Smooth breathing/pulsing animation for promotional elements */
@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 0.95; }
    50% { transform: scale(1.04); opacity: 1; }
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(53, 114, 239, 0.4), 0 10px 30px rgba(5, 12, 156, 0.2); }
    50% { box-shadow: 0 0 40px rgba(53, 114, 239, 0.6), 0 15px 50px rgba(5, 12, 156, 0.35); }
}

@keyframes slide-in-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce-in {
    0% { opacity: 0; transform: scale(0.85); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Animate feature cards on page load */
.feature {
    animation: slide-in-up 0.6s ease-out;
    animation-fill-mode: both;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced FAQ button with promotional styling */
.faq-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3572EF 0%, #050C9C 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(53, 114, 239, 0.45);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: bounce-in 0.6s ease-out, pulse-glow 2.5s ease-in-out infinite;
    z-index: 1000;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.faq-button:hover {
    transform: scale(1.15) translateY(-5px);
    box-shadow: 0 15px 50px rgba(53, 114, 239, 0.65);
    animation: pulse-glow 1.8s ease-in-out infinite;
}

.faq-button:active {
    transform: scale(0.95);
}

.faq-button img {
    width: 32px;
    height: 32px;
    filter: brightness(1.1);
}

.faq-button p {
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    margin: 2px 0 0 0;
    letter-spacing: 0.5px;
}

/* Animated pulse ring around FAQ button */
.faq-button::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(53, 114, 239, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

/* FAQ popup glassmorphism upgrade */
.faq-popup {
    background: linear-gradient(135deg, rgba(30, 40, 60, 0.95) 0%, rgba(20, 30, 50, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(5, 12, 156, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    animation: slide-in-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    width: 420px;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 2000;
}

/* FAQ content card styling */
.faq-content {
    padding: 24px;
}

.faq-content h2 {
    background: linear-gradient(90deg, #3ABEF9, #3572EF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
    animation: slide-in-up 0.5s ease-out 0.1s both;
}

/* Details/summary enhanced with glassmorphism */
details {
    background: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 14px 14px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slide-in-up 0.5s ease-out;
}

details:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-color: rgba(53,114,239,0.3);
    box-shadow: 0 8px 20px rgba(53,114,239,0.15);
}

details[open] {
    background: linear-gradient(135deg, rgba(53,114,239,0.1) 0%, rgba(58,190,249,0.05) 100%);
    border-color: rgba(53,114,239,0.5);
}

/* Staggered animation for details elements */
.faq-content details:nth-child(2) { animation-delay: 0.1s; }
.faq-content details:nth-child(3) { animation-delay: 0.15s; }
.faq-content details:nth-child(4) { animation-delay: 0.2s; }
.faq-content details:nth-child(5) { animation-delay: 0.25s; }
.faq-content details:nth-child(6) { animation-delay: 0.3s; }
.faq-content details:nth-child(7) { animation-delay: 0.35s; }
.faq-content details:nth-child(8) { animation-delay: 0.4s; }

/* Summary enhanced with smooth color transition */
summary {
    color: #ffffff;
    font-weight: 700;
    padding: 14px 14px;
    border-radius: 10px;
    cursor: pointer;
    outline: none;
    transition: all 0.24s ease;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

summary:hover {
    background: rgba(53,114,239,0.12);
    color: #3ABEF9;
}

summary:focus-visible {
    background: rgba(58,190,249,0.2);
    outline: 2px solid #3572EF;
    outline-offset: 2px;
}

/* Icon smooth color and animation transition */
.faq-summary-icon {
    font-size: 22px;
    color: #3ABEF9;
    transition: all 0.36s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(58,190,249,0.4));
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

details[open] .faq-summary-icon {
    transform: rotate(180deg) scale(1.2);
    color: #3ABEF9;
    filter: drop-shadow(0 0 14px rgba(58,190,249,0.7));
}

/* Animated panel body */
.faq-panel-body {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.36s ease, transform 0.36s ease;
    overflow: hidden;
    padding: 0 10px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

details[open] .faq-panel-body {
    max-height: 600px;
    opacity: 1;
    transform: none;
    padding: 12px 10px 10px 10px;
}

/* Button styling in FAQ */
.faq-content .btn-row {
    display: none;
}

.faq-content .btn-row .btn-avail,
.faq-content .close-btn {
    display: none;
}

/* Mobile-friendly FAQ button */
@media (max-width: 768px) {
    .faq-popup {
        width: calc(100vw - 40px);
        max-height: 80vh;
        bottom: auto;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 600px) {
    .faq-button {
        bottom: 20px;
        right: 20px;
        width: 64px;
        height: 64px;
    }

    .faq-button img {
        width: 28px;
        height: 28px;
    }

    .faq-button p {
        font-size: 10px;
    }

    .faq-popup {
        width: calc(100vw - 40px);
        max-height: 85vh;
        bottom: 90px;
        right: 20px;
        top: auto;
        transform: none;
    }

    .faq-content {
        padding: 18px;
    }

    summary {
        padding: 12px 12px;
        font-size: 16px;
    }

    .faq-summary-icon {
        font-size: 20px;
    }
}

/* Promotional banner animation boost */
.promo-banner {
    animation: slide-in-up 0.7s ease-out 0.2s both;
}

/* Dark Theme Styling */
/* Global Dark Mode */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #FAFAFA;
    padding-top: 70px;
    position: relative;
    background-color: #f4f4f9;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/be_bg.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
}

/* ===== MODERN NAVBAR REDESIGN ===== */
.modern-navbar {
    background: linear-gradient(135deg, #050C9C 0%, #1a2650 50%, #050C9C 100%);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(58, 190, 249, 0.4);
    box-shadow: 0 8px 32px rgba(5, 12, 156, 0.4), inset 0 1px 0 rgba(58, 190, 249, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    height: 50px;
    display: flex;
    align-items: center;
}

.navbar-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styling */
.navbar-brand {
    flex: 0 0 auto;
}

.navbar-brand a.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 8px 16px;
    border-radius: 12px;
}

.navbar-brand a.logo:hover {
    background: rgba(58, 190, 249, 0.15);
    transform: translateY(-2px);
}

.logo-icon {
    font-size: 28px;
    display: flex;
    align-items: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    background: linear-gradient(90deg, #3ABEF9 0%, #A7E6FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text .blue {
    color: #3ABEF9;
    -webkit-text-fill-color: #3ABEF9;
}

.logo-text .white {
    color: #A7E6FF;
    -webkit-text-fill-color: #A7E6FF;
}

/* Navigation Links */
.navbar-nav {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(58, 190, 249, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(58, 190, 249, 0.18);
    color: #A7E6FF;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(58, 190, 249, 0.3);
}

.nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.dropdown-chevron {
    font-size: 20px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-chevron {
    transform: rotate(90deg);
    color: #3ABEF9;
}

/* Dropdown Menu */
.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: linear-gradient(135deg, rgba(5, 12, 156, 0.95) 0%, rgba(26, 38, 80, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(58, 190, 249, 0.5);
    border-radius: 14px;
    min-width: 260px;
    padding: 12px;
    box-shadow: 0 15px 50px rgba(5, 12, 156, 0.5), inset 0 1px 0 rgba(58, 190, 249, 0.2);
    z-index: 10000;
    animation: slide-down-menu 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slide-down-menu {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(58, 190, 249, 0.25);
    color: #A7E6FF;
    padding-left: 20px;
    transform: translateX(4px);
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #3572EF 0%, #3ABEF9 100%);
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.dropdown-item:hover .dropdown-icon {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 6px 20px rgba(58, 190, 249, 0.4);
}

/* Login Button */
.btn-login {
    background: linear-gradient(135deg, #3572EF 0%, #3ABEF9 100%);
    color: #050C9C !important;
    font-weight: 700;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-login::after {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: right 0.5s ease;
    z-index: -1;
}

.btn-login:hover {
    background: linear-gradient(135deg, #A7E6FF 0%, #3ABEF9 100%);
    box-shadow: 0 8px 30px rgba(58, 190, 249, 0.5);
    transform: translateY(-3px) scale(1.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-login:hover::after {
    right: 100%;
}

.btn-login:active {
    transform: translateY(-1px) scale(0.98);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
    padding-right: 25px;
}

.hamburger {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #3ABEF9, #A7E6FF);
    border-radius: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.navbar-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.navbar-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar-container {
        padding: 0 30px;
    }

    .navbar-nav {
        gap: 4px;
    }

    .nav-link {
        font-size: 14px;
        padding: 8px 14px;
    }

    .logo-text {
        font-size: 20px;
    }

    .logo-icon {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
    }

    .modern-navbar {
        height: 70px;
    }

    .navbar-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #050C9C 0%, #1a2650 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        border-bottom: 2px solid rgba(58, 190, 249, 0.4);
        box-shadow: 0 10px 40px rgba(5, 12, 156, 0.4);
        padding: 12px 0;
        z-index: 9998;
    }

    .navbar-nav.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 14px 20px;
        border-radius: 0;
        font-size: 15px;
    }

    .nav-link:hover {
        background: rgba(58, 190, 249, 0.2);
        border-left: 4px solid #3ABEF9;
        padding-left: 16px;
    }

    .dropdown-menu {
        position: static;
        display: none;
        background: rgba(5, 12, 156, 0.6);
        border: none;
        border-top: 1px solid rgba(58, 190, 249, 0.3);
        border-radius: 0;
        min-width: auto;
        padding: 8px 20px;
        box-shadow: none;
        margin-top: 4px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-item {
        padding: 10px 16px;
        font-size: 13px;
    }

    .navbar-toggle {
        display: flex;
    }

    .logo-icon {
        font-size: 22px;
    }

    .logo-text {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .navbar-container {
        padding: 0 15px;
    }

    .navbar-brand a.logo {
        padding: 6px 12px;
        gap: 5px;
    }

    .logo-icon {
        font-size: 14px;
    }

    .logo-text {
        font-size: 20px;
        letter-spacing: -1px;
    }

    .nav-link {
        font-size: 14px;
        padding: 12px 16px;
    }

    .dropdown-item {
        font-size: 13px;
    }

    .dropdown-menu {
        min-width: 220px;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 12px;
    }

    .modern-navbar {
        height: 55px;
    }

    .navbar-nav {
        top: 65px;
    }
    
    .navbar-brand a.logo {
        padding: 6px 12px;
        gap: 5px;
    }

    .logo-icon {
        font-size: 14px;
    }

    .logo-text {
        font-size: 16px;
    }

    .nav-link {
        font-size: 13px;
        padding: 10px 14px;
    }

    .hamburger {
        width: 24px;
        height: 2.5px;
    }
}

nav {
    background-color: rgba(18, 23, 28, 0.9);
    color: #FAFAFA;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    height: 60px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    white-space: nowrap;
}

.logo .blue { color: #0077C0; }
.logo .white { color: white; }

.nav-links {
    list-style: none;
    display: flex;
    align-items: right;
    gap: 10px;
    margin: 0;
    padding: 0;
    padding-right: 60px;
}

.nav-links a {
    color: #FAFAFA;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    padding: 10px;
}

.nav-links .login {
    background-color: #0077C0;
    padding: 8px 15px;
    border-radius: 5px;
    font-weight: bold;
}

.nav-links .login:hover { background-color: #FAFAFA; }
.nav-links li a:hover { color: #448fbe; }

.dropdown-menu {
    display: none;
    position: absolute;
    background-color: #1D242B;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    list-style: none;
    padding: 10px;
    z-index: 10;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu li { padding: 10px; }

.dropdown-menu a {
    color: white;
    text-decoration: none;
    font-weight: lighter;
    font-size: 14px;
}

.dropdown-menu a:hover { color: #0077C0; }
.submenu { position: relative; }

.sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #1D242B;
    padding: 10px;
    border-radius: 5px;
    list-style: none;
}

.submenu:hover .sub-dropdown { display: block; }

.dropdown-menu img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

.dropdown-menu a:hover { color: #0077C0; }

@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        height: auto;
        padding: 15px;
    }
    .nav-links { flex-wrap: wrap; }
}

.menu-btn {
    display: none;
    cursor: pointer;
}

.menu-btn img {
    width: 35px;
    height: 35px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(18, 23, 28, 0.95);
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
    }
    .nav-links li { padding: 10px 0; }
    .menu-btn {
        display: block;
        margin-right: 50px;
    }
    .nav-links.show { display: flex; }
}

.section {
    padding: 20px;
    text-align: center;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20%;
    gap: 80px;
}

.hero-text {
    font-size: 42px;
    font-weight: bold;
    max-width: 500px;
    font-style: italic;
    line-height: 1.6;
}

.hero-text .blue { color: #0077C0; }

.promo-card {
    background-color: #29313A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
    max-width: 320px;
}

.promo-card h2 {
    font-size: 36px;
    color: #C7EEFF;
    margin-bottom: 15px;
}

.promo-card p {
    font-size: 18px;
    margin-bottom: 30px;
}

.promo-card .btn {
    background-color: #0077C0;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    margin-bottom: 5px;
}

.promo-card .btn:hover { background-color: #005f9e; }

.features {
    display: flex;
    justify-content: center;
    gap: 70px;
    padding: 20px;
    text-align: center;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
}

.feature img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid #0077C0;
    padding: 5px;
    background-color: #FAFAFA;
}

.feature p {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #FAFAFA;
    text-shadow: 0px 6px 12px #29313A;
}

.faq-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    text-align: center;
    padding: 10px;
    background-color: #0077C0;
    color: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, outline 0.3s ease;
    z-index: 1000;
}

.faq-button:hover,
.faq-button:focus {
    transform: scale(1.1);
    background-color: #005f9e;
    outline: 3px solid #fff;
    outline-offset: 2px;
}

.faq-button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #0077C0;
}

.faq-content button:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px #0077C0;
}

.faq-button img {
    width: 30px;
    height: 30px;
    margin-bottom: 2px;
}

.faq-button p {
    font-size: 10px;
    font-weight: bold;
    margin: 0;
}

.faq-popup {
    display: none;
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 320px;
    background: #29313A;
    border: 2px solid #0077C0;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    z-index: 999;
    color: #FAFAFA;
}

.faq-content h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #0077C0;
}

.faq-content ul {
    list-style: none;
    padding: 0;
}

.faq-content li {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.faq-content li strong {
    color: #0077C0;
    display: block;
    margin-bottom: 5px;
}

.faq-content button {
    width: 100%;
    margin-top: 15px;
    padding: 8px 16px;
    background-color: #0077C0;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.faq-content button:hover {
    background-color: #005f9e;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .hero-text { font-size: 32px; }
    .promo-card { max-width: 280px; }
    .features {
        flex-wrap: wrap;
        gap: 30px;
    }
    .feature { max-width: 100px; }
    .feature img {
        width: 70px;
        height: 70px;
    }
    .feature p { font-size: 16px; }
    .faq-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        padding: 8px;
    }
    .faq-popup {
        width: 90%;
        bottom: 80px;
        right: 5%;
        padding: 15px;
        font-size: 14px;
    }
    .faq-content h3 { font-size: 16px; }
    .faq-content ul li { font-size: 13px; }
    .faq-content button {
        padding: 10px;
        font-size: 14px;
    }
}

.about-section {
    margin-top: 20px;
    padding: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 800px;
    flex-wrap: wrap;
}

.about-logo {
    width: 250px;
    height: auto;
    margin-right: 25px;
    flex-shrink: 0;
}

.about-text {
    max-width: 650px;
    font-size: 20px;
    line-height: 1.6;
    text-shadow: 0px 6px 12px #29313A;
}

.learn-more {
    display: inline-block;
    color: #fafafa;
    text-decoration: underline;
    font-weight: bold;
    text-shadow: none;
}

.learn-more:hover { color: #005f9e; }

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    .about-logo {
        margin: 0 auto 20px;
        width: 200px;
    }
    .about-text {
        font-size: 18px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .about-section { padding: 30px; }
    .about-logo { width: 180px; }
    .about-text {
        font-size: 16px;
        line-height: 1.5;
    }
}

.why-choose {
    display: flex;
    justify-content: center;
    padding: 50px;
}

.why-card {
    background-color: #29313A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

.why-card p {
    font-size: 18px;
    line-height: 2;
}

.apply-btn {
    background-color: #0077C0;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.apply-btn:hover { background-color: #005f9e; }

input, textarea {
    width: 90%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #FAFAFA;
    border-radius: 5px;
    background-color: #FAFAFA;
    color: #1D242B;
}

button {
    background-color: #0077C0;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover { background-color: #005f9e; }


/* Banner + Avail Now button (uses Burgeon palette) */
.promo-banner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background-image: url('assets/client/img/be-banner.jpg'); /* put your banner image here */
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(13,34,53,0.12);
  min-height: 190px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top: 32px;
}

/* optional semi-overlay for better contrast */
.promo-banner::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29,36,43,0.45) 0%, rgba(0,119,192,0.12) 50%, rgba(199,238,255,0.06) 100%);
  pointer-events: none;
}

/* container for banner copy — keeps layout responsive */
.promo-banner .banner-inner{
  position: relative; /* above overlay */
  z-index: 2;
  width: 100%;
  padding: 36px 28px;
  box-sizing: border-box;
  display:flex;
  gap: 16px;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
}

/* left copy (large playful text) */
.promo-banner .left {
  color: #FAFAFA;
  flex: 1 1 320px;
  min-width: 260px;
}
.promo-banner .left .headline {
  font-family: 'Pacifico', Arial, sans-serif;
  font-size: 36px;
  line-height: 1.05;
  color: #FAFAFA;
  text-shadow: 0 4px 18px rgba(0,0,0,0.25);
  margin: 0 0 8px;
}
.promo-banner .left .sub {
  font-size: 20px;
  color: rgba(250,250,250,0.92);
  margin: 0;
}

/* right copy (feature / speed highlight) */
.promo-banner .right {
  flex: 0 0 420px;
  min-width: 220px;
  text-align: right;
  color: #FAFAFA;
}
.promo-banner .right .big {
  font-weight: 800;
  font-size: 56px;
  color: #C7EEFF;
  text-shadow: 0 4px 18px rgba(0,0,0,0.28);
  margin: 0 0 6px;
}
.promo-banner .right .desc {
  font-size: 20px;
  color: rgba(250,250,250,0.95);
  margin: 0;
}

/* Avail Now pill (center bottom) */
.promo-banner .avail-wrap {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 22px;
  z-index: 3;
  width: auto;
}
a.btn-avail {
  display:inline-block;
  background: linear-gradient(135deg, #00D4FF 0%, #0099FF 100%);
  color: #ffffff;
  padding: 14px 48px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.35);
  border: 2px solid rgba(0, 212, 255, 0.2);
  letter-spacing: 1px;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
a.btn-avail:hover{
  transform: scale(1.08) translateY(-3px);
  background: linear-gradient(135deg, #00E5FF 0%, #00B0FF 100%);
  color: #ffffff;
  box-shadow: 0 18px 50px rgba(0, 212, 255, 0.5);
  border-color: rgba(0, 212, 255, 0.4);
}

/* Interactive hero text — uses Pacifico for the playful look, Montserrat for weights */
.hero-text {
  font-family: "Pacifico", "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  font-size: 48px;
  line-height: 1.65;
  color: #FAFAFA;
  text-align: center;
  padding: 12px 18px;
  transition: transform .24s ease, text-shadow .24s ease;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;
  user-select: none;
  margin-top: 32px;
}
/* accent line (uses gradient fill) */
.hero-text .tagline {
  display: inline-block;
  font-weight: 900;
  background: linear-gradient(90deg, #C7EEFF 100%, #0077C0 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* Highlighted initials (interactive) */
.hero-text .initial {
  display:inline-block;
  font-weight:900;
  color: #0077C0;               /* Converge Blue */
  padding: 0 4px;
  border-radius: 6px;
  line-height: 1;
  margin-right: 2px;
  box-shadow: 0 6px 16px rgba(0,119,192,0.08);
  cursor: pointer;
  outline: none;
}
.hero-text .initial:focus,
.hero-text .initial:hover {
  transform: translateY(-6px) scale(1.06);
  color: #FAFAFA;
}
/* small pulse used by JS on activation */
.hero-text .initial.pulse {
  animation: initial-pulse .72s cubic-bezier(.2,.9,.2,1);
}
@keyframes initial-pulse {
  0% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-10px) scale(1.12); }
  70% { transform: translateY(-4px) scale(1.06); }
  100% { transform: translateY(0) scale(1); }
}

/* subtle float animation so it looks alive */
@keyframes floaty {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.hero-text .wave { display:inline-block; animation: floaty 4s ease-in-out infinite; }

/* hover / active states */
.hero-text:hover { transform: translateY(-6px) scale(1.02); text-shadow: 0 16px 40px rgba(0,119,192,0.14); }
.hero-text.pulse { animation: hero-pulse .7s ease; }
@keyframes hero-pulse { 0%{transform:scale(1)}50%{transform:scale(1.06)}100%{transform:scale(1)} }

/* keep it responsive */
@media (max-width:600px){ .hero-text { font-size: 32px; } .hero-text .tagline{ font-size: 34px; } }

/* responsive */
@media (max-width:900px){
  .promo-banner .right { text-align:left; flex-basis: 100%; order: 3; }
  .promo-banner .left  { flex-basis: 100%; order: 1; padding-bottom: 40px; }
  .promo-banner .banner-inner { padding: 20px; }
  a.btn-avail { padding: 12px 36px; font-size:15px; }
}

/* MOBILE: Show portrait banner, hide landscape */
@media (max-width: 768px) {
    .promo-banner {
        aspect-ratio: 9 / 16; /* Portrait aspect ratio */
        max-width: 500px;
        min-height: 600px; /* INCREASED minimum height */
        height: auto;
        border-radius: 14px;
        margin: 15px auto 40px;
    }

    .promo-banner .banner-portrait {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain; /* CHANGED to contain to show full image */
    }

    .promo-banner .banner-landscape {
        display: none !important;
    }

    .promo-banner .avail-wrap {
        bottom: 30px; /* More space from bottom */
    }

    /* hide any leftover inner copy if present */
    .promo-banner .banner-inner { 
        display: none; 
    }
}

@media (max-width: 600px) {
    .promo-banner {
        margin: 8px auto 30px;
        border-radius: 12px;
        aspect-ratio: 9 / 16;
        min-height: 550px; /* Ensure full image displays */
    }

    .promo-banner .banner-portrait {
        object-fit: contain !important; /* Show full image without cropping */
    }

    .promo-banner .avail-wrap {
        bottom: 20px;
    }

    a.btn-avail {
        padding: 10px 25px;
        font-size: 12px;
    }
    
    /* ensure hero text doesn't overlap the banner */
    .hero-text {
        margin-bottom: 12px;
        font-size: 28px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        min-height: 500px; /* Adjust for smaller screens */
        max-width: 95%;
    }

    .promo-banner .avail-wrap {
        bottom: 15px;
    }

    a.btn-avail {
        padding: 8px 20px;
        font-size: 11px;
    }
}

/* ===========================
   Panel: contact icons + interactive coverage list
   =========================== */

/* Contact list (icons via ::before; supports classes: .hotline, .mobile, .email, .chat) */
#features-full-panel .panel-body .contact-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#features-full-panel .panel-body .contact-list li {
  position: relative;
  padding: 12px 14px 12px 54px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(3,119,192,0.03), rgba(199,238,255,0.02));
  box-shadow: 0 8px 18px rgba(3,119,192,0.04);
  color: #0f1720;
  font-weight: 600;
  align-items: center;
  display: flex;
  gap: 10px;
}
/* icon box */
#features-full-panel .panel-body .contact-list li::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(13,34,53,0.08);
}
/* per-type icons (use emoji fallback) */
#features-full-panel .panel-body .contact-list li.hotline::before { content: "📞"; background: linear-gradient(180deg,#0077C0,#005A8C); }
#features-full-panel .panel-body .contact-list li.mobile::before  { content: "📱"; background: linear-gradient(180deg,#00A3E0,#0077C0); }
#features-full-panel .panel-body .contact-list li.email::before   { content: "✉️";  background: linear-gradient(180deg,#00C0A8,#0077C0); }
#features-full-panel .panel-body .contact-list li.chat::before    { content: "💬";  background: linear-gradient(180deg,#FFB74D,#FF8A00); }

/* clickable links inside contact items */
#features-full-panel .panel-body .contact-list a {
  color: #0077C0;
  font-weight: 700;
  text-decoration: none;
}
#features-full-panel .panel-body .contact-list a:hover { text-decoration: underline; }

/* Interactive coverage list using <details> */
#features-full-panel .panel-body .coverage-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}
#features-full-panel .panel-body .coverage-list details {
  background: rgba(3,119,192,0.04);
  border-radius: 10px;
  padding: 8px;
  transition: background .18s ease, transform .18s ease;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(3,119,192,0.03);
}
#features-full-panel .panel-body .coverage-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: #0077C0;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  outline: none;
  border-radius: 8px;
}
#features-full-panel .panel-body .coverage-list summary::-webkit-details-marker { display: none; }

/* chevron */
#features-full-panel .panel-body .coverage-list summary::after {
  content: "▸";
  transform-origin: center;
  transition: transform .2s ease;
  color: #0077C0;
  font-size: 14px;
}

/* open state */
#features-full-panel .panel-body .coverage-list details[open] {
  background: linear-gradient(180deg, rgba(199,238,255,0.06), rgba(3,119,192,0.02));
  transform: translateY(0);
}
#features-full-panel .panel-body .coverage-list details[open] summary::after {
  transform: rotate(90deg);
}

/* details content */
#features-full-panel .panel-body .coverage-list .coverage-content {
  padding: 10px 12px 6px;
  color: #0f1720;
  font-weight: 500;
  line-height: 1.5;
}

/* make entries more tappable on small screens */
@media (max-width:900px) {
  #features-full-panel .panel-body .contact-list li { padding-left: 64px; }
  #features-full-panel .panel-body .contact-list li::before { left: 16px; width:36px; height:36px; }
  #features-full-panel .panel-body .coverage-list summary { font-size: 15px; padding: 12px; }
}

/* ===== Layout: sticky footer (not fixed) + centered responsive inquiry form ===== */

/* FIXED: Ensure body is a flex container so footer sits naturally at bottom 
   WHY: Previous fixed/absolute positioning prevented proper layout flow
   FIX: Using flexbox with flex-direction: column ensures footer stays at bottom
   PREVENT: Always use min-height: 100vh and display: flex on body for sticky footers */
html {
    height: 100%;
    overflow-x: hidden;   /* keep horizontal overflow hidden */
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    position: relative;
    background-color: #f4f4f9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Prevent horizontal page scrollbar from accidental overflow */
html, body {
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/be_bg.png') no-repeat center center fixed;
    background-size: cover;
    filter: blur(8px);
    z-index: -1;
}

/* Ensure main content grows, pushing footer to bottom */
main, section:not(.hero):not(.features):not(.technician-showcase):not(.about-section):not(.why-choose):not(#inquiry) {
    flex: 1 0 auto;
}


/* Inquiry — stack heading above the form and center both */
#inquiry {
  display: flex;
  flex-direction: column; /* stack heading then form */
  align-items: center;    /* center heading + form horizontally */
  padding: 48px 16px;
  box-sizing: border-box;
  width: 100%;
}

/* Center the inquiry section and constrain form width for consistent margins */
#inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 36px 16px;
  box-sizing: border-box;
  width: 100%;
}

/* Make the H2 centered and constrained */
#inquiry h2 {
  width: 100%;
  max-width: 980px;
  margin: 0 0 20px;
  text-align: center;
  color: #FAFAFA; /* keep consistent with page header style */
  font-size: 28px;
  font-weight: 700;
}


/* Ensure everything inside the form uses border-box to avoid overflow */
#inquiryForm, #inquiryForm * { box-sizing: border-box; }

/* Make textarea span both columns and keep spacing consistent */
#inquiryForm textarea { min-height: 110px; resize: vertical; grid-column: 1 / -1; }

/* Make any conditional blocks span full width */
#municipalityDiv, #locationDiv { grid-column: 1 / -1; }

/* Responsive adjustments */
@media (max-width: 880px) {
  #inquiryForm {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 12px;
  }
  #inquiryForm textarea { grid-column: auto; }
  #inquiryForm button[type="submit"] {
    width: 100%;
    justify-self: stretch;
  }
  #inquiry h2 { font-size: 24px; margin-bottom: 16px; }
}

/* Very small devices: reduce paddings */
@media (max-width: 420px) {
  #inquiry { padding: 20px 12px; }
  #inquiryForm { padding: 12px; border-radius: 8px; }
  #inquiryForm button[type="submit"] { padding: 10px 14px; }
}
/* Feature wrapper */
.feature { 
  position: relative; 
  cursor: pointer; 
  -webkit-tap-highlight-color: transparent; 
  text-align: center;
  flex: 1;
  min-width: 180px;
  margin-bottom: 20px; /* space between features */
}

/* Hidden panel by default */
.feature .feature-panel {
  display: none;               /* hidden until active */
  position: relative;          /* keeps it in page flow */
  width: 100%;
  max-width: 900px;
  margin: 20px auto;
  background: linear-gradient(180deg, #FAFAFA 0%, #F7FCFF 100%);
  color: #1D242B;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(7,11,15,0.15);
  text-align: center;
  z-index: 1;
  font-size: 15px;
  line-height: 1.5;
  transition: all 0.3s ease;
  animation: fadeSlideDown 0.3s ease;
}

/* Show active panel */
.feature .feature-panel.active {
  display: block;
}

/* Animation */
@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Headings */
.feature-panel strong {
  display: block;
  font-size: 20px;
  margin-bottom: 12px;
  color: #0077C0;
}

/* Text */
.feature-panel p {
  color: #1D242B;
  font-size: 15px;
  margin: 8px 0;
  line-height: 1.5;
}

/* Buttons inside panel */
.feature-panel .panel-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-panel .btn-panel {
  background: #0077C0; 
  color: #FAFAFA;
  border: 0;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(13,34,53,0.15);
  transition: all 0.2s ease;
}
.feature-panel .btn-panel:hover {
  background: #C7EEFF; 
  color: #1D242B;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .feature .feature-panel {
    padding: 18px 20px;
    font-size: 14px;
  }
  .feature-panel strong {
    font-size: 18px;
  }
}


.inquiry-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}


.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: #007bff;
}

.step-title {
    font-size: 12px;
    color: #333;
}

/* Hide all steps by default */
.step-content {
    display: none;
}

/* Show only the active step */
.step-content.active {
    display: block;
}


/* Ensure the form-grid uses flexbox properly */
.form-grid {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange items in a single column */
    gap: 15px; /* Add spacing between fields */
}

/* Make all fields take equal space */
.form-grid > div {
    flex: 1; /* Ensures all fields take equal space */
}

label {
    font-weight: lighter;
    margin-bottom: 4px;
    display: block; /* Ensure labels are above inputs */
    text-align: left; /* Align labels to the left */
    color: #fff; /* Label color */     
    font-size: 14px; /* Label font size */
}

form .text {
    font-size: 14px;
    color: #fff;
    font-weight: lighter;
}

.warning {
    font-size: 0.9em;
    color: red;
    margin-top: 5px;
    display: none; /* Initially hidden */
}

input,
select,
textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

textarea {
    resize: none;
    height: 80px;
}

.btn {
    grid-column: span 2;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
}

.btn:hover {
    background-color: #0056b3;
}

/* Ensure consistent styling for input fields */
#barangay {
    width: 100%; /* Full width */
    padding: 10px; /* Add padding for better usability */
    border: 1px solid #ccc; /* Border styling */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px; /* Font size */
    box-sizing: border-box; /* Include padding and border in width */
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-grid label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-grid input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* General form styling */
form {
    margin-top: 20px;
}

h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #fff;
}

/* Form grid layout */
.form-grid {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange items in a single column */
    gap: 15px; /* Add spacing between fields */
}

/* Input and select styling */
input, select, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Button styling */
button.btn {
    background-color: #1775F1;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

button.btn:hover {
    background-color: #0C5FCD;
}

/* Hidden content */
.hidden {
    display: none;
}

/* Active step content */
.step-content.active {
    display: block;
}

/* Success message styling */
#successMessage {
    text-align: center;
    margin-top: 20px;
    color: #4CAF50;
}

/* Form grid layout for single-column design */
.form-grid {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Arrange items in a single column */
    gap: 15px; /* Add spacing between fields */
}

/* Input, select, and textarea styling */
input, select, textarea {
    width: 100%; /* Full width */
    padding: 10px; /* Add padding for better usability */
    border: 1px solid #ccc; /* Border styling */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px; /* Font size */
    box-sizing: border-box; /* Include padding and border in width */
}

/* Label styling */
label {
    font-weight: lighter;
    margin-bottom: 4px;
    display: block; /* Ensure labels are above inputs */
    text-align: left; /* Align labels to the left */
    font-size: 14px; /* Label font size */
}

/* Button styling */
button.btn {
    background-color: #1775F1;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

button.btn:hover {
    background-color: #0C5FCD;
}

/* Success message styling */
#successMessage {
    text-align: center;
    margin-top: 20px;
    color: #4CAF50;
}


.inquiry-form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

/* Form grid layout using flexbox */
.form-grid {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping for responsive design */
    gap: 20px; /* Add spacing between fields */
    justify-content: space-between; /* Distribute fields evenly */
    max-width: 1200px; /* Set a wider maximum width */
    margin: 0 auto; /* Center the grid horizontally */
}

/* Individual field container */
.form-grid > div {
    flex: 1 1 100%; /* Default to full width */
    min-width: 300px; /* Ensure fields don't shrink too much */
}

/* Input, select, and textarea styling */
input, select, textarea {
    width: 100%; /* Full width */
    padding: 10px; /* Add padding for better usability */
    border: 1px solid #ccc; /* Border styling */
    border-radius: 4px; /* Rounded corners */
    font-size: 14px; /* Font size */
    margin-bottom: 15px; /* Add spacing between fields */
    box-sizing: border-box; /* Include padding and border in width */
}

textarea {
    resize: none;
    height: 80px;
}

/* Label styling */
label {
    font-weight: lighter;
    margin-bottom: 4px;
    display: block; /* Ensure labels are above inputs */
    text-align: left; /* Align labels to the left */
    font-size: 14px; /* Label font size */
}

/* Button styling */
button.btn {
    background-color: #1775F1;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    text-decoration: none;
}

button.btn:hover {
    background-color: #0C5FCD;
}

/* Success message styling */
#successMessage {
    text-align: center;
    margin-top: 20px;
    color: #4CAF50;
}

/* Steps indicator styling */
.steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background-color: #ddd;
    color: #fff;
    font-weight: bold;
    margin-bottom: 5px;
}

.step.active .step-number {
    background-color: #007bff;
}

.step-title {
    font-size: 12px;
    color: #333;
}


/* Checkbox Group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    margin-bottom: 15px;
    margin-top: 30px;
}

.checkbox-group input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-group label {
    color: #C7EEFF;
}

.checkbox-group a {
    color: #0077C0;
    text-decoration: none;
    font-weight: bold;
}

.checkbox-group a:hover {
    color: #FAFAFA;
}

/* ===== ENHANCED INTERACTIVE UI ELEMENTS ===== */
/* FIXED: Added comprehensive interactivity improvements across all UI elements
   WHY: Make the interface more responsive and engaging for users
   IMPROVEMENTS:
   - Smooth transitions on all interactive elements
   - Glow effects on focus for accessibility
   - Shine effects on button hover
   - Card elevation and shadow enhancements
   - Staggered animations for better UX
   - Keyboard accessibility for all interactive elements
   PREVENT: Always use cubic-bezier(0.34, 1.56, 0.64, 1) for elastic-like bounce effect */

/* Smooth transitions for all interactive elements - FIXED: Better interactivity */
* {
    scroll-behavior: smooth;
}

/* Add glow effect to buttons and links on focus */
button, a.btn, a.btn-avail, .btn-panel, .apply-btn {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 119, 192, 0.15);
}

button:focus, a.btn:focus, a.btn-avail:focus, .btn-panel:focus, .apply-btn:focus {
    outline: 2px solid rgba(58, 190, 249, 0.8);
    outline-offset: 2px;
    box-shadow: 0 0 20px rgba(58, 190, 249, 0.6), 0 4px 12px rgba(0, 119, 192, 0.15);
}

/* Smooth button hover state with shine effect */
button::before, a.btn::before, a.btn-avail::before, .btn-panel::before, .apply-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    pointer-events: none;
}

button:hover::before, a.btn:hover::before, a.btn-avail:hover::before, .btn-panel:hover::before, .apply-btn:hover::before {
    left: 100%;
}

/* Interactive card elevation - FIXED: Better hover state for all cards */
.feature, .why-card, .promo-card, .feature-expanded {
    box-shadow: 0 4px 16px rgba(0, 119, 192, 0.1);
}

.feature:hover, .why-card:hover, .promo-card:hover, .feature-expanded:hover {
    box-shadow: 0 20px 48px rgba(0, 119, 192, 0.25);
    transform: translateY(-8px);
}

/* Enhanced input focus state - FIXED: Better visual feedback */
input:focus, select:focus, textarea:focus {
    outline: none !important;
    border-color: #0077C0 !important;
    box-shadow: 0 0 0 3px rgba(0, 119, 192, 0.1), inset 0 0 6px rgba(0, 119, 192, 0.08) !important;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

/* Staggered animation for features - appears on page load */
.feature {
    animation: slideInUp 0.6s ease-out backwards;
}

.feature:nth-child(1) { animation-delay: 0.1s; }
.feature:nth-child(2) { animation-delay: 0.2s; }
.feature:nth-child(3) { animation-delay: 0.3s; }
.feature:nth-child(4) { animation-delay: 0.4s; }
.feature:nth-child(5) { animation-delay: 0.5s; }
.feature:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tooltip hover effect for interactive elements */
[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: rgba(0, 119, 192, 0.95);
    color: white;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

[data-tooltip]:hover::after {
    opacity: 1;
}

/* Section fade-in animation */
.fade-section {
    opacity: 0;
    animation: fadeInSection 0.8s ease-out forwards;
}

@keyframes fadeInSection {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Underline animation for links */
a {
    position: relative;
}

a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3ABEF9;
    transition: width 0.3s ease;
}

a:hover::after {
    width: 100%;
}

/* Loading skeleton animation */
@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

/* Modal fade-in animation */
.modal {
    animation: fadeInModal 0.3s ease;
}

@keyframes fadeInModal {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Style for inline checkboxes */
.radio-inline {
    display: flex;
    gap: 15px; /* Space between radioes */
    align-items: center;
}

.radio-inline label {
    display: flex;
    align-items: center;
    gap: 5px; /* Space between radio and label text */
}

.change-pass-box {
    background: #fff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    width: 350px;
    margin: 60px auto;
}
.change-pass-box h2 {
    margin-bottom: 1.5rem;
}
.change-pass-box input {
    width: 100%;
    padding: 0.7rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.change-pass-box button {
    width: 100%;
    padding: 0.7rem;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: bold;
}
.change-pass-box .error {
    color: #c00;
    margin-bottom: 1rem;
}
.change-pass-box .success {
    color: #090;
    margin-bottom: 1rem;
}




/* ===== STICKY FOOTER (NOT FIXED, RESPECTS LAYOUT) ===== */
/* FIXED: Footer no longer fixed/absolute - it flows naturally with page content 
   WHY: The footer was using position:fixed which caused it to overlay page content
   FIX: Now uses position:relative with flex layout so it sits naturally at page bottom
   PREVENT: Always use flex layout for body (flex-direction: column) to keep footer at bottom */
footer {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(180deg, #1D242B 0%, #0f172a 100%);
    color: #FAFAFA;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    border-top: 2px solid rgba(0, 119, 192, 0.3);
    margin-top: 60px;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    /* Ensure footer sits at the bottom of page without overlapping content */
    flex-shrink: 0;
}

footer p {
    margin: 8px 0;
    font-size: 14px;
    line-height: 1.6;
    transition: all 0.3s ease;
}

footer a {
    color: #3ABEF9;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

footer a:hover {
    color: #C7EEFF;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(58, 190, 249, 0.5);
}

/* Modal Styling */
.modal {
    display: none;
    position: fixed;
    z-index: 1050;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(29, 36, 43, 0.85);
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: #fff;
    color: #1D242B;
    margin: 10% auto;
    padding: 20px 30px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.modal-content .form-group {
    margin-bottom: 15px;
}

.modal-content .form-actions {
    text-align: right;
    margin-top: 20px;
}

.modal-content .close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 24px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
}

.modal-content .close:hover {
    color: #000;
}



.btn-primary, .btn-success, .btn-secondary {
    padding: 8px 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.btn-primary {
    background-color: #0077C0;
    color: #fff;
}

.btn-success {
    background-color: #28a745;
    color: #fff;
}

.btn-secondary {
    background-color: #6c757d;
    color: #fff;
}

.btn-primary:hover {
    background-color: #005f9e;
}

.btn-success:hover {
    background-color: #218838;
}

.btn-secondary:hover {
    background-color: #545b62;
}


/* Employment Type Details */

.employment-type-details {
    margin-top: 15px;
}

.employment-type-details label {
    display: block;
    margin-bottom: 5px;
}

.employment-type-details input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Deposit Slip */

.deposit-link {
    color: #2196f3;
    text-decoration: none;
    font-weight: bold;
    margin-right: 10px;
    margin-top: 6px;
    display: inline-block;
    transition: color 0.2s;
}

.deposit-link:hover {
    color: #1565c0;
    text-decoration: underline;
}

.deposit-preview {
    max-width: 200px;
    border: 1px solid #ccc;
    margin-bottom: 8px;
    display: block;
}

.pdf-icon {
    font-size: 1.2em;
    vertical-align: middle;
    margin-right: 4px;
}

/* Panel UI polish + remove visible close button */
#features-full-panel .panel-close {
  display: none !important; /* remove close icon/button visually and from layout */
  visibility: hidden !important;
  pointer-events: none !important;
}

/* Center header title since close button removed */
#features-full-panel .panel-header {
  display: flex;
  justify-content: center; /* center title */
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: transparent;
  border-bottom: none;
}

/* Make title prominent and centered */
#features-full-panel .panel-header .title {
  font-weight: 900;
  font-size: 1.3rem;
  color: #0077C0;
  text-align: center;
  margin: 0;
}

/* Card-like inner area */
#features-full-panel .panel-inner > .panel-header,
#features-full-panel .panel-inner > .panel-body {
  background: linear-gradient(180deg,#FFFFFF 0%, #F7FBFF 100%);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(13,34,53,0.08);
  border: 1px solid rgba(3,119,192,0.06);
}

/* Body spacing and readable typography */
#features-full-panel .panel-body {
  margin-top: 12px;
  color: #0f1720;
  font-size: 15px;
  line-height: 1.6;
}

/* Center action buttons and make them pop */
#features-full-panel .panel-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  justify-content: center; /* centered buttons */
  align-items: center;
}
#features-full-panel .panel-actions .btn-panel {
  background: #1D242B;
  color: #FAFAFA;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(13,34,53,0.12);
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
  text-decoration: none;
}
#features-full-panel .panel-actions .btn-panel:hover,
#features-full-panel .panel-actions .btn-panel:focus {
  background: #C7EEFF;
  color: #1D242B;
  transform: translateY(-6px);
  box-shadow: 0 22px 44px rgba(0,119,192,0.14);
}

/* Keep inner container centered on any viewport */
#features-full-panel .panel-inner {
  max-width: 1100px;
  margin: 20px auto;
  padding: 0 18px;
  box-sizing: border-box;
}

/* Make sure floating/hover panels remain hidden */
.feature .feature-panel {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  #features-full-panel .panel-inner { margin: 12px; padding: 0 12px; }
  #features-full-panel .panel-actions .btn-panel { width: 48%; }
}
@media (max-width: 420px) {
  #features-full-panel .panel-actions .btn-panel { width: 100%; }
  #features-full-panel .panel-inner > .panel-header,
  #features-full-panel .panel-inner > .panel-body { padding: 12px; border-radius: 10px; }
}

/* ===== ENHANCED FOOTER LAYOUT WITH INTERACTIVE ELEMENTS ===== */
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto 32px;
    align-items: start;
}

.footer-col {
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(58, 190, 249, 0.02) 100%);
    border: 1px solid rgba(58, 190, 249, 0.1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.footer-col:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(58, 190, 249, 0.06) 100%);
    border-color: rgba(58, 190, 249, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

/* Footer Brand Column */
.footer-brand {
    text-align: center;
}

.footer-brand img {
    width: 120px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand:hover img {
    transform: scale(1.08) rotate(2deg);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(250, 250, 250, 0.9);
    margin-bottom: 16px;
    line-height: 1.6;
}

.footer-brand > div {
    margin-top: 12px;
}

.footer-brand a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #3572EF 0%, #050C9C 100%);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.footer-brand a:hover {
    background: linear-gradient(135deg, #C7EEFF 0%, #3ABEF9 100%);
    color: #1D242B;
    transform: translateX(4px);
    box-shadow: 0 8px 16px rgba(58, 190, 249, 0.3);
}

.footer-brand a img {
    width: 18px;
    height: 18px;
    margin: 0;
}

/* Footer Contact Column */
.footer-contact {
    text-align: left;
}

.footer-contact h4 {
    font-size: 16px;
    font-weight: 700;
    color: #C7EEFF;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact p {
    margin: 12px 0;
    font-size: 14px;
    color: rgba(250, 250, 250, 0.85);
}

.footer-contact p strong {
    color: #3ABEF9;
    display: block;
    margin-bottom: 4px;
}

.footer-contact a {
    color: #C7EEFF;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-contact a:hover {
    color: #FAFAFA;
    text-decoration: underline;
}

.footer-contact p:hover {
    color: #FAFAFA;
}

/* Footer Links Column */
.footer-links {
    text-align: left;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    color: #C7EEFF;
    margin: 0 0 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin: 12px 0;
}

.footer-links a {
    color: rgba(250, 250, 250, 0.85);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #C7EEFF;
    padding-left: 8px;
}

.footer-links a::before {
    content: "→";
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.2s ease;
    color: #3ABEF9;
}

.footer-links a:hover::before {
    opacity: 1;
    left: -22px;
}

/* Footer Legal */
.footer-legal {
    border-top: 1px solid rgba(58, 190, 249, 0.2);
    padding-top: 20px;
    text-align: center;
}

.footer-legal p {
    margin: 0;
    font-size: 13px;
    color: rgba(250, 250, 250, 0.7);
    transition: color 0.2s ease;
}

.footer-legal p:hover {
    color: rgba(250, 250, 250, 0.95);
}

/* Responsive footer - NO OVERLAP */
@media (max-width: 768px) {
    footer {
        padding: 30px 16px;
        margin-top: 40px;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }
    
    .footer-col {
        text-align: center !important;
    }
    
    .footer-col:hover {
        transform: translateY(-2px);
    }
    
    .footer-links a:hover::before {
        display: none;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 20px 12px;
        margin-top: 30px;
    }
    
    .footer-col {
        padding: 16px;
    }
    
    .footer-brand img {
        width: 100px;
    }
    
    .footer-contact h4, .footer-links h4 {
        font-size: 14px;
    }
    
    .footer-legal p {
        font-size: 12px;
    }
}