/* ═══════════════════════════════════════════
   السعر المطلوب — Main Stylesheet
   Colors: Primary (#1e40af) + Secondary/Gold (#d4af37) + Dark (#111827)
   ═══════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --secondary: #d4af37;
    --secondary-dark: #b8941f;
    --secondary-light: #e6c84a;
    --gold: #d4af37;
    --dark: #111827;
    --dark-soft: #1f2937;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --green-500: #22c55e;
    --red-500: #ef4444;
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --shadow: 0 10px 30px -5px rgba(30,64,175,0.12);
    --shadow-lg: 0 20px 40px -10px rgba(30,64,175,0.2);
    --shadow-gold: 0 10px 30px -5px rgba(212,175,55,0.25);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Tajawal', sans-serif;
    direction: rtl;
    background: var(--white);
    color: var(--dark);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ═══ Scroll Reveal ═══ */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .1s; }
.rv.d2 { transition-delay: .2s; }
.rv.d3 { transition-delay: .3s; }
.rv.d4 { transition-delay: .4s; }

.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ═══════════════════════════════════════════
   FLOATING NAVBAR — Island Style
   ═══════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 10px;
    left: 8px;
    right: 8px;
    z-index: 1000;
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 1.2rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
}

.navbar.scrolled { top: 6px; left: 10px; right: 10px; }
.navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: rgba(30, 64, 175, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(30, 64, 175, 0.04);
    border-radius: 16px;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; flex-shrink: 0; }
.logo-img { width: 44px; height: 44px; object-fit: contain; border-radius: 8px; transition: transform .3s; }
.logo:hover .logo-img { transform: scale(1.05); }
.logo-text { font-size: 1rem; font-weight: 800; transition: color .4s; white-space: nowrap; }
.logo-text .text-primary-part { color: var(--white); transition: color .4s; }
.logo-text .text-secondary-part { color: var(--secondary); }
.navbar.scrolled .logo-text .text-primary-part { color: var(--primary); }

/* Center Links */
.nav-links { display: flex; gap: 0.1rem; align-items: center; list-style: none; }
.nav-links a {
    color: rgba(255, 255, 255, 0.75); text-decoration: none; font-weight: 600;
    font-size: .85rem; padding: .42rem .9rem; border-radius: 10px;
    transition: all .25s; white-space: nowrap;
}
.nav-links a:hover { color: var(--white); background: rgba(255, 255, 255, 0.1); }
.nav-links a.active { color: var(--white); background: var(--primary); }

.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); background: rgba(30, 64, 175, 0.05); }
.navbar.scrolled .nav-links a.active { color: var(--white); background: var(--primary); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
    color: rgba(255, 255, 255, 0.75); background: none; border: none; font-weight: 600;
    font-size: .85rem; padding: .42rem .9rem; border-radius: 10px;
    transition: all .25s; white-space: nowrap; cursor: pointer;
    font-family: 'Tajawal', sans-serif; display: flex; align-items: center; gap: .3rem;
}
.nav-dropdown-btn svg { width: 14px; height: 14px; transition: transform .3s; }
.nav-dropdown:hover .nav-dropdown-btn svg { transform: rotate(180deg); }
.navbar.scrolled .nav-dropdown-btn { color: var(--dark); }
.nav-dropdown-menu {
    position: absolute; top: 100%; right: 0; margin-top: .5rem;
    background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
    min-width: 200px; padding: .5rem 0; opacity: 0; visibility: hidden;
    transform: translateY(10px); transition: all .3s; z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-menu a {
    display: block; padding: .6rem 1.2rem; color: var(--dark) !important;
    font-size: .88rem; transition: all .2s;
}
.nav-dropdown-menu a:hover { background: var(--gray-50); color: var(--primary) !important; }

/* CTA */
.nav-cta {
    display: inline-flex; align-items: center; padding: .48rem 1.2rem;
    background: var(--secondary); color: var(--white); border-radius: 12px;
    font-weight: 700; font-size: .82rem; text-decoration: none;
    transition: all .3s; flex-shrink: 0; border: none; cursor: pointer;
    font-family: 'Tajawal', sans-serif;
}
.nav-cta:hover { background: var(--secondary-dark); transform: translateY(-1px); box-shadow: var(--shadow-gold); }

/* Hamburger */
.menu-toggle {
    display: none; background: none; border: none; cursor: pointer;
    width: 38px; height: 38px; border-radius: 10px;
    align-items: center; justify-content: center;
    transition: background .3s; position: relative;
}
.menu-toggle:hover { background: rgba(255, 255, 255, 0.08); }
.navbar.scrolled .menu-toggle:hover { background: rgba(30, 64, 175, 0.05); }

.hb {
    display: block; height: 2px; background: var(--white);
    border-radius: 2px; transition: all .35s; position: absolute; right: 9px;
}
.hb:nth-child(1) { top: 12px; width: 20px; }
.hb:nth-child(2) { top: 17px; width: 14px; }
.hb:nth-child(3) { top: 22px; width: 17px; }
.navbar.scrolled .hb { background: var(--primary); }

/* ═══════════════════════════════════════════
   MOBILE SIDEBAR
   ═══════════════════════════════════════════ */
.sb-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
    z-index: 1998; opacity: 0; visibility: hidden; transition: all .35s;
}
.sb-overlay.open { opacity: 1; visibility: visible; }

