/* ============================================
   Mask Tiger — النمر المقنع
   Main Stylesheet v3.0
   ============================================ */

:root {
    --yellow:   #FFD000;
    --yellow-2: #ff8c00;
    --purple:   #7B2FBE;
    --purple-2: #3d007a;
    --black:    #050505;
    --dark:     #0a001a;
    --glass:    rgba(255,255,255,0.03);
    --border-y: rgba(255, 208, 0, 0.2);
    --border-p: rgba(123, 47, 190, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
    font-family: 'Cairo', sans-serif;
    background: #000;
    color: #fff;
    min-height: 100vh;
    overflow-x: hidden;
}

body {
    background:
        radial-gradient(ellipse at 20% 10%, rgba(123, 47, 190, 0.35) 0%, transparent 45%),
        radial-gradient(ellipse at 80% 90%, rgba(255, 208, 0, 0.25) 0%, transparent 45%),
        linear-gradient(180deg, #0a001a 0%, #000 50%, #0a0f00 100%);
}

/* ============ Navigation ============ */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 0, 26, 0.93);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 208, 0, 0.15);
    transition: background 0.3s, box-shadow 0.3s;
}

.site-nav.scrolled {
    background: rgba(5, 0, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand img {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    object-fit: contain;
}

.nav-brand-text .nav-name {
    color: var(--yellow);
    font-weight: 900;
    font-size: 1.1rem;
    line-height: 1.1;
}

.nav-brand-text small {
    color: rgba(255,255,255,0.45);
    font-size: 0.72rem;
    display: block;
}

.site-nav .navbar-toggler {
    border-color: rgba(255, 208, 0, 0.35);
    padding: 6px 10px;
}

.site-nav .navbar-toggler:focus { box-shadow: none; }

.site-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,208,0,0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.site-nav .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 7px 14px !important;
    border-radius: 8px;
    transition: all 0.25s;
    position: relative;
}

.site-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 14px; right: 14px;
    height: 2px;
    background: var(--yellow);
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.25s;
    transform-origin: right;
}

html[lang="en"] .site-nav .nav-link::after { transform-origin: left; }

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

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    color: var(--yellow) !important;
    background: rgba(255, 208, 0, 0.07);
}

.nav-cta {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2)) !important;
    color: #000 !important;
    font-weight: 900 !important;
    border-radius: 50px !important;
    padding: 7px 22px !important;
    font-size: 0.9rem !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    color: #000 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(255, 208, 0, 0.45);
}

/* ============ Layout ============ */
.page-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.post-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 15px;
}

/* ============ Hero Card (Product pages) ============ */
.hero-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-y);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    position: relative;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -20%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(123,47,190,0.4) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

.hero-card::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -20%;
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(255,208,0,0.3) 0%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
}

/* ============ Brand Badge ============ */
.brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 208, 0, 0.12);
    border: 1px solid rgba(255, 208, 0, 0.4);
    border-radius: 50px;
    padding: 10px 20px;
}

.brand-badge img {
    width: 40px; height: 40px;
    border-radius: 8px;
    object-fit: contain;
}

.brand-badge .name {
    color: var(--yellow);
    font-weight: 900;
    font-size: 1.35rem;
}

/* ============ Titles ============ */
.h-title {
    font-weight: 900;
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: var(--yellow);
    line-height: 1.15;
}

