:root {
    --za-gold: #c9a227;
    --za-gold-dark: #8b6b18;
    --za-black: #101010;
    --za-black-2: #181818;
    --za-white: #ffffff;
    --za-soft: #f8f5ef;
    --za-text: #333333;
    --za-muted: #777777;
    --za-border: rgba(201, 162, 39, .22);
}

* {
    box-sizing: border-box;
}

body {
    font-family: "Cairo", "Nunito", system-ui, sans-serif;
    color: var(--za-text);
    background: var(--za-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

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

.section-padding {
    padding: 95px 0;
}

.za-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(201, 162, 39, .25);
    border-top-color: var(--za-gold);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

#spinner {
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

#spinner.show {
    opacity: 1;
    visibility: visible;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Topbar */
.topbar {
    background: var(--za-black);
    color: #ddd;
    font-size: 14px;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 22px;
    height: 44px;
}

.topbar-info i {
    color: var(--za-gold);
    margin-inline-end: 6px;
}

.topbar-social {
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: .3s;
}

.topbar-social a:hover {
    background: var(--za-gold);
    border-color: var(--za-gold);
    color: #111;
}

/* Navbar */
.nav-wrap {
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    min-height: 88px;
    background: rgba(16,16,16,.48);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.za-logo {
    height: 72px;
    width: auto;
    object-fit: contain;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: 800;
    padding: 32px 13px;
    position: relative;
    transition: .3s;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--za-gold);
}

.navbar-dark .navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--za-gold);
    transform: scaleX(0);
    transition: .3s;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.za-lang-btn {
    border: 1px solid var(--za-gold);
    color: var(--za-gold);
    border-radius: 50px;
    padding: 8px 22px;
    font-weight: 800;
    margin-inline-start: 16px;
}

.za-lang-btn:hover {
    background: var(--za-gold);
    color: #111;
}

/* Hero */
.za-hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 100vh;
    min-height: 640px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 25% 35%, rgba(201,162,39,.28), transparent 32%),
        linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.52), rgba(0,0,0,.7));
}

.carousel-caption {
    inset: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 110px;
}

.hero-content {
    max-width: 950px;
    margin: auto;
}

.hero-badge {
    display: inline-block;
    color: #111;
    background: linear-gradient(135deg, #f4d66d, var(--za-gold));
    padding: 9px 22px;
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 22px;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(38px, 6vw, 76px);
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 22px;
}

.hero-content p {
    color: rgba(255,255,255,.88);
    font-size: 20px;
    max-width: 760px;
    margin: 0 auto 34px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* Buttons */
.za-btn-primary,
.btn.za-btn-primary {
    background: linear-gradient(135deg, #f4d66d, var(--za-gold-dark));
    color: #111;
    border: 0;
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(201,162,39,.28);
    transition: .3s;
}

.za-btn-primary:hover {
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(201,162,39,.38);
}

.za-btn-outline,
.btn.za-btn-outline {
    color: #fff;
    border: 1px solid rgba(255,255,255,.45);
    border-radius: 50px;
    padding: 14px 34px;
    font-weight: 900;
    transition: .3s;
}

.za-btn-outline:hover {
    background: #fff;
    color: #111;
}

/* Heading */
.section-heading {
    max-width: 720px;
    margin-bottom: 26px;
}

.section-heading span {
    color: var(--za-gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 12px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: var(--za-black);
    line-height: 1.35;
}

.section-heading.light h2 {
    color: #fff;
}

.section-heading.light span {
    color: #f4d66d;
}

/* Stats */
.za-stats-section {
    margin-top: -75px;
    position: relative;
    z-index: 5;
}

.za-stat-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--za-border);
    border-radius: 26px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 22px 55px rgba(0,0,0,.1);
    transition: .35s;
}

.za-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(0,0,0,.16);
}

.za-stat-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--za-gold), var(--za-black));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.za-stat-card h4 {
    font-weight: 900;
    margin-bottom: 10px;
}

