:root {
    --navy: #071c3c;
    --navy-2: #0b2a57;
    --orange: #ff7a00;
    --orange-2: #ff9a2f;
    --white: #ffffff;
    --soft-bg: #f5f7fb;
    --soft-blue: #eef4ff;
    --text: #1e293b;
    --muted: #64748b;
    --border: #e5e7eb;
    --shadow: 0 18px 45px rgba(7, 28, 60, 0.12);
    --radius: 18px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    direction: rtl;
    text-align: right;
    font-family: Tahoma, Arial, sans-serif;
    background: var(--white);
    color: var(--text);
    line-height: 1.9;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

.albs-container {
    width: min(var(--container), calc(100% - 32px));
    margin: 0 auto;
}

.albs-section {
    padding: 80px 0;
}

.albs-section-soft {
    background: var(--soft-bg);
}

.albs-section-dark {
    background: var(--navy);
    color: var(--white);
}

.albs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 12px;
}

.albs-kicker::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 99px;
    background: var(--orange);
}

.albs-title {
    margin: 0 0 18px;
    color: var(--navy);
    font-size: clamp(28px, 4vw, 46px);
    line-height: 1.35;
    font-weight: 900;
}

.albs-section-dark .albs-title {
    color: var(--white);
}

.albs-text {
    margin: 0 0 24px;
    color: var(--muted);
    font-size: 17px;
}

.albs-section-dark .albs-text {
    color: rgba(255, 255, 255, 0.78);
}

.albs-btns {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.albs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    cursor: pointer;
    font-weight: 800;
    transition: 0.25s ease;
}

.albs-btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    color: var(--white);
    box-shadow: 0 14px 30px rgba(255, 122, 0, 0.28);
}

.albs-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(255, 122, 0, 0.35);
}

.albs-btn-secondary {
    background: var(--white);
    color: var(--navy);
    border-color: var(--border);
}

.albs-btn-secondary:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.albs-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
}

.albs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

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

.albs-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 10px 28px rgba(7, 28, 60, 0.06);
    transition: 0.25s ease;
}

.albs-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 122, 0, 0.35);
}

.albs-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--soft-blue);
    color: var(--orange);
    font-size: 24px;
    margin-bottom: 16px;
}

.albs-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 21px;
}

.albs-card p {
    margin: 0;
    color: var(--muted);
}

/* Header */

.albs-topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    padding: 8px 0;
}

.albs-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.albs-topbar-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.albs-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.8);
    transition: 0.25s ease;
}

.albs-header.is-sticky {
    box-shadow: 0 12px 28px rgba(7, 28, 60, 0.09);
}

.albs-header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.albs-logo img {
    max-height: 58px;
    width: auto;
}

.albs-main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.albs-main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}

.albs-main-nav a {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
    transition: 0.2s ease;
}

.albs-main-nav a:hover,
.albs-main-nav .current-menu-item > a {
    background: var(--soft-blue);
    color: var(--orange);
}

.albs-header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.albs-mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--navy);
    color: var(--white);
    cursor: pointer;
    font-size: 22px;
}

.albs-mobile-panel {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(420px, 92vw);
    background: var(--white);
    z-index: 1001;
    transform: translateX(110%);
    transition: 0.3s ease;
    box-shadow: -20px 0 45px rgba(7, 28, 60, 0.2);
    padding: 22px;
    overflow-y: auto;
}

.albs-mobile-panel.is-open {
    transform: translateX(0);
}

.albs-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 28, 60, 0.55);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
}

.albs-mobile-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.albs-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.albs-mobile-close {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 0;
    background: var(--orange);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

.albs-mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.albs-mobile-menu a {
    display: block;
    padding: 14px 16px;
    margin-bottom: 9px;
    border: 1px solid var(--border);
    border-radius: 14px;
    color: var(--navy);
    font-weight: 800;
    background: var(--soft-bg);
}

/* Hero */

.albs-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background: var(--navy);
}

.albs-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.albs-hero-bg picture,
.albs-hero-bg img {
    width: 100%;
    height: 100%;
}

.albs-hero-bg img {
    object-fit: cover;
}

.albs-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 28, 60, 0.96), rgba(7, 28, 60, 0.68), rgba(7, 28, 60, 0.2));
    z-index: 1;
}

.albs-hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 90px 0;
}

.albs-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(34px, 6vw, 66px);
    line-height: 1.25;
    font-weight: 900;
}

.albs-hero p {
    margin: 0 0 28px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.86);
}

.albs-hero-stats {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.albs-stat {
    min-width: 150px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
}

.albs-stat strong {
    display: block;
    font-size: 24px;
    color: var(--white);
}

.albs-stat span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

/* Forms */

.albs-form-wrap {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 30px;
}

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

.albs-form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.albs-form-field.full {
    grid-column: 1 / -1;
}

.albs-form-field label {
    color: var(--navy);
    font-weight: 800;
    font-size: 14px;
}

.albs-form-field input,
.albs-form-field select,
.albs-form-field textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 13px 14px;
    background: var(--soft-bg);
    color: var(--text);
    outline: none;
    transition: 0.2s ease;
}

