/* ============================================
   GOHAP SERVICES PAGE - COMPLETE CSS
   Modern, responsive styling for all sections
   Compatible with Astra + Spectra Page Builder
   ============================================ */

/* ===================================
   RESET  BASE STYLES
   =================================== */
.gohap-services-page * {
    box-sizing: border-box;
}

.gohap-services-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    overflow-x: hidden;
}

/* ===================================
   HERO SECTION
   =================================== */
.gohap-services-hero {
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.gohap-services-hero__container {
    max-width: 1200px;
    margin: 0 auto;
}

.gohap-services-hero__content {
    margin-bottom: 50px;
}

.gohap-services-hero__label {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.gohap-services-hero__title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.gohap-services-hero__subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* Hero Navigation Cards */
.gohap-services-hero__nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* ===================================
   HERO NAVIGATION - STICKY FIX
   =================================== */

/* Default state */
.gohap-services-hero__nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    transition: all 0.3s ease;
}

/* Sticky state - FIXED */
.gohap-services-hero__nav.sticky {
    position: fixed;
    top: 32px; /* WordPress admin bar height - adjust to 0 if no admin bar */
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999; /* Below admin bar (1000) but above content */
    animation: slideDown 0.3s ease;
    margin: 0;
}

/* Container adjustment when sticky is active */
.gohap-services-hero__nav.sticky .gohap-services-hero__container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Adjust grid for sticky state */
.gohap-services-hero__nav.sticky {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    padding: 12px 20px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Cards styling in sticky state */
.gohap-services-hero__nav.sticky .gohap-services-nav-card {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 12px 10px;
}

.gohap-services-hero__nav.sticky .gohap-services-nav-card:hover,
.gohap-services-hero__nav.sticky .gohap-services-nav-card.active {
    background: rgba(102, 126, 234, 0.15);
    color: #5568d3;
    transform: translateY(-2px);
}

.gohap-services-hero__nav.sticky .gohap-services-nav-card__icon {
    font-size: 1.5rem;
}

.gohap-services-hero__nav.sticky .gohap-services-nav-card__text {
    font-size: 0.75rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .gohap-services-hero__nav.sticky {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gohap-services-hero__nav.sticky {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px 15px;
        gap: 8px;
        top: 46px; /* Mobile admin bar */
    }
}

@media (max-width: 480px) {
    .gohap-services-hero__nav.sticky {
        grid-template-columns: repeat(2, 1fr);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Remove sticky on logged-out users (no admin bar) */
body:not(.admin-bar) .gohap-services-hero__nav.sticky {
    top: 0;
}


.gohap-services-nav-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gohap-services-nav-card:hover,
.gohap-services-nav-card.active {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gohap-services-hero__nav.sticky .gohap-services-nav-card {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.gohap-services-hero__nav.sticky .gohap-services-nav-card:hover,
.gohap-services-hero__nav.sticky .gohap-services-nav-card.active {
    background: rgba(102, 126, 234, 0.15);
    color: #5568d3;
}

.gohap-services-nav-card__icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.gohap-services-nav-card__text {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* ===================================
   SERVICE SECTIONS - COMMON STYLES
   =================================== */
.gohap-service-section {
    padding: 80px 20px;
    background: #ffffff;
}

.gohap-service-section--alt {
    background: #f8fafc;
}

.gohap-service-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Service Header */
.gohap-service-header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.gohap-service-header.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-service-header__icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
}

.gohap-service-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.2;
}

.gohap-service-header__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

/* Service Intro */
.gohap-service-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 1.125rem;
    line-height: 1.8;
    color: #475569;
}

.gohap-service-intro p {
    margin-bottom: 20px;
}

.gohap-service-intro p:last-child {
    margin-bottom: 0;
}

/* Service Content */
.gohap-service-content {
    margin-bottom: 60px;
}

.gohap-service-content__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    text-align: center;
}

/* ===================================
   SERVICE GRID  CARDS
   =================================== */
.gohap-service-grid {
    display: grid;
    gap: 25px;
}

.gohap-service-grid--3col {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.gohap-service-grid--2col {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

/* Vertical Cards */
.gohap-service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-service-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.gohap-service-card__icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.gohap-service-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

.gohap-service-card__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Horizontal Cards */
.gohap-service-card--horizontal {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.gohap-service-card--horizontal .gohap-service-card__icon {
    flex-shrink: 0;
    margin-bottom: 0;
}

.gohap-service-card--horizontal .gohap-service-card__content {
    flex: 1;
}

/* ===================================
   WHY IT MATTERS SECTION
   =================================== */
.gohap-service-why {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 16px;
}

.gohap-service-why__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.gohap-service-why__grid {
    display: grid;
    gap: 20px;
}

.gohap-service-why__item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.gohap-service-why__bullet {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.gohap-service-why__item p {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: #334155;
    margin: 0;
}

/* ===================================
   STATS SECTION
   =================================== */
.gohap-service-stats {
    margin-bottom: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 16px;
    color: #ffffff;
}

.gohap-service-stats__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.gohap-service-stats__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.gohap-service-stat {
    text-align: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s ease;
}

.gohap-service-stat.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gohap-service-stat__value {
    font-size: 3.5rem;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 10px;
    line-height: 1;
}

.gohap-service-stat__label {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ===================================
   CHANNELS SECTION
   =================================== */
.gohap-service-channels {
    margin-bottom: 60px;
}

.gohap-service-channels__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    text-align: center;
}

.gohap-service-channels__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gohap-channel-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-channel-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-channel-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
    transform: translateY(-3px);
}

.gohap-channel-item__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.gohap-channel-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gohap-channel-item__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* ===================================
   PROCESS TIMELINE
   =================================== */
.gohap-service-process {
    margin-bottom: 60px;
}

.gohap-service-process__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 40px;
    text-align: center;
}

.gohap-process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gohap-process-step {
    position: relative;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.gohap-process-step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.gohap-process-step:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
}

.gohap-process-step__number {
    position: absolute;
    top: -15px;
    left: 25px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.gohap-process-step__content {
    padding-top: 10px;
}

.gohap-process-step__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gohap-process-step__text {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.gohap-service-features {
    margin-bottom: 60px;
}

.gohap-service-features__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    text-align: center;
}

.gohap-service-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.gohap-feature-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.gohap-feature-item.animate-in {
    opacity: 1;
    transform: scale(1);
}

.gohap-feature-item:hover {
    border-color: #3b82f6;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.12);
}

.gohap-feature-item__icon {
    font-size: 2.25rem;
    margin-bottom: 12px;
}

.gohap-feature-item__title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gohap-feature-item__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* ===================================
   TECHNOLOGY SECTION
   =================================== */
.gohap-service-tech {
    margin-bottom: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 16px;
}

.gohap-service-tech__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    text-align: center;
}

.gohap-service-tech__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gohap-tech-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid rgba(251, 191, 36, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-tech-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-tech-item:hover {
    border-color: #fbbf24;
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.2);
    transform: translateY(-3px);
}

.gohap-tech-item__icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.gohap-tech-item__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gohap-tech-item__text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* ===================================
   OUTCOMES SECTION
   =================================== */
.gohap-service-outcomes {
    margin-bottom: 50px;
}

.gohap-service-outcomes__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 35px;
    text-align: center;
}

.gohap-service-outcomes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gohap-service-outcomes__item {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 30px;
    border-radius: 12px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-service-outcomes__item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-service-outcomes__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.gohap-service-outcomes__number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 15px;
}

.gohap-service-outcomes__item p {
    font-size: 1.0625rem;
    line-height: 1.5;
    color: #ffffff;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* ===================================
   SERVICE CTA
   =================================== */
.gohap-service-cta {
    text-align: center;
}

/* ===================================
   BUTT================================== */
.gohap-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.gohap-btn--primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.gohap-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.gohap-btn--secondary {
    background: transparent;
    color: #667eea;
    border-color: #667eea;
}

.gohap-btn--secondary:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-2px);
}

.gohap-btn--large {
    padding: 18px 40px;
    font-size: 1.125rem;
}

/* ===================================
   ENGAGEMENT MODELS SECTION
   =================================== */
.gohap-engagement-models {
    padding: 80px 20px;
    background: #f8fafc;
}

.gohap-engagement-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gohap-engagement-header {
    text-align: center;
    margin-bottom: 50px;
}

.gohap-engagement-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

.gohap-engagement-header__subtitle {
    font-size: 1.25rem;
    color: #64748b;
}

.gohap-engagement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.gohap-engagement-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-engagement-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-engagement-card:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
    transform: translateY(-5px);
}

.gohap-engagement-card--featured {
    border-color: #3b82f6;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.gohap-engagement-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.gohap-engagement-card__header {
    text-align: center;
    margin-bottom: 30px;
}

.gohap-engagement-card__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.gohap-engagement-card__subtitle {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.gohap-engagement-card__features {
    margin-bottom: 25px;
}

.gohap-engagement-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.gohap-engagement-feature:last-child {
    margin-bottom: 0;
}

.gohap-engagement-feature__bullet {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.75rem;
}

.gohap-engagement-feature p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.gohap-engagement-card__footer {
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
}

.gohap-engagement-card__best-for {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

.gohap-engagement-footer {
    text-align: center;
}

.gohap-engagement-footer__text {
    font-size: 1.125rem;
    color: #475569;
    margin-bottom: 25px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.gohap-services-faq {
    padding: 80px 20px;
    background: #f8f9fa;
}

.gohap-services-faq__container {
    max-width: 900px;
    margin: 0 auto;
}

.gohap-services-faq__header {
    text-align: center;
    margin-bottom: 50px;
}

.gohap-services-faq__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.gohap-services-faq__subtitle {
    font-size: 1.125rem;
    color: #64748b;
    margin: 0;
}

.gohap-services-faq__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gohap-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.gohap-faq-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gohap-faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: #3b82f6;
}

.gohap-faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s ease;
}

.gohap-faq-item__question:hover {
    background: #f8fafc;
}

.gohap-faq-item__question-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    padding-right: 20px;
}

.gohap-faq-item__icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #3b82f6;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.gohap-faq-item__question[aria-expanded="true"] .gohap-faq-item__icon {
    transform: rotate(45deg);
}

.gohap-faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 28px;
}

.gohap-faq-item__question[aria-expanded="true"] + .gohap-faq-item__answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.gohap-faq-item__answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.gohap-final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #ffffff;
    text-align: center;
}