.za-stat-card p {
    color: var(--za-muted);
    margin: 0;
    line-height: 1.8;
}

/* About */
.za-image-box {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.za-image-box img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: .5s;
}

.za-image-box:hover img {
    transform: scale(1.06);
}

.za-image-badge {
    position: absolute;
    bottom: 28px;
    inset-inline-start: 28px;
    background: rgba(16,16,16,.88);
    color: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(201,162,39,.55);
}

.za-image-badge i {
    color: var(--za-gold);
    font-size: 28px;
}

.za-lead {
    color: #555;
    line-height: 2;
    font-size: 17px;
}

.za-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.za-check-list div {
    font-weight: 800;
    color: #222;
}

.za-check-list i {
    color: var(--za-gold);
    margin-inline-end: 8px;
}

.za-call-box {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--za-soft);
    border: 1px solid var(--za-border);
    padding: 20px;
    border-radius: 24px;
    width: fit-content;
}

.za-call-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: var(--za-black);
    color: var(--za-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.za-call-box small {
    color: var(--za-muted);
    font-weight: 800;
}

.za-call-box h4 {
    margin: 4px 0 0;
    font-weight: 900;
}

/* Services */
.za-service-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--za-border);
    border-radius: 28px;
    padding: 34px 28px;
    transition: .35s;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    position: relative;
    overflow: hidden;
}

.za-service-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    background: rgba(201,162,39,.12);
    border-radius: 50%;
    top: -80px;
    inset-inline-end: -80px;
}

.za-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0,0,0,.14);
}

.za-service-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--za-gold), var(--za-black));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.za-service-card h4 {
    font-weight: 900;
    margin-bottom: 14px;
}

.za-service-card p {
    color: var(--za-muted);
    line-height: 1.8;
}

.za-service-card a {
    color: var(--za-gold-dark);
    font-weight: 900;
}

/* Products */
.za-product-card {
    height: 100%;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--za-border);
    box-shadow: 0 18px 45px rgba(0,0,0,.07);
    transition: .35s;
}

.za-product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 75px rgba(0,0,0,.15);
}

.za-product-img {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.za-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.za-product-card:hover img {
    transform: scale(1.08);
}

.za-product-img span {
    position: absolute;
    top: 18px;
    inset-inline-start: 18px;
    background: var(--za-gold);
    color: #111;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 900;
}

.za-product-body {
    padding: 26px;
}

.za-product-body h4 {
    font-weight: 900;
    margin-bottom: 12px;
}

.za-product-body p {
    color: var(--za-muted);
    line-height: 1.8;
}

.za-product-body a {
    color: var(--za-gold-dark);
    font-weight: 900;
}

/* Gallery */
.bg-dark-section {
    background:
        radial-gradient(circle at 80% 20%, rgba(201,162,39,.15), transparent 30%),
        var(--za-black);
}

.za-gallery-card {
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 24px 65px rgba(0,0,0,.32);
}

.za-gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.za-gallery-card:hover img {
    transform: scale(1.08);
}

.za-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.86), transparent);
}

.za-gallery-card div {
    position: absolute;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    color: #fff;
}

.za-gallery-card h4 {
    font-weight: 900;
}

.za-gallery-card p {
    color: rgba(255,255,255,.75);
}

.za-gallery-card a {
    color: var(--za-gold);
    font-weight: 900;
}

/* Why */
.za-why-card {
    background: #fff;
    border: 1px solid var(--za-border);
    border-radius: 26px;
    padding: 34px 20px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
    transition: .35s;
}

.za-why-card:hover {
    background: var(--za-black);
    color: #fff;
    transform: translateY(-8px);
}

.za-why-card i {
    color: var(--za-gold);
    font-size: 44px;
    margin-bottom: 18px;
    display: inline-block;
}

.za-why-card h5 {
    font-weight: 900;
}