.albs-form-field textarea {
    min-height: 130px;
    resize: vertical;
}

.albs-form-field input:focus,
.albs-form-field select:focus,
.albs-form-field textarea:focus {
    border-color: var(--orange);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.1);
}

.albs-form-note {
    margin-top: 14px;
    color: var(--muted);
    font-size: 14px;
}

.albs-form-alert {
    display: none;
    margin-top: 16px;
    padding: 14px;
    border-radius: 14px;
    background: var(--soft-blue);
    color: var(--navy);
    font-weight: 700;
}

/* Footer */

.albs-footer {
    position: relative;
    color: var(--white);
    background: var(--navy);
    overflow: hidden;
}

.albs-footer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.albs-footer-bg picture,
.albs-footer-bg img {
    width: 100%;
    height: 100%;
}

.albs-footer-bg img {
    object-fit: cover;
    opacity: 0.28;
}

.albs-footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 28, 60, 0.93), rgba(7, 28, 60, 0.98));
    z-index: 1;
}

.albs-footer-inner {
    position: relative;
    z-index: 2;
    padding: 70px 0 28px;
}

.albs-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.albs-footer-logo {
    max-height: 70px;
    width: auto;
    margin-bottom: 18px;
}

.albs-footer h3 {
    margin: 0 0 18px;
    font-size: 19px;
    color: var(--white);
}

.albs-footer p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 16px;
}

.albs-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.albs-footer li {
    margin-bottom: 10px;
}

.albs-footer a {
    color: rgba(255, 255, 255, 0.8);
    transition: 0.2s ease;
}

.albs-footer a:hover {
    color: var(--orange);
}

.albs-footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding: 18px 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

/* Floating Buttons */

.albs-floating {
    position: fixed;
    right: 18px;
    bottom: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.albs-float-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    border: 0;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(7, 28, 60, 0.22);
    transition: 0.25s ease;
    font-size: 22px;
}

.albs-float-btn:hover {
    transform: translateY(-3px);
}

.albs-float-call {
    background: var(--navy);
}

.albs-float-whatsapp {
    background: #25d366;
}

.albs-back-top {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%) translateY(20px);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 0;
    background: var(--orange);
    color: var(--white);
    cursor: pointer;
    z-index: 998;
    box-shadow: 0 12px 28px rgba(255, 122, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    font-size: 20px;
}

.albs-back-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Blog */

.albs-main {
    padding: 70px 0;
    background: var(--soft-bg);
}

.albs-article {
    background: var(--white);
    border-radius: 24px;
    padding: clamp(22px, 4vw, 44px);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.albs-article h1 {
    color: var(--navy);
    font-size: clamp(30px, 5vw, 50px);
    line-height: 1.35;
    margin: 0 0 18px;
    font-weight: 900;
}

.albs-article-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    margin-bottom: 26px;
}

.albs-article-content > h2,
.albs-article-content > h3,
.albs-article-content > h4,
.albs-article-content > h5,
.albs-article-content > h6 {
    color: var(--navy);
    background: linear-gradient(135deg, #ffffff, #f6f9ff);
    border: 1px solid var(--border);
    border-right: 6px solid var(--orange);
    border-radius: 18px;
    padding: 16px 18px;
    margin: 34px 0 18px;
    box-shadow: 0 10px 24px rgba(7, 28, 60, 0.06);
    font-weight: 900;
}

.albs-article-content p {
    margin: 0 0 18px;
    color: var(--text);
    font-size: 17px;
}

.albs-article-content ul,
.albs-article-content ol {
    background: var(--soft-bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 22px 34px 22px 22px;
    margin: 22px 0;
}

.albs-article-content li {
    margin-bottom: 8px;
}

.albs-article-content table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    margin: 24px 0;
    background: var(--white);
}

.albs-article-content th,
.albs-article-content td {
    border: 1px solid var(--border);
    padding: 14px;
}

.albs-article-content th {
    background: var(--navy);
    color: var(--white);
}

/* Table of contents */

.albs-toc {
    margin: 28px 0;
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    box-shadow: var(--shadow);
}

.albs-toc-title {
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
}

.albs-toc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
}

.albs-toc-list li {
    margin: 0 !important;
}

.albs-toc-list a {
    display: flex;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 14px;
    font-weight: 800;
}

.albs-toc-list a:hover {
    background: var(--orange);
}

/* Related Posts */

.albs-related {
    margin-top: 36px;
    padding: 28px;
    border-radius: 24px;
    background: var(--soft-bg);
    border: 1px solid var(--border);
}

.albs-related-title {
    margin: 0 0 20px;
    color: var(--navy);
    font-size: 24px;
    font-weight: 900;
}

.albs-post-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    transition: 0.25s ease;
}