.h-sub {
    font-weight: 400;
    font-size: clamp(1.05rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
}

.section-title {
    font-weight: 900;
    color: var(--yellow);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

/* ============ Glass Cards ============ */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid var(--border-y);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    transition: all 0.35s;
}

.glass-card:hover {
    border-color: rgba(255, 208, 0, 0.45);
    box-shadow: 0 12px 50px rgba(255, 208, 0, 0.1);
    transform: translateY(-4px);
}

.glass-card-p {
    background: rgba(123, 47, 190, 0.06);
    border: 1.5px solid var(--border-p);
    border-radius: 24px;
    padding: 28px;
    height: 100%;
    transition: all 0.35s;
}

.glass-card-p:hover {
    border-color: rgba(123, 47, 190, 0.6);
    box-shadow: 0 12px 50px rgba(123, 47, 190, 0.15);
    transform: translateY(-4px);
}

/* ============ Homepage Hero ============ */
.home-hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.home-hero::before {
    content: '';
    position: absolute;
    top: -100px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(123, 47, 190, 0.45) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    animation: heroBlobPulse 8s ease-in-out infinite;
}

.home-hero::after {
    content: '';
    position: absolute;
    bottom: -100px; left: -150px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(255, 208, 0, 0.3) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    animation: heroBlobPulse 10s ease-in-out infinite reverse;
}

@keyframes heroBlobPulse {
    0%, 100% { opacity: 0.7; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.1); }
}

.hero-tagline {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(255, 208, 0, 0.1);
    border: 1px solid rgba(255, 208, 0, 0.3);
    border-radius: 50px;
    display: inline-block;
    padding: 6px 18px;
    margin-bottom: 20px;
}

.hero-title-main {
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.hero-title-main span { color: var(--yellow); }

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-desc {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-amc-img {
    max-width: 380px;
    width: 100%;
    filter: drop-shadow(0 0 60px rgba(255, 208, 0, 0.4))
            drop-shadow(0 20px 40px rgba(0,0,0,0.5));
    animation: floatAMC 4s ease-in-out infinite;
}

/* Glow ring behind AMC */
.hero-img-wrap {
    position: relative;
    display: inline-block;
}

.hero-img-wrap::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(255,208,0,0), rgba(255,208,0,0.35), rgba(255,208,0,0));
    animation: spinRing 6s linear infinite;
    filter: blur(8px);
    pointer-events: none;
}

@keyframes spinRing {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes floatAMC {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/* ============ Stats ============ */
.stat-number {
    font-size: 1.7rem;
    font-weight: 900;
    color: var(--yellow);
}

/* ============ Section Divider ============ */
.section-wrap {
    padding: 70px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-wrap:first-child { border-top: none; }

/* ============ About Card ============ */
.about-brand-card {
    background: linear-gradient(135deg, rgba(123,47,190,0.12), rgba(255,208,0,0.05));
    border: 1.5px solid rgba(255, 208, 0, 0.25);
    border-radius: 30px;
    padding: 36px;
    position: relative;
    overflow: hidden;
}

.about-brand-card::before {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(123,47,190,0.25) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.brand-logo-big {
    width: 100px; height: 100px;
    border-radius: 20px;
    object-fit: contain;
    border: 2px solid rgba(255,208,0,0.3);
    padding: 8px;
    background: rgba(0,0,0,0.3);
}

/* ============ Values Cards ============ */
.value-card {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.value-card:hover {
    border-color: rgba(255, 208, 0, 0.4);
    background: rgba(255, 208, 0, 0.04);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(255, 208, 0, 0.08);
}

.value-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    display: block;
}

.value-title {
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--yellow);
}

/* ============ Product Cards (Homepage) ============ */
.product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1.5px solid rgba(255, 208, 0, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    border-color: rgba(255, 208, 0, 0.55);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 208, 0, 0.15);
    color: inherit;
}

.product-card-img {
    background: radial-gradient(ellipse at center, rgba(255,208,0,0.1) 0%, transparent 70%);
    padding: 30px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card-img img {
    max-height: 160px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.6));
    transition: transform 0.4s ease;
}

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

.product-card-body {
    padding: 20px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card-title {
    font-weight: 900;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 8px;
}

.product-card-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.product-card-link {
    color: var(--yellow);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-card:hover .product-card-link i { transform: translateX(-4px); }
html[lang="en"] .product-card:hover .product-card-link i { transform: translateX(4px); }
.product-card-link i { transition: transform 0.2s; }

/* ============ Devices Section ============ */
.device-badge {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 208, 0, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s;
}

.device-badge:hover {
    border-color: rgba(255, 208, 0, 0.5);
    background: rgba(255, 208, 0, 0.06);
}

.device-badge i { color: var(--yellow); font-size: 1.2rem; }

/* ============ Advantages ============ */
.adv-card {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.07);
    border-radius: 18px;
    padding: 22px;
    height: 100%;
    transition: all 0.3s;
}

.adv-card:hover {
    border-color: rgba(255, 208, 0, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,208,0,0.07);
}

.adv-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 14px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #000;
}

.adv-icon.p {
    background: linear-gradient(135deg, var(--purple), var(--purple-2));
    color: #fff;
}

.adv-title {
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.adv-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ============ Cities Grid ============ */
.city-pill {
    background: rgba(255, 208, 0, 0.07);
    border: 1px solid rgba(255, 208, 0, 0.2);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 700;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.8);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}

.city-pill:hover {
    background: rgba(255, 208, 0, 0.12);
    border-color: rgba(255, 208, 0, 0.4);
    color: var(--yellow);
}

.city-pill i { color: var(--yellow); font-size: 0.85rem; }

/* ============ Partnership Cards ============ */
.partner-card {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.partner-card:hover {
    border-color: rgba(255, 208, 0, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255,208,0,0.07);
}

.partner-icon {
    font-size: 2.4rem;
    color: var(--yellow);
    margin-bottom: 12px;
}

.partner-title {
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 6px;
}

.partner-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
}

/* ============ CTA Section ============ */
.cta-section {
    background: linear-gradient(135deg, rgba(123,47,190,0.2), rgba(255,208,0,0.1));
    border: 1.5px solid rgba(255,208,0,0.25);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(255,208,0,0.07) 0%, transparent 70%);
    pointer-events: none;
}