/* Branches */
.za-branch-card {
    height: 100%;
    background: #fff;
    border-radius: 26px;
    padding: 30px;
    border: 1px solid var(--za-border);
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.za-branch-card i {
    color: var(--za-gold);
    font-size: 40px;
}

.za-branch-card h4 {
    font-weight: 900;
    margin: 16px 0 10px;
}

.za-branch-card p {
    color: var(--za-muted);
}

/* CTA */
.za-cta {
    padding: 80px 0;
}

.za-cta-box {
    background:
        linear-gradient(135deg, rgba(16,16,16,.94), rgba(16,16,16,.86)),
        radial-gradient(circle at 20% 40%, rgba(201,162,39,.45), transparent 35%);
    border-radius: 36px;
    padding: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: #fff;
    border: 1px solid rgba(201,162,39,.35);
}

.za-cta-box span {
    color: var(--za-gold);
    font-weight: 900;
}

.za-cta-box h2 {
    font-weight: 900;
    margin: 10px 0 0;
}

/* Empty */
.za-empty {
    background: #fff;
    border: 1px solid var(--za-border);
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    color: var(--za-muted);
    font-weight: 800;
}

/* Footer */
.za-footer {
    background: var(--za-black);
    color: rgba(255,255,255,.78);
}

.footer-logo {
    height: 82px;
    object-fit: contain;
    margin-bottom: 20px;
}

.footer-brand h4,
.footer-title {
    color: #fff;
    font-weight: 900;
    margin-bottom: 22px;
}

.footer-brand p {
    line-height: 1.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255,255,255,.75);
    transition: .3s;
    font-weight: 700;
}

.footer-links a:hover {
    color: var(--za-gold);
    transform: translateX(-4px);
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--za-gold);
    margin-inline-end: 8px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--za-gold);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}

.footer-social a:hover {
    background: #fff;
    transform: translateY(-4px);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    background: #070707;
    color: rgba(255,255,255,.7);
}

/* Back top */
.back-to-top {
    position: fixed;
    bottom: 28px;
    inset-inline-end: 28px;
    width: 48px;
    height: 48px;
    background: var(--za-gold);
    color: #111;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    font-size: 20px;
}

.back-to-top.show {
    display: flex;
}

/* RTL fixes */
html[dir="rtl"] .carousel-control-prev {
    right: 0;
    left: auto;
}

html[dir="rtl"] .carousel-control-next {
    left: 0;
    right: auto;
}

/* Responsive */
@media (max-width: 991.98px) {
    .nav-wrap {
        position: fixed;
        top: 0;
        background: var(--za-black);
        box-shadow: 0 12px 32px rgba(0,0,0,.25);
    }

    .navbar {
        min-height: 76px;
        background: var(--za-black);
    }

    .za-logo {
        height: 58px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 12px 14px;
        border-radius: 12px;
    }

    .navbar-dark .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar-collapse {
        background: #151515;
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        border: 1px solid rgba(255,255,255,.08);
    }

    .za-lang-btn {
        width: 100%;
        margin: 10px 0 0;
    }

    .hero-img {
        height: 760px;
        min-height: 760px;
    }

    .carousel-caption {
        padding-top: 90px;
    }

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

    .za-stats-section {
        margin-top: 0;
        padding-top: 70px;
    }

    .za-check-list {
        grid-template-columns: 1fr;
    }

    .za-cta-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .section-padding {
        padding: 75px 0;
    }
}

@media (max-width: 575.98px) {
    .hero-img {
        height: 680px;
        min-height: 680px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .za-image-box,
    .za-image-box img {
        min-height: 360px;
    }

    .za-call-box {
        width: 100%;
    }

    .za-cta-box {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .topbar-info {
        flex-direction: column;
    }
}
/* ================= PAGE HERO ================= */

.za-page-hero {
    background:
        linear-gradient(135deg,
        rgba(16,16,16,.96) 0%,
        rgba(24,24,24,.93) 55%,
        rgba(139,107,24,.88) 100%);
    min-height: 320px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 0;
    margin-top: 100PX;

    position: relative;
    overflow: hidden;
}

.za-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(201,162,39,.08);
    top: -180px;
    right: -120px;
}

.za-page-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    bottom: -140px;
    left: -100px;
}

