:root {
    --gold: #ff5f02;
    --gold-dark: #d94f00;
    --gold-light: #ff8a42;
    --black: #0a0a0a;
    --dark: #111111;
    --dark2: #1a1a1a;
    --text-light: #cccccc;
    --text-muted: #888888;
    --white: #ffffff;
    --border: #ff5f024a;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Cairo", sans-serif;
    background: var(--black);
    color: var(--white);
    direction: rtl;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

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

/* ===================== NAVBAR ===================== */
.site-nav {
    background: rgba(10, 10, 10, 0.9);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* Logo */
.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    width: 28px;
    height: 28px;
}

.lg-sq {
    border-radius: 2px;
}

.lg-a {
    background: var(--gold);
}

.lg-b {
    background: #3a2800;
}

.logo-arrows {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-right: -4px;
}

.logo-arrows span {
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
}

.la-top {
    border-right: 11px solid var(--gold);
}

.la-bot {
    border-right: 11px solid #6b4800;
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-ar {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.logo-en {
    font-size: 0.52rem;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 13px;
    transition: color 0.25s;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a.active {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 4px;
}

.nav-end {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 13px;
    border: 1px solid var(--border);
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.lang-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-quote {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 8px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-quote:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    color: #000 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Mobile nav drawer */
.mob-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.98);
    z-index: 1100;
    flex-direction: column;
    padding: 28px 28px 40px;
    gap: 0;
    overflow-y: auto;
}

.mob-nav.open {
    display: flex;
}

.mob-close {
    align-self: flex-end;
    background: none;
    border: 1px solid var(--border);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 1rem;
    margin-bottom: 20px;
    transition: 0.3s;
}

.mob-close:hover {
    background-color: var(--gold-dark);
    color: var(--white);
}

.mob-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: block;
    transition: color 0.2s;
}

.mob-nav a:hover {
    color: var(--gold);
}

.mob-nav .btn-quote {
    margin-top: 20px;
    text-align: center;
    display: block;
    padding: 13px;
}

@media (max-width: 991px) {

    .nav-links,
    .lang-btn {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }
}

/* ===================== HERO ===================== */
.hero {
    /* background: linear-gradient(135deg, #080808 0%, #160e00 50%, #080808 100%); */
    background: #020200;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(245, 166, 35, 0.035) 1px, transparent 1px), linear-gradient(90deg, #ff5f020d 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(245, 166, 35, 0.07) 0%,
            transparent 65%);
    pointer-events: none;
}

.hero-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1 1 380px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff5f021f;
    border: 1px solid #ff5f0254;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 3px;
    margin-bottom: 22px;
}

.hero-h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.3rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 14px;
}

.hero-h1 .gold {
    color: var(--gold);
    display: block;
}

.hero-p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

@media (max-width: 991.9px) {
    .hero-text {
        text-align: center;
    }

    .hero-p {
        margin: 32px auto;
    }

    .hero-btns {
        justify-content: center;
    }
}

.btn-gold {
    background: var(--gold);
    color: #000;
    font-weight: 700;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.35);
    color: #000;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    padding: 13px 28px;
    border-radius: 3px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-outline i {
    transform: scaleX(-1);
}

.btn-gold i {
    transform: scaleX(1) !important;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 12px;
    /* background: rgb(0 0 0 / 5%);
    border: 1px solid rgb(255 255 255 / 12%); */
    border-radius: 3px;
    padding: 10px 16px;
    width: 200px;
    line-height: 1.7;
    position: absolute;
    z-index: 9999;
}

.hero-feat-item.item1 {
    top: -30px;
    left: 0;
    background: rgb(0 0 0 / 90%);
    border: 1px solid #ff5f024d;
}

.hero-feat-item.item2 {
    bottom: -20px;
    left: 165px;
        background: rgb(0 0 0 / 90%);
    border: 1px solid #ff5f024d;
    
    /* background: #fff; */
    /* border: 1px solid rgba(156, 156, 156, 0.514); */
}
/* 
.hero-feat-item.item2 i,
.hero-feat-item.item2 span {
    color: #333 !important;
} */

.hero-feat-item i {
    color: var(--gold);
    font-size: 1rem;
}

