﻿:root {
    --zoogaboog-blue: #01aade;
    --zoogaboog-dark-blue: #0085ae;
    --purple: #8B5CF6;
    --green: #10B981;
    --orange: #F59E0B;
    --red: #EF4444;
}

.container-custom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero */
.faq-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--zoogaboog-blue) 0%, var(--zoogaboog-dark-blue) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="white" opacity="0.05"/></svg>') repeat;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.faq-hero h1 {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.faq-hero .tagline {
    font-size: 2rem;
    opacity: 0.95;
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 1rem;
}

.faq-hero .subtext {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Search Bar */
.faq-search-section {
    padding: 0 0 4rem;
    background: linear-gradient(to bottom, var(--zoogaboog-dark-blue) 0%, white 100%);
    display: block !important;
    visibility: visible !important;
}

.faq-search-wrapper {
    max-width: 700px;
    margin: -3rem auto 0;
    position: relative;
    z-index: 10;
}

.faq-search-box {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 20px;
    padding: 1rem 2rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #e2e8f0;
}

.faq-search-box i {
    font-size: 1.5rem;
    color: #94a3b8;
    margin-right: 1rem;
}

.faq-search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1.2rem;
    color: #1e293b;
}

.faq-search-box input::placeholder {
    color: #94a3b8;
}

/* Category Navigation - SIDEBAR ON DESKTOP, DROPDOWN ON MOBILE */
.category-nav {
    display: none; /* Hidden on desktop, shown on mobile */
}

/* Mobile Category Dropdown */
.mobile-category-selector {
    display: none; /* Show only on mobile */
    margin-bottom: 2rem;
}

.category-dropdown {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    background: white;
    border: 3px solid var(--zoogaboog-blue);
    border-radius: 12px;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2301aade' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 24px;
    padding-right: 3.5rem;
    transition: all 0.3s ease;
}

.category-dropdown:hover {
    border-color: var(--zoogaboog-dark-blue);
    box-shadow: 0 4px 20px rgba(1, 170, 222, 0.2);
}

.category-dropdown:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(1, 170, 222, 0.2);
}

/* Sidebar Navigation - Desktop */
.faq-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding-right: 1.5rem;
    /* HIDE SCROLLBAR */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.faq-sidebar::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
}