.za-page-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    text-align: center;
    margin: auto;
    color: #fff;
}

.za-page-hero-content span {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: linear-gradient(135deg, #f4d66d, #c9a227);
    color: #111;

    padding: 10px 24px;
    border-radius: 60px;

    font-weight: 900;
    font-size: 14px;

    margin-bottom: 22px;
}

.za-page-hero-content h1 {
    font-size: clamp(34px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
}

.za-page-hero-content p {
    max-width: 760px;
    margin: auto;

    color: rgba(255,255,255,.78);
    line-height: 1.9;
    font-size: 17px;
}

.za-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    margin-bottom: 18px;
    flex-wrap: wrap;
}

.za-breadcrumb a {
    color: #f4d66d;
    font-weight: 800;
}

.za-breadcrumb strong {
    color: #fff;
}

.za-breadcrumb i {
    color: rgba(255,255,255,.55);
    font-size: 13px;
}

/* ================= PAGE CONTENT ================= */

.za-page-content {
    padding-top: 80px;
}

.za-content-text {
    line-height: 2;
    color: #444;
    font-size: 16px;
}

.za-content-text h2,
.za-content-text h3,
.za-content-text h4 {
    font-weight: 900;
    color: #101010;

    margin-top: 28px;
    margin-bottom: 16px;
}

.za-content-text p {
    margin-bottom: 18px;
}

.za-content-text ul {
    padding-inline-start: 24px;
}

.za-content-text li {
    margin-bottom: 12px;
}

.za-content-text strong {
    color: var(--za-gold-dark);
}

/* ================= MOBILE ================= */

@media (max-width: 991px) {

    .za-page-hero {
        margin-top: 95px;
        min-height: 260px;
        padding: 50px 0;
    }

    .za-page-hero-content h1 {
        font-size: 34px;
    }

    .za-page-content {
        padding-top: 55px;
    }
}

@media (max-width: 575px) {

    .za-page-hero {
        margin-top: 82px;
        min-height: 230px;
    }

    .za-page-hero-content h1 {
        font-size: 28px;
    }

    .za-page-hero-content p {
        font-size: 15px;
    }
}
/* =========================
   INNER PAGE DESIGN
========================= */

.za-inner-hero {
    margin-top: 92px;
    min-height: 360px;
    padding: 75px 0;
    background:
        radial-gradient(circle at 18% 25%, rgba(201,162,39,.18), transparent 34%),
        linear-gradient(135deg, #101010 0%, #181818 55%, #8b6b18 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.za-inner-hero::before {
    content: "";
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: rgba(201,162,39,.08);
    top: -190px;
    inset-inline-end: -120px;
}

.za-inner-hero-card {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.za-inner-label {
    display: inline-flex;
    background: linear-gradient(135deg, #f4d66d, #c9a227);
    color: #111;
    padding: 10px 26px;
    border-radius: 60px;
    font-weight: 900;
    margin-bottom: 22px;
}

.za-inner-hero-card h1 {
    font-size: clamp(34px, 5vw, 62px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 18px;
}

.za-inner-hero-card p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255,255,255,.78);
    line-height: 1.9;
    font-size: 17px;
}

.za-inner-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.za-inner-breadcrumb a {
    color: #f4d66d;
    font-weight: 900;
}

.za-inner-breadcrumb strong {
    color: #fff;
}

.za-inner-breadcrumb i {
    color: rgba(255,255,255,.55);
}

.za-inner-page {
    padding: 90px 0;
}

.za-section-title span {
    color: var(--za-gold);
    font-weight: 900;
    display: inline-block;
    margin-bottom: 12px;
}

.za-section-title h2 {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 900;
    color: #101010;
    line-height: 1.35;
    margin-bottom: 24px;
}

.za-inner-lead {
    color: #555;
    line-height: 2;
    font-size: 17px;
    margin-bottom: 22px;
}

.za-inner-content {
    color: #444;
    line-height: 2;
    font-size: 16px;
}

.za-inner-content h2,
.za-inner-content h3,
.za-inner-content h4 {
    color: #101010;
    font-weight: 900;
    margin-top: 28px;
    margin-bottom: 16px;
}

.za-inner-content p {
    margin-bottom: 18px;
}

.za-inner-content ul {
    padding-inline-start: 24px;
}

.za-inner-content li {
    margin-bottom: 12px;
}

.za-inner-content strong {
    color: var(--za-gold-dark);
}

.za-inner-call {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    width: fit-content;
    background: var(--za-soft);
    border: 1px solid var(--za-border);
    padding: 20px;
    border-radius: 24px;
}

.za-inner-call-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #101010;
    color: var(--za-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.za-inner-call small {
    color: var(--za-muted);
    font-weight: 800;
}

.za-inner-call h4 {
    margin: 4px 0 0;
    font-weight: 900;
}

.za-inner-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 520px;
    box-shadow: 0 30px 80px rgba(0,0,0,.16);
}

.za-inner-image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    transition: .5s;
}

.za-inner-image:hover img {
    transform: scale(1.06);
}

.za-inner-image-badge {
    position: absolute;
    bottom: 28px;
    inset-inline-start: 28px;
    background: rgba(16,16,16,.88);
    color: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(201,162,39,.55);
}

.za-inner-image-badge i {
    color: var(--za-gold);
    font-size: 28px;
}

.za-inner-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--za-border);
    border-radius: 28px;
    padding: 34px 28px;
    transition: .35s;
    box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.za-inner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 26px 70px rgba(0,0,0,.14);
}

