/*
Theme Name: More Design | مور ديزاين
Theme URI: https://moredesignsa.com/
Author: More Design Engineering
Author URI: https://moredesignsa.com/
Description: Custom, high-performance, ultra-fast Gutenberg block theme for More Design (مور ديزاين). Built with native hybrid ServerSideRender blocks, full Elementor compatibility, multi-language support (AR/EN), and Rank Math SEO integration.
Version: 1.0.0
Text Domain: more-design
*/
/* ==========================================================================
   مور ديزاين (More Design) - Concept 7: Simple Luxury Landing Page & Catalog
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Noto+Kufi+Arabic:wght@400;500;600;700;800;900&display=swap');

:root {
  /* More Design Official 2026 Brand Guidelines */
  --primary-color: #4A5F52;       /* Architectural Primary Green */
  --primary-dark: #37473D;        /* Deep Architectural Forest */
  --primary-light: #5B7364;       /* Soft Forest Accent */
  --sage-green: #A7B7A7;          /* Sage Supporting Green */
  --gold: #C9A77B;                /* Warm Gold Luxury Accent */
  --gold-hover: #BA9566;          /* Rich Gold Hover */
  --gold-light: #F6EFE6;          /* Soft Gold Tint */
  --sand-beige: #FAF8F5;          /* Ultra-Light Pearl Sand (أفتح لون بعد الأبيض وقريب من الهوية) */
  --ivory: #FCFBF8;               /* Luminous Warm Ivory */
  --charcoal: #2D2F2E;            /* Charcoal Body Text */
  --stone-gray: #9A9A9A;          /* Stone Secondary Gray */
  
  --text-dark: #2D2F2E;
  --text-muted: #626D66;
  --text-light: #8E9892;
  --bg-main: #FCFBF8;
  --bg-white: #ffffff;
  --bg-cream: #FAF8F5;
  --border-light: rgba(201, 167, 123, 0.35);
  --border-subtle: #EFECE6;
  --shadow-sm: 0 4px 15px rgba(45, 47, 46, 0.05);
  --shadow-md: 0 10px 30px rgba(74, 95, 82, 0.08);
  --shadow-lg: 0 20px 45px rgba(55, 71, 61, 0.12);
  --transition-fast: 0.25s ease;
  --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Noto Kufi Arabic', 'Manrope', sans-serif;
  direction: rtl;
  text-align: right;
  scroll-behavior: smooth;
  background-color: var(--bg-main);
  color: var(--text-dark);
}

/* English / LTR Mode Typography & Direction */
html[lang="en"],
body.en-mode {
  font-family: 'Manrope', 'Noto Kufi Arabic', sans-serif;
  direction: ltr;
  text-align: left;
}

body {
  overflow-x: hidden;
  line-height: 1.7;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  outline: none;
  border: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(197, 160, 89, 0.12);
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 14px;
  border: 1px solid rgba(197, 160, 89, 0.3);
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 16px;
  line-height: 1.35;
}

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
}

.btn-primary {
  background: var(--gold);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-white {
  background: #ffffff;
  color: var(--primary-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
  background: var(--gold-light);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* ==========================================================================
   Header & Navigation (100% Completely Transparent Header, Static & Scrolled)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: padding 0.3s ease;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.site-header.scrolled {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  padding: 12px 0;
  box-shadow: none !important;
  border: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
}

.header-logo img {
  height: 72px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  transition: var(--transition-fast);
  filter: none;
}

.site-header.scrolled .header-logo img {
  height: 58px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  color: var(--primary-dark);
  font-size: 15.5px;
  font-weight: 700;
  position: relative;
  padding: 6px 0;
  background: transparent !important;
  background-color: transparent !important;
  transition: color 0.25s ease;
  text-shadow: none;
}

.site-header.scrolled .nav-link {
  background: transparent !important;
  background-color: transparent !important;
  font-weight: 700;
  color: var(--primary-dark);
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold);
  font-weight: 700;
  background: transparent !important;
  background-color: transparent !important;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-cta .btn {
  padding: 10px 24px;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
  padding: 6px;
}

/* ==========================================================================
   Hero Slideshow Section (Clean, Clear, Centered Content)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
}

/* Remove top vignette under header */
.hero-slider-section::before {
  display: none !important;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Clean, clear overlay without heavy tinting (حسب طلب العميل) */
.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 2;
}

/* Centered content in the middle (الداتا فى المنتصف) */
.slide-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-top: 60px;
}

.slide-text-box {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  background: rgba(197, 160, 89, 0.3);
  border: 1px solid rgba(197, 160, 89, 0.6);
  padding: 6px 22px;
  border-radius: 50px;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.slide-title {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.slide-title span {
  color: var(--gold);
}

.slide-desc {
  font-size: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 34px;
  max-width: 720px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  backdrop-filter: blur(8px);
  transition: var(--transition-fast);
}

.slider-arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  right: 32px;
}

.slider-arrow.next {
  left: 32px;
}

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--gold);
  width: 34px;
  border-radius: 20px;
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content-left {
  padding-left: 20px;
}

.about-highlight-box {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-highlight-item {
  background: var(--bg-cream);
  padding: 22px;
  border-radius: var(--radius-md);
  border-right: 4px solid var(--gold);
}

.about-highlight-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.about-highlight-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-media-right {
  position: relative;
}

.about-main-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-main-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-main-img-wrap:hover img {
  transform: scale(1.04);
}

.about-floating-badge {
  position: absolute;
  bottom: -24px;
  right: -20px;
  background: var(--primary-dark);
  color: #ffffff;
  padding: 24px 30px;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-floating-badge .number {
  font-size: 42px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}

.about-floating-badge .label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

/* ==========================================================================
   Services Section (2 Rows x 2 Columns, Large Clear Images, No Color Mask)
   ========================================================================== */
.services-section {
  padding: 100px 0;
  background: var(--bg-cream);
  position: relative;
}

.services-grid-2x2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.service-card-2x2 {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition-normal);
}

.service-card-2x2:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.service-card-2x2 .service-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  /* Pure natural colors - completely clear and visible */
}

.service-card-2x2:hover .service-card-bg {
  transform: scale(1.06);
}

/* Centered text content with NO background box (حسب طلب العميل بدون أي بلوك خلف الكلام) */
.service-text-content,
.service-center-badge {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 30px;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: var(--transition-normal);
}

.service-text-content .service-icon,
.service-center-badge .service-icon {
  font-size: 38px;
  color: var(--gold);
  margin-bottom: 14px;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.9));
  transition: var(--transition-fast);
}