/* ============ Product Display ============ */
.product-frame {
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255,208,0,0.15) 0%, transparent 60%),
                rgba(0,0,0,0.3);
    border-radius: 24px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.product-frame:hover { transform: translateY(-8px); }

.product-frame img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6))
            drop-shadow(0 0 40px rgba(255,208,0,0.3));
    transition: transform 0.4s ease;
}

.product-frame:hover img { transform: scale(1.04); }

.product-frame.white-variant {
    background: radial-gradient(ellipse at center, rgba(123,47,190,0.15) 0%, transparent 60%),
                rgba(255,255,255,0.05);
}

.product-frame.white-variant img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6))
            drop-shadow(0 0 40px rgba(123,47,190,0.4));
}

/* ============ Color Labels ============ */
.color-label {
    display: inline-block;
    font-weight: 900;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-top: 12px;
}

.color-label.black {
    color: var(--yellow);
    border: 1px solid rgba(255,208,0,0.4);
    background: rgba(255,208,0,0.08);
}

.color-label.white {
    color: #fff;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

/* ============ Feature Tiles ============ */
.feat {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px;
    height: 100%;
    transition: all 0.3s;
}

.feat:hover {
    transform: translateY(-6px);
    border-color: rgba(255,208,0,0.35);
    box-shadow: 0 12px 40px rgba(255,208,0,0.1);
}

.feat-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 14px;
    transition: transform 0.3s;
}

