/* ═══════════════════════════════════════════
   أمجاد نجد للخيام — Main Stylesheet
   Colors: Maroon (#6B1C23) + Cream (#E8D5B7) + Dark (#1A1A1A)
   ═══════════════════════════════════════════ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --maroon: #6B1C23;
    --maroon-dark: #4A1219;
    --maroon-light: #8B2E38;
    --cream: #E8D5B7;
    --cream-light: #F5EDE0;
    --cream-dark: #D4B896;
    --sand: #C4A87C;
    --dark: #1A1A1A;
    --dark-soft: #2A2A2A;
    --white: #ffffff;
    --gray-50: #FAFAF8;
    --gray-100: #F3F1ED;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --radius: 0.75rem;
    --shadow: 0 10px 30px -5px rgba(107,28,35,0.12);
    --shadow-lg: 0 20px 40px -10px rgba(107,28,35,0.2);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', 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 (Tight)
   ═══════════════════════════════════════════
   استبدل قسم NAVIGATION بالكامل في style.css بهذا
   ═══════════════════════════════════════════ */

.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: 60px;
    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(107, 28, 35, 0.06);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(107, 28, 35, 0.04);
    border-radius: 16px;
}

/* ─── Logo ─── */
.logo { display: flex; align-items: center; gap: .55rem; text-decoration: none; flex-shrink: 0; }
.logo-img { width: 40px; height: 40px; object-fit: contain; border-radius: 8px; transition: transform .3s; }
.logo:hover .logo-img { transform: scale(1.05); }
.logo-text { font-size: .95rem; font-weight: 800; color: var(--white); transition: color .4s; white-space: nowrap; }
.navbar.scrolled .logo-text { color: var(--maroon); }

/* ─── Center Links ─── */
.nav-links { display: flex; gap: 0.1rem; align-items: center; list-style: none; }
.nav-links a {
    color: rgba(255, 255, 255, 0.7); text-decoration: none; font-weight: 600;
    font-size: .83rem; padding: .4rem .85rem; 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(--maroon); }

.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .nav-links a:hover { color: var(--maroon); background: rgba(107, 28, 35, 0.05); }
.navbar.scrolled .nav-links a.active { color: var(--white); background: var(--maroon); }

