/* Business Cargo — Extended Components (DHL Yellow Theme) */

/* Header & page hero — style.css DHL sarı teması geçerli, override yok */

.top-bar__contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
}
.top-bar__link:hover { color: var(--red); }

/* Breadcrumbs */
.breadcrumbs {
    background: var(--gray-100);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-300);
}
.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
}
.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-500);
}
.breadcrumbs__item:not(:last-child)::after {
    content: '›';
    color: var(--gray-300);
}
.breadcrumbs__item a { color: var(--red); font-weight: 500; }
.breadcrumbs__item span { color: var(--gray-700); }

/* Stats */
.stats-bar {
    background: var(--yellow);
    padding: 40px 0;
    margin-top: -30px;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
}
.stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    text-align: center;
    color: var(--black);
    padding: 16px;
}
.stat-card__value {
    display: block;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 6px;
    color: var(--red);
}
.stat-card__label {
    font-size: 14px;
    color: var(--gray-700);
}

/* Why Us */
.why-us__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--yellow-dark);
}
.why-card__icon {
    width: 48px;
    height: 48px;
    background: var(--yellow-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 16px;
}
.why-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--black);
}
.why-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: step;
}
.step-card {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-300);
}
.step-card__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--red);
    color: var(--white);
    font-weight: 800;
    font-size: 14px;
    border-radius: 50%;
    margin-bottom: 16px;
}
.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.step-card p {
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.6;
}

/* Progress tracker */
.progress-tracker { margin-bottom: 28px; }
.progress-tracker__bar {
    height: 8px;
    background: var(--gray-100);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 12px;
}
.progress-tracker__fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, var(--yellow-dark), var(--red));
    border-radius: 4px;
    transition: width .6s ease;
}
.progress-tracker__steps {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.progress-tracker__step {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-500);
}
.progress-tracker__step--done { color: var(--red); }
.progress-tracker__step--active { color: var(--black); font-weight: 700; }

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item {
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    background: var(--white);
}
.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 20px;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    color: var(--black);
    cursor: pointer;
    transition: background var(--transition);
}
.faq-item__question:hover { background: var(--gray-100); }
.faq-item__icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--yellow-light);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    transition: transform var(--transition);
}
.faq-item.is-open .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer {
    display: none;
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--gray-700);
    line-height: 1.7;
}
.faq-item.is-open .faq-item__answer { display: block; }

/* CTA Banner */
.cta-banner {
    background: var(--yellow);
    padding: 56px 0;
    border-top: 1px solid rgba(0,0,0,.08);
    border-bottom: 1px solid rgba(0,0,0,.08);
}
.cta-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.cta-banner__content h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}
.cta-banner__content p {
    font-size: 15px;
    color: var(--gray-900);
    max-width: 480px;
}
.btn--white {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}
.btn--white:hover {
    background: var(--red-hover);
    color: var(--white);
    border-color: var(--red-hover);
}
.btn--outline-white {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}
.btn--outline-white:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}
.btn--whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.btn--whatsapp:hover {
    background: #1DA851;
    border-color: #1DA851;
    color: var(--white);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 900;
    transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 28px rgba(37,211,102,.5);
    color: var(--white);
}

/* Service pills on ship page */
.service-pills {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.service-pill {
    padding: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
    font-family: var(--font);
    width: 100%;
}
.service-pill:hover, .service-pill.is-active {
    border-color: var(--yellow-dark);
    background: var(--yellow-light);
}
.service-pill strong {
    display: block;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 4px;
}
.service-pill span {
    font-size: 13px;
    color: var(--gray-700);
}

/* Form steps */
.form-steps {
    display: flex;
    gap: 0;
    margin-bottom: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--gray-300);
}
.form-step {
    flex: 1;
    padding: 14px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-500);
    border-right: 1px solid var(--gray-300);
    transition: all var(--transition);
}
.form-step:last-child { border-right: none; }
.form-step.is-active {
    background: var(--gray-800);
    color: var(--yellow);
}
.form-step.is-done {
    background: var(--yellow-light);
    color: var(--black);
}

/* Quote service cards */
.quote-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.quote-service-card {
    padding: 24px 20px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    text-align: center;
}
.quote-service-card__price {
    font-size: 24px;
    font-weight: 800;
    color: var(--red);
    margin: 8px 0;
}
.quote-service-card h3 {
    font-size: 16px;
    font-weight: 700;
}

/* About page */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}
.about-intro__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.value-card {
    background: var(--yellow-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
}
.value-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}
.value-card p {
    font-size: 14px;
    color: var(--gray-700);
}

.promo-banner {
    background: var(--yellow);
    padding: 0;
}
.promo-banner__content h2 { color: var(--black); }

.map-embed {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-300);
    margin-top: 24px;
    line-height: 0;
}
.map-embed iframe {
    width: 100%;
    height: 320px;
    border: 0;
}

/* Footer contact */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-700);
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }

/* Section header centered */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}
.section-header .section-desc { margin-left: auto; margin-right: auto; }

/* Trust badges on hero */
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 20px;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(255,204,0,.25);
    backdrop-filter: blur(4px);
    border-radius: 20px;
    font-size: 13px;
    color: var(--white);
    border: 1px solid rgba(255,204,0,.45);
}

/* Pricing tiers */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.pricing-card {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card--featured {
    border-color: var(--yellow-dark);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}
.pricing-card__badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}
.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-card__price {
    font-size: 32px;
    font-weight: 800;
    color: var(--red);
    margin: 16px 0;
}
.pricing-card ul {
    text-align: left;
    margin: 20px 0;
}
.pricing-card li {
    font-size: 14px;
    color: var(--gray-700);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}
.pricing-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.location-card--primary {
    border-color: var(--yellow-dark);
    box-shadow: var(--shadow-md);
}
.location-card__badge {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 12px;
    margin-bottom: 10px;
}
.sidebar-list code {
    font-size: 12px;
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 3px;
}

@media (max-width: 1024px) {
    .stats-bar__grid, .why-us__grid, .steps-grid, .service-pills, .quote-services, .values-grid, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .about-intro { grid-template-columns: 1fr; }
    .pricing-card--featured { transform: none; }
}
@media (max-width: 768px) {
    .stats-bar__grid, .why-us__grid, .steps-grid, .service-pills, .quote-services, .values-grid, .pricing-grid, .form-steps { grid-template-columns: 1fr; }
    .form-steps { flex-direction: column; }
    .form-step { border-right: none; border-bottom: 1px solid var(--gray-300); }
    .cta-banner__inner { flex-direction: column; text-align: center; }
    .cta-banner__actions { justify-content: center; }
    .stats-bar__item { padding: 20px 16px; }
    .faq-item summary { padding: 14px 16px; font-size: 15px; }
    .service-detail-card__aside { flex-direction: column; align-items: stretch; gap: 12px; }
}