.gohap-final-cta__container {
    max-width: 900px;
    margin: 0 auto;
}

.gohap-final-cta__title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gohap-final-cta__subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.6;
}

.gohap-final-cta__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .gohap-services-hero {
        padding: 60px 20px 50px;
    }

    .gohap-services-hero__title {
        font-size: 2rem;
    }

    .gohap-services-hero__subtitle {
        font-size: 1.0625rem;
    }

    .gohap-services-hero__nav {
        grid-template-columns: repeat(2, 1fr);
    }

    .gohap-services-nav-card {
        padding: 15px 10px;
    }

    .gohap-services-nav-card__icon {
        font-size: 1.5rem;
    }

    .gohap-services-nav-card__text {
        font-size: 0.8125rem;
    }

    .gohap-service-section {
        padding: 60px 20px;
    }

    .gohap-service-header__title {
        font-size: 2rem;
    }

    .gohap-service-header__subtitle {
        font-size: 1.0625rem;
    }

    .gohap-service-content__title,
    .gohap-service-why__title,
    .gohap-service-stats__title,
    .gohap-service-channels__title,
    .gohap-service-process__title,
    .gohap-service-features__title,
    .gohap-service-tech__title,
    .gohap-service-outcomes__title {
        font-size: 1.75rem;
    }

    .gohap-service-grid--3col,
    .gohap-service-grid--2col {
        grid-template-columns: 1fr;
    }

    .gohap-service-intro {
        font-size: 1rem;
    }

    .gohap-service-why {
        padding: 30px 25px;
    }

    .gohap-service-stats {
        padding: 40px 25px;
    }

    .gohap-service-stats__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .gohap-service-stat__value {
        font-size: 2.75rem;
    }

    .gohap-service-channels__grid,
    .gohap-service-features__grid,
    .gohap-service-tech__grid {
        grid-template-columns: 1fr;
    }

    .gohap-process-timeline {
        grid-template-columns: 1fr;
    }

    .gohap-service-outcomes__grid {
        grid-template-columns: 1fr;
    }

    .gohap-engagement-models {
        padding: 60px 20px;
    }

    .gohap-engagement-header__title {
        font-size: 2rem;
    }

    .gohap-engagement-header__subtitle {
        font-size: 1.0625rem;
    }

    .gohap-engagement-grid {
        grid-template-columns: 1fr;
    }

    .gohap-services-faq {
        padding: 60px 20px;
    }

    .gohap-services-faq__title {
        font-size: 2rem;
    }

    .gohap-services-faq__subtitle {
        font-size: 1rem;
    }

    .gohap-faq-item__question {
        padding: 20px 20px;
    }

    .gohap-faq-item__question-text {
        font-size: 1rem;
    }

    .gohap-faq-item__answer {
        padding: 0 20px;
    }

    .gohap-faq-item__question[aria-expanded="true"] + .gohap-faq-item__answer {
        padding: 0 20px 20px 20px;
    }

    .gohap-final-cta {
        padding: 70px 20px;
    }

    .gohap-final-cta__title {
        font-size: 2rem;
    }

    .gohap-final-cta__subtitle {
        font-size: 1.0625rem;
    }

    .gohap-final-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .gohap-btn--large {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .gohap-services-hero__title {
        font-size: 1.75rem;
    }

    .gohap-services-hero__subtitle {
        font-size: 1rem;
    }

    .gohap-services-hero__nav {
        grid-template-columns: 1fr;
    }

    .gohap-service-header__icon {
        font-size: 2.75rem;
    }

    .gohap-service-header__title {
        font-size: 1.75rem;
    }

    .gohap-service-header__subtitle {
        font-size: 1rem;
    }

    .gohap-service-card {
        padding: 25px 20px;
    }

    .gohap-service-card--horizontal {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .gohap-service-why {
        padding: 25px 20px;
    }

    .gohap-service-stats {
        padding: 35px 20px;
    }

    .gohap-service-stat__value {
        font-size: 2.5rem;
    }

    .gohap-process-step {
        padding: 20px;
    }

    .gohap-process-step__number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .gohap-engagement-card {
        padding: 30px 20px;
    }

    .gohap-engagement-card__title {
        font-size: 1.5rem;
    }

    .gohap-final-cta__title {
        font-size: 1.75rem;
    }

    .gohap-final-cta__subtitle {
        font-size: 1rem;
    }
}

/* ===================================
   ANIMATION UTILITIES
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Apply staggered animation delays */
.gohap-service-card:nth-child(1) { transition-delay: 0.1s; }
.gohap-service-card:nth-child(2) { transition-delay: 0.2s; }
.gohap-service-card:nth-child(3) { transition-delay: 0.3s; }
.gohap-service-card:nth-child(4) { transition-delay: 0.4s; }
.gohap-service-card:nth-child(5) { transition-delay: 0.5s; }
.gohap-service-card:nth-child(6) { transition-delay: 0.6s; }
.gohap-service-card:nth-child(7) { transition-delay: 0.7s; }

.gohap-service-outcomes__item:nth-child(1) { transition-delay: 0.1s; }
.gohap-service-outcomes__item:nth-child(2) { transition-delay: 0.2s; }
.gohap-service-outcomes__item:nth-child(3) { transition-delay: 0.3s; }
.gohap-service-outcomes__item:nth-child(4) { transition-delay: 0.4s; }

.gohap-engagement-card:nth-child(1) { transition-delay: 0.1s; }
.gohap-engagement-card:nth-child(2) { transition-delay: 0.2s; }
.gohap-engagement-card:nth-child(3) { transition-delay: 0.3s; }

.gohap-faq-item:nth-child(1) { transition-delay: 0.05s; }
.gohap-faq-item:nth-child(2) { transition-delay: 0.1s; }
.gohap-faq-item:nth-child(3) { transition-delay: 0.15s; }
.gohap-faq-item:nth-child(4) { transition-delay: 0.2s; }
.gohap-faq-item:nth-child(5) { transition-delay: 0.25s; }
.gohap-faq-item:nth-child(6) { transition-delay: 0.3s; }
.gohap-faq-item:nth-child(7) { transition-delay: 0.35s; }
.gohap-faq-item:nth-child(8) { transition-delay: 0.4s; }

/* ===================================
   PRINT STYLES
   =================================== */
@media print {
    .gohap-services-hero__nav,
    .gohap-service-cta,
    .gohap-engagement-footer,
    .gohap-final-cta {
        display: none;
    }

    .gohap-service-section {
        page-break-inside: avoid;
    }

    .gohap-services-page {
        color: #000;
    }
}

/* ===================================
   ACCESSIBILITY ENHANCEMENTS
   =================================== */

/* Focus visible styles for keyboard navigation */
.gohap-services-nav-card:focus-visible,
.gohap-btn:focus-visible,
.gohap-faq-item__question:focus-visible {
    outline: 3px solid #3b82f6;
    outline-offset: 3px;
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .gohap-service-card,
    .gohap-channel-item,
    .gohap-feature-item,
    .gohap-tech-item,
    .gohap-engagement-card,
    .gohap-faq-item {
        border-width: 2px;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    .gohap-services-page {
        color: #e2e8f0;
    }

    .gohap-service-section {
        background: #1e293b;
    }

    .gohap-service-section--alt {
        background: #0f172a;
    }

    .gohap-service-header__title,
    .gohap-service-content__title,
    .gohap-service-card__title,
    .gohap-engagement-card__title,
    .gohap-faq-item__question-text {
        color: #f1f5f9;
    }

    .gohap-service-card,
    .gohap-channel-item,
    .gohap-feature-item,
    .gohap-tech-item,
    .gohap-engagement-card,
    .gohap-faq-item {
        background: #334155;
        border-color: #475569;
    }

    .gohap-service-card:hover,
    .gohap-channel-item:hover,
    .gohap-feature-item:hover,
    .gohap-tech-item:hover,
    .gohap-engagement-card:hover,
    .gohap-faq-item:hover {
        border-color: #60a5fa;
    }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

/* Text alignment */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Spacing utilities */
.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

/* Display utilities */
.d-block {
    display: block;
}

.d-inline-block {
    display: inline-block;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

/* ===================================
   LOADING STATES (Optional)
   =================================== */
.gohap-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.6;
}

.gohap-loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid #f3f4f6;
    border-top-color: #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===================================
   CUSTOM SCROLLBAR (Optional)
   =================================== */
.gohap-services-page::-webkit-scrollbar {
    width: 12px;
}

.gohap-services-page::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.gohap-services-page::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 6px;
}

.gohap-services-page::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* ===================================
   SELECTION STYLES
   =================================== */
.gohap-services-page ::selection {
    background: #3b82f6;
    color: #ffffff;
}

.gohap-services-page ::-moz-selection {
    background: #3b82f6;
    color: #ffffff;
}

/* ===================================
   CONTAINER WIDTHS
   =================================== */
@media (min-width: 1400px) {
    .gohap-services-hero__container,
    .gohap-service-container,
    .gohap-engagement-container,
    .gohap-final-cta__container {
        max-width: 1320px;
    }
}

/* ===================================
   GRADIENT OVERLAYS (for backgrounds)
   =================================== */
.gohap-gradient-overlay-purple {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.gohap-gradient-overlay-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.9) 0%, rgba(37, 99, 235, 0.9) 100%);
}