/* ─── CTA ─── */
.nav-cta {
    display: inline-flex; align-items: center; padding: .45rem 1.1rem;
    background: var(--maroon); color: var(--white); border-radius: 12px;
    font-weight: 700; font-size: .8rem; text-decoration: none;
    transition: all .3s; flex-shrink: 0;
    border: none; cursor: pointer; font-family: 'Cairo', sans-serif;
}
.nav-cta:hover { background: var(--maroon-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(107, 28, 35, 0.3); }

/* ─── 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(107, 28, 35, 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(--maroon); }

/* ═══════════════════════════════════════════
   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(--maroon); 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: 60px; height: 60px; border-radius: 12px; }
.sb-tagline { font-size: .76rem; 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(--cream-light); color: var(--maroon); }
.sb-link.active { background: rgba(107, 28, 35, 0.07); color: var(--maroon); }
.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(--maroon); }

.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(--maroon); 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(--maroon-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(--cream-light); color: var(--maroon); }

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .nav-links, .nav-cta { 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: 52px; padding: 0 .85rem; border-radius: 14px; }
    .navbar.scrolled .nav-inner { border-radius: 14px; }
    .logo-img { width: 34px; height: 34px; }
    .logo-text { font-size: .85rem; }
}
/* ═══════════════════════════════════════════
   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(26,26,26,0.92), rgba(107,28,35,0.75), rgba(26,26,26,0.7));
}
.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: var(--cream); max-width: 600px; }
.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(--cream); }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
    background: var(--maroon); color: var(--white); padding: 1rem 2rem;
    border-radius: var(--radius); border: none; font-family: 'Cairo',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(--maroon-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-secondary {
    background: var(--cream); color: var(--maroon); padding: 1rem 2rem;
    border-radius: var(--radius); border: 2px solid var(--cream); font-family: 'Cairo',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: var(--white); border-color: var(--white); transform: translateY(-2px); }
.btn-outline {
    background: transparent; color: var(--maroon); padding: 0.85rem 1.8rem;
    border-radius: var(--radius); border: 2px solid var(--maroon); font-family: 'Cairo',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(--maroon); 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(--cream); 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(--cream); 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-cream { background: var(--cream-light); }
.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(--dark); 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(--maroon); 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(--dark); overflow: hidden;
}
.page-header-bg {
    position: absolute; inset: 0; background-size: cover; background-position: center;
    opacity: 0.25;
}
.page-header-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--dark), rgba(107,28,35,0.6)); }
.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: var(--cream); font-size: 1.1rem; }
.breadcrumb { margin-top: 1.5rem; font-size: 0.9rem; color: var(--gray-300); }
.breadcrumb a { color: var(--cream); text-decoration: none; transition: color .3s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 0.5rem; }

/* ═══════════════════════════════════════════
   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(--maroon); 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 .category-tag { font-size: 0.78rem; color: var(--maroon); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.4rem; display: block; }
.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(--maroon); font-weight: 700; font-size: 1.05rem; }
.product-btn {
    width: 100%; background: var(--dark); color: var(--white); padding: 0.75rem;
    border-radius: 0.5rem; border: none; font-family: 'Cairo',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(--maroon); }

/* ═══════════════════════════════════════════
   SERVICES / FEATURES GRID
   ═══════════════════════════════════════════ */
.features-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; margin-bottom: 4rem; }
.feature-card {
    padding: 2rem; border-radius: var(--radius); background: var(--gray-50);
    transition: all .35s ease; border: 1px solid var(--gray-100);
}
.feature-card:hover { background: var(--maroon); transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--maroon); }
.feature-icon { display: inline-flex; padding: 0.85rem; background: var(--maroon); border-radius: 0.75rem; margin-bottom: 1.25rem; }
.feature-card:hover .feature-icon { background: var(--white); }
.feature-icon svg { color: var(--white); width: 28px; height: 28px; }
.feature-card:hover .feature-icon svg { color: var(--maroon); }
.feature-card h3 { font-size: 1.3rem; 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: var(--cream); }

/* ═══════════════════════════════════════════
   STATS
   ═══════════════════════════════════════════ */
.stats-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--maroon-dark) 100%);
    border-radius: var(--radius); 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(--cream); margin-bottom: 0.3rem; }
.stat-label { font-size: 1rem; color: var(--gray-300); }

/* ═══════════════════════════════════════════
   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(--maroon); 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-meta-item { display: flex; align-items: center; gap: 0.25rem; }
.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(--maroon); }
.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(--maroon); 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: 'Cairo',sans-serif; font-size: 1.05rem; font-weight: 700;
    color: var(--dark); text-align: right; transition: color .3s;
}
.faq-question:hover { color: var(--maroon); }
.faq-icon { font-size: 1.5rem; color: var(--maroon); 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; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-section { background: var(--cream-light); padding: 5rem 0; }
.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-stars { color: var(--sand); font-size: 1.3rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.15rem; color: var(--dark); line-height: 1.9; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--maroon); }
.testimonial-name { font-weight: 700; color: var(--dark); }
.testimonial-title { font-size: 0.85rem; color: var(--gray-500); }
.testimonial-controls { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-top: 2rem; }
.testimonial-btn {
    background: var(--white); border: 1px solid var(--cream-dark); 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(--maroon);
}
.testimonial-btn:hover { background: var(--maroon); color: var(--white); border-color: var(--maroon); }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--cream-dark); border: none; cursor: pointer; transition: all .3s; }
.testimonial-dot.active { background: var(--maroon); width: 28px; border-radius: 5px; }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--maroon-dark) 100%);
    padding: 5rem 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section * { position: relative; z-index: 2; }
.cta-section h2 { font-size: 2.3rem; font-weight: 800; color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: var(--cream); 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 FORM
   ═══════════════════════════════════════════ */
.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: 1px solid var(--gray-200);
    border-radius: 0.5rem; font-family: 'Cairo',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(--maroon); box-shadow: 0 0 0 3px rgba(107,28,35,0.1);
}
.contact-info-card {
    background: var(--dark); 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(--cream); flex-shrink: 0; margin-top: 0.2rem; }
