/* hugmypc - Custom CSS */

/* Force font-display: swap on Font Awesome icon fonts to avoid invisible text during load */
@font-face {
    font-family: "Font Awesome 6 Free";
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2")
        format("woff2");
}
@font-face {
    font-family: "Font Awesome 6 Brands";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2")
        format("woff2");
}

:root {
    --bs-primary: #2e9be8;
    --bs-primary-rgb: 46, 155, 232;
    --primary-medium: #2e9be8;
    --primary-dark: #1a7ec4;
    --white: #ffffff;
    --medium-grey: #e5e5e5;
    --text-grey: #6c757d;
    --black: #111111;
    --accent: #66ab00;
    --accent-hover: #61a400;
    --orange: #f5a623;
    --deep-blue: #26333c;
    --font-primary: "Baloo 2", sans-serif;
    --font-secondary: "Open Sans", sans-serif;
    --section-padding: 6rem;
    --transition-speed: 0.3s;
    --shadow-sm:
        rgba(14, 63, 126, 0.04) 0px 0px 0px 1px,
        rgba(42, 51, 69, 0.04) 0px 1px 1px -0.5px,
        rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
        rgba(42, 51, 70, 0.04) 0px 6px 6px -3px;
    --shadow-md: 0 3px 5px -3px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #333;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition:
        color var(--transition-speed) ease,
        opacity var(--transition-speed) ease;
}

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