.za-inner-card-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--za-gold), var(--za-black));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 22px;
}

.za-inner-card h4 {
    font-weight: 900;
    margin-bottom: 14px;
}

.za-inner-card p {
    color: var(--za-muted);
    line-height: 1.8;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .za-inner-hero {
        margin-top: 76px;
        min-height: 280px;
        padding: 55px 0;
    }

    .za-inner-page {
        padding: 65px 0;
    }

    .za-inner-image,
    .za-inner-image img {
        min-height: 390px;
    }
}

@media (max-width: 575px) {
    .za-inner-hero {
        margin-top: 72px;
        min-height: 250px;
        padding: 45px 0;
    }

    .za-inner-hero-card h1 {
        font-size: 28px;
    }

    .za-inner-hero-card p {
        font-size: 15px;
    }

    .za-inner-call {
        width: 100%;
    }

    .za-inner-image,
    .za-inner-image img {
        min-height: 330px;
    }
}

.nav-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    box-shadow: none;
}

.navbar {
    background: rgba(16,16,16,.45) !important;
    backdrop-filter: blur(10px);
    min-height: 92px;
}

.za-page-hero {
    margin-top: 0;
    padding-top: 170px;
    min-height: 420px;
    background: linear-gradient(135deg, #101010 0%, #1b1b1b 55%, #8b6b18 100%);
}
/* =========================
   NAVBAR FIX FOR DARK HERO
========================= */

.nav-wrap{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;

    background: rgba(0,0,0,.45);
    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,.08);
}

/* navbar */
.navbar{
    background: transparent !important;
    min-height: 92px;
}

/* logo */
.za-logo{
    height: 78px;
    width: auto;
    object-fit: contain;

    filter:
        drop-shadow(0 0 10px rgba(255,255,255,.12))
        brightness(1.15);
}

