:root {
  --wood-dark: #3b1f0a;
  --wood-mid: #6b3a1f;
  --wood-warm: #8b4513;
  --wood-light: #c8804a;
  --wood-pale: #d4a574;
  --wood-cream: #f5e6d3;
  --wood-white: #fdf8f3;
  --gold: #c9a84c;
  --gold-light: #e4c97e;
  --dark-bg: #1a0d05;
  --text-dark: #2c1505;
  --text-mid: #5a3520;
  --shadow-wood: rgba(59,31,10,0.35);
}

* { margin:0; padding:0; box-sizing:border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--wood-white);
  color: var(--text-dark);
  overflow-x: hidden;
  width: 100%;
  cursor: none;
}
section {
  overflow: hidden;
}

/* Custom Cursor */
.cursor {
  width: 16px; height: 16px;
  border: 2px solid var(--wood-warm);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: 99999;
  transition: transform 0.15s ease, background 0.2s;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top:0; left:0;
  pointer-events: none; z-index: 99999;
}
.cursor.hover { transform: scale(2.5); background: rgba(201,168,76,0.2); }

/* Grain Texture Overlay */
body::before {
  content:'';
  position: fixed; inset:0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9998; opacity:.4;
}

/* NAVBAR */
#navbar {
  position: fixed; top:0; width:100%; z-index: 1000;
  padding: 0;
  transition: all 0.4s ease;
  background: transparent;
}
#navbar.scrolled {
  background: rgba(26,13,5,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 0;
}
.navbar-brand-text {
  font-family: 'Aref Ruqaa', serif;
  font-size: 1.6rem;
  color: var(--gold) !important;
  letter-spacing: 1px;
}
.navbar-nav .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
  font-size: 0.95rem;
}
.navbar-nav .nav-link:hover { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark-bg) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  padding: 0.5rem 1.4rem !important;
}
.navbar-toggler { border-color: var(--gold); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(201,168,76,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 7, 3, 0.88) 0%, rgba(35, 18, 5, 0.78) 50%, rgba(15, 7, 3, 0.92) 100%),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
#hero::before {
  content:'';
  position: absolute; inset:0;
  background: repeating-linear-gradient(
    90deg,
    transparent, transparent 120px,
    rgba(201,168,76,0.03) 120px, rgba(201,168,76,0.03) 121px
  );
  z-index: 1;
  pointer-events: none;
}
.hero-glow-1, .hero-glow-2 {
  position: absolute;
  border-radius: 50%;
  filter: blur(160px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}
.hero-glow-1 {
  width: 350px; height: 350px;
  background: var(--gold);
  top: 15%; right: 15%;
  animation: drift 18s ease-in-out infinite alternate;
}
.hero-glow-2 {
  width: 450px; height: 450px;
  background: var(--wood-light);
  bottom: 10%; left: 10%;
  animation: drift 22s ease-in-out infinite alternate-reverse;
}
@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 40px) scale(1.15); }
  100% { transform: translate(-40px, -60px) scale(0.9); }
}
.hero-tagline {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.85);
  position: relative;
  z-index: 2;
}
.hero-tagline span {
  color: var(--gold-light);
  display: block;
  text-shadow: 0 2px 15px rgba(201, 168, 76, 0.65);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--wood-cream);
  max-width: 540px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}
.btn-primary-wood {
  background: linear-gradient(135deg, var(--gold), var(--wood-light));
  color: #fff !important;
  font-weight: 800;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(201,168,76,0.3);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary-wood::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}