.service-card-2x2:hover .service-text-content .service-icon,
.service-card-2x2:hover .service-center-badge .service-icon {
  color: #ffffff;
  transform: scale(1.15);
}

.service-text-content .service-title,
.service-center-badge .service-title {
  font-size: 28px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
  transition: var(--transition-fast);
}

.service-card-2x2:hover .service-text-content .service-title,
.service-card-2x2:hover .service-center-badge .service-title {
  color: var(--gold);
}

.service-text-content .service-sub,
.service-center-badge .service-sub {
  font-size: 15px;
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.95);
  transition: var(--transition-fast);
}

.service-card-2x2:hover .service-text-content .service-sub,
.service-card-2x2:hover .service-center-badge .service-sub {
  color: #ffffff;
}

/* Services Action Buttons Below Cards */
.services-action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.services-action-buttons .btn {
  min-width: 220px;
  padding: 16px 36px;
  font-size: 17px;
}

/* ==========================================================================
   Portfolio Section (Adjacent Seamless Multi-Photo Carousel - Full Width Screen)
   ========================================================================== */
.portfolio-section {
  padding: 100px 0;
  background: #ffffff;
  position: relative;
  overflow-x: clip;
}

.adjacent-portfolio-carousel {
  position: relative;
  width: 100%;
  margin-bottom: 70px;
}

.adjacent-portfolio-carousel.full-width {
  width: 100%;
  margin: 40px 0 70px 0;
  overflow: hidden;
}

.adjacent-carousel-track-container {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.adjacent-carousel-track {
  display: flex;
  width: max-content;
  animation: portfolioMarquee 30s linear infinite;
  will-change: transform;
}

.adjacent-portfolio-carousel:hover .adjacent-carousel-track {
  animation-play-state: paused;
}

@keyframes portfolioMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

.adjacent-carousel-item {
  flex: 0 0 25vw;
  width: 25vw;
  min-width: 320px;
  height: 480px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.adjacent-carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease, opacity 0.5s ease;
}

.adjacent-carousel-item:hover img {
  transform: scale(1.07);
  filter: brightness(0.92);
  opacity: 0.92;
}

/* Ensure no text overlay is shown on portfolio images (حسب طلب العميل بلاش الكلام اللى عليها) */
.adjacent-carousel-overlay {
  display: none !important;
}

.adjacent-carousel-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18, 30, 18, 0.85);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.adjacent-carousel-item:hover .adjacent-carousel-zoom-icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ==========================================================================
   Ultra-Chic Project Categories (تصنيفات المشاريع الفاخرة)
   ========================================================================== */
.categories-chic-header {
  text-align: center;
  max-width: 680px;
  margin: 40px auto 50px auto;
}

.categories-chic-header .section-tag {
  display: inline-block;
  margin-bottom: 14px;
}

.categories-chic-title-main {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 0 0 16px 0;
  position: relative;
  display: block;
}

.categories-chic-title-main::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.categories-chic-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
}

.categories-chic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-chic-card {
  position: relative;
  background: #ffffff;
  border: 1.5px solid #e5dfd2;
  border-radius: 18px;
  padding: 38px 28px 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.04);
}

/* Elegant Top Animated Gold Line */
.category-chic-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  transform: scaleX(0.2);
  transform-origin: center;
  transition: transform 0.45s ease, height 0.45s ease;
  z-index: 3;
}

.category-chic-card:hover::before {
  transform: scaleX(1);
  height: 5px;
}

/* Top Bar: Number Tag + Category Pill Tag */
.category-card-top-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.category-card-num {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
}

.category-card-tag {
  background: rgba(197, 160, 89, 0.12);
  color: var(--primary-dark);
  border: 1px solid rgba(197, 160, 89, 0.35);
  padding: 4px 14px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.3s ease;
}

/* Central Luxury Icon Medallion */
.category-chic-icon-wrap {
  width: 86px;
  height: 86px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fbf9f4, #eae5da);
  border: 1.5px solid rgba(197, 160, 89, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary-color);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-chic-card:hover .category-chic-icon-wrap {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: #ffffff;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 14px 28px rgba(197, 160, 89, 0.35);
}

/* Titles and Typography */
.category-chic-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

.category-chic-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  transition: color 0.35s ease;
}

/* Bullet Features */
.category-chic-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(22, 38, 21, 0.05);
  border: 1px solid rgba(22, 38, 21, 0.08);
  padding: 7px 14px;
  border-radius: 50px;
  margin-bottom: 26px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  max-width: 100%;
  transition: all 0.35s ease;
}