.btn {
    font-family: var(--font-primary);
    font-weight: 500;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    transition: all var(--transition-speed) ease;
    border: 1px solid transparent;
    font-size: 1.1rem !important;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: #2483c4;
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:focus-visible,
.btn-primary:active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-primary:disabled,
.btn-primary.disabled {
    background-color: var(--primary-medium);
    border-color: var(--primary-medium);
    color: var(--white);
    opacity: 0.65;
}

.btn-accent {
    background-color: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

.btn-accent:hover,
.btn-accent:focus,
.btn-accent:focus-visible,
.btn-accent:active {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--white);
}

.sticky-top {
    top: 100px !important;
    z-index: initial !important;
}

.hero-jumbotron .btn-schedule {
    background-color: var(--accent) !important;
    border-color: var(--accent) !important;
    color: var(--white) !important;
}

.hero-jumbotron .btn-schedule:hover,
.hero-jumbotron .btn-schedule:focus,
.hero-jumbotron .btn-schedule:focus-visible,
.hero-jumbotron .btn-schedule:active {
    background-color: var(--accent-hover) !important;
    border-color: var(--accent-hover) !important;
    color: var(--white) !important;
}

.btn-outline-primary {
    border-color: var(--primary-medium);
    color: var(--primary-medium);
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:focus-visible,
.btn-outline-primary:active {
    background-color: var(--primary-medium);
    border-color: var(--primary-medium);
    color: var(--white);
}

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

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

.bg-deep-blue {
    background-color: var(--deep-blue) !important;
}

/* Top info bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1001;
    font-family: var(--font-secondary);
    font-size: 0.85rem;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.topbar.scrolled {
    background-color: #0a588e;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.topbar.hidden {
    transform: translateY(-100%);
}

.topbar-info {
    color: var(--white);
    line-height: 1;
}

.topbar-phone {
    display: inline-flex;
    align-items: center;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.92rem;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.topbar-phone:hover,
.topbar-phone:focus,
.topbar-phone:focus-visible,
.topbar-phone:active {
    color: rgba(255, 255, 255, 0.8);
}

.topbar-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    user-select: none;
}

.navbar {
    padding: 10px 0;
    position: fixed;
    top: 35px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
        top 0.3s ease,
        backdrop-filter 0.6s ease,
        -webkit-backdrop-filter 0.6s ease,
        background-color 0.6s ease;
}

.navbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.07);
    z-index: -1;
    pointer-events: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hero-jumbotron {
        background-position: right center;
    }
}

.navbar.scrolled {
    top: 0;
    background-color: #0d6eb1;
}

.topbar:not(.hidden) + .navbar.scrolled {
    top: 35px;
}

.navbar-brand {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white) !important;
    transition: all var(--transition-speed) ease;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--white) !important;
    padding: 0.5rem 1rem !important;
    transition: all var(--transition-speed) ease;
    position: relative;
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: all var(--transition-speed) ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-toggle.nav-link::after {
    display: none;
}

.btn-call {
    background-color: transparent !important;
    border: 2px solid var(--white) !important;
    color: var(--white) !important;
    padding: 0.4rem 1.2rem;
    font-size: 0.95rem;
}

.btn-call:hover,
.btn-call:focus,
.btn-call:focus-visible,
.btn-call:active {
    background-color: var(--white) !important;
    color: var(--primary-medium) !important;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .navbar-brand {
    color: var(--white) !important;
}

.navbar.scrolled .dropdown-item {
    color: var(--deep-blue) !important;
}

.navbar.scrolled .dropdown-item:hover {
    color: var(--white) !important;
}

.site-logo {
    width: 145px;
    height: auto;
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.75rem;
    transition: transform var(--transition-speed) ease;
}

.dropdown:hover .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 240px;
    display: block;
    visibility: hidden;
    opacity: 0;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}

.dropdown-item {
    color: var(--deep-blue);
    padding: 0.75rem 1.25rem;
    font-family: var(--font-primary);
    font-weight: 500;
    transition: all var(--transition-speed) ease;
    border-radius: 8px;
    margin-bottom: 0.25rem;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    background-color: var(--primary-medium);
    color: var(--white);
}

.dropdown-item i {
    color: var(--primary-medium);
    transition: color var(--transition-speed) ease;
    width: 1.25rem;
}

.dropdown-item:hover i {
    color: var(--white);
}

.hero-jumbotron {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url("/img/hero-bkg.webp") no-repeat center center;
    background-size: cover;
}

.hero-jumbotron::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 85px;
}

.hero-supertitle {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 999px;
    padding: 4px 16px;
}

.hero-service-pill {
    display: inline-flex;
    align-items: center;
    background: rgb(255 255 255 / 15%);
    border: 1px solid rgb(255 255 255 / 30%);
    border-radius: 999px;
    padding: 8px 20px;
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        background var(--transition-speed) ease,
        border-color var(--transition-speed) ease,
        transform var(--transition-speed) ease;
}

.hero-service-pill:hover,
.hero-service-pill:focus {
    background: rgb(255 255 255 / 28%);
    border-color: rgb(255 255 255 / 55%);
    color: white;
    transform: scale(1.07);
}

.hero-service-pill i {
    opacity: 0.7;
}

@media (max-width: 575.98px) {
    .hero-service-pill {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .hero-pills-group {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .hero-pills-group .hero-service-pill {
        flex: 1;
        border-radius: 0;
        border-right-width: 0;
        justify-content: center;
        padding: 8px 10px;
        font-size: 0.72rem;
    }

    .hero-pills-group .hero-service-pill:first-child {
        border-radius: 999px 0 0 999px;
    }

    .hero-pills-group .hero-service-pill:last-child {
        border-radius: 0 999px 999px 0;
        border-right-width: 1px;
    }
}

.hero-jumbotron .btn-accent {
    background-color: var(--primary-medium) !important;
    border-color: var(--primary-medium) !important;
}

.hero-jumbotron .btn-accent:hover,
.hero-jumbotron .btn-accent:focus,
.hero-jumbotron .btn-accent:focus-visible,
.hero-jumbotron .btn-accent:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
}

.btn-hero-enquiry {
    background-color: #2e9be8;
    border: 3px solid #78bef0;
    color: #ffffff;
    --bs-btn-active-bg: #1a7ec4;
    --bs-btn-active-border-color: #5aaee0;
    --bs-btn-active-color: #ffffff;
    --bs-btn-hover-bg: #4aadef;
    --bs-btn-hover-border-color: #8dcaf5;
    --bs-btn-hover-color: #ffffff;
}

.btn-hero-enquiry:hover,
.btn-hero-enquiry:focus,
.btn-hero-enquiry:focus-visible,
.btn-hero-enquiry:active {
    background-color: #4aadef !important;
    border-color: #8dcaf5 !important;
    color: #ffffff !important;
}

.btn-hero-schedule {
    background-color: #66ab00;
    border: 3px solid #9cca55;
    color: #ffffff;
    --bs-btn-active-bg: #558f00;
    --bs-btn-active-border-color: #88b844;
    --bs-btn-active-color: #ffffff;
    --bs-btn-hover-bg: #78c700;
    --bs-btn-hover-border-color: #a8d85a;
    --bs-btn-hover-color: #ffffff;
}

.btn-hero-schedule:hover,
.btn-hero-schedule:focus,
.btn-hero-schedule:focus-visible,
.btn-hero-schedule:active {
    background-color: #78c700 !important;
    border-color: #a8d85a !important;
    color: #ffffff !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--white);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

.trust-section {
    border-top: 1px solid var(--medium-grey);
    border-bottom: 1px solid var(--medium-grey);
}

.trust-item:hover i {
    color: var(--primary-medium) !important;
}

.services-section {
    padding: var(--section-padding) 0;
}

.about-logo {
    width: 400px;
    height: 400px;
    object-fit: cover;
    margin-top: -260px;
    border: 8px solid #fff;
    box-shadow:
        rgba(14, 63, 126, 0.06) 0px 0px 0px 1px,
        rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px,
        rgba(42, 51, 70, 0.04) 0px 2px 2px -1px,
        rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px,
        rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px,
        rgba(42, 51, 70, 0.03) 0px 10px 10px -5px,
        rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
}

#about-us {
    background-color: #003b66 !important;
    margin-top: -200px;
    padding-top: 240px !important;
    position: relative;
    z-index: 0;
    background-size: cover;
    background-position: bottom right;
    background-repeat: no-repeat;
}

#about-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 40%);
    z-index: -1;
}

/* Base card styles */
.card {
    border-radius: 14px;
    border: 1px solid transparent;
    box-shadow: 0px 5px 10px -5px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-speed) ease;
    background: #ffffff !important;
    z-index: 1;
}

.card:hover {
    border-color: var(--primary-medium);
}

.card-img-top {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.card-header {
    border-top-left-radius: 14px !important;
    border-top-right-radius: 14px !important;
}

.alert {
    border-radius: 14px !important;
}

.rounded,
.rounded-3 {
    border-radius: 14px !important;
}

.img-fluid.rounded {
    border-radius: 14px !important;
}

/* Card-blue: Blue service card */
.card-blue {
    background: #ffffff !important;
    border: 1px solid #b3dff7 !important;
}

.services-section .card-blue {
    border-top: 4px solid var(--primary-medium) !important;
}

.card-blue:hover {
    border-color: var(--primary-medium) !important;
}

.card-blue .service-icon {
    border-color: var(--primary-medium);
}

.card-blue .service-icon i {
    color: var(--primary-medium);
}

.card-blue .btn-accent {
    background-color: #2e9be8 !important;
    border: 3px solid #78bef0 !important;
}

.card-blue .btn-accent:hover,
.card-blue .btn-accent:focus,
.card-blue .btn-accent:focus-visible,
.card-blue .btn-accent:active {
    background-color: var(--primary-dark) !important;
    border-color: #6ab8e8 !important;
    color: var(--white) !important;
}

.card-blue .fa-check {
    color: var(--primary-medium) !important;
}

/* Card-green: Green service card */
.card-green {
    background: #ffffff !important;
    border: 1px solid #d4ebb8 !important;
}

.services-section .card-green {
    border-top: 4px solid #92cd28 !important;
}

.card-green:hover {
    border-color: #92cd28 !important;
}

.card-green .service-icon {
    border-color: #92cd28;
}

.card-green .service-icon i {
    color: #92cd28;
}

.card-green .btn-accent {
    background-color: #7ab320 !important;
    border: 3px solid #c4e87a !important;
}

.card-green .btn-accent:hover,
.card-green .btn-accent:focus,
.card-green .btn-accent:focus-visible,
.card-green .btn-accent:active {
    background-color: #5e9018 !important;
    border-color: #a8cc5e !important;
    color: var(--white) !important;
}

.card-green .fa-check {
    color: #92cd28 !important;
}

/* Card-orange: Orange service card */
.card-orange {
    background: #ffffff !important;
    border: 1px solid #ffd9a8 !important;
}

.services-section .card-orange {
    border-top: 4px solid #ffa33f !important;
}

.card-orange:hover {
    border-color: #ffa33f !important;
}

.card-orange .service-icon {
    border-color: #ffa33f;
}

.card-orange .service-icon i {
    color: #ffa33f;
}

.card-orange .btn-accent {
    background-color: #e8861a !important;
    border: 3px solid #ffd49a !important;
}

.card-orange .btn-accent:hover,
.card-orange .btn-accent:focus,
.card-orange .btn-accent:focus-visible,
.card-orange .btn-accent:active {
    background-color: #c96d0e !important;
    border-color: #f0b870 !important;
    color: var(--white) !important;
}

.card-orange .fa-check {
    color: #ffa33f !important;
}

/* Card-grey: Grey card on white background */
.card-grey {
    background: #ffffff !important;
    border: 1px solid rgba(46, 155, 232, 0.5) !important;
}

/* Card-white: White card on grey background */
.card-white {
    background: #ffffff !important;
    border: 1px solid rgba(46, 155, 232, 0.5) !important;
}

.card-white .service-icon {
    border-color: var(--primary-medium);
}

.card-white .service-icon i {
    color: var(--primary-medium);
}

.testimonial-card {
    position: relative;
    border: 2px dashed var(--primary-medium) !important;
}

.testimonial-card:hover {
    border-color: var(--primary-medium) !important;
}

.service-icon {
    margin-bottom: 1rem;
}

.service-icon i {
    color: var(--primary-medium);
    font-size: 3rem;
}

.number-icon.fw-bold,
.service-icon.fw-bold {
    color: #2a90d8;
    border-bottom: 3px solid #2a90d8;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-medium);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

/* Service cards - align icons left */
.card-blue .service-icon,
.card-green .service-icon,
.card-orange .service-icon {
    margin: 0;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    color: rgba(57, 159, 224, 0.2);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
}

.testimonial-card .card-body {
    position: relative;
    z-index: 1;
}

.contact-section {
    padding: var(--section-padding) 0;
}

.form-control,
.form-select {
    border: 2px solid var(--medium-grey);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    min-height: 48px;
    transition: all var(--transition-speed) ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-medium);
    box-shadow: 0 0 0 0.2rem rgba(57, 159, 224, 0.25);
}

/* ── Hero section: background image with dark overlay ── */
.hero-section {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    background: url("/img/page-header-bkg.webp") no-repeat center center;
    background-size: cover;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
    padding-top: 155px;
    padding-bottom: 80px;
}

.hero-section h1,
.hero-section h1 span,
.hero-section p.lead {
    color: #ffffff !important;
}

.hero-section h1 {
    margin-bottom: 0.75rem !important;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section p.lead {
    margin-bottom: 0 !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .d-flex {
    margin-top: 1.75rem;
}

.hero-jumbotron .btn-primary {
    border: 3px solid rgba(255, 255, 255, 0.35) !important;
    padding: 0 2.69rem !important;
    height: 52px;
    display: inline-flex;
    align-items: center;
}

.hero-section .btn-primary,
.hero-section .btn-outline-primary,
.hero-jumbotron .btn-light,
.offer-section .btn-outline-light {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 3px solid rgba(255, 255, 255, 0.35) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    height: 52px;
    display: inline-flex;
    align-items: center;
}

.hero-jumbotron .btn-light {
    background-color: rgba(255, 255, 255, 0.15) !important;
}

.hero-section .btn-primary:hover,
.hero-section .btn-primary:focus,
.hero-section .btn-primary:focus-visible,
.hero-section .btn-primary:active,
.hero-section .btn-outline-primary:hover,
.hero-section .btn-outline-primary:focus,
.hero-section .btn-outline-primary:focus-visible,
.hero-section .btn-outline-primary:active,
.hero-jumbotron .btn-light:hover,
.hero-jumbotron .btn-light:focus,
.hero-jumbotron .btn-light:focus-visible,
.hero-jumbotron .btn-light:active,
.offer-section .btn-outline-light:hover,
.offer-section .btn-outline-light:focus,
.offer-section .btn-outline-light:focus-visible,
.offer-section .btn-outline-light:active {
    background-color: rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.faq-section .accordion-item {
    border: 1px solid #eee;
}

.faq-grid .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--deep-blue);
    font-weight: inherit;
    box-shadow: none;
}

.accordion-collapse {
    background-color: transparent;
}

.faq-section .accordion-button {
    background: transparent;
    color: var(--deep-blue);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--deep-blue);
}

.offer-section {
    background: url("/img/smart-home-bkg2.webp") no-repeat left center;
    background-size: cover;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.offer-section-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 50%);
    z-index: 1;
}
.offer-section .offer-badge .badge {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff !important;
    font-size: 0.7rem !important;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.4rem 1rem !important;
}
.offer-section .btn {
    height: 52px;
    display: inline-flex;
    align-items: center;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.footer {
    position: relative;
    padding: 300px 0 5rem 0;
    background-image: url("/img/business-support-bkg.webp");
    background-color: linear-gradient(
        180deg,
        rgba(8, 79, 130, 1) 0%,
        rgba(13, 110, 177, 1) 50%,
        rgba(13, 110, 177, 1) 100%
    );
    margin-top: -300px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 0 0 / 70%);
    z-index: -1;
}

.footer p,
.footer .text-muted {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer h5,
.footer .text-deep-blue {
    color: #ffffff !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer a:hover {
    color: #ffffff !important;
}

.footer-divider {
    border: 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.3);
    margin: 0 auto 3rem auto;
    opacity: 1;
}

.footer-copyright {
    background-color: #0a5a94;
    padding: 18px 0;
    display: flex;
    align-items: center;
}

#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    background-color: var(--primary-medium);
    transition: all var(--transition-speed) ease;
    padding: 0;
    border: none;
}

