@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: 'Tajawal';
  src: url('../fonts/Tajawal-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
}


/* =========================================
   1. GLOBAL SETTINGS & VARIABLES
   ========================================= */
:root {
    --gold: #c5a059;
    --dark-gold: #b8902c;
    --gold-light: #fdf6e3;
    --dark: #121212;
    --black: #121212;
    --white: #ffffff;
    --bg: #fdfdfd;
    --bg-body: #fdfdfd;
    --cream: #fbfbfb;
    --gray-light: #f5f5f7;
    --danger: #ff3b30;
    --radius: 25px;
    --radius-lg: 30px;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg);
    color: var(--dark);
    scroll-behavior: smooth;
    overflow-x: hidden;
    position: relative;
    padding-top: 90px;
    /* Default for mobile, or desktop without admin bar */
    /* أضفنا مساحة علوية حتى لا يختفي المحتوى خلف الهيدر الثابت */
}

.container-custom {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.boxed-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

img {
    max-width: 100%;
    height: auto;
}

/* تأثير الخلفية التفاعلية (سرب فراشات ذهبية تطير من جميع الاتجاهات) */
.butterfly-swarm {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10000;
    overflow: hidden;
}

.butterfly {
    position: absolute;
    font-size: 24px;
    filter: sepia(100%) saturate(600%) brightness(100%) hue-rotate(15deg) drop-shadow(0 0 8px rgba(197, 160, 89, 0.5));
    opacity: 0;
}

/* 1. حركة من الأسفل للأعلى */
@keyframes flyUp {
    0% {
        transform: translate(0, 110vh) rotate(0deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    50% {
        transform: translate(100px, 50vh) rotate(20deg) scale(1.1);
    }

    85% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-50px, -15vh) rotate(-10deg) scale(0.8);
        opacity: 0;
    }
}

/* 2. حركة من الأعلى للأسفل */
@keyframes flyDown {
    0% {
        transform: translate(0, -15vh) rotate(180deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    50% {
        transform: translate(-120px, 50vh) rotate(160deg) scale(1.1);
    }

    85% {
        opacity: 0.7;
    }

    100% {
        transform: translate(60px, 110vh) rotate(190deg) scale(0.8);
        opacity: 0;
    }
}

/* 3. حركة من اليسار لليمين */
@keyframes flyRight {
    0% {
        transform: translate(-15vw, 0) rotate(90deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    50% {
        transform: translate(50vw, 150px) rotate(70deg) scale(1.1);
    }

    85% {
        opacity: 0.7;
    }

    100% {
        transform: translate(110vw, -80px) rotate(100deg) scale(0.8);
        opacity: 0;
    }
}

/* 4. حركة من اليمين لليسار */
@keyframes flyLeft {
    0% {
        transform: translate(110vw, 0) rotate(-90deg) scale(0.8);
        opacity: 0;
    }

    15% {
        opacity: 0.7;
    }

    50% {
        transform: translate(50vw, -150px) rotate(-110deg) scale(1.1);
    }

    85% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-15vw, 80px) rotate(-80deg) scale(0.8);
        opacity: 0;
    }
}

/* توزيع الفراشات على المسارات */
/* قادمة من الأسفل */
.butterfly:nth-child(1) {
    left: 15%;
    bottom: 0;
    animation: flyUp 22s infinite;
}

.butterfly:nth-child(2) {
    left: 65%;
    bottom: 0;
    animation: flyUp 26s infinite 4s;
    font-size: 18px;
}

/* قادمة من الأعلى */
.butterfly:nth-child(3) {
    left: 35%;
    top: 0;
    animation: flyDown 24s infinite 2s;
}

.butterfly:nth-child(4) {
    left: 85%;
    top: 0;
    animation: flyDown 30s infinite 6s;
    font-size: 20px;
}

/* قادمة من اليسار */
.butterfly:nth-child(5) {
    left: 0;
    top: 20%;
    animation: flyRight 20s infinite 1s;
}

.butterfly:nth-child(6) {
    left: 0;
    top: 60%;
    animation: flyRight 28s infinite 8s;
    font-size: 22px;
}

/* قادمة من اليمين */
.butterfly:nth-child(7) {
    right: 0;
    top: 35%;
    animation: flyLeft 23s infinite 3s;
}

.butterfly:nth-child(8) {
    right: 0;
    top: 75%;
    animation: flyLeft 27s infinite 5s;
    font-size: 16px;
}

/* لمسة حركة إضافية */
.butterfly {
    transition: opacity 0.5s ease;
}

/* تأثير الانفجار عند النقر */
.butterfly-click {
    position: fixed;
    pointer-events: none;
    z-index: 10001;
    font-size: 20px;
    filter: sepia(100%) saturate(800%) brightness(110%) hue-rotate(10deg) drop-shadow(0 0 10px rgba(197, 160, 89, 0.8));
    animation: butterflyExplosion 1.2s cubic-bezier(0.1, 0.7, 1.0, 0.1) forwards;
}

@keyframes butterflyExplosion {
    0% {
        transform: translate(0, 0) scale(0) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx), var(--ty)) scale(1.5) rotate(var(--tr));
        opacity: 0;
    }
}

/* =========================================
   2. NAVIGATION (الهيدر والتنقل)
   ========================================= */
.navbar-custom {
    position: fixed;
    /* جعل الهيدر ثابت */
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    /* لتوسيط الهيدر في المنتصف */
    width: 95%;
    /* عرض الهيدر */
    max-width: 1440px;
    /* نفس عرض الـ container-custom الخاص بك */
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid #f0f0f0;
    border-top: none;
    padding: 12px 0;
    transition: 0.3s;
    z-index: 1000;
    border-radius: 0 0 var(--radius) var(--radius);
    /* جعل الحواف السفلية دائرية لتناسب التصميم */
}

.navbar-brand img {
    width: 50px;
}

.nav-link-custom {
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-size: 0.875rem;
    transition: 0.3s;
}

.nav-link-custom:hover {
    color: var(--gold);
}

/* تحسين شكل القائمة المنسدلة في الجوال */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        margin-top: 15px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        border: 1px solid #f1f1f1;
        padding: 15px;
    }

    .nav-link-custom {
        padding: 12px 20px;
        display: block;
        border-radius: 12px;
    }

    .nav-link-custom:hover {
        background: var(--gray-light);
        color: var(--gold);
    }
}

