/**
 * CargoCore Theme - Additional Pages Styles
 * Tracking, Quote, FAQs, Careers, Sitemap, Feedback
 *
 * @package CargoCore
 */

/* ==========================================================================
   Common Hero Styles
   ========================================================================== */

.tracking-hero,
.quote-hero,
.faqs-hero,
.sitemap-hero,
.feedback-hero {
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    color: #fff;
    padding: 60px 0 80px;
}

.tracking-hero__breadcrumb,
.quote-hero__breadcrumb,
.faqs-hero__breadcrumb,
.sitemap-hero__breadcrumb,
.feedback-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.tracking-hero__breadcrumb a,
.quote-hero__breadcrumb a,
.faqs-hero__breadcrumb a,
.sitemap-hero__breadcrumb a,
.feedback-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.tracking-hero__breadcrumb a:hover,
.quote-hero__breadcrumb a:hover,
.faqs-hero__breadcrumb a:hover,
.sitemap-hero__breadcrumb a:hover,
.feedback-hero__breadcrumb a:hover {
    color: #fff;
}

.tracking-hero__breadcrumb .separator,
.quote-hero__breadcrumb .separator,
.faqs-hero__breadcrumb .separator,
.sitemap-hero__breadcrumb .separator,
.feedback-hero__breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.tracking-hero__breadcrumb .current,
.quote-hero__breadcrumb .current,
.faqs-hero__breadcrumb .current,
.sitemap-hero__breadcrumb .current,
.feedback-hero__breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.tracking-hero__title,
.quote-hero__title,
.faqs-hero__title,
.sitemap-hero__title,
.feedback-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
}

.tracking-hero__description,
.quote-hero__description,
.faqs-hero__description,
.sitemap-hero__description,
.feedback-hero__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
}

/* ==========================================================================
   TRACKING PAGE - Simple Clean Design
   ========================================================================== */

.tracking-page {
    background: #f8f9fa;
}

/* Tracking Hero */
.tracking-hero {
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.tracking-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 14px;
}

.tracking-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.tracking-hero__breadcrumb a:hover {
    color: #fff;
}

.tracking-hero__breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.tracking-hero__breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.tracking-hero__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tracking-hero__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto;
}