#scrollToTop.show {
    display: flex;
}

#scrollToTop:hover {
    background-color: var(--primary-dark);
}

:focus-visible {
    outline: 3px solid var(--primary-medium);
    outline-offset: 3px;
}

/* Service location button group */
.service-location-group .btn {
    padding: 0.6rem 0.75rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

/* Contact modal */
.modal-content {
    border-radius: 14px !important;
    overflow: hidden;
}

#bookingModal .modal-footer,
#contactModal .modal-footer {
    border-top: 1px solid #d8dade !important;
    background-color: #edeef0 !important;
}

/* Tablet & Mobile: 992px and down */
@media (max-width: 991.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .services-section {
        padding: 4rem 0;
    }

    .navbar-collapse {
        background-color: var(--white);
        padding: 1.5rem;
        margin-top: 1rem;
        border-radius: 10px;
    }

    .navbar-collapse .nav-link {
        color: var(--deep-blue) !important;
        padding: 0.75rem 1rem !important;
    }

    .navbar-collapse .dropdown-item {
        color: var(--deep-blue) !important;
    }

    .nav-link::after {
        display: none;
    }

    .btn-call {
        margin-top: 1rem;
        width: 100%;
        border: 2px solid var(--primary-medium) !important;
        background-color: var(--primary-medium) !important;
        color: white !important;
    }

    .btn-call:hover,
    .btn-call:focus,
    .btn-call:focus-visible,
    .btn-call:active {
        background-color: var(--primary-dark) !important;
        border-color: var(--primary-dark) !important;
        color: white !important;
    }

    .dropdown-menu {
        position: static;
        visibility: visible;
        opacity: 1;
        display: none;
        box-shadow: none;
        background: transparent;
        padding: 0.5rem;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 0.5rem 1rem 0.5rem 2rem;
        background: transparent;
        border-radius: 50rem;
        margin-bottom: 0.25rem;
        color: var(--deep-blue) !important;
    }

    .dropdown-item:hover {
        background-color: var(--primary-medium) !important;
        color: var(--white) !important;
    }

    .dropdown-item:hover i {
        color: var(--white) !important;
    }

    .dropdown-item:last-child {
        margin-bottom: 0;
    }
}