/* البحث (Search Box) */
.search-box {
    position: relative;
}

.search-input {
    border-radius: 50px;
    padding: 6px 15px 6px 35px;
    border: 1px solid #eee;
    background: #f8f9fa;
    text-align: right;
    width: 100%;
}

.search-btn {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: #777;
}

/* زر المفضلة في الهيدر - تصميم ذهبي (معدل) */
.fav-header-icon {
    width: 33px;
    /* تقليل الحجم بنسبة 10% (42 * 0.9 = 37.8، تم تقريبها إلى 38) */
    height: 33px;
    /* تقليل الحجم بنسبة 10% */
    background: var(--gold);
    border-radius: 50%;
    color: #fff;
    font-size: 1.05rem;
    border: 1px solid var(--gold);
    /* بوردر ذهبي */
    /* تم إزالة box-shadow و transition */
    text-decoration: none;
    display: flex;
    /* للتأكد من توسيط الأيقونة */
    align-items: center;
    justify-content: center;
}

.fav-header-icon:hover {
    color: #fff; /* بقاء الألوان كما هي عند الهوفر */
}

.fav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--gold);
    color: #fff; /* الرقم باللون الأبيض */
    font-size: 10px;
    font-weight: 800;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* =========================================
   3. BUTTONS (الأزرار)
   ========================================= */
.btn-gold {
    background: var(--gold);
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    background: var(--dark-gold) !important;
    color: white !important;
}

.btn-black {
    background: #000;
    color: #fff;
    border-radius: 0.75rem;
    padding: 0.75rem;
    font-size: 0.8rem;
    font-weight: bold;
    border: none;
    transition: 0.3s;
}

.btn-black:hover {
    background: var(--gold);
}

