:root {
    --albs-blue: #0b2f4f;
    --albs-blue-2: #123f66;
    --albs-sky: #0b8ed8;
    --albs-orange: #ff8a00;
    --albs-red: #e11d2e;
    --albs-green: #25d366;
    --albs-dark: #101827;
    --albs-text: #344054;
    --albs-muted: #667085;
    --albs-soft: #f4f8fc;
    --albs-white: #ffffff;
    --albs-border: #e5edf5;
    --albs-shadow: 0 22px 60px rgba(11, 47, 79, .14);
    --albs-radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    text-align: right;
    color: var(--albs-text);
    background: var(--albs-white);
    font-family: Tahoma, Arial, sans-serif;
    line-height: 1.9;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.albs-container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.albs-section {
    padding: 90px 0;
}

.albs-kicker,
.albs-hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    color: var(--albs-blue);
    background: #eaf6ff;
    border: 1px solid #ccecff;
    font-weight: 800;
    font-size: 14px;
}

.albs-section-head {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.albs-section-title {
    margin: 18px 0 14px;
    color: var(--albs-dark);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.35;
}

.albs-section-text {
    margin: 0;
    color: var(--albs-muted);
    font-size: 17px;
}

.albs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--albs-orange), #ffb000);
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(255, 138, 0, .24);
}

.albs-btn-light {
    color: var(--albs-blue);
    background: #fff;
    border: 1px solid var(--albs-border);
    box-shadow: none;
}

/* Header */

.albs-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(229, 237, 245, .9);
}

.albs-header-inner {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.albs-logo img {
    width: 178px;
    max-height: 58px;
    object-fit: contain;
}

.albs-main-nav {
    flex: 1;
}

.albs-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.albs-main-nav a {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    color: var(--albs-blue);
    font-weight: 800;
    font-size: 14px;
    transition: .25s;
}

.albs-main-nav a:hover {
    color: #fff;
    background: var(--albs-blue);
}

.albs-header-actions {
    display: flex;
    gap: 8px;
}

.albs-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 16px;
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.albs-header-btn-quote {
    background: var(--albs-orange);
}

.albs-header-btn-track {
    background: var(--albs-blue);
}

.albs-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--albs-blue);
    padding: 11px;
    cursor: pointer;
}

.albs-menu-toggle span {
    display: block;
    height: 3px;
    margin: 5px 0;
    border-radius: 10px;
    background: #fff;
}

.albs-mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(390px, 88%);
    background: #fff;
    z-index: 1200;
    transform: translateX(110%);
    transition: .3s ease;
    box-shadow: -24px 0 60px rgba(0, 0, 0, .18);
    padding: 18px;
    overflow-y: auto;
}

.albs-mobile-panel.active {
    transform: translateX(0);
}

.albs-mobile-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 20px;
}

.albs-mobile-panel-head img {
    width: 170px;
}

.albs-mobile-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    color: #fff;
    background: var(--albs-red);
    font-size: 30px;
    line-height: 1;
}

.albs-mobile-nav {
    display: grid;
    gap: 10px;
}

.albs-mobile-nav a {
    padding: 13px 16px;
    border-radius: 16px;
    background: var(--albs-soft);
    color: var(--albs-blue);
    font-weight: 900;
}

.albs-mobile-nav .albs-mobile-cta {
    color: #fff;
    background: var(--albs-orange);
}

.albs-mobile-nav .albs-mobile-cta-dark {
    background: var(--albs-blue);
}

/* Hero */

.albs-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}

.albs-hero-media,
.albs-hero-media picture,
.albs-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.albs-hero-media img {
    object-fit: cover;
}

.albs-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 23, 41, .94), rgba(5, 23, 41, .62), rgba(5, 23, 41, .25)),
        linear-gradient(0deg, rgba(11, 47, 79, .32), transparent);
}

.albs-hero .albs-container {
    position: relative;
    z-index: 2;
}

.albs-hero-content {
    max-width: 760px;
}

.albs-hero-kicker {
    color: #fff;
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .22);
}

.albs-hero-title {
    margin: 22px 0;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.18;
    font-weight: 900;
}

.albs-hero-text {
    max-width: 680px;
    margin: 0 0 30px;
    color: rgba(255, 255, 255, .88);
    font-size: 20px;
}

.albs-hero-buttons,
.albs-why-actions,
.albs-countries-actions,
.albs-article-cta-buttons,
.albs-error-actions,
.albs-footer-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.albs-hero-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 999px;
    color: #fff;
    background: var(--albs-orange);
    font-weight: 900;
}