.btn-primary-wood:hover::before {
  opacity: 1;
}
.btn-primary-wood:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(201,168,76,0.5);
  color: var(--dark-bg) !important;
}
.btn-outline-wood {
  border: 2px solid var(--gold);
  color: #fff !important;
  background: transparent;
  font-weight: 700;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  font-size: 1.05rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 0 rgba(0,0,0,0);
  position: relative;
  z-index: 2;
}
.btn-outline-wood:hover {
  background: var(--gold);
  color: var(--dark-bg) !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.15);
  animation: pulseGold 2.5s infinite;
  position: relative;
  z-index: 2;
}
@keyframes pulseGold {
  0% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 0 25px rgba(201, 168, 76, 0.4); border-color: var(--gold-light); }
  100% { box-shadow: 0 0 10px rgba(201, 168, 76, 0.15); }
}
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: var(--gold);
  animation: bounce 2s infinite;
  font-size: 1.5rem;
  z-index: 2;
}
@keyframes bounce {
  0%,100%{transform:translateX(-50%) translateY(0);}
  50%{transform:translateX(-50%) translateY(10px);}
}
.hero-floating-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(26, 13, 5, 0.35), inset 0 1px 1px rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  color: #fff;
  margin-bottom: 1rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.hero-floating-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: 0.5s;
}
.hero-floating-card:hover::before {
  left: 150%;
}
.hero-floating-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 15px 40px rgba(201,168,76,0.3);
}
.hero-floating-card .num {
  font-family: 'Aref Ruqaa', serif;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-floating-card .lbl {
  font-size: 0.8rem;
  color: var(--wood-cream);
}

@keyframes floatUp1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes floatUp2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes floatUp3 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floatUp4 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.col-lg-5 .hero-floating-card:nth-child(1) { animation: floatUp1 6s ease-in-out infinite; }
.col-lg-5 .hero-floating-card:nth-child(2) { animation: floatUp2 7s ease-in-out infinite 0.5s; }
.col-lg-5 .hero-floating-card:nth-child(3) { animation: floatUp3 6.5s ease-in-out infinite 1s; }
.col-lg-5 .hero-floating-card:nth-child(4) { animation: floatUp4 7.5s ease-in-out infinite 1.5s; }

/* SECTION HEADER */
.sec-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.sec-title {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--wood-dark);
  line-height: 1.3;
}
.sec-title span { color: var(--wood-warm); }
.sec-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wood-light));
  margin: 1rem 0;
  border-radius: 2px;
}

/* ABOUT */
#about { background: var(--wood-white); padding: 6rem 0; }
.about-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 20px 20px 60px var(--shadow-wood);
}
.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: var(--gold);
  color: var(--dark-bg);
  padding: 0.8rem 1.2rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.about-img-badge .big { font-size: 2rem; font-family:'Aref Ruqaa', serif; line-height:1; }
.about-img-badge .sm { font-size: 0.75rem; }
.feature-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.feature-icon {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--wood-warm), var(--wood-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  box-shadow: 0 6px 18px var(--shadow-wood);
}

/* SERVICES */
#services {
  background: #fdfbf7;
  padding: 6rem 0;
  position: relative; overflow: hidden;
}
#services::before {
  content:'';
  position: absolute; inset:0;
  background: repeating-linear-gradient(
    45deg,
    transparent, transparent 40px,
    rgba(201,168,76,0.01) 40px, rgba(201,168,76,0.01) 41px
  );
}
#services .sec-title { color: var(--wood-dark); }
#services .sec-divider { background: linear-gradient(90deg, var(--gold), transparent); }
.service-card {
  background: #ffffff;
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  padding: 2.2rem 1.8rem;
  transition: all 0.4s ease;
  height: 100%;
  position: relative; overflow: hidden;
  box-shadow: 0 10px 30px rgba(59,31,10,0.04);
}
.service-card::before {
  content:'';
  position: absolute; top:0; right:0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transition: width 0.5s ease;
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  background: #ffffff;
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(59,31,10,0.12);
}
.service-icon {
  font-size: 2.6rem;
  margin-bottom: 1.2rem;
  color: var(--wood-warm);
  display: block;
}
.service-card h5 {
  font-family: 'Aref Ruqaa', serif;
  font-size: 1.35rem;
  color: var(--wood-dark);
  margin-bottom: 0.8rem;
  font-weight: 700;
}
.service-card p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* PORTFOLIO */
#portfolio { background: var(--wood-cream); padding: 6rem 0; }
.portfolio-filter {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--wood-light);
  background: transparent;
  color: var(--wood-mid);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--wood-warm);
  border-color: var(--wood-warm);
  color: #fff;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media(max-width: 991px){ .portfolio-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width: 767px){ .portfolio-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width: 480px){ .portfolio-grid { grid-template-columns: 1fr 1fr; gap:0.6rem; } }

.portfolio-item {
  position: relative; border-radius: 10px; overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--wood-mid);
}
.portfolio-item canvas, .portfolio-item img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover canvas, .portfolio-item:hover img { transform: scale(1.08); }
.portfolio-overlay {
  position: absolute; inset:0;
  background: linear-gradient(to top, rgba(26,13,5,0.92), transparent 50%);
  opacity:0; transition: opacity 0.3s;
  display: flex; align-items: flex-end;
  padding: 1rem;
}
.portfolio-item:hover .portfolio-overlay { opacity:1; }
.portfolio-overlay span {
  color:#fff; font-size:0.85rem; font-weight:600;
}
.portfolio-label {
  position: absolute; top:0.7rem; right:0.7rem;
  background: var(--gold);
  color: var(--dark-bg);
  font-size: 0.7rem; font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

/* Lightbox Style */
.portfolio-lightbox {
  display: none;
  position: fixed;
  z-index: 999999;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(26, 13, 5, 0.95);
  backdrop-filter: blur(10px);
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80vh;
  border-radius: 8px;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  animation: zoom 0.3s ease;
}
@keyframes zoom {
  from {transform:scale(0.8); opacity:0;}
  to {transform:scale(1); opacity:1;}
}
.close-lightbox {
  position: absolute;
  top: 15px; left: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}
.close-lightbox:hover,
.close-lightbox:focus {
  color: var(--gold);
  text-decoration: none;
}
.lightbox-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: var(--wood-cream);
  font-family: 'Aref Ruqaa', serif;
  font-size: 1.4rem;
  padding: 10px 0;
  margin-top: 1rem;
}