.btn-auth-lux {
    background: var(--dark);
    color: #fff;
    border-radius: 50px;
    padding: 6px 20px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn-auth-lux:hover {
    background: var(--gold);
    color: #fff;
}

.btn-primary {
    background: var(--gold);
    border: 2px solid var(--gold);
    color: #fff;
    transition: 0.3s;
}

.btn-primary:hover {
    background: rgb(158, 127, 68);
    border-color: rgb(158, 127, 68);
}

.btn-lux {
    background: var(--dark);
    color: #fff;
    border-radius: 15px;
    padding: 12px 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
    font-size: 0.9rem;
    margin-top: auto;
    /* يضمن بقاء الزر في أسفل الكارد دائماً */
}

.btn-lux:hover {
    background: var(--gold);
    color: #fff !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
}

/* =========================================
   4. HERO & BANNERS (الأقسام الرئيسية)
   ========================================= */
.hero-section {
    height: 450px;
    border-radius: 2.5rem;
    overflow: hidden;
    position: relative;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.hero-st {
    height: 480px;
    position: relative;
    border-radius: 35px;
    overflow: hidden;
    margin-top: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.hero-st img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.hero-overlay h1,
.hero-overlay p {
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-wrapper {
    position: relative;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.banner-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.banner-wrapper:hover img {
    transform: scale(1.06);
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 100%);
    display: flex;
    align-items: center;
    padding: 0 50px;
}

.nav-on-banner {
    position: absolute;
    bottom: 25px;
    left: 30px;
    z-index: 10;
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.arrow-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 160, 89, 0.4);
}

/* =========================================
   5. CATEGORIES & SERVICES (التصنيفات والخدمات)
   ========================================= */
.category-item {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.14);
    padding: 1rem 1.15rem;
    border-radius: 1.75rem;
    min-width: 150px;
    text-align: center;
    transition: 0.3s ease;
}

/* إضافة تأثيرات Hover لـ cat-link */
.cat-link {
    transition: all 0.3s ease;
    display: inline-block;
    /* لضمان تطبيق التحويلات بشكل صحيح على الروابط */
    text-decoration: none;
    /* للحفاظ على إزالة الخط السفلي إذا كان رابطًا */
    color: inherit;
    /* للحفاظ على لون النص الافتراضي */
}

.cat-link:hover .cat-circle {
    border-color: var(--gold);
    /* حدود ذهبية عند التأشير */
    transform: scale(1.15);
    /* تكبير العنصر قليلاً */
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    /* إضافة ظل خفيف */
}

.category-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.category-item:hover .category-circle {
    border-color: var(--gold);
    transform: scale(1.08);
    /* تكبير الدائرة قليلاً عند التأشير */
}

.cat-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #eee;
    transition: 0.3s;
}

.category-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
    margin-bottom: 0.5rem;
    background: white;
    padding: 3px;
}

@media (min-width: 768px) {
    .category-circle {
        width: 110px;
        height: 110px;
    }

    .hero-section {
        height: 600px;
    }
}

.service-card {
    background: white;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 1rem;
    height: 100%;
}

/* =========================================
   6. PRODUCT CARDS (بطاقات المنتجات)
   ========================================= */
.lux-card {
    background: #fff;
    border-radius: 22px;
    padding: 12px;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.lux-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.img-box {
    position: relative;
    /* ضروري لتموضع زر المفضلة */
}

.favorite-btn {
    background: #fff;
    /* خلفية بيضاء صلبة */
    border: 1px solid var(--gold);
    /* بوردر ذهبي */
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    /* لون القلب الذهبي للوضع العادي */
    /* تم إزالة transition و box-shadow */
    cursor: pointer;
    z-index: 10;
    flex-shrink: 0;
}

/* التموضع المطلق فقط داخل صناديق الصور (الكاردات) */
.img-box .favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
}

.favorite-btn.favorited,
.favorite-btn:hover {
    background: var(--gold);
    /* خلفية ذهبية */
    border-color: var(--gold);
    /* بوردر ذهبي */
    color: #fff;
    /* قلب أبيض */
}

.img-box {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 12px;
    background: #f9f9f9;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}

.lux-card:hover .img-box img {
    transform: scale(1.1) rotate(2deg);
}

.p-title {
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    text-align: center;
}

.p-price {
    color: var(--gold);
    font-weight: 900;
    font-size: 1.15rem;
    margin-bottom: 12px;
    display: block;
    text-align: center;
}

/* =========================================
   7. AUTH MODAL & DROPDOWNS (القوائم والتحقق)
   ========================================= */
.auth-modal-simple {
    border-radius: 24px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.14);
}

.auth-tabs .nav-link {
    border-radius: 999px;
    padding: 0.85rem 1.3rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #444;
    transition: 0.25s ease;
}

.auth-tabs .nav-link.active {
    background: var(--gold);
    color: #111;
    border-color: var(--gold);
}

.dropdown-menu-lux {
    border-radius: 15px;
    padding: 2px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    overflow: hidden;
}

.dropdown-item-lux {
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 600;
    display: flex;
    gap: 8px;
    text-decoration: none;
    color: var(--dark);
    transition: 0.2s;
    align-items: center;
}

.dropdown-item-lux:hover {
    background-color: var(--gray-light);
    color: var(--gold);
}

.dropdown-item-lux.text-danger:hover {
    background-color: #fff5f5;
    color: var(--danger);
}

/* =========================================
   8. FOOTER & MISC
   ========================================= */
.footer-bottom {
    font-size: 12px;
    color: #6f6345;
}

.footer-bottom .footer-label {
    color: var(--dark-gold);
    font-weight: 700;
}

#scrollTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--gold);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 1000;
}

#scrollTop.visible {
    opacity: 1;
    visibility: visible;
}

/* FAQ */
.faq-item {
    transition: 0.3s;
    border: 1px solid #f0f0f0;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-out;
    opacity: 0;
}