.category-chic-features .dot {
  color: var(--gold);
  font-size: 14px;
}

/* Interactive CTA Link */
.category-chic-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  color: var(--primary-dark);
  position: relative;
  z-index: 2;
  margin-top: auto;
  transition: all 0.35s ease;
}

.cta-arrow-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1.5px solid #ded8cc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  font-size: 13px;
  transition: all 0.35s ease;
}

/* Watermark architectural icon */
.watermark-icon {
  position: absolute;
  bottom: -22px;
  left: -22px;
  font-size: 140px;
  color: rgba(22, 38, 21, 0.035);
  pointer-events: none;
  z-index: 1;
  transition: all 0.5s ease;
}

/* Hover State Transformations: Deep Forest Emerald Luxury Transition */
.category-chic-card:hover {
  transform: translateY(-9px);
  background: linear-gradient(150deg, #172a16 0%, #0e190d 100%);
  border-color: var(--gold);
  box-shadow: 0 24px 50px rgba(18, 32, 17, 0.28);
}

.category-chic-card:hover .category-card-tag {
  background: rgba(197, 160, 89, 0.2);
  color: var(--gold);
  border-color: var(--gold);
}

.category-chic-card:hover .category-chic-title {
  color: #ffffff;
}

.category-chic-card:hover .category-chic-desc {
  color: rgba(255, 255, 255, 0.82);
}

.category-chic-card:hover .category-chic-features {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(197, 160, 89, 0.3);
  color: var(--gold-light);
}

.category-chic-card:hover .category-chic-cta {
  color: var(--gold);
}

.category-chic-card:hover .cta-arrow-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--primary-dark);
  transform: translateX(-6px);
}

.category-chic-card:hover .watermark-icon {
  color: rgba(197, 160, 89, 0.08);
  transform: scale(1.1) rotate(-6deg);
}

/* ==========================================================================
   Project Subpages (Residential, Commercial, Office Named Projects)
   ========================================================================== */
.subpage-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1920&q=80') center/cover;
  padding: 160px 0 90px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
}

.subpage-hero.commercial {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover;
}

.subpage-hero.office {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.65)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80') center/cover;
}

.subpage-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 14px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.subpage-breadcrumbs a {
  color: var(--gold);
  font-weight: 700;
}

.subpage-title {
  font-size: 46px;
  font-weight: 900;
  margin-bottom: 16px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.subpage-desc {
  max-width: 680px;
  margin: 0 auto;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.subpage-main-content {
  padding: 80px 0 100px 0;
}

/* Distinct Project Block (اسم مشروع وتحته 6 صور كبار جريد صفين و 3 أعمدة بملء الشاشة بدون فواصل وبدون كيرفات) */
.project-showcase-item {
  margin-bottom: 90px;
  background: transparent;
  border-radius: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  width: 100%;
}

.project-showcase-header {
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 2px solid var(--border-subtle);
  padding-bottom: 20px;
  flex-wrap: wrap;
  gap: 16px;
}

.project-showcase-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.project-showcase-meta {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--text-muted);
}

.project-showcase-meta span i {
  color: var(--gold);
  margin-left: 6px;
}

.project-showcase-badge {
  background: rgba(197, 160, 89, 0.15);
  color: var(--primary-dark);
  border: 1px solid var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
}

/* Full-Width 3x2 Seamless Grid (صفين و 3 أعمدة - بملء الشاشة - بدون فواصل - بدون كيرفات) */
.photo-grid-fullwidth-3x2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 380px);
  gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.photo-grid-box.seamless {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 0 !important;
  overflow: hidden;
  background-color: #121e12;
  box-shadow: none !important;
  cursor: pointer;
}

.photo-grid-box.seamless img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 !important;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, filter 0.5s ease;
}

/* Specific Hover Animation: الصور تبهت وتعمل زوم بسيط */
.photo-grid-box.seamless:hover img {
  transform: scale(1.06);
  opacity: 0.86;
  filter: brightness(0.92);
}

.photo-grid-box.seamless .photo-grid-box-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 18, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  border-radius: 0 !important;
}

.photo-grid-box.seamless:hover .photo-grid-box-overlay {
  opacity: 1;
}

.photo-grid-box.seamless .photo-grid-box-overlay i {
  color: var(--gold);
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
  transition: transform 0.3s ease;
}

.photo-grid-box.seamless:hover .photo-grid-box-overlay i {
  transform: scale(1.15);
}

/* Fallback for regular photo-grid-box */
.photo-grid-box {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 0;
  overflow: hidden;
  background-color: #e8e6e1;
  cursor: pointer;
}

.photo-grid-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.photo-grid-box:hover img {
  transform: scale(1.06);
  opacity: 0.85;
}

.photo-grid-box-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 18, 0.35);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
}

.photo-grid-box:hover .photo-grid-box-overlay {
  opacity: 1;
}

