/* ============================================================
   4POWER INTERNATIONAL — CINEMATIC v4
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --ivory: #FEFCF8;
  --cream: #F7F3ED;
  --brass: #B8956A;
  --brass-light: #D4B896;
  --charcoal: #1C1915;
  --charcoal-light: #2A2520;
  --text-dark: #1C1915;
  --text-light: #FEFCF8;
  --text-muted: #8A8278;
  --overlay-dark: rgba(20, 17, 12, 0.55);
  --overlay-darker: rgba(20, 17, 12, 0.7);
  --overlay-light: rgba(254, 252, 248, 0.75);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --arabic: 'Tajawal', 'Segoe UI', sans-serif;
  --body: 'Outfit', 'Segoe UI', Roboto, sans-serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --nav-h: 72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
body { font-family: var(--body); color: var(--text-dark); background: var(--ivory); line-height: 1.6; cursor: none; overflow-x: hidden; }
a { text-decoration: none; color: inherit; cursor: none; }
button, select, input, textarea { cursor: none; font-family: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ---------- UTILITIES ---------- */
.container { width: 90%; max-width: 1400px; margin: 0 auto; }
.en { font-family: var(--body); }
.ar, .text-ar, .text-ar-sm, .ar-title, .ar-block, .form-ar-title { font-family: var(--arabic); direction: rtl; }
.section-title-ar, .mega-title-ar, .cta-ar { font-family: var(--arabic); direction: rtl; }
.text-ar { opacity: 0.8; font-size: 0.95em; margin-top: 0.3em; }
.text-ar-sm { font-size: 0.85em; opacity: 0.7; }
em { font-style: italic; color: var(--brass); }
.fullscreen-section { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }

/* ---------- PRELOADER ---------- */
#preloader { position: fixed; inset: 0; z-index: 10000; background: var(--charcoal); display: flex; align-items: center; justify-content: center; transition: opacity 0.8s var(--ease-smooth), visibility 0.8s; }
#preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-inner { text-align: center; }
.preloader-logo-img { height: 60px; margin-bottom: 30px; filter: brightness(0) invert(1); animation: pulse 1.5s ease-in-out infinite; }
.preloader-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.15); border-radius: 2px; overflow: hidden; }
.preloader-fill { width: 0%; height: 100%; background: var(--brass); transition: width 0.3s; animation: preloaderFill 2s var(--ease-smooth) forwards; }
@keyframes preloaderFill { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes pulse { 0%, 100% { opacity: 0.6; } 50% { opacity: 1; } }

/* ---------- CURSOR ---------- */
.custom-cursor { position: fixed; width: 8px; height: 8px; background: var(--brass); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width 0.2s, height 0.2s, background 0.2s; }
.cursor-follower { position: fixed; width: 36px; height: 36px; border: 1px solid var(--brass); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%, -50%); mix-blend-mode: difference; transition: width 0.3s, height 0.3s, border-color 0.3s; }
.cursor-follower.hovering { width: 56px; height: 56px; border-color: var(--brass-light); }

/* ---------- NAV ---------- */
#navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; padding: 0 4%; transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s; }
#navbar.scrolled { background: rgba(254, 252, 248, 0.92); backdrop-filter: blur(20px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.logo-img { height: 44px; transition: filter 0.3s; }
#navbar:not(.scrolled) .logo-img { filter: brightness(0) invert(1) drop-shadow(0 1px 3px rgba(0,0,0,0.3)); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; padding: 8px 16px; color: var(--text-dark); transition: color 0.3s; position: relative; }
#navbar:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.85); }
#navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%) scaleX(0); width: 20px; height: 1.5px; background: var(--brass); transition: transform 0.3s var(--ease-out); }
.nav-links a:hover::after, .nav-links a.active::after { transform: translateX(-50%) scaleX(1); }
.nav-cta { background: var(--brass) !important; color: #fff !important; border-radius: 4px; padding: 8px 20px !important; }
.nav-cta:hover { background: var(--brass-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger { display: none; background: none; border: none; width: 32px; height: 24px; position: relative; }
.hamburger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--text-dark); transition: all 0.3s; }
#navbar:not(.scrolled) .hamburger span { background: #fff; }
.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }
.hamburger.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }
.mobile-menu { position: fixed; top: 0; right: -100%; width: 300px; height: 100vh; background: var(--charcoal); z-index: 999; padding: 100px 40px; transition: right 0.4s var(--ease-out); }
.mobile-menu.open { right: 0; }
.mobile-menu a { display: block; font-size: 1.2rem; color: rgba(255,255,255,0.8); padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--brass); }