.sidebar {
    position: fixed; top: 0; right: -310px; width: 290px; max-width: 82vw;
    height: 100vh; height: 100dvh; background: var(--white); z-index: 1999;
    transition: right .4s cubic-bezier(.4, 0, .2, 1);
    display: flex; flex-direction: column; overflow-y: auto;
    border-radius: 0 20px 20px 0;
}
.sidebar.open { right: 0; }

.sb-close {
    position: absolute; top: .9rem; left: .9rem;
    background: var(--gray-50); border: none;
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--dark); transition: all .3s;
}
.sb-close:hover { background: var(--primary); color: var(--white); }

.sb-head { text-align: center; padding: 2.2rem 1.3rem 1.1rem; border-bottom: 1px solid var(--gray-100); }
.sb-head img { width: 65px; height: 65px; border-radius: 12px; }
.sb-tagline { font-size: .78rem; color: var(--gray-500); margin-top: .4rem; font-weight: 600; }

.sb-nav { flex: 1; padding: .6rem 0; }
.sb-link {
    display: flex; align-items: center; gap: .7rem;
    padding: .7rem 1.1rem; color: var(--dark); text-decoration: none;
    font-weight: 600; font-size: .9rem; transition: all .25s;
    margin: 0 .5rem; border-radius: 10px;
}
.sb-link:hover { background: var(--gray-50); color: var(--primary); }
.sb-link.active { background: rgba(30, 64, 175, 0.07); color: var(--primary); }
.sb-link svg { flex-shrink: 0; color: var(--gray-500); transition: color .25s; width: 19px; height: 19px; }
.sb-link:hover svg, .sb-link.active svg { color: var(--primary); }

.sb-foot { padding: .9rem 1.1rem 1.8rem; border-top: 1px solid var(--gray-100); }
.sb-cta {
    display: flex; align-items: center; justify-content: center;
    padding: .75rem; background: var(--secondary); color: var(--white);
    border-radius: 12px; font-weight: 700; font-size: .9rem;
    text-decoration: none; transition: all .3s; margin-bottom: .5rem;
}
.sb-cta:hover { background: var(--secondary-dark); }

.sb-phone {
    display: flex; align-items: center; justify-content: center; gap: .5rem;
    padding: .6rem; background: var(--gray-50); color: var(--dark);
    border-radius: 12px; font-weight: 600; font-size: .82rem;
    text-decoration: none; transition: all .3s; direction: ltr;
}
.sb-phone:hover { background: var(--gray-100); color: var(--primary); }

@media (max-width: 1024px) {
    .nav-links, .nav-cta, .nav-dropdown { display: none; }
    .menu-toggle { display: flex; }
}
@media (max-width: 640px) {
    .navbar { left: 6px; right: 6px; top: 8px; }
    .navbar.scrolled { left: 6px; right: 6px; top: 6px; }
    .nav-inner { height: 54px; padding: 0 .85rem; border-radius: 14px; }
    .navbar.scrolled .nav-inner { border-radius: 14px; }
    .logo-img { width: 36px; height: 36px; }
    .logo-text { font-size: .88rem; }
}

