/**
 * Regiment.fit Mobile Navigation CSS - SINGLE SOURCE OF TRUTH
 * Clean, working mobile navigation styles
 */

/* ===================================
   MOBILE NAVIGATION - CORE STYLES
   =================================== */

/* Hamburger Button */
.navbar-burger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    padding: 0 !important;
    z-index: 10000; /* Above the full-screen menu */
    position: absolute;
    top: 6px;
    right: 16px;
    margin: 0;
}

/* Show hamburger on mobile, hide on desktop */
@media (max-width: 1023px) {
    .navbar-burger {
        display: flex !important;
    }
}

@media (min-width: 1024px) {
    .navbar-burger {
        display: none !important;
    }
}

.navbar-burger span {
    display: block !important;
    width: 26px;
    height: 3px;
    background: white !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    margin: 3px 0;
}

/* Hamburger Animation */
.navbar-burger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-burger.is-active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-burger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu - Full Screen Overlay */
@media (max-width: 1023px) {
    .navbar-menu {
        position: fixed !important;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #03045e 0%, #0077b6 100%) !important;
        transform: translateX(-100%);
        transition: transform 0.4s ease-out;
        overflow-y: auto;
        z-index: 9999;
        display: block !important;
        padding: 0 !important;
        box-shadow: none !important;
    }

    .navbar-menu.is-active {
        transform: translateX(0) !important;
    }

    .navbar-end {
        display: flex !important;
        flex-direction: column;
        padding: 80px 24px 24px 24px; /* Top padding to account for navbar */
        gap: 0;
        min-height: 100vh;
        justify-content: flex-start;
    }

    .navbar-item {
        display: block !important;
        padding: 20px 24px !important;
        color: white !important;
        text-decoration: none !important;
        font-size: 20px !important;
        font-weight: 500;
        border-radius: 12px;
        transition: all 0.3s ease;
        background: transparent !important;
        margin-bottom: 8px;
        border: none !important;
        box-shadow: none !important;
        min-height: 60px;
        display: flex !important;
        align-items: center;
    }

    .navbar-item:hover,
    .navbar-item:focus {
        background: rgba(255, 255, 255, 0.15) !important;
        color: #48cae4 !important;
        transform: translateX(12px);
    }

    .navbar-separator {
        height: 2px;
        background: rgba(255, 255, 255, 0.3);
        margin: 20px 24px;
        border-radius: 1px;
    }

    /* Button styling in mobile menu */
    .navbar-item .buttons {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }

    .navbar-item .button {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 12px;
        min-height: 56px;
    }

    .navbar-item .button.is-primary {
        background: linear-gradient(135deg, #48cae4 0%, #00b4d8 100%) !important;
        color: #03045e !important;
        border: none;
    }

    .navbar-item .button.is-primary:hover {
        background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%) !important;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 180, 216, 0.3);
    }
}