.feat-icon.y { background: linear-gradient(135deg, var(--yellow), var(--yellow-2)); color: #000; }
.feat-icon.p { background: linear-gradient(135deg, var(--purple), var(--purple-2)); color: #fff; }
.feat-icon.b { background: linear-gradient(135deg, #2196F3, #0d47a1); color: #fff; }
.feat-icon.g { background: linear-gradient(135deg, #888, #555); color: #fff; }
.feat-icon.r { background: linear-gradient(135deg, #e91e63, #880e4f); color: #fff; }

.feat-title { font-weight: 900; font-size: 1.2rem; color: #fff; margin-bottom: 6px; }
.feat-desc { color: rgba(255,255,255,0.65); font-size: 0.95rem; line-height: 1.65; }

/* ============ Specs Card ============ */
.specs-card {
    background: rgba(0,0,0,0.4);
    border: 1.5px solid rgba(255,208,0,0.25);
    border-radius: 24px;
    padding: 28px;
}

.specs-card h3 {
    color: var(--yellow);
    font-weight: 900;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,208,0,0.25);
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.08);
}

.spec-row:last-child { border: none; }
.spec-label { color: rgba(255,255,255,0.6); font-weight: 700; font-size: 1rem; }
.spec-value { color: var(--yellow); font-weight: 900; font-size: 1.05rem; }

/* ============ CTA Button ============ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #000 !important;
    font-weight: 900;
    font-size: 1.5rem;
    padding: 18px 48px;
    border-radius: 60px;
    border: none;
    box-shadow: 0 8px 40px rgba(255,208,0,0.5);
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse 2.5s ease-in-out infinite;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 60px rgba(255,208,0,0.7);
    color: #000 !important;
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--yellow);
    color: var(--yellow) !important;
    font-weight: 900;
    font-size: 1.1rem;
    padding: 14px 36px;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-btn-outline:hover {
    background: rgba(255,208,0,0.1);
    transform: translateY(-2px);
    color: var(--yellow) !important;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 40px rgba(255,208,0,0.5); }
    50%       { box-shadow: 0 8px 65px rgba(255,208,0,0.8), 0 0 0 6px rgba(255,208,0,0.08); }
}

/* ============ Tags & Pills ============ */
.tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,208,0,0.12);
    border: 1px solid rgba(255,208,0,0.3);
    color: var(--yellow);
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin: 4px;
    transition: all 0.2s;
}

.tag-pill:hover {
    background: rgba(255,208,0,0.18);
    border-color: rgba(255,208,0,0.5);
}

.tag-pill.p {
    background: rgba(123,47,190,0.15);
    border-color: rgba(123,47,190,0.4);
    color: #c99af5;
}

/* ============ Sticker Tabs ============ */
.sticker-tab {
    background: rgba(255,255,255,0.04);
    border: 1.5px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
    font-size: 1rem;
    padding: 10px 28px;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sticker-tab:hover { border-color: rgba(255,208,0,0.4); color: rgba(255,255,255,0.9); }

.sticker-tab.active {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    border-color: transparent;
    color: #000;
}

/* ============ Privacy Sticker Visual ============ */
.privacy-visual {
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(123,47,190,0.3);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
}

.privacy-angle-demo {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: flex-end;
    padding: 20px 0;
}

.angle-box { text-align: center; }

.angle-screen {
    width: 80px;
    height: 140px;
    border-radius: 12px;
    border: 2px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 8px;
    background: rgba(0,0,0,0.3);
}

.angle-screen.clear { background: rgba(123,47,190,0.15); border-color: rgba(123,47,190,0.5); }
.angle-screen.blurred { background: rgba(50,50,50,0.6); filter: blur(1.5px); }

.angle-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255,255,255,0.55);
}

/* ============ AOS (Scroll Animations) ============ */
/* Override AOS defaults to match our aesthetic */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* Keep fade-section for backward compat */
.fade-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}
.fade-section.visible { opacity: 1; transform: translateY(0); }

/* ============ Shimmer Keyframe ============ */
@keyframes shimmer {
    0%   { background-position: -400px 0; }
    100% { background-position: 400px 0; }
}

/* ============ Footer ============ */
.site-footer {
    background: rgba(0,0,0,0.5);
    border-top: 1px solid rgba(255,208,0,0.12);
    padding: 50px 0 30px;
    margin-top: 80px;
}

.footer-logo-amc {
    height: 70px;
    object-fit: contain;
    filter: brightness(0.9);
}

.footer-logo-brand {
    width: 48px; height: 48px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid rgba(255,208,0,0.25);
}

.footer-company-name {
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--yellow);
    margin-top: 10px;
}

.footer-brand-name {
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    margin-top: 8px;
}

.footer-brand-sub {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.footer-nav-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s, padding-right 0.2s;
}

html[lang="ar"] .footer-nav-link:hover { color: var(--yellow); padding-right: 4px; }
html[lang="en"] .footer-nav-link:hover { color: var(--yellow); padding-left: 4px; }

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #000 !important;
    font-weight: 900;
    font-size: 1rem;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255,208,0,0.45);
    color: #000 !important;
}