/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; display: flex; align-items: center;
    justify-content: center; overflow: hidden; padding-top: 80px;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to left, rgba(30,64,175,0.92), rgba(30,64,175,0.75), rgba(17,24,39,0.85));
}
.hero-content {
    position: relative; z-index: 10; max-width: 1280px;
    margin: 0 auto; padding: 0 1.5rem; color: var(--white);
}
.hero-content h1 { font-size: 3.5rem; font-weight: 800; margin-bottom: 1.5rem; line-height: 1.2; }
.hero-content p { font-size: 1.35rem; margin-bottom: 2rem; color: rgba(255,255,255,0.9); max-width: 650px; }
.hero-features { display: flex; gap: 2rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.hero-feature { display: flex; align-items: center; gap: 0.5rem; }
.hero-feature svg { color: var(--secondary); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    background: var(--secondary); color: var(--white); padding: 1rem 2rem;
    border-radius: var(--radius); border: none; font-family: 'Tajawal',sans-serif;
    font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all .3s;
    display: inline-flex; align-items: center; gap: 0.5rem; text-decoration: none;
}
.btn-primary:hover { background: var(--secondary-dark); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-secondary {
    background: var(--white); color: var(--primary); padding: 1rem 2rem;
    border-radius: var(--radius); border: 2px solid var(--white); font-family: 'Tajawal',sans-serif;
    font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all .3s;
    text-decoration: none; display: inline-flex; align-items: center;
}
.btn-secondary:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--primary); padding: 0.85rem 1.8rem;
    border-radius: var(--radius); border: 2px solid var(--primary); font-family: 'Tajawal',sans-serif;
    font-size: 1rem; font-weight: 700; cursor: pointer; transition: all .3s;
    text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 10; animation: bounce 2s infinite; }
.scroll-indicator-inner { width: 1.5rem; height: 2.5rem; border: 2px solid var(--secondary); border-radius: 1rem; display: flex; align-items: flex-start; justify-content: center; padding: 0.5rem; }
.scroll-indicator-dot { width: 0.25rem; height: 0.75rem; background: var(--secondary); border-radius: 0.25rem; }
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-10px)} }

/* ═══════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-gray { background: var(--gray-50); }
.section-accent { background: var(--gray-100); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.75rem; }
.section-header .subtitle { font-size: 1.1rem; color: var(--gray-600); max-width: 48rem; margin: 0 auto; }
.section-header .divider { width: 60px; height: 3px; background: var(--secondary); margin: 1rem auto 0; border-radius: 2px; }
.text-center { text-align: center; }

/* ═══════════════════════════════════════════
   PAGE HEADER (Inner Pages)
   ═══════════════════════════════════════════ */
.page-header {
    position: relative; padding: 160px 0 80px; text-align: center;
    background: var(--primary); overflow: hidden;
}
.page-header-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.15;
}
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--primary), rgba(30,64,175,0.85)); }
.page-header * { position: relative; z-index: 2; }
.page-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.page-header p { color: rgba(255,255,255,0.9); font-size: 1.1rem; }
.breadcrumb { margin-top: 1.5rem; font-size: 0.9rem; color: var(--gray-300); }
.breadcrumb a { color: var(--secondary); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 0.5rem; }

/* ═══════════════════════════════════════════
   CATEGORIES GRID
   ═══════════════════════════════════════════ */