/* Navigation Banner */
.subpage-nav-banner {
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  padding: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

/* ==========================================================================
   Lightbox Modal
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 10, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.lightbox-modal.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 88vw;
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: 78vh;
}

.lightbox-image-wrap img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.85);
  object-fit: contain;
  transition: opacity 0.25s ease, transform 0.25s ease;
  user-select: none;
}

.lightbox-info-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  margin-top: 14px;
  padding: 0 10px;
  gap: 16px;
}

.lightbox-caption {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  flex: 1;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.lightbox-counter {
  background: rgba(201, 167, 123, 0.18);
  border: 1px solid rgba(201, 167, 123, 0.5);
  color: #e5c07b;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  direction: ltr;
  letter-spacing: 1px;
  white-space: nowrap;
}

.lightbox-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(18, 30, 18, 0.7);
  border: 1.5px solid rgba(201, 167, 123, 0.6);
  color: #ffffff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2010;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45);
}

.lightbox-nav-btn:hover {
  background: var(--gold);
  color: #121e12;
  transform: translateY(-50%) scale(1.1);
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(201, 167, 123, 0.7);
}

.lightbox-prev {
  right: 28px;
}

.lightbox-next {
  left: 28px;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  left: 30px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2020;
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--gold);
  color: #121e12;
  transform: rotate(90deg) scale(1.08);
}

@media (max-width: 768px) {
  .lightbox-modal {
    padding: 15px;
  }
  .lightbox-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 16px;
  }
  .lightbox-prev {
    right: 12px;
  }
  .lightbox-next {
    left: 12px;
  }
  .lightbox-close {
    top: 15px;
    left: 15px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .lightbox-info-bar {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  .lightbox-caption {
    text-align: center;
    font-size: 14px;
  }
}

/* ==========================================================================
   Contact Us Section (مور ديزاين - ثابت في كافة الصفحات)
   ========================================================================== */
/* ==========================================================================
   Contact Us Section (Ultra-Chic Luxury Architectural Suite)
   ========================================================================== */
.contact-section {
  padding: 110px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f3ee 100%);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: stretch;
}

/* Right Card: VIP Direct Contact Info */
.contact-info-card {
  background: linear-gradient(155deg, #172a16 0%, #0d180c 100%);
  color: #ffffff;
  padding: 44px 36px;
  border-radius: 22px;
  border: 1.5px solid rgba(197, 160, 89, 0.4);
  box-shadow: 0 20px 50px rgba(18, 32, 17, 0.22);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #a37c35, var(--gold), #ecd5a0);
  z-index: 3;
}

.vip-client-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.16);
  border: 1px solid rgba(197, 160, 89, 0.45);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 18px;
  width: fit-content;
  position: relative;
  z-index: 2;
}

.contact-info-title {
  font-size: 27px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.contact-info-desc {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

/* Hero VIP WhatsApp Box */
.contact-whatsapp-hero-box {
  background: rgba(39, 82, 37, 0.45);
  border: 1.5px solid rgba(37, 211, 102, 0.4);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(8px);
  transition: all 0.35s ease;
}

.contact-whatsapp-hero-box:hover {
  border-color: #25d366;
  background: rgba(39, 82, 37, 0.65);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.22);
}

.wa-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.wa-hero-icon-ring {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.wa-hero-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #9fe29d;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.wa-hero-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
  line-height: 1.5;
}

.wa-hero-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #25d366;
  color: #0b1a0a;
  font-weight: 800;
  font-size: 14px;
  padding: 11px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.wa-hero-action-btn:hover {
  background: #2ee672;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  color: #051004;
}

.wa-hero-action-btn .arrow-peek {
  transition: transform 0.3s ease;
}

.wa-hero-action-btn:hover .arrow-peek {
  transform: translateX(-4px);
}

/* Contact Channels List */
.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.contact-channel-item {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 12px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.contact-channel-item:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold);
  transform: translateX(-4px);
}

.channel-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(197, 160, 89, 0.15);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-channel-item:hover .channel-icon-box {
  background: var(--gold);
  color: var(--primary-dark);
  transform: scale(1.06);
}

.channel-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.channel-label {
  font-size: 11.5px;
  color: var(--gold);
  font-weight: 700;
}

.channel-val {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
}

/* Privacy Guarantee Badge */
.contact-privacy-guarantee {
  margin-top: auto;
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(197, 160, 89, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  z-index: 2;
}

.contact-privacy-guarantee i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}

.contact-watermark-icon {
  position: absolute;
  bottom: -20px;
  left: -20px;
  font-size: 150px;
  color: rgba(197, 160, 89, 0.04);
  pointer-events: none;
  z-index: 1;
}

/* Left Card: Luxury Consultation Form */
.contact-form-card {
  background: #ffffff;
  padding: 44px 40px;
  border-radius: 22px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
  border: 1.5px solid #ece7dc;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.form-tag-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(197, 160, 89, 0.12);
  border: 1px solid rgba(197, 160, 89, 0.35);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
  width: fit-content;
}

.form-card-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.form-card-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.form-label i {
  color: var(--gold);
  font-size: 13px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #ded8cc;
  border-radius: 10px;
  font-size: 14.5px;
  background: #fdfcfb;
  transition: all 0.25s ease;
  color: var(--text-dark);
  font-family: inherit;
}

.form-control:focus {
  border-color: var(--gold);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3.5px rgba(197, 160, 89, 0.18);
}

textarea.form-control {
  resize: vertical;
  min-height: 90px;
}

.btn-luxury-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  background: linear-gradient(135deg, #c5a059 0%, #dbba74 50%, #b89146 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.35);
  margin-top: 6px;
  font-family: inherit;
}

.btn-luxury-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(197, 160, 89, 0.45);
  filter: brightness(1.05);
}

.btn-luxury-submit .submit-arrow {
  transition: transform 0.3s ease;
}

.btn-luxury-submit:hover .submit-arrow {
  transform: translateX(-5px);
}