/* Desktop Navigation */
@media (min-width: 1024px) {
    .navbar-burger {
        display: none !important;
    }
    
    .navbar-menu {
        position: static !important;
        transform: none !important;
        background: transparent !important;
        display: flex !important;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
        padding: 0 !important;
        min-width: 0; /* Allow shrinking */
    }
    
    .navbar-end {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 8px;
        padding: 0;
    }
    
    .navbar-item {
        padding: 12px 16px !important;
        font-size: 16px !important;
        color: white !important;
        text-decoration: none !important;
        border-radius: 4px;
        transition: all 0.3s ease;
        background: transparent !important;
        white-space: nowrap;
    }
    
    .navbar-item:hover,
    .navbar-item:focus {
        background: rgba(255, 255, 255, 0.1) !important;
        color: #48cae4 !important;
        transform: none;
    }
    
    /* Show navbar separator on desktop */
    .navbar-separator {
        display: block !important;
        width: 1px;
        height: 24px;
        background: rgba(255, 255, 255, 0.3);
        margin: 0 12px;
        border: none;
        border-radius: 0;
        flex-shrink: 0;
    }
    
    /* Desktop button styling */
    .navbar-item .buttons {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    
    .navbar-item .button {
        padding: 8px 16px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 6px;
        min-height: auto;
        white-space: nowrap;
    }
}

/* Logo Styling */
.navbar-item.logo-link {
    color: white !important;
    background: transparent !important;
    text-decoration: none !important;
}

.navbar-item.logo-link:hover,
.navbar-item.logo-link:focus {
    color: white !important;
    background: transparent !important;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white !important;
}

.logo-accent {
    color: #48cae4 !important;
}

/* Navbar Brand */
.navbar-brand {
    display: flex !important;
    align-items: center;
    min-height: 60px;
    padding: 8px 0;
    position: relative;
}

@media (max-width: 1023px) {
    .navbar-brand {
        width: 100%;
        justify-content: flex-start; /* Align logo to left */
        padding-right: 64px; /* Space for hamburger */
    }
}

@media (min-width: 1024px) {
    .navbar-brand {
        width: auto; /* Allow natural width on desktop */
        justify-content: flex-start;
        padding-right: 0;
        flex-shrink: 0; /* Prevent shrinking */
    }
}

/* Navbar Container */
.navbar .container {
    display: flex !important;
    align-items: center;
    min-height: 60px;
    position: relative;
}

@media (max-width: 1023px) {
    .navbar .container {
        padding: 0 16px !important;
    }
}

@media (min-width: 1024px) {
    .navbar .container {
        padding: 0 24px !important;
        justify-content: space-between;
        width: 100%;
        max-width: none; /* Allow full width */
        gap: 16px; /* Add gap between navbar-brand and navbar-menu */
    }
}

/* Hide page-specific elements on mobile */
@media (max-width: 1023px) {
    .trust-indicators,
    .coach-info,
    .page-breadcrumbs {
        display: none !important;
    }
}

/* Show page-specific elements on desktop */
@media (min-width: 1024px) {
    .trust-indicators,
    .coach-info,
    .page-breadcrumbs {
        display: flex !important;
        align-items: center;
        margin-left: auto;
        margin-right: 16px;
        flex-shrink: 0;
    }
    
    .trust-indicators {
        gap: 16px;
    }
    
    .trust-item {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        white-space: nowrap;
    }
    
    .trust-icon {
        color: #48cae4;
        font-size: 14px;
    }
    
    .coach-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-right: 24px; /* Add space between coach-info and navigation */
        min-width: 120px; /* Ensure consistent width */
    }
    
    .coach-name {
        color: white;
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 4px;
        white-space: nowrap;
    }
    
    .coach-credentials {
        display: flex;
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .credential {
        font-size: 10px;
        color: #48cae4;
        background: rgba(255, 255, 255, 0.1);
        padding: 2px 6px;
        border-radius: 10px;
        white-space: nowrap;
    }
    
    .page-breadcrumbs .breadcrumb {
        margin: 0;
    }
    
    .page-breadcrumbs .breadcrumb ul {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .page-breadcrumbs .breadcrumb li {
        display: flex;
        align-items: center;
        color: rgba(255, 255, 255, 0.7);
        font-size: 14px;
    }
    
    .page-breadcrumbs .breadcrumb li:not(:last-child)::after {
        content: '>';
        margin-left: 8px;
        color: rgba(255, 255, 255, 0.5);
    }
    
    .page-breadcrumbs .breadcrumb a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .page-breadcrumbs .breadcrumb a:hover {
        color: #48cae4;
    }
}

/* Main Navbar */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10001; /* Above everything including the full-screen menu */
    background: rgba(3, 4, 94, 0.95) !important;
    backdrop-filter: blur(10px);
    min-height: 60px !important;
    padding: 0 !important;
    box-shadow: none !important;
}

/* Ensure navbar stays visible when menu is open */
.navbar.menu-open {
    background: rgba(3, 4, 94, 0.98) !important;
    backdrop-filter: blur(15px);
}
/* ==
=================================
   CONTACT PAGE MOBILE FIXES
   =================================== */

/* Fix contact hero section for mobile */
.contact-hero-section {
    padding-top: 80px; /* Account for fixed navbar */
    min-height: 50vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
}

@media (max-width: 767px) {
    .contact-hero-section {
        padding-top: 80px; /* Extra padding for mobile navbar */
        min-height: 60vh;
        text-align: center;
    }
    
    .contact-hero-content {
        padding: 20px 16px;
    }
    
    .contact-hero-title {
        font-size: 2rem !important;
        line-height: 1.2;
        margin-bottom: 16px;
        color: white;
    }
    
    .contact-hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.4;
        margin-bottom: 16px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .contact-hero-description {
        font-size: 1rem !important;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.8);
        max-width: 100%;
    }
}