/* Mobile: 768px and down */
@media (max-width: 767.98px) {
    .display-4 {
        font-size: 2.25rem;
    }
    .display-5 {
        font-size: 1.9rem;
    }

    .hero-jumbotron {
        min-height: 100vh;
        background-position: 100% 50%;
    }

    .topbar-info {
        display: none;
    }

    .topbar .container {
        justify-content: flex-end !important;
    }

    .navbar {
        top: 35px;
    }

    .hero-section .container {
        padding-top: 120px;
    }

    .hero-content {
        padding: 0 1rem;
        margin-top: 50px;
    }

    .hero-content .lead {
        width: 95% !important;
        margin: auto;
    }

    .hero-content .d-flex:not(.btn),
    .hero-section .d-flex:not(.btn),
    .offer-section .d-flex:not(.btn) {
        flex-direction: column !important;
        align-items: center;
    }

    .hero-content .d-flex.hero-pills-group {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 0 !important;
    }

    .hero-pills-group .hero-service-pill i {
        display: none;
    }

    .hero-pills-group .hero-service-pill:hover,
    .hero-pills-group .hero-service-pill:focus {
        transform: none;
    }

    .hero-pills-group .hero-service-pill:not(:last-child):hover,
    .hero-pills-group .hero-service-pill:not(:last-child):focus {
        border-right-width: 1px;
        margin-right: -1px;
    }

    .hero-content .d-flex .btn,
    .hero-section .d-flex .btn,
    .offer-section .d-flex .btn {
        width: 100%;
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
        justify-content: center;
        white-space: nowrap;
    }

    .btn {
        padding: 0.7rem 1.75rem;
    }

    .service-icon i {
        font-size: 2.8rem;
    }

    #scrollToTop {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
        min-width: 48px;
        min-height: 48px;
    }

    .card-body .d-flex.align-items-start,
    .card .d-flex.align-items-start {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
    }

    .hero-section {
        min-height: 300px;
    }

    .about-logo {
        width: 280px;
        height: 280px;
        margin-top: -185px;
    }

    #contactModal .btn-group {
        flex-direction: column !important;
        width: 100%;
    }

    #contactModal .btn-group .btn {
        border-radius: 50px !important;
        margin-bottom: 0.4rem;
        width: 100%;
    }

    #contactModal .btn-group .btn:last-child {
        margin-bottom: 0;
    }
}