.albs-post-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.albs-post-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 19px;
}

.albs-post-card p {
    margin: 0;
    color: var(--muted);
}

/* CTA Boxes */

.albs-cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--navy);
    color: var(--white);
    padding: 42px;
    box-shadow: var(--shadow);
}

.albs-cta-box h2,
.albs-cta-box h3 {
    color: var(--white);
    margin-top: 0;
}

.albs-cta-box p {
    color: rgba(255, 255, 255, 0.78);
}

/* Archive */

.albs-archive-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
    padding: 70px 0;
}

.albs-archive-header h1 {
    margin: 0;
    font-size: clamp(30px, 5vw, 48px);
}

.albs-archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

/* Pagination */

.albs-pagination {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.albs-pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding: 0 14px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 4px;
    font-weight: 800;
}

.albs-pagination .current,
.albs-pagination .page-numbers:hover {
    background: var(--orange);
    color: var(--white);
    border-color: var(--orange);
}

/* Utility */

.albs-hide-desktop {
    display: none;
}

.albs-image-card {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.albs-image-card img {
    width: 100%;
}

/* Responsive */

@media (max-width: 1024px) {
    .albs-main-nav,
    .albs-header-actions .albs-btn {
        display: none;
    }

    .albs-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

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

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

@media (max-width: 768px) {
    .albs-topbar {
        display: none;
    }

    .albs-header-inner {
        min-height: 72px;
    }

    .albs-logo img {
        max-height: 50px;
    }

    .albs-section {
        padding: 55px 0;
    }

    .albs-grid-2,
    .albs-grid-3,
    .albs-grid-4,
    .albs-archive-grid,
    .albs-footer-grid,
    .albs-form-grid {
        grid-template-columns: 1fr;
    }

    .albs-hero {
        min-height: 620px;
    }

    .albs-hero::after {
        background: linear-gradient(180deg, rgba(7, 28, 60, 0.88), rgba(7, 28, 60, 0.72));
    }

    .albs-hero-content {
        padding: 70px 0;
    }

    .albs-hero p {
        font-size: 17px;
    }

    .albs-btns {
        flex-direction: column;
        align-items: stretch;
    }

    .albs-btn {
        width: 100%;
    }

    .albs-form-wrap {
        padding: 22px;
    }

    .albs-article {
        border-radius: 18px;
    }

    .albs-floating {
        right: 12px;
        bottom: 18px;
    }

    .albs-float-btn {
        width: 50px;
        height: 50px;
    }

    .albs-hide-mobile {
        display: none;
    }

    .albs-hide-desktop {
        display: block;
    }
}

@media (max-width: 480px) {
    .albs-container {
        width: min(100% - 22px, var(--container));
    }

    .albs-card,
    .albs-cta-box,
    .albs-related {
        padding: 20px;
        border-radius: 18px;
    }

    .albs-toc {
        padding: 18px;
    }

    .albs-toc-list a {
        font-size: 13px;
    }
}

/* Quote and tracking pages */
.albs-quote-hero,
.albs-tracking-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 0, 0.22), transparent 34%),
        linear-gradient(135deg, var(--navy), var(--navy-2));
    color: var(--white);
}

.albs-quote-hero::after,
.albs-tracking-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 28, 60, 0.18), rgba(7, 28, 60, 0.78));
    pointer-events: none;
}

.albs-quote-hero .albs-container,
.albs-tracking-hero .albs-container {
    position: relative;
    z-index: 1;
}

.albs-quote-hero-content,
.albs-tracking-hero .albs-container {
    max-width: 900px;
}

.albs-quote-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.albs-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--white);
}

.albs-feature-item span {
    font-size: 22px;
}

.albs-quote-wrapper {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
    gap: 30px;
    align-items: start;
}

.albs-quote-content,
.albs-quote-form-box {
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    padding: 30px;
}

.albs-quote-form-box {
    position: sticky;
    top: 110px;
}

.albs-quote-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.albs-info-card {
    padding: 20px;
    border-radius: 20px;
    background: var(--soft-bg);
    border: 1px solid var(--border);
}

.albs-info-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(255, 122, 0, .12);
    font-size: 22px;
    margin-bottom: 12px;
}

.albs-info-card h3 {
    margin: 0 0 8px;
    color: var(--navy);
    font-size: 18px;
    font-weight: 900;
}

.albs-info-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 14px;
}

.albs-header-track {
    white-space: nowrap;
}

@media (max-width: 992px) {
    .albs-quote-features,
    .albs-quote-wrapper,
    .albs-quote-info-grid {
        grid-template-columns: 1fr;
    }

    .albs-quote-form-box {
        position: static;
    }

    .albs-header-track {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .albs-quote-hero,
    .albs-tracking-hero {
        padding: 62px 0;
    }

    .albs-quote-content,
    .albs-quote-form-box {
        padding: 22px;
        border-radius: 22px;
    }
}