.hero-feat-item span {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-img-col {
    flex: 1 1 360px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 0;
}

.hero-main-img {
    width: 100%;
    /* max-width: 540px; */
    object-fit: contain;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.85));
    position: relative;
    z-index: 2;
}

.hero-img-glow {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    width: 380px;
    height: 180px;
    background: radial-gradient(ellipse,
            rgba(245, 166, 35, 0.18) 0%,
            transparent 70%);
    filter: blur(22px);
    z-index: 1;
}

/* Feats below image on left col */
.hero-feats-under {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
    margin-top: 18px;
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 80px;
}

.hero-feat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgb(0 0 0 / 5%);
    border: 1px solid rgb(255 255 255 / 12%);
    border-radius: 3px;
    padding: 10px 16px;
}

.hero-feat-item i {
    color: var(--gold);
    font-size: 1rem;
    flex-shrink: 0;
}

.hero-feat-item span {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

@media (max-width: 767px) {
    .hero-row {
        flex-direction: column;
    }

    .hero-img-col {
        order: -1;
        width: 100%;
    }

    .hero-main-img {
        max-width: 100%;
    }

    .hero-feats-under {
        max-width: 100%;
    }
}

/* ===================== PRODUCTS ===================== */
.products-sec {
    background: var(--dark);
    /* padding: 80px 0; */
    padding: 40px 0;
}

.sec-head {
    text-align: center;
    margin-bottom: 50px;
}

.sec-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.sec-divider {
    width: 48px;
    height: 4px;
    background: var(--gold);
    border-radius: 3px;
    margin: 12px auto 18px;
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
}

.sec-title .gold {
    color: var(--gold);
}

/* Product grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* 1 Category */
.products-count-1 {
    grid-template-columns: minmax(280px, 320px);
    justify-content: center;
}

/* 2 Categories */
.products-count-2 {
    grid-template-columns: repeat(2, minmax(280px, 320px));
    justify-content: center;
}

/* 3 Categories */
.products-count-3 {
    grid-template-columns: repeat(3, minmax(280px, 320px));
    justify-content: center;
}

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

    .products-count-1 {
        grid-template-columns: minmax(280px, 320px);
    }

    .products-count-2 {
        grid-template-columns: repeat(2, minmax(220px, 320px));
    }

    .products-count-3 {
        grid-template-columns: repeat(2, minmax(220px, 320px));
    }
}

@media (max-width: 575px) {
    .products-grid,
    .products-count-1,
    .products-count-2,
    .products-count-3 {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}


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

@media (max-width: 575px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }
}

.prod-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 3px;
    overflow: hidden;
    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
    cursor: pointer;
}

.prod-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 44px #ff5f024a;
}

.prod-card.featured {
    border-color: var(--gold);
}

.prod-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    line-height: 0;
    font-size: 0;
}

.prod-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
    vertical-align: bottom;
}

.prod-card:hover .prod-img img {
    transform: scale(1.06);
}

.prod-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 55%);
    pointer-events: none;
}

.prod-body {
    padding: 18px 16px;
}

.prod-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    margin-bottom: 14px;
}

.prod-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    transition:
        gap 0.25s,
        color 0.25s;
}

.prod-link:hover {
    gap: 12px;
    color: var(--gold-light);
}

/* ===================== CTA ===================== */
.cta-sec {
    background: var(--black);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background:  radial-gradient(ellipse 80% 60% at 50% 50%, #ff5f020f 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(1.45rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.7;
}

.cta-title .gold {
    color: var(--gold);
}

.cta-p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 640px;
    margin: 0 auto 36px;
}

/* ===================== FOOTER ===================== */
.site-footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.6fr;
    gap: 40px;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 12px 0 16px;
}

.footer-en-sub {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

.social-row {
    display: flex;
    gap: 9px;
    margin-top: 4px;
}

.soc-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    transition: all 0.25s;
}

.soc-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.footer-col-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 18px;
}

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

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

.footer-list a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--gold);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--gold);
    width: 16px;
    text-align: center;
}

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

.contact-item a:hover {
    color: var(--gold);
}

.qr-wrap {
    margin-top: 14px;
}

.qr-box {
    width: 76px;
    height: 76px;
    background: #fff;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.qr-lbl {
    font-size: 0.73rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 18px 0;
    margin-top: 48px;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
}