/* Small Mobile: 576px and down */
@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 2rem !important;
    }

    .display-4 {
        font-size: 1.9rem;
    }
    .display-5 {
        font-size: 1.6rem;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .nav-link {
        padding: 1rem !important;
    }

    .form-control,
    .form-select {
        font-size: 16px;
    }
}

/* Short screens (e.g. iPhone SE): prevent jumbotron content hiding under navbar */
@media (max-height: 750px) and (max-width: 767.98px) {
    .hero-jumbotron {
        align-items: flex-start;
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================================
   Location Pages & Service Area Navigator
   ============================================================ */

/* Location page description content */
.location-description {
    font-size: 1.05rem;
    line-height: 1.8;
}

.location-description h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 1rem;
}

.location-description h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.location-description p {
    margin-bottom: 1.25rem;
    color: #444;
}

/* ── Location page enhanced blocks ── */

.loc-service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.loc-service-list li {
    padding: 0.35rem 0;
    font-size: 1rem;
    color: #333;
}

/* Location pages use the same .offer-section styles as homepage */

.loc-trust-card {
    background: var(--bs-light);
    border-radius: 0.5rem;
    padding: 1.25rem;
    height: 100%;
    text-align: center;
}

.loc-trust-icon {
    font-size: 1.75rem;
    color: var(--bs-primary);
    margin-bottom: 0.6rem;
    display: block;
}

.loc-trust-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #212529;
}