/* links */
.navbar-dark .navbar-nav .nav-link{
    color: #ffffff !important;
    font-weight: 900;
    font-size: 17px;

    padding: 34px 16px;
    position: relative;

    transition: .3s ease;
}

/* active + hover */
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active{
    color: #f4d66d !important;
}

/* underline */
.navbar-dark .navbar-nav .nav-link::after{
    content:"";
    position:absolute;

    left:14px;
    right:14px;
    bottom:24px;

    height:2px;

    background: linear-gradient(90deg,#f4d66d,#c9a227);

    transform:scaleX(0);
    transition:.3s;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after{
    transform:scaleX(1);
}

/* lang button */
.za-lang-btn{
    border:1px solid #c9a227;
    color:#f4d66d !important;

    border-radius:999px;
    padding:10px 24px;

    font-weight:900;

    background:rgba(255,255,255,.03);

    transition:.3s;
}

.za-lang-btn:hover{
    background:#c9a227;
    color:#111 !important;
}

/* MOBILE */
@media (max-width:991px){

    .nav-wrap{
        background:#080808;
    }

    .navbar{
        min-height:78px;
    }

    .za-logo{
        height:60px;
    }

    .navbar-collapse{
        background:#111;
        padding:18px;
        border-radius:18px;
        margin-top:12px;

        border:1px solid rgba(255,255,255,.08);
    }

    .navbar-dark .navbar-nav .nav-link{
        padding:14px 16px;
        border-radius:14px;
    }

    .navbar-dark .navbar-nav .nav-link::after{
        display:none;
    }
}
/* =========================
   PREMIUM NAVBAR
========================= */

.nav-wrap{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;


    backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(255,255,255,.06);
}

/* navbar */
.navbar{
    background: transparent !important;
    min-height: 95px;
    padding-top: 0;
    padding-bottom: 0;
}

/* LOGO */
.za-logo{
    height: 88px;
    width: auto;
    object-fit: contain;

    filter:
        brightness(1.15)
        drop-shadow(0 0 10px rgba(201,162,39,.15));
}

/* links */
.navbar-dark .navbar-nav .nav-link{
    color: #ffffff !important;

    font-size: 17px;
    font-weight: 900;

    padding: 36px 16px;

    position: relative;

    transition: .3s ease;
}

/* hover */
.navbar-dark .navbar-nav .nav-link:hover{
    color: #f4d66d !important;
}

/* active */
.navbar-dark .navbar-nav .nav-link.active{
    color: #c9a227 !important;
}

/* line under */
.navbar-dark .navbar-nav .nav-link::after{
    content: "";

    position: absolute;

    left: 14px;
    right: 14px;
    bottom: 24px;

    height: 2px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #f4d66d,
        #c9a227
    );

    transform: scaleX(0);

    transition: .3s;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after{
    transform: scaleX(1);
}

/* LANG BUTTON */
.za-lang-btn{
    border: 1px solid #c9a227;

    color: #f4d66d !important;

    border-radius: 999px;

    padding: 10px 24px;

    font-weight: 900;

    background: rgba(255,255,255,.03);

    transition: .3s ease;
}

.za-lang-btn:hover{
    background: #c9a227;
    color: #111 !important;
}

/* MOBILE */
@media (max-width: 991px){

    .nav-wrap{
        background: #080808;
    }

    .navbar{
        min-height: 78px;
    }

    .za-logo{
        height: 62px;
    }

    .navbar-collapse{
        background: #111;

        margin-top: 12px;

        padding: 18px;

        border-radius: 18px;

        border: 1px solid rgba(255,255,255,.08);
    }

    .navbar-dark .navbar-nav .nav-link{
        padding: 14px 16px;
        border-radius: 12px;
    }

    .navbar-dark .navbar-nav .nav-link::after{
        display: none;
    }

    .za-lang-btn{
        width: 100%;
        margin-top: 12px;
    }
}