.categories-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.category-card {
    position: relative; border-radius: var(--radius-xl); overflow: hidden;
    box-shadow: var(--shadow); transition: all .35s; aspect-ratio: 4/3;
}
.category-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.category-card a { text-decoration: none; color: inherit; display: block; height: 100%; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.category-card:hover img { transform: scale(1.1); }
.category-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.category-card-overlay .emoji { font-size: 2.5rem; margin-bottom: 0.5rem; }
.category-card-overlay h3 { font-size: 1.5rem; font-weight: 800; color: var(--white); margin-bottom: 0.3rem; }
.category-card-overlay p { color: rgba(255,255,255,0.9); font-size: 0.92rem; }

/* ═══════════════════════════════════════════
   PRODUCTS GRID
   ═══════════════════════════════════════════ */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.product-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all .35s ease; border: 1px solid var(--gray-100);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.product-card a { text-decoration: none; color: inherit; display: block; }
.product-image { position: relative; height: 16rem; overflow: hidden; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 1rem; left: 1rem; background: var(--primary); color: var(--white);
    padding: 0.4rem 0.8rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 700;
}
.product-discount-badge {
    position: absolute; top: 1rem; right: 1rem; background: var(--red-500); color: var(--white);
    padding: 0.4rem 0.8rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 700;
}
.product-content { padding: 1.5rem; }
.product-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; line-height: 1.4; }
.product-content p { color: var(--gray-600); margin-bottom: 1rem; font-size: 0.9rem; min-height: 50px; line-height: 1.6; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.product-price { color: var(--secondary-dark); font-weight: 700; font-size: 1.05rem; }
.product-original-price { text-decoration: line-through; color: var(--gray-400); font-size: 0.9rem; margin-right: .5rem; }
.product-btn {
    width: 100%; background: var(--primary); color: var(--white); padding: 0.75rem;
    border-radius: 0.5rem; border: none; font-family: 'Tajawal',sans-serif; font-weight: 600;
    cursor: pointer; transition: all .3s; display: flex; align-items: center;
    justify-content: center; gap: 0.5rem; font-size: 0.92rem;
}
.product-btn:hover { background: var(--primary-dark); }

/* ═══════════════════════════════════════════
   SERVICES / FEATURES GRID
   ═══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.feature-card {
    padding: 2rem; border-radius: var(--radius); background: var(--white);
    transition: all .35s ease; border: 1px solid var(--gray-100);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04); text-align: center;
}
.feature-card:hover { background: var(--primary); transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.feature-icon {
    display: inline-flex; padding: 0.85rem; background: rgba(30,64,175,0.1);
    border-radius: 50%; margin-bottom: 1.25rem; width: 64px; height: 64px;
    align-items: center; justify-content: center;
}
.feature-card:hover .feature-icon { background: rgba(255,255,255,0.2); }
.feature-icon svg { color: var(--primary); width: 28px; height: 28px; }
.feature-card:hover .feature-icon svg { color: var(--white); }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--dark); margin-bottom: 0.75rem; transition: color .3s; }
.feature-card:hover h3 { color: var(--white); }
.feature-card p { color: var(--gray-600); font-size: 0.92rem; transition: color .3s; line-height: 1.7; }
.feature-card:hover p { color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats-section {
    background: var(--primary); border-radius: var(--radius-xl); padding: 3rem; color: var(--white);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2rem; text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.3rem; }
.stat-label { font-size: 1rem; color: rgba(255,255,255,0.85); }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section { background: var(--gray-50); padding: 5rem 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card {
    background: var(--white); padding: 1.5rem; border-radius: var(--radius); box-shadow: var(--shadow);
    border: 1px solid var(--gray-100); transition: all .3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.testimonial-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testimonial-avatar { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; border: 2px solid var(--secondary); }
.testimonial-info h4 { font-weight: 700; color: var(--dark); }
.testimonial-info span { font-size: 0.85rem; color: var(--gray-500); }
.testimonial-stars { color: var(--secondary); font-size: 1.1rem; margin-bottom: 0.75rem; }
.testimonial-text { color: var(--gray-600); line-height: 1.8; font-size: 0.95rem; }

/* Slider style */
.testimonial-slider { position: relative; max-width: 700px; margin: 0 auto; }
.testimonial-slide { display: none; text-align: center; padding: 2rem 0; }
.testimonial-slide.active { display: block; }
.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.testimonial-btn-ctrl {
    background: var(--white); border: 1px solid var(--gray-200); width: 40px; height: 40px;
    border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center;
    transition: all .3s; font-size: 1.2rem; color: var(--primary);
}
.testimonial-btn-ctrl:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: all .3s; }
.testimonial-dot.active { background: var(--primary); width: 28px; border-radius: 5px; }