.contact-info-item a { color: var(--gray-300); text-decoration: none; transition: color .3s; }
.contact-info-item a:hover { color: var(--cream); }

/* ═══════════════════════════════════════════
   GALLERY / PROJECTS
   ═══════════════════════════════════════════ */
.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(26,26,26,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(--maroon); 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(--maroon); }
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.package-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--maroon); 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(--maroon); 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(--maroon); margin-left: 0.5rem; font-weight: 700; }

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: var(--dark); color: var(--white); }
.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(--cream); }
.footer-section p { color: var(--gray-300); 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: var(--maroon); 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(--cream); color: var(--maroon); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a { color: var(--gray-300); text-decoration: none; transition: color .3s; font-size: 0.92rem; }
.footer-links a:hover { color: var(--cream); }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.85rem; font-size: 0.92rem; }
.contact-item svg { color: var(--cream); flex-shrink: 0; margin-top: 0.2rem; }
.contact-item span, .contact-item a { color: var(--gray-300); }
.contact-item a { text-decoration: none; transition: color .3s; }
.contact-item a:hover { color: var(--cream); }
.newsletter { border-top: 1px solid var(--gray-700); padding-top: 2.5rem; text-align: center; }
.newsletter h4 { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--white); }
.newsletter p { color: var(--gray-300); 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: 'Cairo',sans-serif; direction: rtl; font-size: 0.95rem; }
.newsletter-btn { background: var(--maroon); color: var(--white); padding: 0.75rem 1.8rem; border-radius: 0.5rem; border: none; font-family: 'Cairo',sans-serif; font-weight: 700; cursor: pointer; transition: all .3s; }
.newsletter-btn:hover { background: var(--cream); color: var(--maroon); }
.footer-bottom { border-top: 1px solid var(--gray-700); 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(--cream); }

/* ═══════════════════════════════════════════
   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.scroll-top { background: var(--maroon); color: var(--white); }
.float-btn.scroll-top:hover { background: var(--maroon-dark); transform: scale(1.1); }

/* ═══════════════════════════════════════════
   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(--maroon); }
.post-body h3 { font-size: 1.25rem; margin: 1.5rem 0 0.75rem; }
.post-body p { margin-bottom: 1.2rem; }
.post-body img { max-width: 100%; border-radius: 0.5rem; margin: 1.5rem 0; }
.post-body ul, .post-body ol { margin: 1rem 1.5rem 1.5rem; }
.post-body li { margin-bottom: 0.5rem; }
.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(--cream-light); color: var(--maroon); 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(--maroon); color: var(--white); }

/* Related posts */
.related-posts { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--gray-200); }
.related-posts h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════
   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(--maroon); color: var(--white); border-color: var(--maroon); }
.pagination .current { background: var(--maroon); color: var(--white); border: 1px solid var(--maroon); }

/* ═══════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════ */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state svg { width: 64px; height: 64px; color: var(--gray-300); margin-bottom: 1rem; }
.empty-state h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 0.5rem; }
.empty-state p { color: var(--gray-500); }

/* ═══════════════════════════════════════════
   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: 'Cairo',sans-serif;
    font-weight: 600; font-size: 0.88rem; cursor: pointer; transition: all .3s;
}
.filter-btn:hover, .filter-btn.active { background: var(--maroon); color: var(--white); border-color: var(--maroon); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .menu-toggle { display: block; }
    .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 { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-bottom-content { flex-direction: column; gap: 1rem; }
    .footer-bottom-links { flex-direction: column; gap: 0.5rem; text-align: center; }
    .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; }
}

@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; }
}

/* ═══ أضف هذا في style.css بعد .float-btn.whatsapp ═══ */

.float-btn.phone-call {
    background: var(--maroon);
    color: var(--white);
}
.float-btn.phone-call:hover {
    background: var(--maroon-dark);
    transform: scale(1.1);
}

.ct-map {
    width: 100%;
    height: 450px; /* أو أي ارتفاع تريده */
}