.loc-trust-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* ── Section background ── */
.location-map-section {
    background: var(--bs-light);
}

/* ── Map wrapper ── */
.lm-map-wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.lm-map-wrapper img {
    object-fit: cover;
    height: calc(
        600px + 3rem
    ); /* Panel max-height (600px) + top/bottom padding (1.5rem * 2) */
}

@media (max-width: 991px) {
    .lm-map-wrapper img {
        height: auto;
    }
}

/* ── Floating panel container ── */
.lm-floating-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    pointer-events: none;
}

/* On mobile, keep at top with smaller padding */
@media (max-width: 991px) {
    .lm-floating-panel {
        position: absolute;
        padding: 1rem;
    }
}

/* On desktop, limit width to create floating effect */
@media (min-width: 992px) {
    .lm-floating-panel {
        max-width: 450px;
    }
}

/* ── Left panel: suburb list ── */
.lm-list-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    pointer-events: auto;
}

/* Homepage only: set max height for floating panel */
.location-map-section .lm-list-panel {
    max-height: 600px;
}

/* Sidebar alpha bar — compact horizontal wrap above the list */
.lm-alpha-bar {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0.65rem 0.75rem;
    border-bottom: 1px solid #e9ecef;
}

.lm-alpha-btn {
    background: transparent;
    border: 1.3px solid #adb5bd;
    color: #495057;
    border-radius: 50%;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    width: 2rem;
    height: 2rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        background var(--transition-speed) ease,
        color var(--transition-speed) ease,
        border-color var(--transition-speed) ease;
    line-height: 1;
    flex-shrink: 0;
}

.lm-alpha-btn:hover {
    background: #495057;
    color: #fff;
    border-color: #495057;
}

.lm-alpha-btn.active {
    background: #212529;
    color: #fff;
    border-color: #212529;
}

/* Hide "All" button on mobile */
.lm-alpha-btn[data-letter="all"] {
    display: none;
}

/* Show "All" button on desktop */
@media (min-width: 992px) {
    .lm-alpha-btn[data-letter="all"] {
        display: flex;
    }
}

/* Scrollable suburb list */
.lm-suburb-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem;
    overflow-y: auto;
    max-height: 400px; /* Mobile-friendly height */
    scrollbar-width: thin;
    scrollbar-color: var(--medium-grey) transparent;
    display: none; /* Hidden by default on mobile */
}

/* Show list when a letter is active (via JS) */
.lm-suburb-list.show {
    display: block;
}

/* Homepage: list fills remaining panel height and scrolls */
.location-map-section .lm-suburb-list {
    flex: 1;
    min-height: 0;
    max-height: 450px;
}

/* On desktop, always show and allow it to fill the panel height */
@media (min-width: 992px) {
    .lm-suburb-list {
        max-height: calc(
            100vh - 360px
        ); /* Reduced by 100px to account for title */
        display: block !important; /* Always visible on desktop */
    }

    .location-map-section .lm-suburb-list {
        max-height: none;
    }
}

.lm-suburb-list::-webkit-scrollbar {
    width: 4px;
}

.lm-suburb-list::-webkit-scrollbar-track {
    background: transparent;
}

.lm-suburb-list::-webkit-scrollbar-thumb {
    background: var(--medium-grey);
    border-radius: 4px;
}

.lm-suburb-item {
    border-radius: 50rem;
    margin-bottom: 0.25rem;
}

.lm-suburb-item:last-child {
    margin-bottom: 0;
}

.lm-suburb-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    color: var(--deep-blue);
    text-decoration: none;
    font-size: 1rem;
    font-family: var(--font-secondary);
    border-radius: 8px;
    transition: all var(--transition-speed) ease;
}

.lm-suburb-link:hover {
    background: var(--primary-medium);
    color: var(--white);
}

.lm-suburb-link--active {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-medium);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-secondary);
    border-radius: 8px;
    cursor: default;
}