/* VIDEO SECTION */
#videos { background: #ffffff; padding: 6rem 0; }
#videos .sec-title { color: var(--wood-dark); }
.video-card {
  background: #ffffff;
  border-radius: 12px; overflow: hidden;
  border: 1px solid rgba(201,168,76,0.18);
  box-shadow: 0 10px 30px rgba(59,31,10,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.video-card:hover { transform: translateY(-5px); box-shadow: 0 20px 45px rgba(59,31,10,0.12); border-color: var(--gold); }
.video-thumb {
  position: relative; aspect-ratio: 16/9;
  background: #fdfbf7;
  overflow: hidden;
}
.video-play-btn {
  position: absolute; inset:0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.play-circle {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #ffffff;
  font-size: 1.4rem;
  transition: transform 0.3s, background 0.3s;
  box-shadow: 0 8px 24px rgba(59,31,10,0.25);
}
.video-play-btn:hover .play-circle {
  transform: scale(1.15);
  background: var(--wood-warm);
  color: #ffffff;
}
.video-info { padding: 1.2rem 1.4rem; }
.video-info h6 {
  color: var(--wood-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
}
.video-info small { color: var(--text-mid); }
.video-duration {
  position: absolute; bottom: 0.6rem; left: 0.6rem;
  background: rgba(59,31,10,0.85);
  color: #fff; font-size: 0.75rem;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

/* STATS */
#stats {
  background: linear-gradient(135deg, var(--wood-warm), var(--wood-dark));
  padding: 5rem 0; position: relative; overflow: hidden;
}
#stats::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");
}
.stat-card { text-align: center; }
.stat-number {
  font-family: 'Aref Ruqaa', serif;
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--gold);
  line-height: 1;
  font-weight: 700;
}
.stat-label { color: var(--wood-cream); font-size: 1rem; font-weight: 500; margin-top: 0.5rem; }
.stat-icon { font-size: 2rem; color: rgba(255,255,255,0.3); margin-bottom: 0.5rem; }
.stat-divider-v {
  width: 1px; background: rgba(255,255,255,0.15);
  height: 80px; margin: auto;
}
@media(max-width:767px){ .stat-divider-v{display:none;} }

/* PROCESS */
#process { background: var(--wood-white); padding: 6rem 0; }
.process-step {
  position: relative;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(59,31,10,0.08);
  border-right: 4px solid var(--gold);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}
.process-step:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(59,31,10,0.15); }
.step-num {
  font-family: 'Aref Ruqaa', serif;
  font-size: 3rem;
  color: var(--wood-cream);
  line-height: 1;
  position: absolute; top: 1rem; left: 1.5rem;
  font-weight: 700;
}
.step-icon { font-size: 2rem; color: var(--wood-warm); margin-bottom: 1rem; }
.process-step h5 { color: var(--wood-dark); font-weight: 700; margin-bottom: 0.5rem; }
.process-step p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; }
.process-arrow {
  display: flex; align-items: center; justify-content: center;
  color: var(--wood-light); font-size: 1.5rem;
  padding-top: 1.5rem;
}

/* TESTIMONIALS */
#testimonials { background: var(--wood-cream); padding: 6rem 0; }
.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(59,31,10,0.08);
  height: 100%;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(59,31,10,0.15); }
.testimonial-card::before {
  content: '"';
  font-size: 5rem; line-height: 1;
  color: var(--wood-cream);
  font-family: 'Aref Ruqaa', serif;
  position: absolute; top: 0.5rem; left: 1.5rem;
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; }
.testimonial-text { color: var(--text-mid); line-height: 1.8; font-size: 0.95rem; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wood-warm), var(--wood-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.3rem;
  font-family: 'Aref Ruqaa', serif;
  font-weight: 700;
}
.author-name { font-weight: 700; color: var(--wood-dark); font-size: 0.95rem; }
.author-city { font-size: 0.8rem; color: var(--text-mid); }