.form-reassurance-pills {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.reassurance-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.reassurance-pill i {
  color: var(--primary-color);
  font-size: 13px;
}

/* ==========================================================================
   Partners Section (شعارات حقيقية ملونة وظاهرة)
   ========================================================================== */
.partners-section {
  padding: 38px 0 36px;
  background: var(--ivory);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: var(--gold);
  margin-bottom: 24px;
}

.partners-slider {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: partnersScroll 22s linear infinite;
  white-space: nowrap;
}

.partner-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1.5px solid #eae7df;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  height: 114px;
  min-width: 250px;
  flex-shrink: 0;
}

.partner-logo-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(201, 167, 123, 0.25);
  border-color: var(--gold);
}

.partner-logo-img {
  max-height: 84px;
  max-width: 215px;
  width: auto;
  height: auto;
  object-fit: contain;
  /* 100% real color, NOT grayscale! */
  filter: none !important;
  opacity: 1 !important;
}

@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(50%); }
}

/* ==========================================================================
   Footer (مور ديزاين - ثابت في كافة الصفحات - خلفية بيضاء سادة)
   ========================================================================== */
.site-footer {
  background: #ffffff;
  color: var(--primary-dark);
  padding: 45px 0 22px 0;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-col-about .footer-logo {
  height: 76px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
  margin-bottom: 22px;
  filter: none;
}

.footer-col-about p {
  color: var(--primary-dark);
  opacity: 0.92;
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 24px;
}

.footer-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35px;
  height: 2px;
  background: var(--gold);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--primary-dark);
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(-5px);
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(201, 167, 123, 0.4);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-fast);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
  background: var(--gold);
  color: #ffffff;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(201, 167, 123, 0.35);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(74, 95, 82, 0.15);
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--primary-dark);
  font-weight: 600;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .services-grid-2x2 {
    grid-template-columns: 1fr;
  }
  .adjacent-carousel-item {
    flex: 0 0 50vw;
    width: 50vw;
    min-width: 280px;
    height: 420px;
  }
  .photo-grid-fullwidth-3x2 {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 320px);
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: transparent !important;
    padding: 14px 0;
  }
  .site-header.scrolled {
    background: transparent !important;
    backdrop-filter: none !important;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #1e2e24;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: stretch;
    padding: 85px 28px 40px;
    gap: 0;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1), left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 35px rgba(0, 0, 0, 0.5);
    z-index: 1050;
  }
  html[dir="ltr"] .nav-menu,
  body.en-mode .nav-menu {
    right: auto;
    left: -100%;
    box-shadow: 10px 0 35px rgba(0, 0, 0, 0.5);
  }
  .nav-menu.active {
    right: 0 !important;
  }
  html[dir="ltr"] .nav-menu.active,
  body.en-mode .nav-menu.active {
    left: 0 !important;
  }
  .nav-menu .nav-link {
    color: #ffffff !important;
    font-size: 16.5px !important;
    font-weight: 700 !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(201, 167, 123, 0.25) !important;
    display: block !important;
    width: 100% !important;
    transition: color 0.25s ease, padding 0.25s ease !important;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active {
    color: var(--gold) !important;
    padding-inline-start: 8px !important;
  }
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.85);
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    color: var(--primary-dark);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 1100;
  }
  .menu-toggle:hover {
    background: var(--gold);
    color: #ffffff;
  }
  .header-cta .btn {
    display: none;
  }
  .slide-title {
    font-size: 32px;
  }
  .slide-desc {
    font-size: 16px;
  }
  .adjacent-carousel-item {
    flex: 0 0 80vw;
    width: 80vw;
    min-width: 260px;
    height: 360px;
  }
  .categories-chic-grid {
    grid-template-columns: 1fr;
  }
  .photo-grid-fullwidth-3x2 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .photo-grid-box.seamless {
    height: 280px;
  }
  .photo-grid-3x3 {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-group-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .slider-arrow {
    display: none;
  }
}

/* ==========================================================================
   Universal Scroll Reveal Animations (انيميشن خفيف، ناعم واحترافي لكافة البلوكات)
   ========================================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Service Boxes & Category Cards Staggered Subtle Lift */
.service-clean-box.scroll-reveal,
.category-showcase-card.scroll-reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.service-clean-box.scroll-reveal.revealed,
.category-showcase-card.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* About Studio Frame smooth architectural entrance */
.about-studio-frame.scroll-reveal {
  opacity: 0;
  transform: translateY(32px) scale(0.99);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-studio-frame.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Contact Info Column staggered float */
.contact-clean-info-col.scroll-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-clean-info-col.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Contact Form entrance */
.contact-clean-form.scroll-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-clean-form.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ==========================================================================
   CONCEPT 8 - SIMPLE CLEAN COMPONENT STYLES
   ========================================================================== */

/* 1. Hero Fixed Section (Full Screen 100vh on Load, Pristine Clear Photo with Smooth Ken Burns) */
.hero-fixed-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 40px;
  overflow: hidden;
  background: #edf0f3;
}

.hero-zoom-bg {
  position: absolute;
  inset: -20px; /* Room for smooth zoom */
  background-image: url('../images/hero-1.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 1;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08);
  }
}

/* Remove gradient shading - keep photo completely clear & bright */
.hero-fixed-section::before {
  display: none !important;
}

.hero-fixed-overlay {
  display: none !important;
}

.hero-fixed-content {
  position: relative;
  z-index: 3;
  max-width: 950px;
  margin: 0 auto;
  text-align: center;
  margin-top: -8vh;
}

.hero-fixed-title {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 0;
  color: var(--primary-dark);
  padding: 0 !important;
  background: none !important;
  border: none !important;
  border-radius: 0 !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  display: inline-block;
  box-shadow: none !important;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95), 0 1px 3px rgba(0, 0, 0, 0.12);
}

