/* ==========================================
   BUALKER LANDING - SECONDARY PAGES STYLES
   ========================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header-icon {
    width: 72px;
    height: 72px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.page-header-icon svg {
    width: 36px;
    height: 36px;
    color: var(--black);
}

.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.page-header p {
    font-size: 16px;
    color: var(--gray-600);
}

/* Page Content */
.page-content {
    padding: 60px 0 100px;
    background: var(--white);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-100);
}

.content-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
    margin: 20px 0 12px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 16px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.content-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* Content Navigation */
.content-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--gray-100);
    color: var(--black);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

.btn-secondary svg {
    width: 18px;
    height: 18px;
}

@media (min-width: 640px) {
    .content-nav {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.contact-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.contact-details a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--gray-50);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-form h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 15px;
    font-family: var(--font-sans);
    color: var(--black);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(190, 255, 0, 0.2);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--black);
    border: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==========================================
   HELP CENTER PAGE
   ========================================== */
.help-search {
    max-width: 600px;
    margin: 0 auto 48px;
}

.search-wrapper {
    position: relative;
}

.search-wrapper input {
    width: 100%;
    padding: 18px 24px 18px 56px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 16px;
    font-family: var(--font-sans);
    transition: all 0.2s;
}

.search-wrapper input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.search-wrapper svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    color: var(--gray-500);
}

/* Help Categories */
.help-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 60px;
}

.help-category {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
}

.help-category:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.help-category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.help-category-icon.getting-started {
    background: rgba(76, 175, 80, 0.15);
}

.help-category-icon.getting-started svg {
    color: #4CAF50;
}

.help-category-icon.booking {
    background: rgba(33, 150, 243, 0.15);
}

.help-category-icon.booking svg {
    color: #2196F3;
}

.help-category-icon.payments {
    background: rgba(156, 39, 176, 0.15);
}

.help-category-icon.payments svg {
    color: #9C27B0;
}

.help-category-icon.safety {
    background: rgba(255, 152, 0, 0.15);
}

.help-category-icon.safety svg {
    color: #FF9800;
}

.help-category-icon.account {
    background: rgba(13, 92, 77, 0.15);
}

.help-category-icon.account svg {
    color: var(--secondary);
}

.help-category-icon.bualkers {
    background: rgba(190, 255, 0, 0.3);
}

.help-category-icon.bualkers svg {
    color: var(--black);
}

.help-category-icon svg {
    width: 28px;
    height: 28px;
}

.help-category h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.help-category p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

@media (min-width: 640px) {
    .help-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .help-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    margin-bottom: 32px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
    transition: background 0.2s;
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--gray-500);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
}

.faq-item.active .faq-answer {
    display: block;
}

/* ==========================================
   SER BUALKER PAGE
   ========================================== */
.bualker-hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: var(--white);
}

.bualker-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
}

.bualker-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: var(--primary);
    color: var(--black);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-hero:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero svg {
    width: 20px;
    height: 20px;
}

/* Benefits Section */
.bualker-benefits {
    padding: 80px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-600);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    transition: all 0.2s;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: var(--primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--black);
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

@media (min-width: 640px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Requirements Section */
.bualker-requirements {
    padding: 80px 0;
    background: var(--gray-100);
}

.requirements-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: var(--radius);
}

.requirement-check {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.requirement-check svg {
    width: 18px;
    height: 18px;
    color: var(--black);
}

.requirement-item span {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
}

/* How It Works - Bualker */
.bualker-steps {
    padding: 80px 0;
    background: var(--white);
}

.steps-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number-large {
    width: 56px;
    height: 56px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA Section - Bualker */
.bualker-cta {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.bualker-cta h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 16px;
}

.bualker-cta p {
    font-size: 18px;
    color: var(--gray-800);
    margin-bottom: 32px;
}

.btn-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-cta-dark:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-dark svg {
    width: 20px;
    height: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 32px;
    }

    .bualker-hero h1 {
        font-size: 36px;
    }

    .section-header h2 {
        font-size: 28px;
    }
}
