/**
 * BondSomeoneOutNow Page Specific Styles
 */

/* ===== HERO SECTION ===== */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, #000 100%);
    color: var(--white);
    padding: 80px 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    flex: 0 0 500px;
    text-align: center;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: contain;
}

.main-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 140, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 16px 32px;
    border: 2px solid var(--white);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.language-toggle {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 16px 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: var(--cream);
    color: var(--brand-dark);
    padding: 15px 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    border-top: 3px solid var(--brand);
    border-bottom: 3px solid var(--brand);
}

.emergency-track {
    display: flex;
    width: max-content;
    will-change: transform;
}

.emergency-text {
    white-space: nowrap;
    padding: 0 50px;
}

.emergency-banner a {
    color: var(--brand-dark);
    text-decoration: none;
}

.emergency-banner a:hover {
    text-decoration: underline;
}

/* ===== 4-STEP PROCESS SECTION ===== */
.process-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 20px;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.process-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.process-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    align-items: center;
    gap: 30px;
    text-align: left;
}

.step-image {
    flex: 0 0 300px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    transition: all 0.3s ease;
}

.step-image:hover {
    background: rgba(242, 140, 0, 0.2);
    transform: translateY(-5px);
}

.step-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--brand);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.step-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 5px;
}

.step-time {
    font-size: 14px;
    color: var(--brand);
    font-weight: 600;
}

/* ===== PAYMENT SECTION ===== */
.payment-section {
    background: var(--white);
    padding: 80px 20px;
}

.payment-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.payment-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.payment-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: var(--muted);
}

.payment-methods {
    overflow: hidden;
    position: relative;
    margin: 40px 0;
}

.payment-track {
    display: flex;
    gap: 30px;
    width: max-content;
    will-change: transform;
}

.payment-method {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 250px;
    max-width: 250px;
}

.payment-method:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--brand);
}

.payment-icon {
    width: 60px;
    height: 60px;
    background: var(--brand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--white);
}

.payment-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.payment-description {
    font-size: 14px;
    color: var(--muted);
}

/* ===== FAQ ACCORDION SECTION ===== */
.faq-section {
    background: var(--black);
    color: var(--white);
    padding: 80px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
}

.faq-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.faq-question:hover {
    color: var(--brand);
}

.faq-toggle {
    font-size: 24px;
    color: var(--brand);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: rgba(255, 255, 255, 0.8);
}

.faq-answer-content {
    padding: 0 30px 25px;
    font-size: 16px;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-link {
    text-align: center;
    margin-top: 40px;
}

.faq-link a {
    color: var(--brand);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-link a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-image {
        flex: none;
        max-width: 100%;
    }

    .main-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .step {
        flex-direction: column !important;
        gap: 20px;
    }

    .step-image {
        flex: none;
        width: 100%;
        max-width: 300px;
        height: 150px;
    }

    .step-content {
        width: 100%;
    }

    .process-title {
        font-size: 28px;
    }

    .payment-title,
    .faq-title {
        font-size: 28px;
    }

    .faq-question {
        padding: 20px;
        font-size: 16px;
    }

    .faq-answer-content {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .emergency-banner {
        font-size: 16px;
        padding: 12px 15px;
    }
}