.hero-fixed-title span {
  color: var(--gold);
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.95);
}

.hero-fixed-desc {
  font-size: 18px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 36px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-fixed-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 2. Contact Clean Section (Brand Ultra-Light Theme: Pearl Sand with Deep Forest Green & Warm Gold) */
.contact-clean-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF8F5 100%);
  color: var(--primary-dark);
  padding: 48px 20px 44px;
  position: relative;
  border-top: 1.5px solid rgba(201, 167, 123, 0.35);
}

.contact-clean-container {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-clean-title-wrap {
  margin-bottom: 24px;
}

.contact-clean-header-title {
  font-size: 34px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
}

.contact-clean-header-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 65px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border-radius: 2px;
}

.contact-clean-header-subtitle {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 600;
  margin-top: 14px;
}

.contact-clean-info-row {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.contact-clean-info-col {
  flex: 1;
  min-width: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-clean-circle-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--gold);
  border: 1.5px solid rgba(201, 167, 123, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  box-shadow: 0 4px 14px rgba(74, 95, 82, 0.08);
}

.contact-clean-circle-icon:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(201, 167, 123, 0.35);
  background: var(--gold);
  color: #ffffff;
}

.contact-clean-label {
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-clean-val {
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s ease;
  word-break: break-word;
}

.contact-clean-val:hover {
  color: var(--gold);
}

.contact-clean-subheading {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.contact-clean-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-clean-input,
.contact-clean-textarea {
  width: 100%;
  background-color: #ffffff;
  border: 1.5px solid #ded8cc;
  border-radius: 8px;
  padding: 14px 18px;
  color: var(--primary-dark);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.contact-clean-input:focus,
.contact-clean-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(201, 167, 123, 0.25);
}

.contact-clean-input::placeholder,
.contact-clean-textarea::placeholder {
  color: #8c827a;
}

.contact-clean-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-clean-submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--gold) 0%, #BA9566 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: none;
  border-radius: 8px;
  padding: 16px;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  margin-top: 6px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
}

.contact-clean-submit-btn:hover {
  background: linear-gradient(135deg, #dfbc4b 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 167, 123, 0.4);
}

/* 3. About Us Editorial Section (Light Brand Gradient & Mirrored Split Layout - Reduced Height) */
.about-editorial-section {
  margin: 0;
  padding: 0;
  background: var(--sand-beige);
  position: relative;
  overflow: hidden;
  border-top: 1.5px solid rgba(201, 167, 123, 0.35);
  border-bottom: 1.5px solid rgba(201, 167, 123, 0.35);
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: 60px 0.85fr 1.35fr;
  min-height: 360px;
  align-items: stretch;
}

/* Col 1: Warm Gold Accent Stripe (Far Right in RTL) */
.about-editorial-gold-stripe {
  background: linear-gradient(180deg, var(--gold) 0%, #BA9566 100%);
  height: 100%;
  width: 100%;
}

/* Col 2: High-End Architectural Photo (Right in RTL) */
.about-editorial-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}

.about-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Col 3: Content Column (Left in RTL, Ultra-Light Pearl Background) */
.about-editorial-content {
  background: linear-gradient(145deg, #FFFFFF 0%, #FAF8F5 100%);
  color: var(--primary-dark);
  padding: 32px 50px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-editorial-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}

.about-editorial-tag {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--gold);
  display: inline-block;
  line-height: 1.2;
}

.about-editorial-subtitle {
  font-size: 14px;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.about-editorial-emblem {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}

.about-emblem-icon {
  width: 70px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(74, 95, 82, 0.12));
  opacity: 0.95;
}

.about-hairline-line {
  flex-grow: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201, 167, 123, 0.2) 100%);
}

.about-editorial-texts {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--primary-dark);
  font-weight: 500;
  text-align: justify;
}

.about-editorial-texts p {
  margin-bottom: 8px;
}

.about-editorial-texts p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   4. Services Editorial Section (Centered Emblem & Symmetric Hairlines, No Title - Reduced Height)
   Direct flush connection beneath Hero with NO GAP - Pure White Background
   ========================================================================== */
.services-editorial-section {
  margin: 0;
  padding: 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1.5px solid rgba(201, 167, 123, 0.25);
}

.services-editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 60px;
  min-height: 340px;
  align-items: stretch;
}

/* Col 1: Pure White Content */
.services-editorial-content {
  background: #ffffff;
  padding: 28px 42px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-editorial-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
  width: 100%;
}

.services-emblem-icon {
  width: 74px;
  height: auto;
  opacity: 0.95;
  filter: drop-shadow(0 2px 6px rgba(74, 95, 82, 0.12));
}

.services-hairline-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(201, 167, 123, 0.08) 0%, var(--gold) 50%, rgba(201, 167, 123, 0.08) 100%);
}

/* 5 Static Services (Circular calm icons, titles underneath, not buttons) */
.services-static-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: flex-start;
}

.service-static-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
  user-select: none;
}

.service-static-circle {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid rgba(201, 167, 123, 0.45);
  color: var(--primary-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(74, 95, 82, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 8px;
  cursor: default;
}

.service-static-item:hover .service-static-circle {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(201, 167, 123, 0.25);
}

.service-static-title {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1.4;
  text-align: center;
  cursor: default;
}

/* Col 2: Architectural Interior Photo */
.services-editorial-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}

.services-editorial-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Col 3: Warm Gold Accent Stripe */
.services-editorial-gold-stripe {
  background: linear-gradient(180deg, var(--gold) 0%, #BA9566 100%);
  height: 100%;
  width: 100%;
}

/* Language Switcher Styling (Compact, 2 letters) */
.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid var(--gold);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition-normal);
}