.albs-hero-btn-outline {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .34);
}

.albs-hero-features {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.albs-hero-feature {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
}

.albs-hero-feature strong {
    display: block;
    font-size: 18px;
}

.albs-hero-feature span {
    display: block;
    color: rgba(255, 255, 255, .78);
    font-size: 14px;
}

/* Services */

.albs-services-section,
.albs-faq-section,
.albs-page-section {
    background: var(--albs-soft);
}

.albs-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.albs-service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--albs-radius);
    background: #fff;
    box-shadow: var(--albs-shadow);
    border: 1px solid var(--albs-border);
}

.albs-service-image {
    height: 240px;
    overflow: hidden;
}

.albs-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s;
}

.albs-service-card:hover img {
    transform: scale(1.06);
}

.albs-service-content {
    padding: 24px;
}

.albs-service-content span {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    color: #fff;
    background: var(--albs-blue);
    font-weight: 900;
}

.albs-service-content h3 {
    margin: 16px 0 10px;
    color: var(--albs-dark);
    font-size: 24px;
}

.albs-service-content p {
    margin: 0;
    color: var(--albs-muted);
}

/* Why */

.albs-why-layout,
.albs-countries-layout,
.albs-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.albs-why-image,
.albs-countries-image {
    border-radius: 34px;
    overflow: hidden;
    box-shadow: var(--albs-shadow);
}

.albs-why-image img,
.albs-countries-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
}

.albs-why-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.albs-why-item {
    display: flex;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid var(--albs-border);
    box-shadow: 0 14px 34px rgba(11, 47, 79, .08);
}

.albs-why-item > span {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    color: #fff;
    background: var(--albs-orange);
    font-weight: 900;
}

.albs-why-item h3 {
    margin: 0 0 5px;
    color: var(--albs-dark);
}

.albs-why-item p {
    margin: 0;
    color: var(--albs-muted);
}

/* Stats */

.albs-stats-section {
    background: linear-gradient(135deg, var(--albs-blue), #071f36);
    color: #fff;
}

.albs-stats-section .albs-kicker {
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .22);
}

.albs-stats-section .albs-section-title {
    color: #fff;
}

.albs-stats-section .albs-section-text {
    color: rgba(255, 255, 255, .76);
}

.albs-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.albs-stat-card {
    padding: 30px;
    border-radius: 28px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    text-align: center;
}

.albs-stat-card strong {
    display: block;
    color: var(--albs-orange);
    font-size: 44px;
    line-height: 1;
}

.albs-stat-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .86);
    font-weight: 800;
}

/* Countries */

.albs-country-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.albs-country-tags span {
    display: inline-flex;
    padding: 10px 16px;
    border-radius: 999px;
    color: var(--albs-blue);
    background: #eaf6ff;
    border: 1px solid #d3ecff;
    font-weight: 900;
}

/* FAQ */

.albs-faq-accordion {
    max-width: 920px;
    margin: auto;
    display: grid;
    gap: 14px;
}

.albs-faq-item {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--albs-border);
    box-shadow: 0 12px 28px rgba(11, 47, 79, .08);
}

.albs-faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    text-align: right;
    color: var(--albs-dark);
    font-family: inherit;
    font-size: 18px;
    font-weight: 900;
}

.albs-faq-question strong {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--albs-blue);
    font-size: 24px;
}

.albs-faq-answer {
    display: none;
    padding: 0 24px 22px;
    color: var(--albs-muted);
}

.albs-faq-item.active .albs-faq-answer {
    display: block;
}

.albs-faq-more {
    margin-top: 30px;
    text-align: center;
}

/* Forms */

.albs-form {
    padding: 30px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--albs-border);
    box-shadow: var(--albs-shadow);
}

.albs-form-head {
    margin-bottom: 22px;
}

.albs-form-head span {
    color: var(--albs-orange);
    font-weight: 900;
}

.albs-form-head h3 {
    margin: 6px 0;
    color: var(--albs-dark);
    font-size: 28px;
}

.albs-form-head p {
    margin: 0;
    color: var(--albs-muted);
}

.albs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.albs-field-full {
    grid-column: 1 / -1;
}

.albs-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--albs-blue);
    font-weight: 900;
}

.albs-field input,
.albs-field select,
.albs-field textarea {
    width: 100%;
    min-height: 50px;
    padding: 12px 14px;
    border: 1px solid var(--albs-border);
    border-radius: 16px;
    outline: none;
    color: var(--albs-dark);
    background: #f9fbfd;
    font-family: inherit;
    font-size: 15px;
}

.albs-field textarea {
    resize: vertical;
}