.footer-policy {
    display: flex;
    gap: 20px;
}

.footer-policy a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-policy a:hover {
    color: var(--gold);
}

.footer-copy a {
    color: var(--gold);
    transition: 0.3s;
}

.footer-copy a:hover {
    color: var(--gold-dark);
}

/* ===================== SCROLL TOP ===================== */
.scroll-top-btn {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 42px;
    height: 42px;
    background: var(--gold);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
    z-index: 990;
}

.scroll-top-btn.show {
    opacity: 1;
    pointer-events: all;
}

.scroll-top-btn:hover {
    transform: scale(1.1);
}

.page-hero {
    background: linear-gradient(135deg, #080808 0%, #160e00 50%, #080808 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    min-height: 420px;
    display: flex;
    align-items: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    /* filter: brightness(0.5); */
}

.page-hero-bg img {
    object-fit: cover;
    object-position: 20% 70%;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px), linear-gradient(90deg, #ff5f0221 1px, transparent 1px);
    background-size: 55px 55px;
    pointer-events: none;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 8, 8, 0.6) 40%,
            rgba(8, 8, 8, 0.6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 70px 0 60px;
    width: 100%;
}

.breadcrumb-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 0.85rem;
}

.breadcrumb-wrap a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-wrap a:hover {
    color: var(--gold);
}

.breadcrumb-wrap span {
    color: var(--text-muted);
}

.breadcrumb-wrap .current {
    color: var(--gold);
    font-weight: 600;
}

.page-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.page-hero-title .gold {
    color: var(--gold);
}

.page-hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.85;
    max-width: 560px;
}

.filter-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-grid button {
    flex: 1;
}

.filters-bar {
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    padding: 18px 0;
    position: sticky;
    top: 64px;
    z-index: 100;
}

.filters-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-light);
    font-family: "Cairo", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 7px 18px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
}

.listing-sec {
    background: var(--dark);
    padding: 70px 0;
}

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

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

@media (max-width: 575px) {
    .listing-grid {
        grid-template-columns: 1fr;
    }
}

.item-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
    transition:
        transform 0.35s,
        border-color 0.35s,
        box-shadow 0.35s;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 16px 44px rgba(245, 166, 35, 0.15);
}

.item-img {
    height: 230px;
    overflow: hidden;
    position: relative;
}

.item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.item-card:hover .item-img img {
    transform: scale(1.06);
}

.item-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 55%);
    pointer-events: none;
}