.lang-switch-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 167, 123, 0.35);
}

.lang-switch-btn i {
  font-size: 13px;
  color: var(--gold);
}

.lang-switch-btn:hover i {
  color: #ffffff;
}

/* 5. Portfolio Clean Section (Compact Ribbon + Circular Categories) */
.portfolio-clean-section {
  padding: 40px 0 25px;
  background: var(--ivory);
}

.portfolio-clean-title {
  text-align: center;
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 24px;
}

.adjacent-portfolio-carousel.compact {
  margin-bottom: 34px;
}

.adjacent-portfolio-carousel.compact .adjacent-carousel-item {
  height: 200px;
  width: 310px;
  margin: 0 10px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* 5. Circular Category Cards (Pristine Clear Hero Image, No Icons, Text Directly on Image) */
.categories-circles-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  max-width: 1050px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.category-circle-card {
  position: relative;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2.5px solid var(--gold);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  background: transparent;
}

.category-circle-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.category-circle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1; /* واضحة تماماً بدون تضليل */
  filter: none;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Remove dark overlay completely as requested */
.category-circle-overlay {
  display: none !important;
}

.category-circle-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.category-circle-title {
  font-size: 19px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.95);
  transition: transform 0.3s ease;
}

.category-circle-cta {
  font-size: 11.5px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.3px;
  padding: 4px 12px;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Hover effects with smooth zoom */
.category-circle-card:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: #ffffff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.category-circle-card:hover .category-circle-bg img {
  transform: scale(1.10);
}

.category-circle-card:hover .category-circle-title {
  transform: translateY(-2px);
}

.category-circle-card:hover .category-circle-cta {
  background: var(--gold);
  color: var(--primary-dark);
  border-color: var(--gold);
  text-shadow: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* 6. Subpages Compact Projects Showcase & Clean CTA (Pure White Hero) */
.subpage-hero-compact {
  padding: 120px 20px 40px;
  background: #ffffff;
  text-align: center;
  color: var(--primary-dark);
  border-bottom: 1px solid #eae5dc;
}

.subpage-hero-compact h1 {
  font-size: 34px;
  font-weight: 900;
  color: var(--primary-dark);
  margin: 0;
}

.subpage-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.subpage-breadcrumbs a {
  color: var(--primary-color);
  transition: color 0.2s ease;
}

.subpage-breadcrumbs a:hover {
  color: var(--gold);
}

.project-compact-card {
  margin-bottom: 50px;
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #eae5dc;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.project-compact-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 12px;
}

.project-compact-title {
  font-size: 24px;
  font-weight: 800;
  color: #192719;
  margin: 0;
}

.project-compact-tag {
  background: rgba(197, 160, 89, 0.15);
  color: #936f2b;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
}

/* PDF Download Link Directly Under Project Title */
.project-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.08);
  color: #8c6827;
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 6px;
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  margin: 8px 0 8px;
  transition: all 0.25s ease;
  width: fit-content;
}

.project-pdf-link i {
  color: #c93b2b;
  font-size: 15px;
  transition: transform 0.25s ease;
}

.project-pdf-link:hover {
  background: #162816;
  color: #ffffff;
  border-color: #162816;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22, 40, 22, 0.18);
}

.project-pdf-link:hover i {
  color: #e5c07b;
  transform: scale(1.15);
}

.project-compact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 195px;
  gap: 12px;
}

/* Intelligent adaptations when photos are fewer than 6 or specific counts */
.project-compact-grid[data-count="1"] {
  grid-template-columns: 1fr;
  grid-auto-rows: 380px;
}

.project-compact-grid[data-count="2"] {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 240px;
}

.project-compact-grid[data-count="4"] {
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 210px;
}

.project-compact-photo {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  height: 100%;
}

.project-compact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.project-compact-photo:hover img {
  transform: scale(1.06);
}

.project-compact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 18, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
}

.project-compact-photo:hover .project-compact-overlay {
  opacity: 1;
}

.subpage-cta-box {
  background: linear-gradient(145deg, #FAF7F2 0%, #E8E1D9 100%);
  border-radius: 14px;
  padding: 36px 30px;
  text-align: center;
  color: var(--primary-dark);
  margin: 50px auto 30px;
  max-width: 800px;
  border: 1.5px solid rgba(201, 167, 123, 0.45);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.subpage-cta-box h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.subpage-cta-box p {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 22px;
}

.subpage-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #BA9566 100%);
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.35);
}

.subpage-cta-btn:hover {
  background: linear-gradient(135deg, #dfbc4b 0%, var(--gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(197, 157, 95, 0.5);
}

/* Subpages Clean Enlarged Contact Action Button */
.subpage-action-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 60px 0 50px;
  text-align: center;
}

.btn-subpage-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: linear-gradient(135deg, var(--gold) 0%, #BA9566 100%);
  color: #ffffff;
  font-size: 21px;
  font-weight: 800;
  padding: 18px 58px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(201, 167, 123, 0.45);
  letter-spacing: 0.5px;
}