@media (min-width: 768px) {
    .contact-hero-section {
        padding-top: 100px;
        min-height: 70vh;
    }
    
    .contact-hero-content {
        padding: 40px 0;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }
    
    .contact-hero-title {
        font-size: 3rem;
        margin-bottom: 24px;
        color: white;
    }
    
    .contact-hero-subtitle {
        font-size: 1.5rem;
        margin-bottom: 24px;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .contact-hero-description {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
    }
}

/* Fix contact main section spacing */
.contact-main-section {
    padding-top: 40px;
    padding-bottom: 40px;
}

@media (max-width: 767px) {
    .contact-main-section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    .contact-main-content {
        padding: 0 16px;
    }
    
    .contact-info-title {
        font-size: 1.8rem !important;
        text-align: center;
        margin-bottom: 16px;
    }
    
    .contact-info-subtitle {
        font-size: 1rem !important;
        text-align: center;
        margin-bottom: 24px;
        line-height: 1.5;
    }
}

/* ===================================
   UNIVERSAL MOBILE HERO SECTION FIXES
   =================================== */

/* Ensure all page content is visible on mobile */
@media (max-width: 767px) {
    /* Add padding to any section that might be cut off by navbar */
    section:first-of-type,
    .hero-section,
    .hero-enhanced,
    .contact-hero-section,
    .about-hero-section,
    .services-hero-section {
        padding-top: 80px !important;
        min-height: calc(100vh - 60px) !important;
    }
    
    /* Ensure main content areas have proper spacing */
    main {
        padding-top: 0;
    }
    
    /* Fix any content that might be hidden behind navbar */
    .page-content {
        margin-top: 0;
        padding-top: 20px;
    }
    
    /* Universal hero content fixes */
    .hero-content,
    .contact-hero-content,
    .about-hero-content,
    .services-hero-content {
        padding: 20px 16px !important;
        text-align: center;
    }
    
    /* Universal hero title fixes */
    .hero-title,
    .contact-hero-title,
    .about-hero-title,
    .services-hero-title {
        font-size: 2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 16px !important;
        color: white !important;
    }
    
    /* Universal hero subtitle fixes */
    .hero-subtitle,
    .contact-hero-subtitle,
    .about-hero-subtitle,
    .services-hero-subtitle {
        font-size: 1.2rem !important;
        line-height: 1.4 !important;
        margin-bottom: 16px !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* Universal hero description fixes */
    .hero-description,
    .contact-hero-description,
    .about-hero-description,
    .services-hero-description {
        font-size: 1rem !important;
        line-height: 1.5 !important;
        color: rgba(255, 255, 255, 0.8) !important;
        max-width: 100% !important;
    }
}

@media (min-width: 768px) {
    /* Desktop hero sections */
    .contact-hero-section,
    .about-hero-section,
    .services-hero-section {
        padding-top: 100px;
        min-height: 70vh;
    }
}/* ===
================================
   FAQ SECTION STYLES
   =================================== */

.faq-section {
    padding: 60px 0;
    background: #f8fafc;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: #03045e;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #03045e;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(3, 4, 94, 0.02);
}

.faq-question-text {
    flex: 1;
    margin-right: 16px;
}

.faq-toggle-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #03045e;
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.is-active .faq-toggle-icon {
    background: #48cae4;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(72, 202, 228, 0.02);
}

.faq-item.is-active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px 24px;
}

.faq-answer p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Mobile FAQ adjustments */
@media (max-width: 767px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    .faq-grid {
        padding: 0 16px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-question-text {
        margin-right: 12px;
    }
    
    .faq-toggle-icon {
        width: 20px;
        height: 20px;
    }
    
    .faq-item.is-active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}/
* ===================================
   SERVICE PREVIEW CTA BUTTONS
   =================================== */

.service-preview-cta {
    margin-top: 20px;
    text-align: center;
}

.service-preview-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #03045e 0%, #0077b6 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    min-width: 140px;
    justify-content: center;
}

.service-preview-btn:hover {
    background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(3, 4, 94, 0.3);
    color: white;
}

.service-preview-btn.featured-btn {
    background: linear-gradient(135deg, #48cae4 0%, #00b4d8 100%);
    color: #03045e;
    font-weight: 700;
}

.service-preview-btn.featured-btn:hover {
    background: linear-gradient(135deg, #00b4d8 0%, #0096c7 100%);
    color: #03045e;
    box-shadow: 0 4px 15px rgba(72, 202, 228, 0.4);
}

.service-preview-btn .btn-icon {
    font-size: 12px;
}

/* Mobile adjustments for service preview buttons */
@media (max-width: 767px) {
    .service-preview-btn {
        width: 100%;
        max-width: 200px;
        padding: 14px 20px;
        font-size: 15px;
    }
}/* =
==================================
   NAVBAR SEPARATOR FIX
   =================================== */

/* Override any Bulma navbar separator styles */
@media (min-width: 1024px) {
    .navbar-end .navbar-separator {
        display: block !important;
        width: 1px !important;
        height: 24px !important;
        background: rgba(255, 255, 255, 0.3) !important;
        margin: 0 12px !important;
        border: none !important;
        border-radius: 0 !important;
        flex-shrink: 0 !important;
        opacity: 1 !important;
        content: none !important;
    }
    
    /* Ensure it's not treated as text */
    .navbar-end .navbar-separator::before,
    .navbar-end .navbar-separator::after {
        display: none !important;
        content: none !important;
    }
    
    /* Make sure it's a proper divider */
    .navbar-end .navbar-separator:not(.navbar-item) {
        background: rgba(255, 255, 255, 0.3) !important;
        width: 1px !important;
        height: 24px !important;
        margin: 0 12px !important;
        align-self: center;
    }
}