/* ═══════════════════════════════════════════
   BLOG GRID
   ═══════════════════════════════════════════ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-bottom: 3rem; }
.blog-card {
    background: var(--white); border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); transition: all .35s ease; border: 1px solid var(--gray-100);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }
.blog-card a { text-decoration: none; color: inherit; display: block; }
.blog-image { position: relative; height: 14rem; overflow: hidden; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.blog-card:hover .blog-image img { transform: scale(1.08); }
.blog-category {
    position: absolute; top: 1rem; right: 1rem; background: var(--primary); color: var(--white);
    padding: 0.35rem 0.9rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 700;
}
.blog-content { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.82rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.blog-content h3 { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; transition: color .3s; line-height: 1.5; }
.blog-card:hover h3 { color: var(--primary); }
.blog-excerpt { color: var(--gray-600); margin-bottom: 1rem; font-size: 0.9rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-link { color: var(--primary); font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap .3s; font-size: 0.92rem; }
.blog-link:hover { gap: 0.75rem; }

/* ═══════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════ */
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question {
    width: 100%; background: none; border: none; padding: 1.5rem 0; display: flex;
    justify-content: space-between; align-items: center; cursor: pointer;
    font-family: 'Tajawal',sans-serif; font-size: 1.05rem; font-weight: 700;
    color: var(--dark); text-align: right; transition: color .3s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon { font-size: 1.5rem; color: var(--secondary); transition: transform .3s; font-weight: 300; }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s ease;
    color: var(--gray-600); line-height: 1.8; font-size: 0.95rem;
}
.faq-answer.open { max-height: 500px; padding-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section h2 { font-size: 2.3rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,0.9); font-size: 1.05rem; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ═══════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label { display: block; margin-bottom: 0.4rem; font-weight: 600; color: var(--dark); font-size: 0.92rem; }
.contact-form input, .contact-form textarea, .contact-form select {
    width: 100%; padding: 0.85rem 1rem; border: 2px solid var(--gray-200);
    border-radius: 0.5rem; font-family: 'Tajawal',sans-serif; font-size: 0.95rem;
    transition: border-color .3s; background: var(--white); direction: rtl;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
    outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30,64,175,0.1);
}
.contact-info-card {
    background: var(--primary); color: var(--white); padding: 2.5rem; border-radius: var(--radius);
}
.contact-info-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.contact-info-item svg { color: var(--secondary); flex-shrink: 0; margin-top: 0.2rem; }
.contact-info-item a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color .3s; }
.contact-info-item a:hover { color: var(--secondary); }