.albs-submit-btn {
    width: 100%;
    min-height: 54px;
    margin-top: 18px;
    border: 0;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--albs-orange), #ffb000);
    font-family: inherit;
    font-weight: 900;
    font-size: 17px;
    cursor: pointer;
}

.albs-submit-btn:disabled {
    opacity: .7;
    cursor: wait;
}

.albs-form-response {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 14px;
    background: var(--albs-soft);
    color: var(--albs-blue);
    display: none;
}

.albs-form-response:not(:empty) {
    display: block;
}

.albs-form-response.success {
    background: #e9fff2;
    color: #047041;
}

.albs-form-response.error {
    background: #fff1f1;
    color: #b42318;
}

/* Pages & Archives */

.albs-page-hero,
.albs-single-hero {
    padding: 90px 0;
    background:
        linear-gradient(135deg, rgba(11, 47, 79, .95), rgba(11, 142, 216, .78)),
        url("images/albasmahshipping-global-network.webp") center/cover;
    color: #fff;
}

.albs-page-hero h1,
.albs-single-hero h1 {
    margin: 18px 0 0;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.35;
}

.albs-page-hero p,
.albs-single-hero p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
}

.albs-page-content,
.albs-single-content {
    max-width: 930px;
    margin: auto;
    padding: 34px;
    border-radius: 28px;
    background: #fff;
    border: 1px solid var(--albs-border);
    box-shadow: var(--albs-shadow);
}

.albs-single-content h2,
.albs-single-content h3,
.albs-single-content h4,
.albs-single-content h5,
.albs-single-content h6,
.albs-page-content h2,
.albs-page-content h3,
.albs-page-content h4,
.albs-page-content h5,
.albs-page-content h6 {
    display: table;
    width: auto;
    max-width: 100%;
    margin: 34px 0 16px;
    padding: 10px 18px;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(135deg, var(--albs-blue), var(--albs-sky));
    line-height: 1.5;
}

.albs-single-content p,
.albs-page-content p {
    color: var(--albs-text);
    font-size: 17px;
}

.albs-single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.albs-single-meta span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .22);
}

/* TOC */

.albs-toc-box {
    max-width: 930px;
    margin: 28px auto;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #f7fbff, #eef7ff);
    border: 1px solid #d8ecff;
    box-shadow: 0 14px 34px rgba(11, 47, 79, .08);
}

.albs-toc-head {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.albs-toc-head span {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--albs-blue);
    font-weight: 900;
    font-size: 18px;
}

.albs-toc-head strong {
    display: inline-flex;
    padding: 9px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--albs-orange);
}

.albs-toc-list {
    margin-top: 16px;
}

.albs-toc-link {
    display: table;
    width: auto;
    max-width: 100%;
    margin: 9px 0;
    padding: 9px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--albs-border);
    color: var(--albs-blue);
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(11, 47, 79, .06);
}

.albs-toc-h3 {
    margin-right: 18px;
}

.albs-toc-h4,
.albs-toc-h5,
.albs-toc-h6 {
    margin-right: 34px;
    font-size: 14px;
}

/* Posts */

.albs-posts-grid,
.albs-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.albs-post-card,
.albs-related-card {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--albs-border);
    box-shadow: 0 16px 36px rgba(11, 47, 79, .08);
}

.albs-post-card-image,
.albs-related-image {
    height: 220px;
    overflow: hidden;
    display: block;
}

.albs-post-card-image img,
.albs-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.albs-post-card-content,
.albs-related-content {
    padding: 22px;
}

.albs-post-card-date,
.albs-related-date {
    color: var(--albs-orange);
    font-weight: 900;
    font-size: 13px;
}

.albs-post-card h2,
.albs-related-card h3 {
    margin: 9px 0;
    color: var(--albs-dark);
    line-height: 1.5;
}

.albs-post-card p,
.albs-related-card p {
    color: var(--albs-muted);
}

.albs-read-more {
    display: inline-flex;
    padding: 9px 16px;
    border-radius: 999px;
    color: #fff;
    background: var(--albs-blue);
    font-weight: 900;
}

.albs-pagination {
    margin-top: 36px;
    text-align: center;
}

.albs-pagination .nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.albs-pagination a,
.albs-pagination span {
    min-width: 42px;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--albs-border);
    color: var(--albs-blue);
    font-weight: 900;
}

.albs-pagination .current {
    color: #fff;
    background: var(--albs-orange);
}

/* Article CTA */

.albs-article-cta,
.albs-related-posts {
    max-width: 930px;
    margin: 36px auto 0;
}