.sidebar-title {
    font-size: 0.8rem;
    font-weight: 900;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.sidebar-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem; /* COMPRESSED from 0.5rem */
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav-btn {
    display: flex;
    align-items: center;
    gap: 0.65rem; /* COMPRESSED from 0.75rem */
    padding: 0.7rem 1rem; /* COMPRESSED from 0.875rem 1.25rem */
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px; /* Slightly smaller radius */
    color: #64748b;
    font-weight: 700;
    font-size: 0.9rem; /* COMPRESSED from 0.95rem */
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: left;
}

.sidebar-nav-btn i {
    font-size: 1.1rem; /* COMPRESSED from 1.2rem */
    flex-shrink: 0;
}

.sidebar-nav-btn:hover {
    border-color: var(--zoogaboog-blue);
    color: var(--zoogaboog-blue);
    transform: translateX(4px);
    background: rgba(1, 170, 222, 0.05);
}

.sidebar-nav-btn.active {
    background: var(--zoogaboog-blue); /* SOLID BLUE - no gradient */
    border-color: var(--zoogaboog-blue);
    color: white;
    box-shadow: 0 6px 20px rgba(1, 170, 222, 0.35); /* Slightly reduced shadow */
    transform: translateX(4px);
}

.sidebar-nav-btn.active i {
    color: white;
}

/* FAQ Section - COMPRESSED & SIDEBAR LAYOUT */
.faq-section {
    padding: 2.5rem 0;
    background: white;
    min-height: 400px; /* Prevent layout shift */
    display: block !important;
    visibility: visible !important;
}

.faq-content-wrapper {
    display: grid;
    grid-template-columns: 260px 1fr; /* COMPRESSED from 280px */
    gap: 2.5rem; /* COMPRESSED from 3rem */
    align-items: start;
    position: relative;
    z-index: 1;
}

.faq-content-main {
    min-width: 0; /* Prevent grid blowout */
    display: block !important;
    visibility: visible !important;
}

.faq-category {
    display: none; /* Hidden by default - JS shows active tab */
    animation: fadeIn 0.3s ease-in-out;
}

.faq-category.active {
    display: block;
}

/* Ensure at least first category shows on mobile if JS fails */
@media (max-width: 991px) {
    .faq-category:first-of-type {
        display: block;
    }
    
    .faq-category:first-of-type.active {
        display: block;
    }
}

/* Add spacing ONLY between categories when in search mode (multiple visible) */
.faq-category.active + .faq-category.active {
    margin-top: 3rem;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.category-header {
    margin-bottom: 1rem; /* COMPRESSED from 1.5rem */
    padding-bottom: 0.75rem; /* COMPRESSED from 1rem */
    border-bottom: 2px solid var(--zoogaboog-blue); /* Thinner border */
}

.category-header h2 {
    font-size: 1.4rem; /* COMPRESSED from 2rem to match left sidebar vibe */
    font-weight: 900;
    color: #1e293b;
    display: flex;
    align-items: center;
    gap: 0.5rem; /* COMPRESSED from 0.75rem */
}

.category-header h2 i {
    color: var(--zoogaboog-blue);
    font-size: 1.3rem; /* Slightly smaller icon */
}

.category-header p {
    font-size: 0.875rem; /* COMPRESSED from 1rem to match sidebar */
    color: #64748b;
    margin-top: 0.35rem; /* COMPRESSED from 0.5rem */
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.35rem; /* COMPRESSED to match sidebar gap */
}

.faq-item {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px; /* Match sidebar border radius */
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--zoogaboog-blue);
    box-shadow: 0 6px 20px rgba(1, 170, 222, 0.15); /* Match sidebar shadow */
}

.faq-question {
    padding: 0.7rem 1rem; /* MATCH SIDEBAR PADDING EXACTLY */
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem; /* COMPRESSED from 1.5rem */
    background: white;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 0.95rem; /* MATCH SIDEBAR - was 1.2rem */
    font-weight: 700; /* Match sidebar weight - was 800 */
    color: #1e293b;
    margin: 0;
}

.faq-toggle-icon {
    font-size: 1.1rem; /* MATCH SIDEBAR ICON SIZE - was 1.5rem */
    color: var(--zoogaboog-blue);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 1rem 0.7rem 1rem; /* MATCH SIDEBAR PADDING */
    color: #64748b;
    font-size: 0.9rem; /* MATCH SIDEBAR - was 1.05rem */
    line-height: 1.6;
}

.faq-answer-content p {
    margin-bottom: 0.75rem; /* COMPRESSED from 1rem */
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 0.75rem 0; /* COMPRESSED from 1rem */
    padding-left: 1.25rem; /* COMPRESSED from 1.5rem */
}

.faq-answer-content ul li {
    margin-bottom: 0.35rem; /* COMPRESSED from 0.5rem */
}

.faq-answer-content strong {
    color: #1e293b;
    font-weight: 700;
}

/* Still Have Questions CTA */
.still-questions-cta {
    padding: 4rem 0 6rem;
    background: white;
    display: block !important;
    visibility: visible !important;
}

.cta-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding: 4rem;
    border-radius: 24px;
    text-align: center;
    color: white;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: var(--zoogaboog-blue);
    color: white;
}

.cta-btn-primary:hover {
    background: white;
    color: var(--zoogaboog-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.3);
}

.cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-secondary:hover {
    background: white;
    color: #1e293b;
    transform: translateY(-3px);
}

/* Responsive - Comprehensive Media Queries */

/* Large Desktops (1400px and above) */
@media (min-width: 1400px) {
    .container-custom {
        max-width: 1300px;
    }
    
    .faq-hero {
        padding: 7rem 0 5rem;
    }
    
    .faq-hero h1 {
        font-size: 5.5rem;
    }
}

