:root {
    --bg-dark: #0a0e17;
    --card-bg: rgba(18, 26, 41, 0.7);
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --accent-blue: #38bdf8;
    --text-light: #f1f5f9;
    --text-muted: #94a3b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* هيدر زجاجي مانع للتشتيت */
header {
    background: rgba(10, 14, 23, 0.85);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 18px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo-gold {
    color: var(--gold);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 25px;
    font-weight: 500;
    transition: 0.3s;
}

nav a:hover {
    color: var(--gold-light);
}

.nav-btn {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: #000 !important;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 700;
}

/* قسم Hero المودرن */
.hero {
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
}

.badge-container {
    margin-bottom: 20px;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-light);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 35px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold), #b8860b);
    color: #0b0f19;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
    transition: 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* الميزات */
.about-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--gold);
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 35px 25px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.feature-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.icon-box {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* المنتجات والمعرض الفاخر */
.products-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.img-box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .img-box img {
    transform: scale(1.08);
}

.card-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(10, 14, 23, 0.85);
    border: 1px solid var(--gold);
    color: var(--gold-light);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* صندوق التواصل Glassmorphism */
.contact-section {
    padding: 90px 0;
}

.glass-contact-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(18, 26, 41, 0.8));
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    backdrop-filter: blur(15px);
}

.sub-contact {
    color: var(--gold-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-card {
    background: rgba(10, 14, 23, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.c-label {
    display: block;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.c-value {
    font-weight: 700;
    color: #fff;
}

/* الفوتر */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 25px 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}