/* ---------- HERO ---------- */
#hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-video-wrap { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.4) 100%); z-index: 1; }
.hero-grain { position: absolute; inset: 0; z-index: 2; opacity: 0.035; pointer-events: none; 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)'/%3E%3C/svg%3E"); }
.hero-content { position: relative; z-index: 3; text-align: center; color: #fff; padding: 0 5%; max-width: 800px; }
.hero-tagline { font-size: 0.72rem; letter-spacing: 0.25em; text-transform: uppercase; opacity: 0.6; margin-bottom: 16px; }
.hero-title { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin-bottom: 14px; }
.hero-line { display: block; font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: 0.04em; }
.hero-line em { font-style: italic; color: var(--brass-light); font-weight: 400; }
.hero-location { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.5; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-indicators { display: flex; gap: 8px; justify-content: center; margin-top: 50px; }
.hero-dot { width: 30px; height: 2px; background: rgba(255,255,255,0.3); border: none; cursor: pointer; transition: all 0.4s; }
.hero-dot.active { width: 50px; background: var(--brass); }
.hero-scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,0.5); font-size: 0.6rem; letter-spacing: 0.2em; }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--brass)); animation: scrollPulse 2s ease-in-out infinite; }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; transform: scaleY(0.7); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- BUTTONS ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 14px 32px; border: none; transition: all 0.4s var(--ease-out); cursor: none; }
.btn .ar { font-family: var(--arabic); letter-spacing: 0; text-transform: none; direction: rtl; }
.btn-sep { opacity: 0.4; font-size: 0.6em; }
.btn-gold { background: var(--brass); color: #fff; }
.btn-gold:hover { background: var(--brass-light); transform: translateY(-2px); }
.btn-glass { background: rgba(255,255,255,0.08); color: #fff; border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(10px); }
.btn-glass:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.4); }
.btn-lg { padding: 18px 44px; font-size: 0.9rem; }
.btn-full { width: 100%; justify-content: center; }

/* ---------- MARQUEE ---------- */
#marquee { background: var(--charcoal); padding: 16px 0; overflow: hidden; border-top: 1px solid rgba(184,149,106,0.15); border-bottom: 1px solid rgba(184,149,106,0.15); }
.marquee-track { display: flex; gap: 0; animation: marqueeScroll 40s linear infinite; white-space: nowrap; width: max-content; }
.marquee-track span { font-family: var(--body); font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); padding: 0 16px; }
.marquee-track .diamond { color: var(--brass); font-size: 0.5rem; padding: 0 8px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- SECTION TAGS & TITLES ---------- */
.section-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 20px; }
.section-tag .divider { opacity: 0.4; }
.section-tag .ar { font-family: var(--arabic); letter-spacing: 0.05em; direction: rtl; }
.section-title { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 500; line-height: 1.2; margin-bottom: 10px; }
.section-title-ar { font-family: var(--arabic); font-size: clamp(1.4rem, 2.5vw, 2rem); direction: rtl; font-weight: 400; opacity: 0.9; margin-bottom: 20px; }
.section-header.center { text-align: center; margin-bottom: 50px; }
.mega-title { font-family: var(--serif); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 500; line-height: 1.1; color: #fff; }
.mega-title-ar { font-family: var(--arabic); font-size: clamp(1.8rem, 3vw, 3rem); color: rgba(255,255,255,0.85); direction: rtl; margin-top: 10px; }
.mega-sub { color: rgba(255,255,255,0.6); font-size: 0.9rem; letter-spacing: 0.1em; margin-top: 16px; }

/* ---------- ABOUT ---------- */
#about { min-height: 100vh; }
.about-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.about-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(254,252,248,0.96) 0%, rgba(254,252,248,0.88) 50%, rgba(254,252,248,0.2) 100%); }
.about-inner { position: relative; z-index: 2; width: 90%; max-width: 1400px; padding: 120px 0; }
.about-left { max-width: 600px; }
.about-left p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-top: 16px; }
.about-stats { display: flex; gap: 40px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(0,0,0,0.08); }
.about-stat { text-align: center; }
.stat-num { font-family: var(--serif); font-size: 2.8rem; font-weight: 600; color: var(--brass); }
.stat-suffix { font-family: var(--serif); font-size: 1.8rem; color: var(--brass); }
.stat-label { display: block; font-size: 0.75rem; letter-spacing: 0.08em; color: var(--text-muted); margin-top: 4px; }