.lm-icon {
    font-size: 1rem;
    opacity: 0.5;
    flex-shrink: 0;
}

.lm-suburb-link--active .lm-icon,
.lm-suburb-link:hover .lm-icon {
    opacity: 1;
    font-size: 1rem;
}

/* ── Right panel: service area overview ── */
.lm-overview-panel {
    height: 100%;
}

/* ═══════════════════════════════════════════════════════════════
   Stripe / Booking Type Toggle
   ═══════════════════════════════════════════════════════════════ */

/* Booking type toggle — equal-height flex cards, matches service-radio-option style */
.booking-type-options {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.booking-type-option {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
}

.booking-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.booking-type-option label {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 18px 14px;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s ease;
    margin: 0;
    width: 100%;
}

/* FA icon inside booking type button */
.booking-type-icon {
    font-size: 1.6rem;
    color: var(--primary-medium);
    flex-shrink: 0;
}

/* ── Enquiry variant (blue) ── */
.booking-type-option--enquiry label:hover {
    border-color: #399fe0;
    background: #f8fcff;
}

.booking-type-option--enquiry input[type="radio"]:checked + label {
    border-color: #399fe0;
    background: #e8f4fc;
}

.booking-type-option--enquiry
    input[type="radio"]:checked
    + label
    .booking-type-icon {
    color: var(--primary-dark);
}

/* ── Confirm variant (green) — icon always accent green ── */
.booking-type-option--confirm .booking-type-icon {
    color: var(--accent);
}

.booking-type-option--confirm label:hover {
    border-color: var(--accent);
    background: #fbfef8;
}

.booking-type-option--confirm input[type="radio"]:checked + label {
    border-color: var(--accent);
    background: #f7fdf2;
}

.booking-type-option--confirm
    input[type="radio"]:checked
    + label
    .booking-type-icon {
    color: var(--accent-hover);
}

.booking-type-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.booking-type-text strong {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a3a52;
    line-height: 1.3;
    display: block;
}

.booking-type-text small {
    font-family: var(--font-secondary);
    font-size: 0.8rem;
    color: #6c757d;
    line-height: 1.4;
    display: block;
}

/* Booking form checkboxes — larger, higher-contrast, accessible */
#bookingModalForm .form-check-input,
#bookingForm .form-check-input {
    width: 1.25em;
    height: 1.25em;
    margin-top: 0.15em;
    border: 2px solid #6c757d;
    cursor: pointer;
    flex-shrink: 0;
}
#bookingModalForm .form-check-input:checked,
#bookingForm .form-check-input:checked {
    background-color: #66ab00;
    border-color: #66ab00;
}
#bookingModalForm .form-check-input:focus,
#bookingForm .form-check-input:focus {
    border-color: #66ab00;
    box-shadow: 0 0 0 0.2rem rgba(102, 171, 0, 0.25);
}
#bookingModalForm .form-check-label,
#bookingForm .form-check-label {
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Stripe card section wrapper */
.stripe-card-wrapper {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 16px;
}

/* Stripe section slide-in transition */
#modal-stripe-section,
#stripe-section {
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

#modal-stripe-section:not(.d-none),
#stripe-section:not(.d-none) {
    animation: stripeSlideIn 0.3s ease;
}

@keyframes stripeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stripe Elements host div — mimics Bootstrap .form-control */
.StripeElement {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-size: 1rem;
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 6px;
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.StripeElement--focus {
    border-color: var(--primary-medium);
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(46, 155, 232, 0.25);
}

.StripeElement--invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}

/* Mobile: stack the booking type toggle buttons vertically */
@media (max-width: 480px) {
    .booking-type-options {
        flex-direction: column;
    }
}

/* ── Not Sure location hint ── */
.location-unsure-hint {
    font-size: 0.875rem;
    border-radius: 12px;
    border: 1px solid #399fe0;
    background: #e8f4fc;
    color: #1a5f8a;
}
.location-remote-hint {
    font-size: 0.875rem;
    border-radius: 12px;
    border: 1px solid #399fe0;
    background: #e8f4fc;
    color: #1a5f8a;
}
.location-remote-hint a {
    color: #1a5f8a;
    font-weight: 600;
}
.flow-confirmed .location-remote-hint {
    border-color: #66ab00;
    background: #f7fdf2;
    color: #3d6600;
}
.flow-confirmed .location-remote-hint a {
    color: #3d6600;
}
.flow-confirmed .location-unsure-hint {
    border-color: #66ab00;
    background: #f7fdf2;
    color: #3d6600;
}

/* ── Time Slot Picker ── */
.booking-timeslot-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 6px;
}