/* FAQ */
#faq { background: var(--wood-white); padding: 6rem 0; }
.faq-accordion .accordion-item {
  border: 1px solid rgba(139,69,19,0.15);
  border-radius: 10px !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(59,31,10,0.05);
}
.faq-accordion .accordion-button {
  font-family: 'Tajawal', sans-serif;
  font-weight: 700;
  color: var(--wood-dark);
  background: #fff;
  font-size: 1rem;
  padding: 1.2rem 1.5rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--wood-dark), var(--wood-mid));
  color: var(--gold);
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  filter: sepia(1) saturate(3) hue-rotate(5deg);
}
.faq-accordion .accordion-body { color: var(--text-mid); line-height: 1.8; }

/* CONTACT */
#contact {
  background: #fdfbf7;
  padding: 6rem 0;
}
#contact .sec-title { color: var(--wood-dark); }
.contact-info-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(59,31,10,0.08);
}
.contact-icon {
  width: 50px; height: 50px; flex-shrink:0;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--wood-warm); font-size: 1.3rem;
}
.contact-info-item a { color: var(--text-dark); text-decoration: none; font-weight: 600; }
.contact-info-item a:hover { color: var(--gold); }
.contact-info-item p { color: var(--text-dark); margin:0; font-weight:600; }
.contact-info-item small { color: var(--text-mid); }
.map-container {
  border-radius: 16px; overflow: hidden;
  border: 2px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.map-container iframe { display: block; }
.whatsapp-float {
  position: fixed; bottom: 2rem; left: 2rem;
  z-index: 999;
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float a {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color:#fff; font-size: 1.8rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(37,211,102,0.4);
}
@keyframes pulse-wa {
  0%,100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
  50%{ box-shadow: 0 0 0 14px rgba(37,211,102,0); }
}
.phone-float {
  position: fixed; bottom: 2rem; right: 2rem;
  z-index: 999;
}
.phone-float a {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--wood-warm));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dark-bg); font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4);
  animation: pulse-phone 2.5s infinite 1s;
}
@keyframes pulse-phone {
  0%,100%{ box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50%{ box-shadow: 0 0 0 14px rgba(201,168,76,0); }
}

/* FOOTER */
footer {
  background: #0d0603;
  padding: 3rem 0 1.5rem;
  color: rgba(255,255,255,0.6);
}
footer .brand {
  font-family: 'Aref Ruqaa', serif;
  font-size: 1.8rem;
  color: var(--gold);
}
footer .footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
  display: block; margin-bottom: 0.5rem;
}
footer .footer-links a:hover { color: var(--gold); }
footer .social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--gold); margin-left: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}
footer .social-links a:hover {
  background: var(--gold);
  color: var(--dark-bg);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem; margin-top: 2rem;
  text-align: center; font-size: 0.85rem;
}

/* ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.visible { opacity:1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.visible { opacity:1; transform: translateX(0); }

/* BACK TO TOP */
#backToTop {
  position: fixed; bottom: 6.5rem; left: 2rem;
  width: 44px; height: 44px;
  background: var(--wood-warm);
  color:#fff; border:none; border-radius: 8px;
  font-size: 1.1rem; cursor: pointer;
  opacity: 0; transition: opacity 0.3s;
  z-index: 998;
  display: flex; align-items: center; justify-content: center;
}
#backToTop.show { opacity:1; }

/* LOADING SCREEN */
#loader {
  position: fixed; inset:0;
  background: var(--dark-bg);
  z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 1rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity:0; visibility:hidden; }
.loader-brand {
  font-family: 'Aref Ruqaa', serif;
  font-size: 2.5rem;
  color: var(--gold);
}
.loader-bar-wrap {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; overflow: hidden;
}
.loader-bar {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--wood-light));
  transition: width 0.05s linear;
}

/* RESPONSIVE TWEAKS */
@media(max-width:767px){
  #hero { padding-top: 80px; }
  .hero-tagline { font-size: 2.2rem; }
  .hero-floating-card { display: none; }
  .about-img-wrap img { height: 280px; }
  #stats { padding: 3rem 0; }
  .process-arrow { display: none; }
  .whatsapp-float { bottom: 1.2rem; left: 1.2rem; }
  .phone-float { bottom: 1.2rem; right: 1.2rem; }
  
  /* Disable horizontal displacement of reveals to prevent overflow-x */
  .reveal-left { transform: translateY(20px) !important; }
  .reveal-right { transform: translateY(20px) !important; }
  
  /* Navbar Brand adjustments for mobile */
  .navbar-brand-text {
    font-size: 1.35rem !important;
  }
}

/* Progress Bar Top */
#readProgress {
  position: fixed; top: 0; right: 0; left:0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--wood-light));
  transform-origin: right;
  transform: scaleX(0);
  z-index: 10001;
}

/* Wood Card Hover Effect */
.wood-card {
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}
.wood-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold) !important;
  box-shadow: 0 15px 35px rgba(59,31,10,0.12) !important;
}

