/* GOO UPP — inner pages (FAQ, Contact, Legal, Become a Driver) */

.ghp-page-body {
    background: linear-gradient(180deg, #f0f9ff 0%, #ffffff 42%);
}

.ghp-page-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0 3rem;
}

@media (min-width: 768px) {
    .ghp-page-hero {
        padding: 2.5rem 0 3.5rem;
    }
}

.ghp-page-hero__glow {
    position: absolute;
    top: -120px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.14) 0%, transparent 68%);
    pointer-events: none;
}

.ghp-page-hero__glow--left {
    right: auto;
    left: -100px;
    top: auto;
    bottom: -80px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(56, 182, 255, 0.08) 0%, transparent 70%);
}

.ghp-page-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}

.ghp-page-subtitle {
    font-size: 15px;
    line-height: 1.65;
    color: #475569;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.ghp-page-content {
    position: relative;
    z-index: 1;
    margin-top: -1.75rem;
    padding-bottom: 5rem;
}

.ghp-content-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06), 0 1px 3px rgba(15, 23, 42, 0.04);
}

@media (min-width: 768px) {
    .ghp-content-card {
        padding: 2.25rem 2.5rem;
    }
}

/* FAQ */
.ghp-faq-tabs {
    display: inline-flex;
    gap: 0.25rem;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 0.3rem;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
    margin-top: 1.75rem;
}

.ghp-faq-tab {
    padding: 0.6rem 1.5rem;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.25s ease;
    color: #64748b;
    border: none;
    background: transparent;
    cursor: pointer;
}

.ghp-faq-tab:hover {
    color: #38B6FF;
}

.ghp-faq-tab.ghp-faq-tab--active {
    background: #38B6FF;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(56, 182, 255, 0.32);
}

.ghp-faq-section {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 0.5rem;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.ghp-faq-section__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.ghp-faq-section__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38B6FF;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.2);
}

.ghp-faq-section__title {
    font-size: 14px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 0.02em;
}

.ghp-faq-item {
    border: 1.5px solid #e2e8f0;
    background: #f8fafc;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.ghp-faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.ghp-faq-item.ghp-faq-open {
    border-color: #bde3ff;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(56, 182, 255, 0.1);
}

.ghp-faq-trigger {
    width: 100%;
    padding: 1rem 1.15rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    background: transparent;
    border: none;
    cursor: pointer;
}

.ghp-faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #e2e8f0;
    color: #64748b;
    transition: all 0.3s ease;
}

.ghp-faq-item.ghp-faq-open .ghp-faq-icon {
    background: #38B6FF;
    color: #ffffff;
    transform: rotate(45deg);
}

.ghp-faq-item.ghp-faq-open .ghp-faq-question {
    color: #38B6FF;
}

.ghp-faq-answer {
    padding: 0 1.15rem 1rem;
    font-size: 13px;
    line-height: 1.75;
    color: #475569;
}

/* Contact form */
.ghp-contact-card {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 1.75rem;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.07);
}

@media (min-width: 768px) {
    .ghp-contact-card {
        padding: 2.25rem 2.5rem;
    }
}

.ghp-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .ghp-form-grid--2 {
        grid-template-columns: 1fr 1fr;
    }
}

.ghp-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
}

.ghp-input {
    width: 100%;
    border-radius: 10px;
    border: 1.5px solid #cbd5e1;
    background: #f8fafc;
    padding: 0.65rem 0.85rem;
    font-size: 14px;
    color: #0f172a;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.ghp-input:hover {
    border-color: #94a3b8;
}

.ghp-input:focus {
    outline: none;
    border-color: #38B6FF;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(56, 182, 255, 0.15);
}

.ghp-input::placeholder {
    color: #94a3b8;
}

.ghp-submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 14px;
    padding: 1rem;
    border-radius: 12px;
    background: #38B6FF;
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(56, 182, 255, 0.28);
}

.ghp-submit-btn:hover:not(:disabled) {
    background: #1a9fe8;
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(56, 182, 255, 0.35);
}

.ghp-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ghp-contact-note {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    background: #f0f9ff;
    border: 1px solid rgba(56, 182, 255, 0.2);
    border-radius: 12px;
    font-size: 13px;
    color: #475569;
    line-height: 1.55;
}

.ghp-contact-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #38B6FF;
}

/* Contact form — bootstrapValidator feedback (only after submit attempt) */
.ghp-contact-card .form-group {
    margin-bottom: 0;
}

.ghp-contact-card .help-block {
    display: none;
    margin: 0.35rem 0 0;
    font-size: 12px;
    font-weight: 600;
    color: #ef4444;
    line-height: 1.4;
}

.ghp-contact-card form.ghp-form-validated .form-group.has-error .ghp-input {
    border-color: #ef4444;
    background: #fef2f2;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.ghp-contact-card form.ghp-form-validated .form-group.has-error .help-block {
    display: block;
}

/* Legal & content pages */
.ghp-legal-content {
    background: transparent;
    border: none;
    padding: 0;
    box-shadow: none;
}

.ghp-content-card .ghp-legal-content h4.widget_title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 2.25rem 0 1rem;
    padding: 0.65rem 0 0.65rem 0.85rem;
    border-left: 3px solid #38B6FF;
    background: linear-gradient(90deg, rgba(56, 182, 255, 0.07) 0%, transparent 100%);
    border-radius: 0 8px 8px 0;
    line-height: 1.4;
}

.ghp-content-card .ghp-legal-content h4.widget_title:first-child {
    margin-top: 0;
}

.ghp-content-card .ghp-legal-content .privacy-title {
    font-size: 13px;
    font-weight: 700;
    color: #38B6FF;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 1.5rem 0 0.5rem;
}

.ghp-content-card .ghp-legal-content p.faq-text,
.ghp-content-card .ghp-legal-content .accordion-body p,
.ghp-content-card .ghp-legal-content .accordion-body1 p {
    font-size: 14px;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 0.65rem;
}

.ghp-content-card .ghp-legal-content p.faq-text b,
.ghp-content-card .ghp-legal-content p.faq-text strong {
    color: #0f172a;
    font-weight: 600;
}

.ghp-content-card .ghp-legal-content a {
    color: #38B6FF;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ghp-content-card .ghp-legal-content a:hover {
    color: #0ea5e9;
}

.ghp-content-card .ghp-legal-content .accordion-area,
.ghp-content-card .ghp-legal-content .accordion-card,
.ghp-content-card .ghp-legal-content .accordion-body {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.ghp-content-card .ghp-legal-content .accordion-card + .accordion-card,
.ghp-content-card .ghp-legal-content .privacy-title + div {
    margin-top: 0.25rem;
}

.ghp-content-card .ghp-legal-content .mb-30 {
    margin-bottom: 0;
}

.ghp-content-card .ghp-legal-content > .accordion-card:first-child {
    padding: 1rem 1.15rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.ghp-content-card .ghp-legal-content > .accordion-card:first-child .faq-text {
    font-size: 15px;
}