.albs-article-cta {
    padding: 34px;
    border-radius: 28px;
    color: #fff;
    background: linear-gradient(135deg, var(--albs-blue), var(--albs-sky));
    box-shadow: var(--albs-shadow);
}

.albs-article-cta span {
    color: #ffe0b2;
    font-weight: 900;
}

.albs-article-cta h2 {
    margin: 8px 0;
    font-size: 32px;
}

.albs-article-cta p {
    max-width: 760px;
    color: rgba(255, 255, 255, .84);
}

.albs-article-cta-buttons a {
    padding: 11px 22px;
    border-radius: 999px;
    background: var(--albs-orange);
    color: #fff;
    font-weight: 900;
}

.albs-article-cta-buttons a:last-child {
    background: var(--albs-green);
}

.albs-related-head {
    margin-bottom: 20px;
}

.albs-related-head span {
    color: var(--albs-orange);
    font-weight: 900;
}

.albs-related-head h2 {
    margin: 6px 0 0;
    color: var(--albs-dark);
}

/* Footer */

.albs-footer {
    position: relative;
    overflow: hidden;
    padding: 80px 0 24px;
    color: #fff;
    background: #061d33;
}

.albs-footer-bg {
    position: absolute;
    inset: 0;
    opacity: .22;
}

.albs-footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.albs-footer .albs-container {
    position: relative;
    z-index: 2;
}

.albs-footer-grid {
    display: grid;
    grid-template-columns: 1.25fr .8fr .9fr 1fr;
    gap: 34px;
}

.albs-footer-logo {
    width: 190px;
    margin-bottom: 18px;
}

.albs-footer p {
    color: rgba(255, 255, 255, .76);
}

.albs-footer-contact {
    display: grid;
    gap: 8px;
}

.albs-footer-contact a,
.albs-footer-links a {
    color: rgba(255, 255, 255, .84);
}

.albs-footer-links h3,
.albs-footer-cta h3 {
    margin: 0 0 16px;
    color: #fff;
}

.albs-footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 9px;
}

.albs-footer-kicker {
    color: var(--albs-orange);
    font-weight: 900;
}

.albs-footer-btn {
    display: inline-flex;
    padding: 10px 18px;
    border-radius: 999px;
    color: #fff;
    background: var(--albs-green);
    font-weight: 900;
}

.albs-footer-btn-dark {
    background: var(--albs-orange);
}

.albs-footer-bottom {
    margin-top: 44px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    text-align: center;
}

/* Floating */

.albs-floating-buttons {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 1300;
    display: grid;
    gap: 10px;
}

.albs-floating-buttons a,
.albs-scroll-top {
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 18px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 28px rgba(0, 0, 0, .2);
    cursor: pointer;
}

.albs-floating-buttons svg {
    width: 27px;
    height: 27px;
}

.albs-float-whatsapp {
    background: var(--albs-green);
}

.albs-float-call {
    background: var(--albs-red);
}

.albs-scroll-top {
    display: none;
    background: var(--albs-blue);
    font-size: 24px;
    font-weight: 900;
}

.albs-scroll-top.active {
    display: inline-flex;
}

/* 404 */

.albs-error-page {
    min-height: 68vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: var(--albs-soft);
}

.albs-error-box,
.albs-empty-box {
    max-width: 720px;
    margin: auto;
    padding: 42px;
    border-radius: 30px;
    background: #fff;
    text-align: center;
    box-shadow: var(--albs-shadow);
    border: 1px solid var(--albs-border);
}

.albs-error-code {
    font-size: 82px;
    color: var(--albs-orange);
    font-weight: 900;
    line-height: 1;
}

.albs-error-box h1,
.albs-empty-box h1,
.albs-empty-box h2 {
    color: var(--albs-dark);
}

/* Responsive */

@media (max-width: 1100px) {
    .albs-main-nav,
    .albs-header-actions {
        display: none;
    }

    .albs-menu-toggle {
        display: block;
        margin-right: auto;
    }

    .albs-header-inner {
        justify-content: space-between;
    }
}

@media (max-width: 900px) {
    .albs-section {
        padding: 64px 0;
    }

    .albs-hero {
        min-height: 680px;
    }

    .albs-hero-features,
    .albs-services-grid,
    .albs-posts-grid,
    .albs-related-grid,
    .albs-footer-grid {
        grid-template-columns: 1fr;
    }

    .albs-why-layout,
    .albs-countries-layout,
    .albs-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .albs-countries-image {
        order: -1;
    }

    .albs-why-image img,
    .albs-countries-image img {
        min-height: 340px;
    }

    .albs-form-grid,
    .albs-stats-grid {
        grid-template-columns: 1fr;
    }

    .albs-footer {
        padding-bottom: 88px;
    }
}