.item-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: #000;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.item-body {
    padding: 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.item-brand {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.item-name {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.item-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.spec-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.spec-tag i {
    color: var(--gold);
    font-size: 0.7rem;
}

.item-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.item-condition {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

.item-condition.used {
    color: #aaa;
}

.item-condition.new-item {
    color: #5ecb7a;
}

.btn-inquire {
    background: var(--gold);
    color: #000;
    font-family: "Cairo", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 3px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s;
    cursor: pointer;
}

.btn-inquire:hover {
    background: var(--gold-light);
    color: #000;
    transform: translateY(-1px);
}

.specs-sec {
    background: var(--black);
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

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

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

.spec-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 28px 22px;
    text-align: center;
    transition:
        border-color 0.3s,
        box-shadow 0.3s;
}

.spec-card:hover {
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(245, 166, 35, 0.1);
}

.spec-card-icon {
    width: 54px;
    height: 54px;
    background: rgba(245, 166, 35, 0.1);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.3rem;
    color: var(--gold);
}

.spec-card-val {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.spec-card-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.cta-mini {
    background: linear-gradient(135deg, #160e00, #0a0a0a);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-mini::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%,
            rgba(245, 166, 35, 0.06) 0%,
            transparent 70%);
    pointer-events: none;
}

.cta-mini-title {
    font-size: clamp(1.3rem, 2.5vw, 1.9rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.cta-mini-title .gold {
    color: var(--gold);
}

.cta-mini-p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 28px;
}

.cta-mini-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---- Story Section ---- */
.story-sec {
    background: var(--dark);
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.story-row {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.story-text {
    flex: 1 1 380px;
}

.story-text .sec-eyebrow {
    text-align: right;
    margin-bottom: 10px;
}

.story-title {
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.4;
    margin-bottom: 20px;
}

.story-title .gold {
    color: var(--gold);
}

.story-body p {
    font-size: 0.97rem;
    line-height: 1.95;
    color: var(--text-light);
    margin-bottom: 18px;
}

.story-img-col {
    flex: 1 1 340px;
    position: relative;
}

.story-img-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.story-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    filter: brightness(0.88);
}

.story-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: var(--gold);
    color: #000;
    font-weight: 800;
    font-size: 0.82rem;
    padding: 10px 18px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ---- Values ---- */
.values-sec {
    background: var(--black);
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.values-sec::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 100%,
            rgba(245, 166, 35, 0.05) 0%,
            transparent 70%);
    pointer-events: none;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

@media (max-width: 767px) {
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
}

.value-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 32px 26px;
    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        transform 0.3s;
}

.value-card:hover {
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.12);
    transform: translateY(-4px);
}

.value-icon {
    width: 52px;
    height: 52px;
    background: #ff5f021a;
    border: 1px solid #ff5f023b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.value-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin: 0;
}

/* ---- Stats ---- */
.stats-sec {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 60px 0;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

@media (max-width: 767px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    border-left: 1px solid var(--border);
}

.stat-item:last-child {
    border-left: none;
}

@media (max-width: 767px) {
    .stat-item:nth-child(2) {
        border-left: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-top: 1px solid var(--border);
    }
}

.stat-num {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ---- Team / Why Us ---- */
.why-sec {
    background: var(--dark);
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 575px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    padding: 24px 22px;
    transition: border-color 0.3s;
}

.why-item:hover {
    border-color: #ff5f0269;
}

.why-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: #ff5f0224;
    border: 1px solid #ff5f024d;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.why-body h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.why-body p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}

/* ---- Partners strip ---- */
.partners-sec {
    background: var(--black);
    border-top: 1px solid var(--border);
    padding: 60px 0;
}

.partners-label {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 36px;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 28px;
}

.brand-pill {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.25s;
    text-align: center;
    flex: 1 1 20%;

    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-pill img {
    object-fit: contain;
    height: 100%;
}

@media (min-width: 992px) and (max-width: 1199.9px) {
    .brand-pill {
        flex: 1 1 25%;
    }
}

@media (max-width: 991.9px) {
    .brand-pill {
        flex: 1 1 45%;
    }
}

.brand-pill:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Section header alignment */
.sec-head {
    text-align: center;
}

.sec-head .sec-eyebrow {
    text-align: center;
}

/* ---- Responsive story ---- */
@media (max-width: 767px) {
    .story-row {
        gap: 36px;
    }

    .story-img-wrap img {
        height: 280px;
    }
}

/* ---- Contact Layout ---- */
.contact-sec {
    background: var(--dark);
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 991px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ---- Info Sidebar ---- */
.contact-info-card {
    background: var(--dark2);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    position: sticky;
    top: 84px;
}

.info-card-head {
    background: linear-gradient(135deg, #160e00, #0a0a0a);
    border-bottom: 1px solid var(--border);
    padding: 28px 28px 24px;
    position: relative;
    overflow: hidden;
}

.info-card-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(245, 166, 35, 0.04) 1px, transparent 1px), linear-gradient(90deg, #ff5f021a 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.info-card-head h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
    z-index: 1;
}

.info-card-head p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.info-card-body {
    padding: 28px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: #ff5f021f;
    border: 1px solid #ff5f0240;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1rem;
    margin-top: 2px;
}

.info-item-body {
    flex: 1;
}

.info-item-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.info-item-val {
    font-size: 0.92rem;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    display: block;
    line-height: 1.6;
    transition: color 0.2s;
}

a.info-item-val:hover {
    color: var(--gold);
}

.info-item-sub {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 2px;
}

/* QR in sidebar */
.info-qr-wrap {
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-qr-box {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 4px;
    padding: 5px;
    flex-shrink: 0;
}

.info-qr-box img {
    width: 100%;
    display: block;
}

.info-qr-text h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.info-qr-text p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Social row in sidebar */
.info-social {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.info-social p {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* ---- Contact Form Card ---- */
.form-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 36px 32px;
}

@media (max-width: 575px) {
    .form-card {
        padding: 24px 18px;
    }
}

.form-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.form-card-title .gold {
    color: var(--gold);
}

.form-card-sub {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Form elements */
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 575px) {
    .form-row-2 {
        grid-template-columns: 1fr;
    }
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.form-group label span.req {
    color: var(--gold);
    margin-right: 2px;
}

.form-control-dark {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    padding: 12px 16px;
    font-family: "Cairo", sans-serif;
    font-size: 0.9rem;
    color: var(--white);
    transition:
        border-color 0.25s,
        background 0.25s,
        box-shadow 0.25s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

option {
    background-color: #1a1a1a;
}

.form-control-dark::placeholder {
    color: var(--text-muted);
}

.form-control-dark:focus {
    border-color: var(--gold);
    background: rgba(245, 166, 35, 0.04);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.08);
}

select.form-control-dark {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 14px center;
    padding-left: 36px;
}

textarea.form-control-dark {
    resize: vertical;
    min-height: 120px;
}

.form-hint {
    font-size: 0.76rem;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Interest checkboxes */
.interest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

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

.interest-chip {
    position: relative;
}

.interest-chip input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.interest-chip label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 9px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.interest-chip label i {
    font-size: 0.78rem;
    color: var(--text-muted);
    transition: color 0.2s;
}

.interest-chip input:checked+label {
    background: rgba(245, 166, 35, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.interest-chip input:checked+label i {
    color: var(--gold);
}

/* Submit btn */
.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #000;
    font-family: "Cairo", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 3px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.btn-submit:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 166, 35, 0.35);
}

/* Success state */
.form-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.form-success.show {
    display: block;
}

.success-icon {
    width: 70px;
    height: 70px;
    background: rgba(94, 203, 122, 0.1);
    border: 1px solid rgba(94, 203, 122, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #5ecb7a;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 360px;
    margin: 0 auto 24px;
}

/* ---- Quick Actions ---- */
.quick-sec {
    background: var(--black);
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

@media (max-width: 767px) {
    .quick-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        gap: 15px;
    }
    .contact-item a {
        font-size: 13px;
    }
}

.quick-card {
    background: var(--dark2);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    padding: 30px 26px;
    text-align: center;
    text-decoration: none;
    display: block;
    transition:
        border-color 0.3s,
        transform 0.3s,
        box-shadow 0.3s;
}

.quick-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 14px 40px #ff5f0221;
}

.quick-card-icon {
    width: 58px;
    height: 58px;
    background: #ff5f021f;
    border: 1px solid #ff5f0238;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    margin: 0 auto 18px;
}

.quick-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
}

.quick-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.quick-card-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.2s;
}

.quick-card:hover .quick-card-link {
    gap: 10px;
}

/* Map section */
.map-sec {
    background: var(--dark);
    padding: 70px 0;
}

.map-frame {
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border);
    margin-top: 48px;
}

.map-frame iframe {
    width: 100%;
    height: 380px;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(0.85) saturate(0.6);
}

/* Section helpers */
.sec-head {
    text-align: center;
}

.sec-head .sec-eyebrow {
    text-align: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ---- English ---- */
body {
  direction: ltr;
}
.hero-feat-item {
  flex-direction: row;
}
.hero-feat-item.item1 {
  width: 230px;
}
.story-text .sec-eyebrow {
  text-align: left;
}

select.form-control-dark {
  background-position: right 14px center;
  padding-left: 16px;
  padding-right: 36px;
}

.hero-feat-item.item1 {
  right: 0;
  left: auto;
}

.hero-feat-item.item2 {
  right: 165px;
  left: auto;
}

.cta-btn i {
    transform: scaleX(-1);
}

.cta-mini-btns i {
    transform: scaleX(-1);
}

@media (max-width: 768px) {

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

    .lang-btn {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;

        min-width: 42px;
        height: 34px;
        padding: 0 10px;

        font-size: 0.8rem;
        font-weight: 700;

        border: 1px solid var(--border);
        border-radius: 4px;

        color: var(--text-muted);
        text-decoration: none;

        white-space: nowrap;
        flex-shrink: 0;
    }

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

    .btn-quote {
        display: none;
    }

    .hamburger {
        flex-shrink: 0;
    }
}

.field-error {
    display: none;
    margin-top: 6px;
    color: #e74c3c;
    font-size: 13px;
}

.field-error.show {
    display: block;
}