/* ============================================================
   COMPANY SHOWCASE
   ============================================================ */
.company-showcase { background: var(--charcoal); padding: 100px 0 120px; }
.company-showcase .section-title, .company-showcase .section-title-ar { color: #fff; }
.company-showcase .section-tag { color: var(--brass); }
.showcase-sub { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.75; max-width: 700px; margin: 0 auto; }
.showcase-sub.text-ar { margin-top: 8px; }
.company-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 10px; margin-top: 40px; }
.company-photo { position: relative; overflow: hidden; border-radius: 4px; }
.company-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-smooth); }
.company-photo:hover img { transform: scale(1.06); }
.cp-large { grid-column: span 2; }
.cp-label { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; background: linear-gradient(0deg, rgba(0,0,0,0.75) 0%, transparent 100%); color: #fff; font-size: 0.8rem; letter-spacing: 0.06em; font-family: var(--body); opacity: 0; transition: opacity 0.4s; }
.company-photo:hover .cp-label { opacity: 1; }

/* ============================================================
   STONE SERVICES — FULL-SCREEN PANELS
   ============================================================ */
.stone-intro { min-height: 100vh; }
.stone-intro-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.stone-intro-overlay { position: absolute; inset: 0; background: var(--overlay-darker); }
.stone-intro-content { position: relative; z-index: 2; text-align: center; padding: 0 5%; }
.stone-panel { min-height: 100vh; }
.stone-panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.stone-panel-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,12,0.88) 0%, rgba(20,17,12,0.55) 50%, rgba(20,17,12,0.15) 100%); }
.stone-panel-overlay.overlay-light { background: linear-gradient(90deg, rgba(254,252,248,0.92) 0%, rgba(254,252,248,0.7) 50%, rgba(254,252,248,0.2) 100%); }
.stone-panel-content { position: relative; z-index: 2; padding: 0 8%; max-width: 700px; color: #fff; }
.stone-panel-content.dark-text { color: var(--text-dark); }
.stone-panel-content.dark-text .stone-label { color: var(--brass); border-color: var(--brass); }
.stone-panel-content.dark-text .text-ar { opacity: 0.6; }
.stone-panel-content.dark-text .stone-tags span { border-color: rgba(0,0,0,0.15); color: var(--text-dark); }
.stone-label { display: inline-block; font-family: var(--serif); font-size: 0.85rem; letter-spacing: 0.15em; color: var(--brass-light); border: 1px solid rgba(255,255,255,0.2); padding: 6px 16px; margin-bottom: 20px; }
.stone-panel-content h2 { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 500; line-height: 1.1; margin-bottom: 16px; }
.stone-panel-content h2 .ar-title { display: block; font-family: var(--arabic); font-size: 0.5em; font-weight: 400; opacity: 0.8; margin-top: 6px; direction: rtl; }
.stone-panel-content p { font-size: 1rem; line-height: 1.7; opacity: 0.85; max-width: 500px; }
.stone-panel-content .text-ar { font-family: var(--arabic); direction: rtl; font-size: 0.9rem; }
.stone-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.stone-tags span { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }

/* ============================================================
   WOOD SERVICES — FULL-SCREEN PANELS
   ============================================================ */
.wood-intro { min-height: 100vh; }
.wood-intro-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.wood-intro-overlay { position: absolute; inset: 0; background: var(--overlay-darker); }
.wood-intro-content { position: relative; z-index: 2; text-align: center; padding: 0 5%; }
.wood-panel { min-height: 100vh; }
.wood-panel-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.wood-panel-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,17,12,0.88) 0%, rgba(20,17,12,0.55) 50%, rgba(20,17,12,0.15) 100%); }
.wood-panel-content { position: relative; z-index: 2; color: #fff; padding: 0 8%; max-width: 650px; }
.wood-number { font-family: var(--serif); font-size: 5rem; font-weight: 300; color: var(--brass); opacity: 0.3; line-height: 1; display: block; margin-bottom: 10px; }
.wood-panel-content h3 { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 500; line-height: 1.2; margin-bottom: 16px; }
.wood-panel-content h3 .ar-block { display: block; font-family: var(--arabic); font-size: 0.55em; font-weight: 400; margin-top: 6px; direction: rtl; opacity: 0.8; }
.wood-panel-content p { font-size: 0.95rem; line-height: 1.75; opacity: 0.8; }
.wood-panel-content ul { margin-top: 20px; padding: 0; }
.wood-panel-content li { font-size: 0.85rem; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); letter-spacing: 0.03em; }
.wood-panel-content li:last-child { border-bottom: none; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-header { min-height: 60vh; }
.gallery-header-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.gallery-header-overlay { position: absolute; inset: 0; background: var(--overlay-darker); }
.gallery-header-content { position: relative; z-index: 2; text-align: center; }
.gallery-body { background: var(--charcoal); padding: 60px 5% 100px; }
.gallery-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.filter-btn { background: transparent; border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 8px 20px; transition: all 0.3s; font-family: var(--body); cursor: none; }
.filter-btn:hover, .filter-btn.active { background: var(--brass); border-color: var(--brass); color: #fff; }
.gallery-masonry { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 280px; gap: 8px; }
.gallery-item { position: relative; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease-smooth); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; color: #fff; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-cat { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--brass-light); margin-bottom: 6px; }
.gallery-overlay h3 { font-family: var(--serif); font-size: 1.1rem; font-weight: 500; }
.gallery-overlay p { font-family: var(--arabic); font-size: 0.85rem; opacity: 0.7; direction: rtl; }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gallery-item.hidden { display: none; }

/* ============================================================
   PROCESS
   ============================================================ */
#process { min-height: 100vh; color: #fff; }
.process-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.process-overlay { position: absolute; inset: 0; background: var(--overlay-darker); }
.process-inner { position: relative; z-index: 2; width: 90%; max-width: 1100px; padding: 80px 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 10px; }
.process-step { padding: 30px; border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); backdrop-filter: blur(10px); transition: border-color 0.4s, background 0.4s; }
.process-step:hover { border-color: var(--brass); background: rgba(255,255,255,0.06); }
.step-num { font-family: var(--serif); font-size: 2.5rem; font-weight: 300; color: var(--brass); opacity: 0.5; margin-bottom: 14px; }
.process-step h3 { font-family: var(--serif); font-size: 1rem; font-weight: 500; margin-bottom: 10px; }
.process-step p { font-size: 0.85rem; line-height: 1.65; opacity: 0.65; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials { min-height: 100vh; color: #fff; }
.testi-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.testi-overlay { position: absolute; inset: 0; background: var(--overlay-darker); }
.testi-inner { position: relative; z-index: 2; width: 90%; max-width: 900px; padding: 80px 0; }
.testimonial-slider { overflow: hidden; margin-top: 10px; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease-out); }
.testimonial-card { flex: 0 0 100%; padding: 50px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(10px); }
.testimonial-stars { color: var(--brass); font-size: 1rem; letter-spacing: 3px; margin-bottom: 20px; }
.testimonial-card blockquote { font-family: var(--serif); font-size: 1.15rem; font-style: italic; line-height: 1.8; opacity: 0.9; margin-bottom: 14px; }
.testimonial-ar { font-family: var(--arabic); direction: rtl; font-size: 0.9rem; opacity: 0.6; line-height: 1.7; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 44px; height: 44px; background: var(--brass); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--arabic); font-weight: 700; font-size: 0.85rem; }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.75rem; opacity: 0.5; display: block; }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 30px; }
.testi-btn { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: #fff; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; transition: all 0.3s; cursor: none; }
.testi-btn:hover { background: var(--brass); border-color: var(--brass); }
.testi-dots { display: flex; gap: 6px; }
.testi-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.2); border: none; cursor: pointer; transition: all 0.3s; }
.testi-dot.active { background: var(--brass); transform: scale(1.3); }

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner { min-height: 80vh; text-align: center; color: #fff; }
.cta-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.cta-overlay { position: absolute; inset: 0; background: var(--overlay-darker); }
.cta-inner { position: relative; z-index: 2; max-width: 800px; padding: 0 5%; }
.cta-inner h2 { font-family: var(--serif); font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 500; line-height: 1.2; margin-bottom: 10px; }
.cta-ar { font-family: var(--arabic); font-size: clamp(1.4rem, 2.5vw, 2rem); direction: rtl; opacity: 0.85; margin-bottom: 20px; }
.cta-inner p { font-size: 1rem; opacity: 0.7; max-width: 600px; margin: 0 auto 30px; line-height: 1.7; }

/* ============================================================
   CONTACT
   ============================================================ */
#contact { background: var(--cream); padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-top: 14px; }
.contact-details { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-item svg { color: var(--brass); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.85rem; margin-bottom: 4px; }
.contact-item a, .contact-item span { font-size: 0.85rem; color: var(--text-muted); display: block; line-height: 1.5; }
.contact-item a:hover { color: var(--brass); }
.contact-form-wrap { background: #fff; padding: 40px; border: 1px solid rgba(0,0,0,0.06); }
.contact-form h3 { font-family: var(--serif); font-size: 1.3rem; margin-bottom: 24px; }
.form-ar-title { font-family: var(--arabic); font-weight: 400; font-size: 0.9rem; opacity: 0.7; direction: rtl; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.75rem; letter-spacing: 0.06em; font-weight: 500; margin-bottom: 6px; color: var(--text-muted); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid rgba(0,0,0,0.1); background: var(--ivory); font-size: 0.9rem; font-family: var(--body); color: var(--text-dark); transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brass); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer { background: var(--charcoal); color: rgba(255,255,255,0.65); padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-logo-img { height: 40px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.6; }
.social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.social-link:hover { background: var(--brass); border-color: var(--brass); }
.footer-links h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 0.82rem; padding: 5px 0; opacity: 0.6; transition: opacity 0.3s, color 0.3s; }
.footer-links a:hover { opacity: 1; color: var(--brass); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; text-align: center; font-size: 0.75rem; opacity: 0.4; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.35); transition: transform 0.3s, box-shadow 0.3s; cursor: none; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }
.reveal-d4 { transition-delay: 0.48s; }
.reveal-d5 { transition-delay: 0.6s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 240px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > div:last-child { display: none; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .about-overlay { background: linear-gradient(180deg, rgba(254,252,248,0.95) 0%, rgba(254,252,248,0.92) 100%); }
  .about-left { max-width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .stone-panel-content h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  body { cursor: auto; }
  a, button, select, input, textarea { cursor: auto; }
  .custom-cursor, .cursor-follower { display: none; }
  .btn { cursor: pointer; }
  .filter-btn, .testi-btn, .whatsapp-float { cursor: pointer; }
  .company-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .cp-large { grid-column: span 2; }
  .cp-label { opacity: 1; }
  .hero-line { font-size: clamp(1.6rem, 6vw, 2.4rem); }
  .about-stats { gap: 24px; }
  .stat-num { font-size: 2rem; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gi-tall { grid-row: span 1; }
  .gi-wide { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr; }
  .wood-panel-content { padding: 0 6%; }
  .stone-panel-content { padding: 0 6%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card { padding: 30px 20px; }
  .testimonial-card blockquote { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 320px; justify-content: center; }
}

@media (max-width: 480px) {
  .company-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .cp-large { grid-column: span 1; }
  .hero-line { font-size: clamp(1.4rem, 7vw, 2rem); }
  .mega-title { font-size: clamp(2rem, 8vw, 3rem); }
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .about-stats { flex-direction: column; align-items: flex-start; gap: 16px; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stone-panel-content h2 { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .wood-number { font-size: 3.5rem; }
}

/* ============================================================
   I18N · LANGUAGE / FONTS / RTL
   ============================================================ */
html[data-lang="ar"] { --serif: 'Tajawal', sans-serif; --body: 'Tajawal', sans-serif; }
html[data-lang="he"] { --serif: 'Heebo', sans-serif; --body: 'Heebo', sans-serif; }
html[data-lang="ar"] em, html[data-lang="he"] em { font-style: normal; }

/* smooth crossfade on language switch */
body { transition: opacity 0.25s var(--ease-smooth); }
body.lang-switching { opacity: 0.35; }

/* language switcher */
.lang-switch { display: flex; align-items: center; gap: 2px; border: 1px solid rgba(255,255,255,0.28); border-radius: 999px; padding: 3px; margin-inline-start: 14px; }
.lang-btn { background: none; border: none; color: rgba(255,255,255,0.82); font-family: var(--body); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.03em; line-height: 1; padding: 5px 11px; border-radius: 999px; cursor: none; transition: background 0.3s, color 0.3s; }
.lang-btn:hover { color: #fff; }
.lang-btn.active { background: var(--brass); color: #fff; }
#navbar.scrolled .lang-switch { border-color: rgba(0,0,0,0.15); }
#navbar.scrolled .lang-btn { color: var(--text-muted); }
#navbar.scrolled .lang-btn.active { color: #fff; }
.nav-links { margin-inline-start: auto; }
.lang-switch.mobile { margin: 36px 0 0; justify-content: center; border-color: rgba(255,255,255,0.18); padding: 4px; }
.lang-switch.mobile .lang-btn { font-size: 0.9rem; padding: 9px 18px; }

/* RTL adjustments */
[dir="rtl"] .stone-panel-overlay { background: linear-gradient(270deg, rgba(20,17,12,0.88) 0%, rgba(20,17,12,0.55) 50%, rgba(20,17,12,0.15) 100%); }
[dir="rtl"] .wood-panel-overlay { background: linear-gradient(270deg, rgba(20,17,12,0.88) 0%, rgba(20,17,12,0.55) 50%, rgba(20,17,12,0.15) 100%); }
[dir="rtl"] .about-overlay { background: linear-gradient(270deg, rgba(254,252,248,0.96) 0%, rgba(254,252,248,0.88) 50%, rgba(254,252,248,0.2) 100%); }
[dir="rtl"] .stone-panel-content, [dir="rtl"] .wood-panel-content { text-align: right; }
[dir="rtl"] .about-left { margin-inline-start: auto; text-align: right; }
[dir="rtl"] .scroll-progress { left: auto; right: 0; }
[dir="rtl"] .hero-content, [dir="rtl"] .cta-inner { text-align: center; }
[dir="rtl"] .whatsapp-float { right: auto; left: 24px; }

/* ============================================================
   ENHANCED ANIMATIONS
   ============================================================ */
/* scroll progress bar */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: linear-gradient(90deg, var(--brass), var(--brass-light)); z-index: 10001; transition: width 0.1s linear; box-shadow: 0 0 10px rgba(184,149,106,0.5); }

/* parallax layers — slight vertical bleed so edges never show */
.parallax { top: -90px; bottom: -90px; height: auto; will-change: transform; }
@media (max-width: 768px) { .parallax { top: 0; bottom: 0; transform: none !important; } }

/* side reveal for panel content */
.reveal-side { opacity: 0; transform: translateX(-55px); transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-side.visible { opacity: 1; transform: none; }
[dir="rtl"] .reveal-side { transform: translateX(55px); }
[dir="rtl"] .reveal-side.visible { transform: none; }

/* button sheen sweep */
.btn { position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; top: 0; left: -120%; width: 55%; height: 100%; background: linear-gradient(100deg, transparent, rgba(255,255,255,0.4), transparent); transform: skewX(-20deg); transition: left 0.7s var(--ease-out); pointer-events: none; }
.btn:hover::after { left: 140%; }

/* elegant accent line before section tags */
.section-tag::before { content: ''; display: inline-block; width: 26px; height: 1px; background: var(--brass); margin-inline-end: 6px; vertical-align: middle; opacity: 0.7; }
.section-header.center .section-tag::before { width: 20px; }

/* gentle float on company + gallery cards already have hover scale; add lift */
.company-photo, .gallery-item { transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out); }
.company-photo:hover, .gallery-item:hover { box-shadow: 0 24px 50px -20px rgba(0,0,0,0.55); }

/* hero title subtle gradient sheen */
.hero-line em { background: linear-gradient(120deg, var(--brass-light), #f0dcc0, var(--brass-light)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

@media (max-width: 1024px) {
  #langSwitch { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-side, .parallax { transition: none !important; transform: none !important; opacity: 1 !important; }
}