@media (max-width: 600px) {
    .albs-container {
        width: min(100% - 22px, 1180px);
    }

    .albs-header-inner {
        min-height: 74px;
    }

    .albs-logo img {
        width: 58px;
    }

    .albs-hero {
        min-height: 720px;
    }

    .albs-hero-title {
        font-size: 40px;
    }

    .albs-hero-text {
        font-size: 17px;
    }

    .albs-hero-buttons,
    .albs-why-actions,
    .albs-countries-actions,
    .albs-article-cta-buttons,
    .albs-error-actions {
        display: grid;
    }

    .albs-hero-btn,
    .albs-btn,
    .albs-article-cta-buttons a {
        width: 100%;
    }

    .albs-service-image,
    .albs-post-card-image,
    .albs-related-image {
        height: 210px;
    }

    .albs-page-content,
    .albs-single-content,
    .albs-form,
    .albs-article-cta {
        padding: 22px;
        border-radius: 22px;
    }

    .albs-single-content h2,
    .albs-single-content h3,
    .albs-single-content h4,
    .albs-single-content h5,
    .albs-single-content h6,
    .albs-page-content h2,
    .albs-page-content h3,
    .albs-page-content h4,
    .albs-page-content h5,
    .albs-page-content h6 {
        font-size: 20px;
        padding: 9px 14px;
    }

    .albs-toc-head {
        align-items: stretch;
    }

    .albs-toc-head span,
    .albs-toc-head strong {
        font-size: 15px;
    }
}

@media (max-width: 600px) {

    .albs-header {
        background: #ffffff;
    }

    .albs-header-inner {
        min-height: 86px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .albs-logo img {
        width: 150px;
        max-height: 62px;
        object-fit: contain;
    }

    .albs-menu-toggle {
        width: 58px;
        height: 58px;
        border-radius: 18px;
        margin-right: 0;
        order: 1;
    }

    .albs-logo {
        order: 2;
        margin-right: auto;
        margin-left: 0;
    }

    .albs-hero {
        min-height: auto;
        display: block;
        background: #071f36;
        color: #ffffff;
    }

    .albs-hero-media,
    .albs-hero-media picture,
    .albs-hero-media img {
        position: relative;
        inset: auto;
        width: 100%;
        height: auto;
    }

    .albs-hero-media img {
        height: auto;
        min-height: unset;
        object-fit: contain;
    }

    .albs-hero-overlay {
        display: none;
    }

    .albs-hero .albs-container {
        position: relative;
        z-index: 2;
        padding: 28px 0 34px;
    }

    .albs-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .albs-hero-title {
        font-size: 36px;
        line-height: 1.35;
        margin: 18px 0 14px;
    }

    .albs-hero-text {
        font-size: 18px;
        line-height: 2;
        margin: 0 0 24px;
    }

    .albs-hero-features {
        grid-template-columns: 1fr;
        margin-top: 24px;
    }

    .albs-hero-feature {
        text-align: center;
        background: rgba(255,255,255,.10);
    }

    .albs-floating-buttons {
        left: 12px;
        bottom: 18px;
    }
}

@media (max-width: 600px) {
    .albs-logo img {
        width: 165px;
        max-height: 64px;
        object-fit: contain;
    }
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

.albs-site-main,
.albs-header,
.albs-footer {
    max-width: 100%;
    overflow-x: hidden;
}

/* إصلاح قائمة الجوال نهائيًا */
@media (max-width: 1100px) {

    .albs-mobile-panel {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        width: min(390px, 88vw) !important;
        max-width: 88vw !important;
        height: 100vh !important;
        transform: translateX(110%) !important;
        transition: transform .3s ease !important;
        z-index: 99999 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .albs-mobile-panel.active {
        transform: translateX(0) !important;
    }

    body.albs-menu-open {
        overflow: hidden !important;
    }
}

/* منع أي عنصر داخل المقال من توسيع الصفحة */
@media (max-width: 600px) {

    .albs-single-section,
    .albs-single-content,
    .albs-page-content,
    .albs-container,
    .albs-toc-box,
    .albs-article-cta,
    .albs-related-posts {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .albs-single-content img,
    .albs-single-content table,
    .albs-page-content img,
    .albs-page-content table {
        max-width: 100% !important;
    }

    .albs-single-content table,
    .albs-page-content table {
        display: block;
        overflow-x: auto;
    }
}