/* Tracking Form Section */
.tracking-form-section {
    padding: 60px 0;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.tracking-card {
    max-width: 1150px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* WP Cargo Results - wider layout for detailed shipment info */
.tracking-card .wpcargo-result,
.tracking-card .wpcargo-track-results {
    width: 100%;
}

.tracking-card__form {
    margin-bottom: 16px;
}

.tracking-card__hint {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin: 0;
}

.tracking-card__notice {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #fff3e0;
    border-radius: 8px;
    margin-top: 20px;
    color: #e65100;
}

.tracking-card__notice p {
    margin: 0;
    font-size: 14px;
}

/* Custom Tracking Form */
.tracking-form__input-group {
    margin-bottom: 0;
}

.tracking-form__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text, #1a1a1a);
}

.tracking-form__input-wrap {
    display: flex;
    gap: 12px;
}

.tracking-form__input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.tracking-form__input:focus {
    outline: none;
    border-color: var(--color-primary, #0077B6);
}

.tracking-form__btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: var(--color-primary, #0077B6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.tracking-form__btn:hover {
    background: var(--color-primary-dark, #005a8c);
}

/* WP Cargo Form Styling in Card */
.tracking-card__form form {
    display: flex;
    gap: 12px;
}

.tracking-card__form input[type="text"] {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.tracking-card__form input[type="text"]:focus {
    outline: none;
    border-color: var(--color-primary, #0077B6);
}

.tracking-card__form input[type="submit"],
.tracking-card__form button[type="submit"] {
    padding: 16px 28px;
    background: var(--color-primary, #0077B6);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tracking-card__form input[type="submit"]:hover,
.tracking-card__form button[type="submit"]:hover {
    background: var(--color-primary-dark, #005a8c);
}

/* Tracking Info Section */
.tracking-info {
    padding: 60px 0;
    background: #fff;
}

.tracking-info__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.tracking-info__item {
    text-align: center;
    padding: 32px 24px;
}

.tracking-info__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tracking-info__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.tracking-info__text {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Tracking Help Section */
.tracking-help {
    padding: 80px 0;
    background: #f8f9fa;
}

.tracking-help__card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    border-radius: 20px;
    color: #fff;
}

.tracking-help__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.tracking-help__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.tracking-help__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.tracking-help__actions .btn--primary {
    background: #fff;
    color: var(--color-primary, #0077B6);
}

.tracking-help__actions .btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.tracking-help__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.tracking-help__actions .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ==========================================================================
   FAQs PAGE
   ========================================================================== */

.faqs-page {
    background: #f8f9fa;
}

.faqs-hero {
    text-align: center;
}

.faqs-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.faqs-hero__breadcrumb {
    justify-content: center;
}

/* FAQ Search */
.faqs-search {
    padding: 32px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.faqs-search__box {
    max-width: 600px;
    margin: 0 auto;
}

.faqs-search__form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.2s;
}

.faqs-search__form:focus-within {
    border-color: #e0e0e0;
}

.faqs-search__form svg {
    color: #999;
    flex-shrink: 0;
}

.faqs-search__form input {
    flex: 1;
    border: none;
    background: none;
    font-size: 16px;
    padding: 8px 0;
}

.faqs-search__form input:focus {
    outline: none;
}

/* FAQ Categories Navigation */
.faqs-categories {
    padding: 24px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.faqs-categories__nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faqs-category-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 100px;
    color: var(--color-text, #1a1a1a);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s;
}

.faqs-category-btn:hover,
.faqs-category-btn.active {
    background: var(--color-primary, #0077B6);
    color: #fff;
}

.faqs-category-btn svg {
    width: 18px;
    height: 18px;
}

/* FAQ Content */
.faqs-content {
    padding: 60px 0 80px;
}

.faqs-section {
    margin-bottom: 48px;
}

.faqs-section:last-child {
    margin-bottom: 0;
}

.faqs-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--color-text, #1a1a1a);
}

.faqs-section__title svg {
    color: var(--color-primary, #0077B6);
}

.faqs-section__items {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-item {
    border-bottom: 1px solid #eee;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text, #1a1a1a);
    cursor: pointer;
    transition: background 0.2s;
}

.faq-item__question:hover {
    background: #f8f9fa;
}

.faq-item__question span {
    flex: 1;
    padding-right: 16px;
}

.faq-item__icon {
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item--active .faq-item__icon {
    background: var(--color-primary, #0077B6);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item--active .faq-item__answer {
    max-height: 500px;
}

.faq-item__answer p {
    padding: 0 28px 24px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* FAQ CTA */
.faqs-cta {
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    padding: 60px 0;
}

.faqs-cta__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.faqs-cta__content {
    color: #fff;
}

.faqs-cta__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.faqs-cta__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.faqs-cta__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

.faqs-cta__actions .btn--primary {
    background: #fff;
    color: var(--color-primary, #0077B6);
}

.faqs-cta__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ==========================================================================
   SITEMAP PAGE
   ========================================================================== */

.sitemap-page {
    background: #f8f9fa;
}

.sitemap-hero {
    text-align: center;
}

.sitemap-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.sitemap-hero__breadcrumb {
    justify-content: center;
}

/* Search */
.sitemap-search {
    padding: 32px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.sitemap-search__box {
    max-width: 600px;
    margin: 0 auto;
}

.sitemap-search__form {
    display: flex;
    gap: 12px;
}

.sitemap-search__input-wrap {
    flex: 1;
    position: relative;
}

.sitemap-search__icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.sitemap-search__input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.2s;
}

.sitemap-search__input:focus {
    outline: none;
    border-color: var(--color-primary, #0077B6);
}

/* Grid */
.sitemap-content {
    padding: 60px 0;
}

.sitemap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.sitemap-section {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sitemap-section__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f0f0f0;
}

.sitemap-section__icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sitemap-section__title {
    font-size: 18px;
    font-weight: 600;
}

.sitemap-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-section__item {
    margin-bottom: 6px;
}

.sitemap-section__item a {
    display: block;
    padding: 10px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s;
    font-size: 14px;
}

.sitemap-section__item a:hover {
    background: #f0f0f0;
    color: var(--color-primary, #0077B6);
}

.sitemap-section__item--parent a {
    font-weight: 600;
    color: var(--color-text, #1a1a1a);
}

/* Additional Resources */
.sitemap-additional {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.sitemap-additional__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
}

.sitemap-additional__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.sitemap-resource {
    text-align: center;
    padding: 32px 24px;
    background: #f8f9fa;
    border-radius: 12px;
}

.sitemap-resource__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.sitemap-resource__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.sitemap-resource__text {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
}

.sitemap-resource__link {
    color: var(--color-primary, #0077B6);
    font-weight: 600;
    text-decoration: none;
}

.sitemap-resource__link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   FEEDBACK PAGE
   ========================================================================== */

.feedback-page {
    background: #f8f9fa;
}

.feedback-hero {
    text-align: center;
}

.feedback-hero__content {
    max-width: 700px;
    margin: 0 auto;
}

.feedback-hero__breadcrumb {
    justify-content: center;
}

/* Quick Links */
.feedback-quick {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.feedback-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feedback-quick__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
}

.feedback-quick__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.feedback-quick__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.feedback-quick__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feedback-quick__text {
    font-size: 14px;
    color: #666;
}

/* Form Section */
.feedback-form-section {
    padding: 60px 0;
}

.feedback-form-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 900px;
    margin: 0 auto;
}

.feedback-form__header {
    text-align: center;
    margin-bottom: 40px;
}

.feedback-form__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feedback-form__subtitle {
    color: #666;
}

.feedback-form__section {
    margin-bottom: 32px;
}

.feedback-form__section-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.feedback-form__section-title .required {
    color: #dc3545;
}

/* Categories */
.feedback-form__categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.feedback-category {
    cursor: pointer;
}

.feedback-category input {
    display: none;
}

.feedback-category__label {
    display: block;
    padding: 14px 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s;
}

.feedback-category input:checked + .feedback-category__label {
    background: rgba(0, 119, 182, 0.05);
    border-color: var(--color-primary, #0077B6);
    color: var(--color-primary, #0077B6);
}

/* Rating */
.feedback-form__rating-section {
    text-align: center;
}

.feedback-rating {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.feedback-rating__star {
    cursor: pointer;
}

.feedback-rating__star input {
    display: none;
}

.feedback-rating__star svg {
    transition: all 0.2s;
    color: #ddd;
}

.feedback-rating__star:hover svg,
.feedback-rating__star.hover svg {
    color: #ffc107;
    fill: #ffc107;
}

.feedback-rating__star.selected svg {
    color: #ffc107;
    fill: #ffc107;
}

.feedback-rating__hint {
    text-align: center;
    font-size: 13px;
    color: #888;
    margin-top: 8px;
}

/* Form Fields */
.feedback-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.feedback-form__field {
    margin-bottom: 20px;
}

.feedback-form__field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.feedback-form__field label .required {
    color: #dc3545;
}

.feedback-form__field input,
.feedback-form__field select,
.feedback-form__field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.feedback-form__field input:focus,
.feedback-form__field select:focus,
.feedback-form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary, #0077B6);
}

.feedback-form__hint {
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Upload */
.feedback-form__upload {
    position: relative;
}

.feedback-form__upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.feedback-form__upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px;
    border: 2px dashed #e0e0e0;
    border-radius: 12px;
    text-align: center;
    color: #666;
    transition: all 0.2s;
}

.feedback-form__upload:hover .feedback-form__upload-label {
    border-color: var(--color-primary, #0077B6);
    background: rgba(0, 119, 182, 0.02);
}

.feedback-form__upload-label svg {
    color: var(--color-primary, #0077B6);
}

.feedback-form__upload-label small {
    font-size: 12px;
    color: #999;
}

/* Checkbox */
.feedback-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    cursor: pointer;
}

.feedback-form__checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--color-primary, #0077B6);
}

.feedback-form__checkbox span {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.feedback-form__checkbox a {
    color: var(--color-primary, #0077B6);
}

/* Submit */
.feedback-form__submit {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    margin-top: 24px;
}

.feedback-form__submit .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.feedback-form__submit-note {
    font-size: 13px;
    color: #888;
    margin-top: 16px;
}

/* Commitment */
.feedback-commitment {
    padding: 60px 0;
    background: #fff;
}

.feedback-commitment__content {
    max-width: 900px;
    margin: 0 auto;
}

.feedback-commitment__title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

.feedback-commitment__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feedback-commitment__item {
    text-align: center;
    padding: 24px;
}

.feedback-commitment__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.feedback-commitment__item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feedback-commitment__item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ==========================================================================
   CAREERS PAGE
   ========================================================================== */

.careers-page {
    background: #f8f9fa;
}

.careers-hero {
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    color: #fff;
    padding: 80px 0 100px;
    text-align: center;
}

.careers-hero__inner {
    max-width: 800px;
    margin: 0 auto;
}

.careers-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.careers-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.careers-hero__breadcrumb a:hover {
    color: #fff;
}

.careers-hero__breadcrumb .separator {
    color: rgba(255, 255, 255, 0.4);
}

.careers-hero__breadcrumb .current {
    color: rgba(255, 255, 255, 0.9);
}

.careers-hero__title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.careers-hero__description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 40px;
}

.careers-hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.careers-hero__stat {
    text-align: center;
}

.careers-hero__stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.careers-hero__stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Careers Benefits Section */
.careers-benefits {
    padding: 100px 0;
    background: #fff;
}

.careers-benefits__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.careers-benefits__label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary, #0077B6);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.careers-benefits__title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.careers-benefits__text {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

.careers-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.career-benefit-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 36px 28px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.career-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.career-benefit-card__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.career-benefit-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.career-benefit-card__text {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* Job Listings */
.careers-jobs {
    padding: 80px 0;
    background: #f8f9fa;
}

.careers-jobs__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.careers-jobs__title {
    font-size: 32px;
    font-weight: 700;
}

.careers-jobs__filters {
    display: flex;
    gap: 12px;
}

.careers-jobs__filters select {
    min-width: 200px;
    padding: 14px 48px 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 18px center;
    appearance: none;
    cursor: pointer;
    transition: border-color 0.2s;
}

.careers-jobs__filters select:focus {
    outline: none;
    border-color: var(--color-primary, #0077B6);
}

.careers-jobs__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.job-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text, #1a1a1a);
}

.job-card__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.job-card__category,
.job-card__location,
.job-card__type {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.job-card__category svg,
.job-card__location svg,
.job-card__type svg {
    color: var(--color-primary, #0077B6);
}

.job-card__action {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.job-card__posted {
    font-size: 13px;
    color: #888;
}

.job-card__arrow {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s;
}

.job-card:hover .job-card__arrow {
    background: var(--color-primary, #0077B6);
    color: #fff;
}

/* Careers CTA */
.careers-cta {
    padding: 80px 0;
    background: #fff;
}

.careers-cta__card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    border-radius: 24px;
    color: #fff;
}

.careers-cta__icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.careers-cta__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.careers-cta__text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.careers-cta .btn--primary {
    background: #fff;
    color: var(--color-primary, #0077B6);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.careers-cta .btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ==========================================================================
   QUOTE PAGE
   ========================================================================== */

.quote-page {
    background: #f8f9fa;
}

/* Quote Hero */
.quote-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.quote-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.quote-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9) 0%, rgba(4, 33, 62, 0.95) 100%);
}

.quote-hero .container {
    position: relative;
    z-index: 2;
}

.quote-hero__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.quote-hero .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #fff;
}

.quote-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
    color: #fff;
}

.quote-hero__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Quote Form Section */
.quote-form-section {
    padding: 60px 0 80px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
}

.quote-form-main {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* Quote Form Sections */
.quote-form__section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid #eee;
}

.quote-form__section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.quote-form__section-title {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.quote-form__step {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-primary, #0077B6), var(--color-primary-dark, #005a8c));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Service Options */
.quote-form__service-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quote-service-option {
    cursor: pointer;
}

.quote-service-option input {
    display: none;
}

.quote-service-option__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 24px 16px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    text-align: center;
    transition: all 0.2s;
}

.quote-service-option__content svg {
    color: #666;
    transition: color 0.2s;
}

.quote-service-option__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text, #1a1a1a);
}

.quote-service-option__desc {
    font-size: 12px;
    color: #888;
}

.quote-service-option input:checked + .quote-service-option__content {
    background: rgba(0, 119, 182, 0.05);
    border-color: var(--color-primary, #0077B6);
}

.quote-service-option input:checked + .quote-service-option__content svg {
    color: var(--color-primary, #0077B6);
}

.quote-service-option:hover .quote-service-option__content {
    border-color: var(--color-primary, #0077B6);
}

/* Form Fields */
.quote-form__row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.quote-form__row:last-child {
    margin-bottom: 0;
}

.quote-form__row--3 {
    grid-template-columns: repeat(4, 1fr);
}

.quote-form__field {
    display: flex;
    flex-direction: column;
}

.quote-form__field--full {
    grid-column: 1 / -1;
}

.quote-form__field label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--color-text, #1a1a1a);
}

.quote-form__field label span {
    color: #dc3545;
}

.quote-form__field input,
.quote-form__field select,
.quote-form__field textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.quote-form__field input:focus,
.quote-form__field select:focus,
.quote-form__field textarea:focus {
    outline: none;
    border-color: var(--color-primary, #0077B6);
}

.quote-form__field textarea {
    resize: vertical;
    min-height: 100px;
}

.quote-form__input-with-unit {
    display: flex;
    gap: 8px;
}

.quote-form__input-with-unit input {
    flex: 1;
    min-width: 0;
}

.quote-form__input-with-unit select {
    width: 80px;
    padding: 14px 12px;
}

/* Submit */
.quote-form__submit {
    text-align: center;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid #eee;
}

.quote-form__submit .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 16px;
}

.quote-form__disclaimer {
    font-size: 13px;
    color: #888;
    margin-top: 16px;
}

/* Sidebar */
.quote-form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quote-sidebar-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.quote-sidebar-card--primary {
    background: linear-gradient(135deg, var(--color-primary, #0077B6) 0%, var(--color-secondary, #04213e) 100%);
    color: #fff;
}

.quote-sidebar-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.quote-sidebar-card__text {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}

.quote-sidebar-card--primary .quote-sidebar-card__text {
    color: rgba(255, 255, 255, 0.85);
}

.quote-sidebar-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-sidebar-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-sidebar-card__list li:last-child {
    border-bottom: none;
}

.quote-sidebar-card__list svg {
    color: #4ade80;
    flex-shrink: 0;
}

.quote-sidebar-card__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quote-sidebar-card__link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-primary, #0077B6);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.quote-sidebar-card__link:hover {
    color: var(--color-primary-dark, #005a8c);
}

.quote-sidebar-card__link svg {
    color: inherit;
}

.quote-sidebar-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quote-sidebar-stat {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 10px;
}

.quote-sidebar-stat__number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary, #0077B6);
    line-height: 1;
    margin-bottom: 4px;
}

.quote-sidebar-stat__label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (max-width: 1024px) {
    .tracking-info__grid,
    .sitemap-grid,
    .feedback-form__categories,
    .careers-benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .careers-jobs__header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Quote page */
    .quote-form-wrapper {
        grid-template-columns: 1fr;
    }

    .quote-form-sidebar {
        order: -1;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .quote-form__service-options {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-form__row--3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tracking-hero__title,
    .faqs-hero__title,
    .sitemap-hero__title,
    .feedback-hero__title,
    .careers-hero__title,
    .quote-hero__title {
        font-size: 36px;
    }

    .tracking-form__input-wrap {
        flex-direction: column;
    }

    .tracking-form__btn {
        width: 100%;
        justify-content: center;
    }

    .tracking-card {
        padding: 24px;
    }

    .tracking-card__form form {
        flex-direction: column;
    }

    .tracking-card__form input[type="submit"],
    .tracking-card__form button[type="submit"] {
        width: 100%;
    }

    .tracking-info__grid,
    .sitemap-grid,
    .sitemap-additional__grid,
    .feedback-quick__grid,
    .feedback-form__categories,
    .feedback-commitment__grid,
    .feedback-form__row {
        grid-template-columns: 1fr;
    }

    .tracking-help__card {
        padding: 32px 24px;
    }

    .tracking-help__actions {
        flex-direction: column;
        width: 100%;
    }

    .tracking-help__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .faqs-cta__wrapper {
        flex-direction: column;
        text-align: center;
    }

    .faqs-cta__actions {
        flex-direction: column;
        width: 100%;
    }

    .faqs-cta__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .feedback-form-wrapper {
        padding: 24px;
    }

    .faqs-categories__nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .faqs-category-btn {
        white-space: nowrap;
    }

    /* Careers responsive */
    .careers-hero__title {
        font-size: 36px;
    }

    .careers-hero__stats {
        gap: 32px;
    }

    .careers-hero__stat-number {
        font-size: 32px;
    }

    .careers-benefits__grid {
        grid-template-columns: 1fr;
    }

    .careers-cta__card {
        padding: 40px 24px;
    }

    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .job-card__action {
        width: 100%;
        justify-content: space-between;
    }

    /* Quote page responsive */
    .quote-form-sidebar {
        grid-template-columns: 1fr;
    }

    .quote-form-main {
        padding: 24px;
    }

    .quote-form__service-options {
        grid-template-columns: 1fr 1fr;
    }

    .quote-form__row,
    .quote-form__row--3 {
        grid-template-columns: 1fr;
    }

    .quote-sidebar-card {
        padding: 20px;
    }
}

/* ==========================================================================
   LOCATIONS PAGE
   ========================================================================== */

.locations-page {
    background: #f8f9fa;
}

/* Locations Hero */
.locations-hero {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.locations-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.locations-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.locations-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 119, 182, 0.9) 0%, rgba(4, 33, 62, 0.95) 100%);
}

.locations-hero .container {
    position: relative;
    z-index: 2;
}

.locations-hero__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.locations-hero .section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    color: #fff;
}

.locations-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
    color: #fff;
}

.locations-hero__description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Locations Stats */
.locations-stats {
    background: #fff;
    padding: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.locations-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.locations-stat {
    padding: 32px 24px;
    text-align: center;
    border-right: 1px solid #f0f4f8;
}

.locations-stat:last-child {
    border-right: none;
}

.locations-stat__number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.locations-stat__label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Locations Map */
.locations-map {
    padding: 60px 0;
    background: #fff;
}

.locations-map__wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.locations-map__header {
    text-align: center;
    margin-bottom: 32px;
}

.locations-map__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

.locations-map__subtitle {
    font-size: 16px;
    color: var(--color-text-muted);
    margin: 0;
}

.locations-map__container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: #e5e5e5;
}

.locations-map__container iframe {
    display: block;
    width: 100%;
    height: 450px;
}

/* Leaflet Map Styles */
#leaflet-map {
    z-index: 1;
}

.leaflet-popup-content-wrapper {
    border-radius: 8px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.leaflet-popup-content {
    margin: 10px;
}

.leaflet-popup-tip {
    background: #fff;
}

.custom-marker {
    background: transparent;
    border: none;
}

.custom-marker div {
    transition: transform 0.2s ease;
}

.custom-marker:hover div {
    transform: scale(1.2);
}

.locations-map__legend {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.locations-map__legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-text);
}

.locations-map__legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.locations-map__legend-dot--hub {
    background: #0F2D4A;
}

.locations-map__legend-dot--office {
    background: #4CAF50;
}

.locations-map__legend-dot--warehouse {
    background: #FF9800;
}

/* Locations Search */
.locations-search {
    padding: 60px 0 40px;
    background: #f8f9fa;
}

.locations-search__wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.locations-search__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 24px;
}

.locations-search__form {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
}

.locations-search__input-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.locations-search__input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
    width: 20px;
    height: 20px;
}

.locations-search__input-icon svg {
    width: 20px;
    height: 20px;
}

.locations-search__input {
    width: 100%;
    padding: 18px 20px 18px 54px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.locations-search__input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(0, 119, 182, 0.1);
}

.locations-search__input::placeholder {
    color: #999;
}

.locations-search__btn {
    padding: 18px 32px;
    background: var(--color-primary);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
}

.locations-search__btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-1px);
}

.locations-search__filters {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.locations-search__filter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-right: 8px;
}

.locations-filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.2s;
}

.locations-filter-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.locations-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* Locations Grid */
.locations-grid-section {
    padding: 40px 0 80px;
}

.locations-region {
    margin-bottom: 60px;
}

.locations-region:last-child {
    margin-bottom: 0;
}

.locations-region__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--color-primary);
    display: inline-block;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Location Card */
.location-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.location-card__header {
    padding: 24px 24px 16px;
    border-bottom: 1px solid #f0f4f8;
}

.location-card__type {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.location-card__type--hub {
    background: rgba(0, 119, 182, 0.1);
    color: var(--color-primary);
}

.location-card__type--office {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
}

.location-card__type--warehouse {
    background: rgba(255, 152, 0, 0.1);
    color: #FF9800;
}

.location-card__city {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-secondary);
    margin: 0 0 4px;
}

.location-card__country {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
}

.location-card__body {
    padding: 20px 24px 24px;
}

.location-card__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-card__info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.5;
}

.location-card__info-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-primary);
}

.location-card__info-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.location-card__info-item a:hover {
    color: var(--color-primary);
}

/* Locations CTA */
.locations-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    padding: 80px 0;
}

.locations-cta__content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.locations-cta__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.locations-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    line-height: 1.6;
}

.locations-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.locations-cta__actions .btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.locations-cta__actions .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Locations Responsive */
@media (max-width: 1200px) {
    .locations-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .locations-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-stat {
        border-bottom: 1px solid #f0f4f8;
    }

    .locations-stat:nth-child(2) {
        border-right: none;
    }

    .locations-stat:nth-child(3),
    .locations-stat:nth-child(4) {
        border-bottom: none;
    }

    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-map__container iframe {
        height: 350px;
    }

    .locations-map__legend {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .locations-hero__title {
        font-size: 36px;
    }

    .locations-stats__grid {
        grid-template-columns: 1fr;
    }

    .locations-stat {
        border-right: none;
        border-bottom: 1px solid #f0f4f8;
    }

    .locations-stat:last-child {
        border-bottom: none;
    }

    .locations-grid {
        grid-template-columns: 1fr;
    }

    .locations-map {
        padding: 40px 0;
    }

    .locations-map__title {
        font-size: 26px;
    }

    .locations-map__container iframe {
        height: 300px;
    }

    .locations-map__legend {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .locations-search {
        padding: 40px 0 30px;
    }

    .locations-search__title {
        font-size: 20px;
    }

    .locations-search__form {
        flex-direction: column;
    }

    .locations-search__btn {
        width: 100%;
        justify-content: center;
    }

    .locations-search__filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 8px;
    }

    .locations-search__filter-label {
        display: none;
    }

    .locations-filter-btn {
        white-space: nowrap;
    }

    .locations-cta__title {
        font-size: 28px;
    }

    .locations-cta__actions {
        flex-direction: column;
    }

    .locations-cta__actions .btn {
        width: 100%;
    }
}