/* Desktops (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container-custom {
        max-width: 1200px;
    }
}

/* Tablets Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .container-custom {
        padding: 0 1.5rem;
    }
    
    .faq-hero {
        padding: 5rem 0 3.5rem;
    }
    
    .faq-hero h1 {
        font-size: 4.5rem;
    }
    
    .faq-hero .tagline {
        font-size: 1.75rem;
    }
    
    .faq-hero .subtext {
        font-size: 1.2rem;
    }
    
    .faq-content-wrapper {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
    
    .cta-box {
        padding: 3.5rem;
    }
    
    .cta-box h2 {
        font-size: 2.5rem;
    }
    
    .cta-box p {
        font-size: 1.3rem;
    }
}

/* Tablets Portrait (768px - 991px) */
@media (max-width: 991px) {
    .container-custom {
        padding: 0 1.5rem;
    }
    
    /* Switch to mobile dropdown on tablet/mobile */
    .faq-sidebar {
        display: none;
    }
    
    .mobile-category-selector {
        display: block;
    }
    
    .faq-content-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
        display: grid !important;
        visibility: visible !important;
    }
    
    .faq-content-main {
        display: block !important;
        visibility: visible !important;
        width: 100%;
        position: relative;
        z-index: 1;
    }
    
    .faq-hero {
        padding: 4.5rem 0 3rem;
    }
    
    .faq-hero h1 {
        font-size: 3.5rem;
    }
    
    .faq-hero .tagline {
        font-size: 1.5rem;
    }
    
    .faq-hero .subtext {
        font-size: 1.1rem;
    }
    
    .faq-search-section {
        padding: 0 0 3rem;
    }
    
    .faq-search-wrapper {
        margin: -2.5rem auto 0;
    }
    
    .faq-search-box {
        padding: 0.875rem 1.5rem;
    }
    
    .faq-search-box i {
        font-size: 1.3rem;
        margin-right: 0.875rem;
    }
    
    .faq-search-box input {
        font-size: 1.1rem;
    }
    
    .category-dropdown {
        font-size: 1rem;
        padding: 0.875rem 1.25rem;
    }
    
    .faq-section {
        padding: 2rem 0;
    }
    
    .category-header h2 {
        font-size: 1.3rem;
    }
    
    .category-header h2 i {
        font-size: 1.2rem;
    }
    
    .still-questions-cta {
        padding: 3rem 0 4rem;
    }
    
    .cta-box {
        padding: 3rem;
    }
    
    .cta-box h2 {
        font-size: 2.25rem;
    }
    
    .cta-box p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
    }
}