.gohap-gradient-overlay-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
}

/* ===================================
   SHADOW UTILITIES
   =================================== */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-md {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-lg {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* ===================================
   BADGE STYLES (for labels/tags)
   =================================== */
.gohap-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gohap-badge--primary {
    background: #3b82f6;
    color: #ffffff;
}

.gohap-badge--success {
    background: #10b981;
    color: #ffffff;
}

.gohap-badge--warning {
    background: #f59e0b;
    color: #ffffff;
}

.gohap-badge--info {
    background: #06b6d4;
    color: #ffffff;
}

/* ===================================
   TOOLTIP STYLES (Optional)
   =================================== */
.gohap-tooltip {
    position: relative;
    display: inline-block;
}

.gohap-tooltip::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    padding: 8px 12px;
    background: #1e293b;
    color: #ffffff;
    font-size: 0.875rem;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 100;
}

.gohap-tooltip::after {
    content: "";
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    border: 6px solid transparent;
    border-top-color: #1e293b;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gohap-tooltip:hover::before,
.gohap-tooltip:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ===================================
   DIVIDER STYLES
   =================================== */
.gohap-divider {
    width: 100%;
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0;
}

.gohap-divider--thick {
    height: 2px;
}

.gohap-divider--gradient {
    background: linear-gradient(90deg, transparent 0%, #3b82f6 50%, transparent 100%);
}

/* ===================================
   ICON STYLES (if using icon fonts)
   =================================== */
.gohap-icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    vertical-align: middle;
}

.gohap-icon--sm {
    font-size: 1rem;
}

.gohap-icon--md {
    font-size: 1.5rem;
}

.gohap-icon--lg {
    font-size: 2rem;
}

.gohap-icon--xl {
    font-size: 3rem;
}

/* ===================================
   SKELETON LOADING (Optional)
   =================================== */
.gohap-skeleton {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.gohap-skeleton--text {
    height: 1em;
    border-radius: 4px;
    margin-bottom: 0.5em;
}

.gohap-skeleton--heading {
    height: 2em;
    border-radius: 4px;
    margin-bottom: 1em;
}

.gohap-skeleton--card {
    height: 200px;
    border-radius: 12px;
}

/* ===================================
   FLOATING ANIMATION (for decorative elements)
   =================================== */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gohap-float {
    animation: float 3s ease-in-out infinite;
}

/* ===================================
   PULSE ANIMATION (for attention)
   =================================== */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.gohap-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ===================================
   BOUNCE ANIMATION
   =================================== */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.gohap-bounce {
    animation: bounce 1s infinite;
}

/* ===================================
   Z-INDEX MANAGEMENT
   =================================== */
.z-index-1 { z-index: 1; }
.z-index-10 { z-index: 10; }
.z-index-50 { z-index: 50; }
.z-index-100 { z-index: 100; }
.z-index-500 { z-index: 500; }
.z-index-1000 { z-index: 1000; }

/* ===================================
   OVERFLOW UTILITIES
   =================================== */
.overflow-hidden {
    overflow: hidden;
}

.overflow-auto {
    overflow: auto;
}

.overflow-x-auto {
    overflow-x: auto;
    overflow-y: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
    overflow-x: hidden;
}

/* ===================================
   POSITION UTILITIES
   =================================== */
.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.position-fixed {
    position: fixed;
}

.position-sticky {
    position: sticky;
}

/* ==================== DISABLE STICKY MENU ON MOBILE ==================== */

/* Disable sticky positioning on tablets and mobile */
@media (max-width: 1024px) {
    /* Target common sticky menu classes */
    .sticky-header,
    .fixed-header,
    [style*="position: sticky"],
    [style*="position: fixed"],
    header.sticky,
    nav.sticky,
    .site-header.sticky,
    .ast-header-break-point .main-header-bar,
    .ast-header-break-point .ast-above-header,
    .ast-mobile-header-wrap {
        position: relative !important;
        top: auto !important;
        position: static !important;
    }
    
    /* Astra theme specific */
    .ast-header-break-point .site-header {
        position: relative !important;
    }
    
    /* Generic header and nav */
    header,
    nav,
    .header,
    .navigation,
    .menu-wrapper {
        position: relative !important;
        position: static !important;
        top: auto !important;
        transform: none !important;
    }
}

/* Extra safe - disable on mobile only (phones) */
@media (max-width: 768px) {
    * {
        position: static !important;
    }
    
    /* Allow only specific elements to have positioning */
    .allow-position,
    .back-to-top,
    .popup,
    .modal,
    .notification {
        position: fixed !important;
    }
}


/* ===================================
   END OF CSS
   =================================== */.wp-block-uagb-container{display:flex;position:relative;box-sizing:border-box;transition-property:box-shadow;transition-duration:0.2s;transition-timing-function:ease}.wp-block-uagb-container .spectra-container-link-overlay{bottom:0;left:0;position:absolute;right:0;top:0;z-index:10}.wp-block-uagb-container.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:flex;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}.wp-block-uagb-container .wp-block-uagb-blockquote,.wp-block-uagb-container .wp-block-spectra-pro-login,.wp-block-uagb-container .wp-block-spectra-pro-register{margin:unset}.wp-block-uagb-container .uagb-container__video-wrap{height:100%;width:100%;top:0;left:0;position:absolute;overflow:hidden;-webkit-transition:opacity 1s;-o-transition:opacity 1s;transition:opacity 1s}.wp-block-uagb-container .uagb-container__video-wrap video{max-width:100%;width:100%;height:100%;margin:0;line-height:1;border:none;display:inline-block;vertical-align:baseline;-o-object-fit:cover;object-fit:cover;background-size:cover}.wp-block-uagb-container.uagb-layout-grid{display:grid;width:100%}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap{display:inherit;width:inherit}.wp-block-uagb-container.uagb-layout-grid>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.uagb-is-root-container>.wp-block-uagb-container{max-width:unset !important;width:unset !important}.wp-block-uagb-container.uagb-layout-grid.alignwide.uagb-is-root-container{margin-left:auto;margin-right:auto}.wp-block-uagb-container.uagb-layout-grid.alignfull.uagb-is-root-container .uagb-container-inner-blocks-wrap{display:inherit;position:relative;box-sizing:border-box;margin-left:auto !important;margin-right:auto !important}body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-info-box),body .wp-block-uagb-container>.uagb-container-inner-blocks-wrap,body .wp-block-uagb-container>*:not(.wp-block-uagb-container):not(.wp-block-uagb-column):not(.wp-block-uagb-container):not(.wp-block-uagb-section):not(.uagb-container__shape):not(.uagb-container__video-wrap):not(.wp-block-spectra-pro-register):not(.wp-block-spectra-pro-login):not(.uagb-slider-container):not(.spectra-container-link-overlay):not(.spectra-image-gallery__control-lightbox):not(.wp-block-uagb-lottie):not(.uagb-faq__outer-wrap){min-width:unset !important;width:100%;position:relative}body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>.wp-block-uagb-container ol,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap>ul,body .ast-container .wp-block-uagb-container>.uagb-container-inner-blocks-wrap ol{max-width:-webkit-fill-available;margin-block-start:0;margin-block-end:0;margin-left:20px}.ast-plain-container .editor-styles-wrapper .block-editor-block-list__layout.is-root-container .uagb-is-root-container.wp-block-uagb-container.alignwide{margin-left:auto;margin-right:auto}.uagb-container__shape{overflow:hidden;position:absolute;left:0;width:100%;line-height:0;direction:ltr}.uagb-container__shape-top{top:-3px}.uagb-container__shape-bottom{bottom:-3px}.uagb-container__shape.uagb-container__invert.uagb-container__shape-bottom,.uagb-container__shape.uagb-container__invert.uagb-container__shape-top{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.uagb-container__shape.uagb-container__shape-flip svg{transform:translateX(-50%) rotateY(180deg)}.uagb-container__shape svg{display:block;width:-webkit-calc(100% + 1.3px);width:calc(100% + 1.3px);position:relative;left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.uagb-container__shape .uagb-container__shape-fill{-webkit-transform-origin:center;-ms-transform-origin:center;transform-origin:center;-webkit-transform:rotateY(0deg);transform:rotateY(0deg)}.uagb-container__shape.uagb-container__shape-above-content{z-index:9;pointer-events:none}.nv-single-page-wrap .nv-content-wrap.entry-content .wp-block-uagb-container.alignfull{margin-left:calc(50% - 50vw);margin-right:calc(50% - 50vw)}@media only screen and (max-width: 767px){.wp-block-uagb-container .wp-block-uagb-advanced-heading{width:-webkit-fill-available}}.wp-block-uagb-image--align-none{justify-content:center}
.wp-block-uagb-container.uagb-block-9d4a9fb4 .uagb-container__shape-top svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9d4a9fb4 .uagb-container__shape.uagb-container__shape-top .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9d4a9fb4 .uagb-container__shape-bottom svg{width: calc( 100% + 1.3px );}.wp-block-uagb-container.uagb-block-9d4a9fb4 .uagb-container__shape.uagb-container__shape-bottom .uagb-container__shape-fill{fill: rgba(51,51,51,1);}.wp-block-uagb-container.uagb-block-9d4a9fb4 .uagb-container__video-wrap video{opacity: 1;}.wp-block-uagb-container.uagb-is-root-container .uagb-block-9d4a9fb4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9d4a9fb4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1200px);max-width: var(--inner-content-custom-width);width: 100%;flex-direction: column;align-items: center;justify-content: center;flex-wrap: nowrap;row-gap: 20px;column-gap: 20px;}.wp-block-uagb-container.uagb-block-9d4a9fb4{box-shadow: 0px 0px   #00000070 ;padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;overflow: visible;order: initial;border-color: inherit;row-gap: 20px;column-gap: 20px;}@media only screen and (max-width: 976px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9d4a9fb4{width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9d4a9fb4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 1024px);max-width: var(--inner-content-custom-width);width: 100%;}.wp-block-uagb-container.uagb-block-9d4a9fb4{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;}}@media only screen and (max-width: 767px) {.wp-block-uagb-container.uagb-is-root-container .uagb-block-9d4a9fb4{max-width: 100%;width: 100%;}.wp-block-uagb-container.uagb-is-root-container.alignfull.uagb-block-9d4a9fb4 > .uagb-container-inner-blocks-wrap{--inner-content-custom-width: min( 100%, 767px);max-width: var(--inner-content-custom-width);width: 100%;flex-wrap: wrap;}.wp-block-uagb-container.uagb-block-9d4a9fb4{padding-top: 10px;padding-bottom: 10px;padding-left: 10px;padding-right: 10px;margin-top:  !important;margin-bottom:  !important;order: initial;}}.uag-blocks-common-selector{z-index:var(--z-index-desktop) !important}@media (max-width: 976px){.uag-blocks-common-selector{z-index:var(--z-index-tablet) !important}}@media (max-width: 767px){.uag-blocks-common-selector{z-index:var(--z-index-mobile) !important}}