.btn-subpage-contact:hover {
  background: linear-gradient(135deg, #dfbc4b 0%, var(--gold) 100%);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 40px rgba(201, 167, 123, 0.6);
  color: #ffffff;
}

.btn-subpage-contact i {
  font-size: 19px;
  color: #ffffff;
}

/* Responsive adjustments for Concept 8 */
@media (max-width: 992px) {
  .categories-circles-grid {
    gap: 22px;
  }
  .category-circle-card {
    width: 220px;
    height: 220px;
  }
  .about-editorial-grid {
    grid-template-columns: 1fr;
  }
  .about-editorial-gold-stripe {
    display: none;
  }
  .about-editorial-photo {
    min-height: 320px;
    height: 320px;
  }
  .about-editorial-content {
    padding: 45px 25px;
  }
  .services-editorial-grid {
    grid-template-columns: 1fr;
  }
  .services-editorial-gold-stripe {
    display: none;
  }
  .services-editorial-photo {
    min-height: 320px;
    height: 320px;
  }
  .services-editorial-content {
    padding: 45px 25px;
  }
  .services-static-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .hero-fixed-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-clean-info-row {
    flex-direction: column;
    gap: 30px;
  }
  .project-compact-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .project-compact-photo {
    height: 160px;
  }
  .about-editorial-content {
    padding: 40px 25px;
  }
  .services-static-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .service-static-circle {
    width: 68px;
    height: 68px;
    font-size: 22px;
  }
  .service-static-title {
    font-size: 13.5px;
  }
  .hero-fixed-title {
    font-size: 32px;
  }
  .hero-fixed-desc {
    font-size: 16px;
  }
}

/* English / LTR Layout Overrides */

html[lang="en"] .nav-link::after {
  right: auto;
  left: 0;
}

html[lang="en"] .about-editorial-texts {
  text-align: left;
}

html[lang="en"] .contact-clean-label,
html[lang="en"] .contact-clean-val {
  text-align: center;
}

html[lang="en"] .category-showcase-cta i {
  transform: rotate(180deg);
}

html[lang="en"] .category-showcase-card:hover .category-showcase-cta i {
  transform: rotate(180deg) translateX(5px);
}




/* ==========================================================================
   Additional Pre-Built Custom Blocks (More Design Complete Suite)
   ========================================================================== */

/* 1. Features Grid (لماذا مور ديزاين؟) */
.features-grid-section {
  padding: 80px 0;
  background-color: var(--sand-beige);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.feature-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid rgba(201, 167, 123, 0.25);
  box-shadow: 0 8px 24px rgba(74, 95, 82, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(74, 95, 82, 0.12);
  border-color: var(--gold);
}
.feature-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--ivory);
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 20px auto;
  transition: transform 0.3s ease;
}
.feature-card:hover .feature-icon-wrap {
  transform: scale(1.1);
  background: var(--gold);
  color: #ffffff;
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* 2. Stats Counter (أرقام وإحصائيات النجاح) */
.stats-counter-section {
  padding: 70px 0;
  background-color: #ffffff;
  border-top: 1.5px solid rgba(201, 167, 123, 0.2);
  border-bottom: 1.5px solid rgba(201, 167, 123, 0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item {
  padding: 20px;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(201, 167, 123, 0.3);
}
html[lang="en"] .stat-item:not(:last-child)::after {
  left: auto;
  right: 0;
}
.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 8px;
  font-family: 'Manrope', 'Cairo', sans-serif;
}
.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-dark);
}

/* 3. Process Steps (مراحل وخطوات العمل) */
.process-steps-section {
  padding: 80px 0;
  background-color: var(--ivory);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 45px;
  position: relative;
}
.process-step-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 32px 22px;
  border: 1px solid #eae5dc;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.03);
  position: relative;
  transition: transform 0.3s ease;
}
.process-step-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
}
.process-step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 12px;
  font-family: 'Manrope', sans-serif;
}
.process-step-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.process-step-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 4. FAQ Accordion (الأسئلة الشائعة) */
.faq-clean-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.faq-list {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  border: 1px solid #eae5dc;
  border-radius: 12px;
  overflow: hidden;
  background: var(--sand-beige);
  transition: border-color 0.25s ease;
}
.faq-item.active {
  border-color: var(--gold);
  background: #ffffff;
}
.faq-question {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question i {
  color: var(--gold);
  font-size: 15px;
  transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* 5. Testimonials (آراء العملاء) */
.testimonials-section {
  padding: 80px 0;
  background-color: var(--sand-beige);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 34px 26px;
  border: 1px solid rgba(201, 167, 123, 0.3);
  box-shadow: 0 8px 24px rgba(74, 95, 82, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-stars {
  color: #E5A93C;
  font-size: 16px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-size: 15px;
  color: var(--primary-dark);
  line-height: 1.8;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author {
  border-top: 1px solid #eae5dc;
  padding-top: 14px;
}
.testimonial-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-dark);
}
.testimonial-role {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}

/* 6. Video Banner (جولة معمارية فيديو) */
.video-banner-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.video-banner-box {
  position: relative;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}
.video-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.video-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.65) 100%);
}
.video-banner-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
  padding: 20px;
}
.video-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
  cursor: pointer;
  box-shadow: 0 0 0 10px rgba(201, 167, 123, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 18px rgba(201, 167, 123, 0.45);
}

/* 7. CTA Box (بانر الحجز وبدء المشروع) */
.cta-box-section {
  padding: 60px 0;
  background-color: var(--ivory);
}
.cta-luxury-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.cta-luxury-card h2 {
  font-size: 34px;
  font-weight: 900;
  margin-bottom: 12px;
  color: #ffffff;
}
.cta-luxury-card h2 span {
  color: var(--gold);
}
.cta-luxury-card p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.8;
}
.cta-luxury-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 992px) {
  .features-grid, .process-grid, .stats-grid, .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .features-grid, .process-grid, .stats-grid, .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
}