/* Large Phones (576px - 767px) */
@media (max-width: 767px) {
    .container-custom {
        padding: 0 1.25rem;
    }
    
    .faq-hero {
        padding: 3.5rem 0 2.5rem;
    }
    
    .faq-hero h1 {
        font-size: 2.75rem;
    }
    
    .faq-hero .tagline {
        font-size: 1.3rem;
    }
    
    .faq-hero .subtext {
        font-size: 1rem;
    }
    
    .faq-search-section {
        padding: 0 0 2.5rem;
    }
    
    .faq-search-wrapper {
        margin: -2rem auto 0;
    }
    
    .faq-search-box {
        padding: 0.75rem 1.25rem;
        border-radius: 16px;
    }
    
    .faq-search-box i {
        font-size: 1.2rem;
        margin-right: 0.75rem;
    }
    
    .faq-search-box input {
        font-size: 1rem;
    }
    
    .mobile-category-selector {
        margin-bottom: 1.5rem;
    }
    
    .category-dropdown {
        font-size: 0.95rem;
        padding: 0.875rem 1.15rem;
        border-radius: 10px;
    }
    
    .faq-section {
        padding: 1.5rem 0;
    }
    
    .category-header {
        margin-bottom: 0.875rem;
        padding-bottom: 0.65rem;
    }
    
    .category-header h2 {
        font-size: 1.2rem;
    }
    
    .category-header h2 i {
        font-size: 1.1rem;
    }
    
    .category-header p {
        font-size: 0.85rem;
    }
    
    .faq-question {
        padding: 0.65rem 0.875rem;
    }
    
    .faq-question h3 {
        font-size: 0.9rem;
    }
    
    .faq-toggle-icon {
        font-size: 1rem;
    }
    
    .faq-answer-content {
        padding: 0 0.875rem 0.65rem 0.875rem;
        font-size: 0.85rem;
    }
    
    .still-questions-cta {
        padding: 2.5rem 0 3rem;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .cta-box > div[style*="width: 100px"] {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .cta-box > div[style*="width: 100px"] i {
        font-size: 2.75rem !important;
    }
    
    .cta-box h2 {
        font-size: 1.75rem;
    }
    
    .cta-box p {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-box > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1.25rem !important;
    }
    
    .cta-box > div[style*="display: flex"] > div {
        font-size: 1.5rem !important;
    }
    
    .cta-box > div[style*="display: flex"] > div > div:last-child {
        font-size: 0.85rem !important;
    }
    
    .cta-btn {
        padding: 1rem 1.75rem;
        font-size: 1rem;
    }
    
    .cta-box > p[style*="font-size: 1rem"] {
        font-size: 0.9rem !important;
        margin-top: 1.5rem !important;
    }
    
    .sticky-help-button {
        bottom: 20px;
        right: 20px;
    }
    
    .help-button {
        width: 55px;
        height: 55px;
        font-size: 1.6rem;
    }
    
    .help-popup {
        width: 280px;
        bottom: 70px;
    }
}

/* Phones (480px - 575px) */
@media (max-width: 575px) {
    .container-custom {
        padding: 0 1rem;
    }
    
    .faq-hero {
        padding: 3rem 0 2rem;
    }
    
    .faq-hero h1 {
        font-size: 2.25rem;
    }
    
    .faq-hero .tagline {
        font-size: 1.15rem;
    }
    
    .faq-hero .subtext {
        font-size: 0.95rem;
    }
    
    .faq-search-section {
        padding: 0 0 2rem;
    }
    
    .faq-search-wrapper {
        margin: -1.75rem auto 0;
    }
    
    .faq-search-box {
        padding: 0.65rem 1rem;
        border-radius: 12px;
    }
    
    .faq-search-box i {
        font-size: 1.1rem;
        margin-right: 0.65rem;
    }
    
    .faq-search-box input {
        font-size: 0.95rem;
    }
    
    .mobile-category-selector {
        margin-bottom: 1.25rem;
    }
    
    .category-dropdown {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
        border-radius: 10px;
    }
    
    .faq-section {
        padding: 1.25rem 0;
    }
    
    .category-header {
        margin-bottom: 0.75rem;
        padding-bottom: 0.6rem;
    }
    
    .category-header h2 {
        font-size: 1.1rem;
    }
    
    .category-header h2 i {
        font-size: 1rem;
    }
    
    .category-header p {
        font-size: 0.8rem;
    }
    
    .faq-accordion {
        gap: 0.3rem;
    }
    
    .faq-item {
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 0.6rem 0.75rem;
    }
    
    .faq-question h3 {
        font-size: 0.85rem;
    }
    
    .faq-toggle-icon {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 0.75rem 0.6rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .still-questions-cta {
        padding: 2rem 0 2.5rem;
    }
    
    .cta-box {
        padding: 2rem 1.25rem;
        border-radius: 16px;
    }
    
    .cta-box > div[style*="width: 100px"] {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 1.25rem !important;
    }
    
    .cta-box > div[style*="width: 100px"] i {
        font-size: 2.5rem !important;
    }
    
    .cta-box h2 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-box > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 0.875rem !important;
        padding: 1rem !important;
    }
    
    .cta-box > div[style*="display: flex"] > div {
        font-size: 1.35rem !important;
    }
    
    .cta-box > div[style*="display: flex"] > div > div:last-child {
        font-size: 0.8rem !important;
    }
    
    .cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .cta-box > p[style*="font-size: 1rem"] {
        font-size: 0.85rem !important;
        margin-top: 1.25rem !important;
    }
    
    .sticky-help-button {
        bottom: 15px;
        right: 15px;
    }
    
    .help-button {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
    
    .help-popup {
        width: 260px;
        padding: 1.25rem;
        bottom: 65px;
    }
}

/* Small Phones (360px - 479px) */
@media (max-width: 479px) {
    .container-custom {
        padding: 0 0.875rem;
    }
    
    .faq-hero {
        padding: 2.5rem 0 1.75rem;
    }
    
    .faq-hero h1 {
        font-size: 1.9rem;
        line-height: 1.2;
    }
    
    .faq-hero .tagline {
        font-size: 1rem;
    }
    
    .faq-hero .subtext {
        font-size: 0.9rem;
    }
    
    .faq-search-section {
        padding: 0 0 1.75rem;
    }
    
    .faq-search-wrapper {
        margin: -1.5rem auto 0;
    }
    
    .faq-search-box {
        padding: 0.6rem 0.875rem;
        border-radius: 10px;
    }
    
    .faq-search-box i {
        font-size: 1rem;
        margin-right: 0.6rem;
    }
    
    .faq-search-box input {
        font-size: 0.9rem;
    }
    
    .mobile-category-selector {
        margin-bottom: 1rem;
    }
    
    .category-dropdown {
        font-size: 0.85rem;
        padding: 0.7rem 0.9rem;
    }
    
    .faq-section {
        padding: 1rem 0;
    }
    
    .category-header {
        margin-bottom: 0.65rem;
        padding-bottom: 0.5rem;
    }
    
    .category-header h2 {
        font-size: 1rem;
    }
    
    .category-header h2 i {
        font-size: 0.95rem;
    }
    
    .category-header p {
        font-size: 0.75rem;
    }
    
    .faq-question {
        padding: 0.55rem 0.65rem;
    }
    
    .faq-question h3 {
        font-size: 0.8rem;
    }
    
    .faq-toggle-icon {
        font-size: 0.9rem;
    }
    
    .faq-answer-content {
        padding: 0 0.65rem 0.55rem 0.65rem;
        font-size: 0.75rem;
    }
    
    .still-questions-cta {
        padding: 1.75rem 0 2rem;
    }
    
    .cta-box {
        padding: 1.75rem 1rem;
        border-radius: 14px;
    }
    
    .cta-box > div[style*="width: 100px"] {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
    }
    
    .cta-box > div[style*="width: 100px"] i {
        font-size: 2.25rem !important;
    }
    
    .cta-box h2 {
        font-size: 1.3rem;
    }
    
    .cta-box p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cta-box > div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 0.75rem !important;
        padding: 0.875rem !important;
    }
    
    .cta-box > div[style*="display: flex"] > div {
        font-size: 1.2rem !important;
    }
    
    .cta-box > div[style*="display: flex"] > div > div:last-child {
        font-size: 0.75rem !important;
    }
    
    .cta-btn {
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }
    
    .cta-box > p[style*="font-size: 1rem"] {
        font-size: 0.8rem !important;
        margin-top: 1rem !important;
    }
    
    .sticky-help-button {
        bottom: 12px;
        right: 12px;
    }
    
    .help-button {
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }
    
    .help-popup {
        width: 240px;
        padding: 1rem;
        bottom: 60px;
    }
    
    .help-popup h4 {
        font-size: 1.1rem;
    }
    
    .help-popup p {
        font-size: 0.85rem;
    }
}

/* Extra Small Phones (below 360px) */
@media (max-width: 359px) {
    .container-custom {
        padding: 0 0.75rem;
    }
    
    .faq-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .faq-hero h1 {
        font-size: 1.65rem;
    }
    
    .faq-hero .tagline {
        font-size: 0.95rem;
    }
    
    .faq-hero .subtext {
        font-size: 0.85rem;
    }
    
    .faq-search-box {
        padding: 0.55rem 0.75rem;
    }
    
    .faq-search-box input {
        font-size: 0.85rem;
    }
    
    .category-dropdown {
        font-size: 0.8rem;
        padding: 0.65rem 0.8rem;
    }
    
    .category-header h2 {
        font-size: 0.95rem;
    }
    
    .faq-question h3 {
        font-size: 0.75rem;
    }
    
    .faq-answer-content {
        font-size: 0.7rem;
    }
    
    .cta-box {
        padding: 1.5rem 0.875rem;
    }
    
    .cta-box h2 {
        font-size: 1.15rem;
    }
    
    .cta-box p {
        font-size: 0.85rem;
    }
    
    .cta-btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .help-button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .help-popup {
        width: 220px;
    }
}

/* Sticky Floating Help Button */
.sticky-help-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: floatIn 0.6s ease-out;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sticky-help-button.hidden {
    display: none;
}

.help-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--zoogaboog-blue);
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(1, 170, 222, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.8rem;
}

.help-button:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(1, 170, 222, 0.6);
}