.booking-timeslot-btn {
    padding: 9px 14px;
    border: 2px solid #e0e0e0;
    border-radius: 50rem;
    background: white;
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 74px;
    text-align: center;
    line-height: 1.3;
}

.booking-timeslot-btn:hover:not(:disabled) {
    border-color: #399fe0;
    background: #f0f7ff;
    color: #1a3a52;
}

.booking-timeslot-btn--selected {
    border-color: #399fe0 !important;
    background: #e8f4fc !important;
    color: #1a3a52 !important;
    font-weight: 600;
}

.booking-timeslot-btn--unavailable {
    border-color: #e8e8e8;
    background: #f8f8f8;
    color: #c0c0c0;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* =====================
   FAQ Styles
   ===================== */
.faq-toolbar {
    background: rgba(100, 160, 210, 0.18);
    padding: 1.5rem 0;
}
.faq-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.faq-controls .faq-search-box {
    flex: 1;
}
.faq-search-box {
    position: relative;
}
.faq-search-box input {
    width: 100%;
    padding: 1rem 3.5rem 1rem 1.25rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: var(--font-secondary);
}
.faq-search-box input:focus {
    outline: none;
    border-color: #399fe0;
    box-shadow: 0 0 0 3px rgba(57, 159, 224, 0.1);
}
.faq-search-box i {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 1.25rem;
}
.faq-search-results {
    font-size: 0.9rem;
    color: #666;
}
.faq-search-results:empty {
    display: none;
}
.faq-search-results:not(:empty) {
    margin-top: 0.75rem;
}
.faq-category-select {
    width: 220px;
    flex-shrink: 0;
    padding: 1rem 3rem 1rem 1.25rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    background: white
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        no-repeat right 1.25rem center;
    font-family: var(--font-secondary);
    font-size: 1.05rem;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
}
.faq-category-select:focus {
    outline: none;
    border-color: #399fe0;
    box-shadow: 0 0 0 3px rgba(57, 159, 224, 0.1);
}
.faq-category-section {
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: none;
    background: transparent;
    overflow: hidden;
    transition: opacity 0.3s ease;
}
.faq-category-section:first-child {
    border-top: 1px solid #e5e5e5;
}
.faq-category-section.hidden {
    display: none;
}
.faq-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0.25rem;
    background: transparent;
    border-bottom: none;
    cursor: pointer;
    user-select: none;
}
.faq-category-title {
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--deep-blue);
    margin: 0;
}
.faq-category-chevron {
    color: var(--deep-blue);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}
.faq-category-content {
    background: transparent;
    overflow: hidden;
}
.faq-answer-body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    padding: 0.5rem 0.25rem 1rem;
    background: transparent;
}
.faq-answer-body a {
    color: #399fe0;
    text-decoration: underline;
    font-weight: 500;
}
.faq-answer-body a:hover {
    color: #2a7db8;
}
.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
    margin-bottom: 0;
    overflow: hidden;
    transition: all 0.2s ease;
    background: transparent;
}
.faq-accordion .accordion-item:last-child {
    border-bottom: none;
}
.faq-accordion .accordion-item.hidden {
    display: none;
}
.faq-accordion .accordion-button {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    padding: 0.75rem 0.25rem;
    background: transparent;
    border: none;
    text-align: left;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--deep-blue);
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}
.faq-accordion .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0.4) sepia(1) hue-rotate(175deg) saturate(3);
}
.faq-accordion .accordion-body {
    font-family: var(--font-secondary);
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    padding: 0.5rem 0.25rem 1rem;
    background: transparent;
}
.faq-accordion .accordion-body a {
    color: #399fe0;
    text-decoration: underline;
    font-weight: 500;
}
.faq-accordion .accordion-body a:hover {
    color: #2a7db8;
}
.faq-no-results {
    text-align: center;
    padding: 3rem 1rem;
    display: none;
}
.faq-no-results.show {
    display: block;
}
.faq-no-results i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 1rem;
}
.faq-no-results h3 {
    font-family: var(--font-primary);
    color: #666;
    margin-bottom: 0.5rem;
}
.faq-no-results p {
    color: #999;
}
.highlight {
    background-color: #fff3cd;
    padding: 0 0.2rem;
    font-weight: 600;
}
#faqContainer.faq-all-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
@media (max-width: 767.98px) {
    .faq-controls {
        flex-direction: column;
    }
    .faq-category-select {
        width: 100%;
    }
    .faq-category-section {
        border-radius: 12px;
    }
    .faq-category-header {
        padding: 0.75rem 1.25rem;
    }
    .faq-category-title {
        font-size: 0.95rem;
    }
    .faq-category-content {
        padding: 0.75rem;
    }
    .faq-answer-body {
        padding: 0.75rem 1.25rem;
    }
}