.footer-divider {
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 30px 0 20px;
}

.footer-copy {
    color: rgba(255,255,255,0.3);
    font-size: 0.88rem;
    text-align: center;
}

/* ============ Breadcrumb ============ */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.45);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.page-breadcrumb a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--yellow); }
.page-breadcrumb .active { color: var(--yellow); font-weight: 700; }

/* ============ Nav Dropdown ============ */
.nav-dropdown {
    background: rgba(8, 0, 22, 0.98);
    border: 1px solid rgba(255, 208, 0, 0.2);
    border-radius: 14px;
    padding: 8px;
    backdrop-filter: blur(20px);
    min-width: 220px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.nav-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 8px;
    padding: 10px 14px;
    transition: all 0.2s;
    font-family: 'Cairo', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-dropdown .dropdown-item:hover,
.nav-dropdown .dropdown-item.active {
    background: rgba(255, 208, 0, 0.1);
    color: var(--yellow);
    padding-right: 18px;
}

html[lang="en"] .nav-dropdown .dropdown-item:hover,
html[lang="en"] .nav-dropdown .dropdown-item.active { padding-right: 14px; padding-left: 18px; }

.nav-dropdown .dropdown-divider { border-color: rgba(255,255,255,0.07); }
.site-nav .dropdown-toggle::after { margin-right: 4px; }

/* ============ Product Gallery ============ */
.gallery-main {
    background: rgba(0, 0, 0, 0.4);
    border: 1.5px solid rgba(255, 208, 0, 0.2);
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    padding: 24px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
}

.gallery-main img {
    max-height: 440px;
    max-width: 100%;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    transition: opacity 0.2s;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,208,0,0.3) transparent;
}

.gallery-thumbs::-webkit-scrollbar { height: 4px; }
.gallery-thumbs::-webkit-scrollbar-track { background: transparent; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255,208,0,0.3); border-radius: 4px; }

.thumb {
    flex-shrink: 0;
    width: 78px; height: 78px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.2s;
    background: rgba(0,0,0,0.3);
}

.thumb:hover { border-color: rgba(255,208,0,0.5); transform: translateY(-2px); }
.thumb.active { border-color: var(--yellow); box-shadow: 0 0 14px rgba(255,208,0,0.4); }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ Video Player ============ */
.product-video {
    width: 100%;
    border-radius: 16px;
    border: 1.5px solid rgba(255,208,0,0.2);
    overflow: hidden;
    background: #000;
}

.product-video video {
    width: 100%;
    height: auto;
    max-height: 480px;
    display: block;
    object-fit: contain;
}

/* ============ Bilingual (AR / EN) ============ */
html[lang="ar"] .lang-en { display: none !important; }
html[lang="en"] .lang-ar { display: none !important; }

html[lang="en"] .spec-row { flex-direction: row; }
html[lang="en"] .page-breadcrumb { flex-direction: row-reverse; }
html[lang="en"] .gallery-thumbs { direction: ltr; }

/* ── Language Switcher ── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 3px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50px;
    padding: 4px;
    flex-shrink: 0;
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.5);
    font-weight: 900;
    font-size: 0.82rem;
    padding: 4px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'Cairo', sans-serif;
    line-height: 1.4;
}

.lang-btn:hover { color: rgba(255,255,255,0.85); }

.lang-btn.active {
    background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
    color: #000;
}

/* ============ Responsive ============ */
@media (max-width: 768px) {
    .home-hero { min-height: auto; padding: 40px 0; }
    .hero-amc-img { max-width: 260px; }
    .cta-section { padding: 40px 20px; }
    .section-wrap { padding: 50px 0; }
    .hero-img-wrap::before { display: none; }
}

@media (max-width: 576px) {
    .post-wrap { padding: 20px 10px; }
    .page-wrap { padding: 20px 10px; }
    .hero-card { padding: 20px !important; }
    .cta-btn { font-size: 1.25rem; padding: 16px 32px; }
    .glass-card, .glass-card-p { padding: 20px; }
}