/* Map */
.map-container { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.map-container iframe { width: 100%; height: 400px; border: 0; }

/* ═══════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════ */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.gallery-item {
    position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
    cursor: pointer; transition: transform .3s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
    opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-tag { background: var(--primary); color: var(--white); padding: 0.3rem 0.7rem; border-radius: 1rem; font-size: 0.75rem; font-weight: 700; display: inline-block; margin-bottom: 0.5rem; width: fit-content; }
.gallery-title { color: var(--white); font-weight: 700; font-size: 1.05rem; }

/* ═══════════════════════════════════════════
   PACKAGES
   ═══════════════════════════════════════════ */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; }
.package-card {
    background: var(--white); border-radius: var(--radius); padding: 2.5rem 2rem;
    text-align: center; box-shadow: var(--shadow); transition: all .35s; border: 2px solid var(--gray-100);
    position: relative;
}
.package-card.popular { border-color: var(--secondary); }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--secondary); color: var(--white); padding: 0.3rem 1.2rem; border-radius: 2rem; font-size: 0.8rem; font-weight: 700; }
.package-name { font-size: 1.4rem; font-weight: 800; color: var(--dark); margin-bottom: 1rem; }
.package-price { font-size: 2.5rem; font-weight: 800; color: var(--primary); margin-bottom: 0.5rem; }
.package-price small { font-size: 1rem; font-weight: 600; }
.package-items { list-style: none; margin: 1.5rem 0; text-align: right; }
.package-items li { padding: 0.5rem 0; border-bottom: 1px solid var(--gray-100); color: var(--gray-600); font-size: 0.92rem; }
.package-items li::before { content: '✓'; color: var(--green-500); margin-left: 0.5rem; font-weight: 700; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: var(--gray-900); color: var(--white); }
.footer-newsletter { background: var(--primary); padding: 3rem 0; }
.footer-content { padding: 4rem 0; }
.footer-logo { display: inline-block; margin-bottom: 1rem; }
.footer-logo img { border-radius: 8px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer-section h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 1.2rem; color: var(--secondary); }
.footer-section p { color: var(--gray-400); margin-bottom: 1.2rem; line-height: 1.8; font-size: 0.92rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link {
    width: 2.5rem; height: 2.5rem; background: rgba(255,255,255,0.1); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    transition: all .3s; text-decoration: none; color: var(--white);
}
.social-link:hover { background: var(--secondary); color: var(--white); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--gray-400); text-decoration: none; transition: color .3s; font-size: 0.92rem; }
.footer-links a:hover { color: var(--secondary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.92rem; }
.footer-contact-item svg { color: var(--secondary); flex-shrink: 0; margin-top: 0.2rem; }
.footer-contact-item span, .footer-contact-item a { color: var(--gray-400); }
.footer-contact-item a { text-decoration: none; transition: color .3s; }
.footer-contact-item a:hover { color: var(--secondary); }
.newsletter-section { border-top: 1px solid var(--gray-700); padding-top: 2.5rem; text-align: center; }
.newsletter-section h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.newsletter-section p { color: var(--gray-400); margin-bottom: 1.2rem; font-size: 0.92rem; }
.newsletter-form { display: flex; gap: 0.75rem; max-width: 32rem; margin: 0 auto; }
.newsletter-input { flex: 1; padding: 0.75rem 1.2rem; border-radius: 0.5rem; border: none; font-family: 'Tajawal',sans-serif; direction: rtl; font-size: 0.95rem; }
.newsletter-btn { background: var(--secondary); color: var(--white); padding: 0.75rem 1.8rem; border-radius: 0.5rem; border: none; font-family: 'Tajawal',sans-serif; font-weight: 700; cursor: pointer; transition: all .3s; }
.newsletter-btn:hover { background: var(--secondary-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 1.5rem 0; }
.footer-bottom-content { display: flex; justify-content: space-between; align-items: center; color: var(--gray-500); font-size: 0.85rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: var(--gray-500); text-decoration: none; transition: color .3s; }
.footer-bottom-links a:hover { color: var(--secondary); }

/* ═══════════════════════════════════════════
   FLOATING BUTTONS
   ═══════════════════════════════════════════ */
.floating-btns { position: fixed; bottom: 2rem; left: 2rem; z-index: 999; display: flex; flex-direction: column; gap: 0.75rem; }
.float-btn {
    width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center;
    justify-content: center; border: none; cursor: pointer; transition: all .3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2); text-decoration: none;
}
.float-btn.whatsapp { background: #25D366; color: white; }
.float-btn.whatsapp:hover { background: #1EA952; transform: scale(1.1); }
.float-btn.phone-call { background: var(--primary); color: var(--white); }
.float-btn.phone-call:hover { background: var(--primary-dark); transform: scale(1.1); }
.float-btn.scroll-top { background: var(--secondary); color: var(--white); }
.float-btn.scroll-top:hover { background: var(--secondary-dark); transform: scale(1.1); }

/* ═══════════════════════════════════════════
   NOTIFICATION TOAST
   ═══════════════════════════════════════════ */
.toast-notification {
    position: fixed; top: 80px; left: 50%; transform: translateX(-50%) translateY(-20px);
    padding: 1rem 2rem; border-radius: var(--radius); z-index: 2000;
    font-weight: 600; font-size: 0.95rem; box-shadow: var(--shadow-lg);
    opacity: 0; transition: all .4s ease; pointer-events: none;
}
.toast-notification.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast-notification.success { background: var(--green-500); color: var(--white); }
.toast-notification.error { background: var(--red-500); color: var(--white); }
.toast-notification.info { background: var(--primary); color: var(--white); }

/* ═══════════════════════════════════════════
   POST DETAIL
   ═══════════════════════════════════════════ */
.post-detail { max-width: 800px; margin: 0 auto; padding: 3rem 1.5rem; }
.post-detail h1 { font-size: 2.2rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.4; }
.post-meta-detail { display: flex; gap: 1.5rem; color: var(--gray-500); font-size: 0.9rem; margin-bottom: 2rem; flex-wrap: wrap; }
.post-featured-image { width: 100%; border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.post-featured-image img { width: 100%; height: auto; }
.post-body { line-height: 2; color: var(--dark); font-size: 1.05rem; }
.post-body h2 { font-size: 1.5rem; margin: 2rem 0 1rem; color: var(--primary); }
.post-body p { margin-bottom: 1.2rem; }
.post-body img { max-width: 100%; border-radius: 0.5rem; margin: 1.5rem 0; }
.post-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--gray-200); }
.post-tag { background: var(--gray-100); color: var(--primary); padding: 0.3rem 0.8rem; border-radius: 2rem; font-size: 0.82rem; font-weight: 600; text-decoration: none; transition: all .3s; }
.post-tag:hover { background: var(--primary); color: var(--white); }

/* ═══════════════════════════════════════════
   REVIEWS / CLIENT REVIEWS FORM
   ═══════════════════════════════════════════ */
.review-form-section { background: var(--gray-50); padding: 3rem; border-radius: var(--radius); margin-top: 3rem; }
.review-form-section h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--primary); }
.star-rating { display: flex; gap: 0.25rem; direction: ltr; margin-bottom: 1rem; }
.star-rating label { cursor: pointer; font-size: 1.8rem; color: var(--gray-300); transition: color .2s; }
.star-rating label:hover, .star-rating label:hover ~ label, .star-rating input:checked ~ label { color: var(--secondary); }
.star-rating input { display: none; }