.help-button.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(1, 170, 222, 0.4);
    }
    50% {
        box-shadow: 0 10px 40px rgba(1, 170, 222, 0.8), 0 0 0 15px rgba(1, 170, 222, 0.2);
    }
}

.help-tooltip {
    position: absolute;
    right: 75px;
    bottom: 5px;
    background: #1e293b;
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    white-space: nowrap;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.help-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #1e293b;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.help-button:hover .help-tooltip {
    opacity: 1;
}

.help-popup {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    width: 320px;
    padding: 1.5rem;
    display: none;
    border: 2px solid var(--zoogaboog-blue);
}

.help-popup.active {
    display: block;
    animation: popIn 0.3s ease-out;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.help-popup h4 {
    font-size: 1.2rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.help-popup p {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.help-popup-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.help-popup-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    justify-content: center;
}

.help-popup-btn-primary {
    background: var(--zoogaboog-blue);
    color: white;
}

.help-popup-btn-primary:hover {
    background: #0085ae;
    transform: translateY(-2px);
}

.help-popup-btn-secondary {
    background: #f1f5f9;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.help-popup-btn-secondary:hover {
    background: #e2e8f0;
}

/* Additional responsive styles for inline-styled elements */
@media (max-width: 767px) {
    .still-questions-cta [style*="width: 100px"] {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 1.5rem !important;
    }
    
    .still-questions-cta [style*="font-size: 3.5rem"] {
        font-size: 2.75rem !important;
    }
    
    .still-questions-cta [style*="display: flex"][style*="gap: 1.5rem"] {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1.25rem !important;
    }
    
    .still-questions-cta [style*="font-size: 2rem"][style*="font-weight: 900"] {
        font-size: 1.5rem !important;
    }
    
    .still-questions-cta [style*="font-size: 0.95rem"][style*="opacity: 0.9"] {
        font-size: 0.85rem !important;
    }
}

@media (max-width: 575px) {
    .still-questions-cta [style*="width: 100px"] {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 1.25rem !important;
    }
    
    .still-questions-cta [style*="font-size: 3.5rem"] {
        font-size: 2.5rem !important;
    }
    
    .still-questions-cta [style*="font-size: 2rem"][style*="font-weight: 900"] {
        font-size: 1.35rem !important;
    }
    
    .still-questions-cta [style*="font-size: 0.95rem"][style*="opacity: 0.9"] {
        font-size: 0.8rem !important;
    }
}

@media (max-width: 479px) {
    .still-questions-cta [style*="width: 100px"] {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 1rem !important;
    }
    
    .still-questions-cta [style*="font-size: 3.5rem"] {
        font-size: 2.25rem !important;
    }
    
    .still-questions-cta [style*="font-size: 2rem"][style*="font-weight: 900"] {
        font-size: 1.2rem !important;
    }
    
    .still-questions-cta [style*="font-size: 0.95rem"][style*="opacity: 0.9"] {
        font-size: 0.75rem !important;
    }
}

@media (max-width: 359px) {
    .still-questions-cta [style*="width: 100px"] {
        width: 55px !important;
        height: 55px !important;
        margin-bottom: 0.875rem !important;
    }
    
    .still-questions-cta [style*="font-size: 3.5rem"] {
        font-size: 2rem !important;
    }
    
    .still-questions-cta [style*="font-size: 2rem"][style*="font-weight: 900"] {
        font-size: 1.1rem !important;
    }
}