.faq-item.active .faq-answer {
    opacity: 1;
    max-height: fit-content;
    margin-top: 10px;
}

/* Swiper Pagination */
.swiper {
    padding-bottom: 60px !important;
    /* مساحة من الأعلى لمنع الالتصاق بالكاردات */
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    background: #d1d1d1;
    opacity: 0.6;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--gold) !important;
    width: 30px !important;
    border-radius: 20px !important;
    opacity: 1;
}

/* =========================================
   9. ADMIN TOP BAR (الموقع الرئيسي)
   ========================================= */
.admin-top-bar {
    background: #1a1a1a;
    height: 40px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2000;
    border-bottom: 1px solid var(--gold);
    font-size: 13px;
}

.admin-top-bar a {
    color: #e0e0e0;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 600;
}

.admin-top-bar a:hover {
    color: var(--gold);
}

/* Desktop adjustments when admin bar is present */
@media (min-width: 768px) {
    .has-admin-bar {
        padding-top: 130px !important;
        /* 40px for admin-top-bar + 90px for navbar-custom */
    }

    .has-admin-bar .navbar-custom {
        top: 40px !important;
        /* Pushed down by admin-top-bar */
    }
}

/* Mobile Admin Toggle Button */
.admin-mobile-toggle {
    position: fixed;
    bottom: 90px;
    /* Above scrollTop button */
    left: 20px;
    z-index: 1050;
    /* Above navbar-custom (1000) and scrollTop (1000) */
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    background-color: var(--dark) !important;
    color: var(--gold) !important;
    border: none;
    font-size: 1.2rem;
    transition: 0.3s;
}

.admin-mobile-toggle:hover {
    transform: scale(1.1);
}

/* الأرشيف - تحسين شكل البانر العلوي */
.section-banner {
    height: 350px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    margin-bottom: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.section-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 2; /* تأكد أن Overlay يبقى فوق الصورة */
}

/* فئة جديدة لتطبيق البلور على خلفية الوصف فقط */
.description-blur-wrapper {
    background-color: rgba(0, 0, 0, 0.4); /* خلفية شبه شفافة */
    backdrop-filter: blur(5px); /* تأثير التمويه */
    -webkit-backdrop-filter: blur(5px); /* لدعم متصفح سفاري */
    padding: 8px 15px;
    border-radius: 8px;
    display: inline-block; /* لضمان تطبيق البادينج والحدود بشكل صحيح */
    margin-top: 10px; /* مسافة من العنوان */
    max-width: 100%; /* لضمان عدم تجاوز العرض */
}

.description-blur-wrapper p {
    margin-bottom: 0; /* إزالة الهامش السفلي الافتراضي للفقرة */
    color: #fff; /* التأكد من أن لون النص أبيض */
}

.banner-overlay h2,
.section-banner-overlay h1 {
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

:root {
    --gold-primary: #c5a021;
    --gold-soft: #d4af37;
    --text-color: #5a5a5a;
    --border-color: #e2d1a7;
    --bg-soft: #fffdf9;
}

.favorite-btn.favorited {
}
body {
    background-color: var(--bg-soft);
    color: var(--text-color);
    font-family: 'Tajawal', sans-serif;
}

.contact-wrapper {
    max-width: 850px;
    margin: 0 auto;
    padding: 80px 20px;
}

.header-box {
    text-align: center;
    margin-bottom: 50px;
}

.header-box h1 {
    color: var(--gold-primary);
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.header-box p {
    color: #999;
    font-size: 1.1rem;
}

/* تنسيق الحقول */
.label-gold {
    display: block;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 10px;
    margin-right: 5px;
    font-size: 0.9rem;
}

.input-gold {
    width: 100%;
    padding: 15px 20px;
    border: 1.5px solid var(--border-color);
    border-radius: 15px;
    /* ريديوس الحقول */
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-gold:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 12px rgba(197, 160, 33, 0.1);
}

/* زر الإرسال */
.btn-gold-action {
    background: linear-gradient(45deg, var(--gold-primary), var(--gold-soft));
    color: white;
    border: none;
    padding: 18px;
    border-radius: 15px;
    /* ريديوس الزر */
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(197, 160, 33, 0.2);
}

.btn-gold-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 160, 33, 0.3);
    filter: brightness(1.1);
}

/* التنبيهات */
.custom-alert {
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    margin-bottom: 35px;
    font-weight: 600;
}

.alert-success-gold {
    background-color: #f0f9f0;
    color: #2d7d32;
    border: 1px solid #c8e6c9;
}

.alert-error-gold {
    background-color: #fff5f5;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
}

.field-spacer {
    margin-bottom: 30px;
}