/* ═══════════════════════════════════════════
   FILTER BAR
   ═══════════════════════════════════════════ */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.filter-btn {
    padding: 0.5rem 1.2rem; border: 1px solid var(--gray-200); border-radius: 2rem;
    background: var(--white); color: var(--gray-600); font-family: 'Tajawal',sans-serif;
    font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ═══════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════ */
.pagination { display: flex; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination a, .pagination span {
    padding: 0.5rem 1rem; border-radius: 0.5rem; font-weight: 600;
    text-decoration: none; transition: all .3s; font-size: 0.9rem;
}
.pagination a { background: var(--white); color: var(--dark); border: 1px solid var(--gray-200); }
.pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .current { background: var(--primary); color: var(--white); border: 1px solid var(--primary); }

/* ═══════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════ */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 0.5rem; }
.empty-state p { color: var(--gray-500); }

/* ═══════════════════════════════════════════
   GOLD SECTION (Category specific)
   ═══════════════════════════════════════════ */
.gold-prices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.gold-price-card {
    background: var(--white); border-radius: var(--radius); padding: 1.5rem;
    text-align: center; box-shadow: var(--shadow); border-top: 4px solid var(--secondary);
    transition: all .3s;
}
.gold-price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gold-price-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.gold-price-card .price { font-size: 2rem; font-weight: 800; color: var(--secondary); margin-bottom: 0.3rem; }
.gold-price-card .unit { font-size: 0.85rem; color: var(--gray-500); }
.gold-price-card .change { display: inline-flex; align-items: center; gap: .3rem; font-size: 0.85rem; margin-top: .5rem; }
.gold-price-card .change.up { color: var(--green-500); }
.gold-price-card .change.down { color: var(--red-500); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p { font-size: 1.05rem; }
    .section-header h2 { font-size: 1.8rem; }
    .products-grid, .features-grid, .blog-grid, .gallery-grid, .packages-grid, .testimonials-grid, .categories-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-bottom-content { flex-direction: column; gap: 1rem; }
    .hero-features { flex-direction: column; }
    .hero-buttons { flex-direction: column; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .floating-btns { bottom: 1rem; left: 1rem; }
    .gold-prices-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .section { padding: 3.5rem 0; }
    .hero-content h1 { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.8rem; }
    .page-header { padding: 130px 0 60px; }
    .gold-prices-grid { grid-template-columns: 1fr 1fr; }
}

/* ═══ Custom Scrollbar ═══ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* ═══ Print ═══ */
@media print { .navbar, .footer, .floating-btns, .no-print { display: none !important; } }
