/* ============================================================
   PREMIUM SOFA CURTAIN - Complete Responsive Design System
   v2.0 — With Dark/Light Mode + Arabic/English Support
   ============================================================ */

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

/* ============================================================
   ROOT VARIABLES - LIGHT MODE (DEFAULT)
   ============================================================ */
:root {
  --gold: #e3b523;
  --gold-dark: #c49712;
  --gold-light: #f2be04;
  --gold-gradient: linear-gradient(135deg, #e3b523 0%, #c49712 100%);
  --gold-glow: rgba(227, 181, 35, 0.25);
  --border-gold: rgba(227, 181, 35, 0.3);

  --bg-primary: #ffffff;
  --bg-secondary: #f7f4ee;
  --bg-tertiary: #eee9de;
  --bg-dark: #0d1b2a;
  --bg-dark2: #131e2b;
  --bg-nav: rgba(13, 27, 42, 0.97);

  --text-primary: #1a1a2e;
  --text-secondary: #54595f;
  --text-muted: #888;
  --text-light: #e2e8f0;

  --card-bg: #ffffff;
  --card-border: #e8e3d7;
  --input-bg: #f7f4ee;
  --shadow-color: rgba(0,0,0,0.08);

  --font-en: 'Montserrat', 'Poppins', sans-serif;
  --font-ar: 'Cairo', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 4px 20px rgba(227, 181, 35, 0.3);

  /* Fluid spacing */
  --section-py: clamp(60px, 8vw, 100px);
  --container-px: clamp(16px, 4vw, 32px);
}

/* ============================================================
   DARK MODE VARIABLES
   ============================================================ */
[data-theme="dark"] {
  --bg-primary: #0a1118;
  --bg-secondary: #131e2b;
  --bg-tertiary: #1e2d40;
  --card-bg: #131e2b;
  --card-border: rgba(227, 181, 35, 0.15);
  --input-bg: #1e2d40;

  --text-primary: #f0f0f0;
  --text-secondary: #b8bcc8;
  --text-muted: #7a8394;

  --shadow-color: rgba(0,0,0,0.4);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 5px 25px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 50px rgba(0,0,0,0.5);
}

/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

/* Arabic RTL Support */
html[dir="rtl"] { direction: rtl; }
html[lang="ar"] body { font-family: var(--font-ar); }
html[lang="en"] body { font-family: var(--font-en); }

body {
  font-family: var(--font-en);
  color: var(--text-secondary);
  background: var(--bg-primary);
  overflow-x: hidden;
  line-height: 1.7;
  transition: background 0.3s ease, color 0.3s ease;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; color: var(--text-primary); }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ============================================================
   TYPOGRAPHY - FLUID
   ============================================================ */
.section-subtitle {
  display: inline-block;
  color: var(--gold);
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.section-subtitle::before { content: '— '; }
.section-subtitle::after { content: ' —'; }

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 16px;
}

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

/* ============================================================
   BUTTONS - FLUID
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 32px);
  font-family: inherit;
  font-weight: 700;
  font-size: clamp(0.75rem, 1.5vw, 0.9rem);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-gradient);
  color: #000 !important;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(227, 181, 35, 0.5);
  filter: brightness(1.08);
  color: #000 !important;
}

.btn-outline {
  background: transparent;
  color: var(--text-light) !important;
  border-color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold-gradient);
  color: #000 !important;
  transform: translateY(-2px);
}

/* ============================================================
   TOOLBAR BUTTONS (now live inside header)
   ============================================================ */
.top-toolbar { display: none; } /* Hidden — merged into header */

.toolbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-gold);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.toolbar-btn:hover {
  background: var(--gold-gradient);
  color: #000;
  border-color: transparent;
}

.toolbar-btn .icon { font-size: 0.82rem; }

/* ============================================================
   HEADER / NAVIGATION — Single unified bar
   ============================================================ */
.header {
  position: fixed;
  top: 0; /* starts at very top */
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 10px 0;
}

.header.transparent {
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
}

.header.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 8px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border-gold);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: clamp(30px, 4vw, 44px);
  width: auto;
  object-fit: contain;
  /* Logo is dark-navy background — always bright on any bg */
  filter: drop-shadow(0 0 2px rgba(227,181,35,0.4));
}

.header.scrolled .nav-logo img { filter: none; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-menu li a {
  color: rgba(255,255,255,0.92);
  font-weight: 600;
  font-size: 0.72rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  position: relative;
  white-space: nowrap;
}

.nav-menu li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-menu li a:hover,
.nav-menu li a.active { color: var(--gold); }

.nav-menu li a:hover::after,
.nav-menu li a.active::after { width: 70%; }

/* Nav right actions group */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.nav-cta {
  background: var(--gold-gradient) !important;
  color: #000 !important;
  padding: 7px 16px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  border: none !important;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.05);
  color: #000 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1100;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile Nav */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,17,24,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px;
}

.nav-overlay.active { display: flex; }
.nav-overlay a { color: #fff; font-size: clamp(1.1rem, 4vw, 1.4rem); font-weight: 700; text-transform: uppercase; transition: var(--transition); }
.nav-overlay a:hover, .nav-overlay a.active { color: var(--gold); }

/* Toolbar buttons inside nav overlay */
.nav-overlay .overlay-toolbar {
  display: flex; gap: 12px; margin-top: 8px;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  max-height: 1100px;
  overflow: hidden;
  margin-top: 0; /* header is overlay — no offset needed */
}

.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.5) 100%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: min(800px, 90%);
}

.hero-slide.active .hero-content { animation: heroFadeIn 0.9s ease forwards; }

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-block;
  background: var(--gold-gradient);
  color: #000;
  font-size: clamp(0.65rem, 1.5vw, 0.75rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(1.8rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-title .gold-text { color: var(--gold); }

.hero-desc {
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  color: var(--text-light);
  margin-bottom: 32px;
  max-width: 560px;
  line-height: 1.8;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider Arrows */
.hero-arrow {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  width: clamp(40px, 5vw, 54px);
  height: clamp(40px, 5vw, 54px);
  background: rgba(13,27,42,0.7);
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.hero-arrow:hover { background: var(--gold); color: #000; }
.hero-prev { left: clamp(10px, 2vw, 30px); }
.hero-next { right: clamp(10px, 2vw, 30px); }

.hero-dots {
  position: absolute;
  bottom: clamp(20px, 4vw, 40px);
  left: 50%; transform: translateX(-50%);
  z-index: 10; display: flex; gap: 8px;
}

.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 2px solid var(--gold);
  cursor: pointer; transition: var(--transition);
}

.hero-dot.active { background: var(--gold); width: 30px; border-radius: var(--radius-pill); }

/* Hero Stats */
.hero-stats {
  position: absolute;
  bottom: clamp(50px, 8vw, 80px);
  right: clamp(16px, 3vw, 40px);
  z-index: 10;
  background: rgba(13,27,42,0.88);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(14px, 2vw, 24px) clamp(18px, 3vw, 32px);
  display: flex;
  gap: clamp(20px, 3vw, 40px);
}

.hero-stat-item { text-align: center; }
.hero-stat-item h4 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 4px; }
.hero-stat-item p { font-size: clamp(0.6rem, 1vw, 0.75rem); color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTIONS - FLUID PADDING
   ============================================================ */
.about-section, .services-section, .portfolio-section,
.team-section, .testimonials-section, .faq-section,
.process-section, .contact-section {
  padding: var(--section-py) 0;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--bg-primary); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}

.about-image-wrap { position: relative; }
.about-image-wrap .main-img {
  width: 100%;
  height: clamp(300px, 45vw, 550px);
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image-wrap .exp-badge {
  position: absolute;
  bottom: -24px; right: -20px;
  width: clamp(110px, 15vw, 150px);
  height: clamp(110px, 15vw, 150px);
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #000; text-align: center;
  box-shadow: var(--shadow-gold);
  animation: rotate-slow 20s linear infinite;
}

.exp-badge .num { font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 900; line-height: 1; }
.exp-badge .text { font-size: clamp(0.6rem, 1vw, 0.75rem); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

@keyframes rotate-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.checklist { margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--text-primary);
  font-size: clamp(0.82rem, 1.5vw, 0.95rem);
}

.checklist li::before {
  content: '';
  width: 20px; height: 20px; min-width: 20px;
  background: var(--gold-gradient);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background: var(--bg-secondary); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
}

.service-card {
  background: var(--card-bg);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative; overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold-gradient);
  transition: var(--transition);
}

.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: clamp(60px, 8vw, 80px);
  height: clamp(60px, 8vw, 80px);
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto clamp(16px, 2vw, 24px);
  font-size: clamp(1.5rem, 3vw, 2rem);
  transition: var(--transition);
}

.service-card:hover .service-icon { background: var(--gold-gradient); }
.service-card h3 { font-size: clamp(1rem, 1.8vw, 1.2rem); margin-bottom: 10px; }
.service-card p { font-size: clamp(0.82rem, 1.4vw, 0.93rem); }

/* ============================================================
   STATS
   ============================================================ */
.stats-section {
  padding: clamp(50px, 6vw, 80px) 0;
  background: var(--bg-dark);
  position: relative; overflow: hidden;
}

.stats-section::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold-gradient);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  text-align: center;
}

.stat-item {
  padding: 20px;
  border-right: 1px solid rgba(227,181,35,0.2);
}

.stat-item:last-child { border-right: none; }
.stat-item .number { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 8px; display: block; }
.stat-item p { color: var(--text-light); font-size: clamp(0.7rem, 1.2vw, 0.9rem); text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-section { background: var(--bg-primary); }

.portfolio-filter {
  display: flex; gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: clamp(7px, 1.2vw, 10px) clamp(18px, 2.5vw, 28px);
  border-radius: var(--radius-pill);
  border: 2px solid var(--border-gold);
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  cursor: pointer; transition: var(--transition);
  font-family: inherit;
  text-transform: uppercase; letter-spacing: 1px;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--gold-gradient);
  color: #000; border-color: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.08); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.92) 0%, transparent 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: clamp(16px, 2vw, 24px);
  opacity: 0; transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay h3 { color: #fff; font-size: clamp(0.95rem, 1.8vw, 1.1rem); margin-bottom: 4px; }
.portfolio-overlay p { color: var(--gold); font-size: clamp(0.75rem, 1.2vw, 0.85rem); font-weight: 600; }

/* ============================================================
   TEAM
   ============================================================ */
.team-section { background: var(--bg-secondary); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
}

/* ============================================================
   OWNER HIGHLIGHT CARD (Full width)
   ============================================================ */
.owner-card-wrap {
  margin-bottom: 50px;
}

.owner-card {
  background: var(--card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(227, 181, 35, 0.2);
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  position: relative;
  transition: var(--transition);
}

.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(227, 181, 35, 0.35);
}

.owner-img-box {
  position: relative;
  height: 100%;
  min-height: 380px;
}

.owner-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.owner-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gold-gradient);
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

html[dir="rtl"] .owner-badge {
  left: auto;
  right: 20px;
}

.owner-info {
  padding: clamp(24px, 4vw, 44px);
}

.owner-info .tag {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
  display: block;
}

.owner-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.owner-info .role {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}

.owner-info .bio {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 24px;
  max-width: 600px;
}

.owner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .owner-card {
    grid-template-columns: 1fr;
  }
  .owner-img-box {
    height: 320px;
  }
}

/* 5-member team grid */
.team-grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 1200px) {
  .team-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .team-grid-5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .team-grid-5 { grid-template-columns: 1fr; }
}

.team-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--card-border);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card img { width: 100%; height: clamp(200px, 25vw, 300px); object-fit: cover; object-position: top; transition: transform 0.6s ease; }
.team-card:hover img { transform: scale(1.04); }
.team-card .info { padding: clamp(16px, 2vw, 24px) clamp(12px, 1.5vw, 20px); }
.team-card .info h3 { font-size: clamp(0.9rem, 1.5vw, 1.05rem); margin-bottom: 6px; }
.team-card .info p { color: var(--gold); font-weight: 600; font-size: clamp(0.72rem, 1.2vw, 0.85rem); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-dark); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
}

.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.5vw, 32px);
  transition: var(--transition);
  position: relative;
}

.testi-card::before {
  content: '"'; position: absolute;
  top: 16px; right: 20px;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold); opacity: 0.15;
  line-height: 1; font-family: Georgia, serif;
}

.testi-card:hover { background: rgba(227,181,35,0.07); border-color: var(--gold); transform: translateY(-5px); }
.testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.testi-stars span { color: var(--gold); font-size: clamp(0.85rem, 1.5vw, 1rem); }
.testi-text { color: var(--text-light); font-size: clamp(0.85rem, 1.4vw, 0.95rem); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testi-author h4 { color: #fff; font-size: clamp(0.9rem, 1.5vw, 1rem); margin-bottom: 4px; }
.testi-author p { color: var(--gold); font-size: clamp(0.7rem, 1.1vw, 0.8rem); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--bg-primary); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 30px);
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: clamp(40px, 6vw, 50px);
  left: 10%; right: 10%;
  height: 2px;
  background: var(--gold-gradient);
  z-index: 0;
}

.process-card { text-align: center; position: relative; z-index: 1; padding: clamp(20px, 2.5vw, 30px) clamp(12px, 1.5vw, 20px); }

.process-num {
  width: clamp(70px, 10vw, 100px);
  height: clamp(70px, 10vw, 100px);
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 900; color: #000;
  margin: 0 auto clamp(16px, 2vw, 24px);
  box-shadow: var(--shadow-gold);
  border: 4px solid var(--bg-primary);
  outline: 2px solid var(--gold);
}

.process-card h3 { font-size: clamp(0.9rem, 1.5vw, 1.1rem); margin-bottom: 10px; }
.process-card p { font-size: clamp(0.8rem, 1.3vw, 0.9rem); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--bg-secondary); }

.faq-container { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }

.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--card-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: var(--text-primary);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 26px; height: 26px; min-width: 26px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--gold);
  transition: var(--transition);
}

.faq-item.open .faq-icon { background: var(--gold-gradient); color: #000; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 clamp(20px, 2.5vw, 28px) clamp(16px, 2vw, 22px); font-size: clamp(0.82rem, 1.3vw, 0.93rem); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner {
  position: relative;
  padding: clamp(120px, 15vw, 180px) 0 clamp(60px, 8vw, 80px);
  background-size: cover; background-position: center;
  text-align: center;
}

.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(13,27,42,0.75) 100%);
}

.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; margin-bottom: 16px; }

.breadcrumb {
  display: flex; align-items: center;
  justify-content: center; gap: 8px;
  color: var(--text-light); font-size: clamp(0.82rem, 1.4vw, 0.95rem);
}

.breadcrumb a { color: var(--gold); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #aaa; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--bg-primary); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: clamp(24px, 3vw, 36px); }

.contact-info-icon {
  width: clamp(44px, 6vw, 56px);
  height: clamp(44px, 6vw, 56px);
  min-width: clamp(44px, 6vw, 56px);
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1rem, 1.8vw, 1.3rem); color: #000;
}

.contact-info-text h4 { font-size: clamp(0.9rem, 1.5vw, 1rem); margin-bottom: 4px; }
.contact-info-text p { color: var(--text-secondary); font-size: clamp(0.82rem, 1.3vw, 0.93rem); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 2vw, 20px); }
.form-group { margin-bottom: clamp(14px, 2vw, 20px); }

.form-control {
  width: 100%;
  padding: clamp(10px, 1.5vw, 14px) clamp(12px, 1.8vw, 18px);
  border: 2px solid var(--card-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: clamp(0.82rem, 1.4vw, 0.95rem);
  color: var(--text-primary);
  background: var(--input-bg);
  transition: var(--transition);
  outline: none;
}

.form-control:focus { border-color: var(--gold); background: var(--bg-primary); box-shadow: 0 0 0 3px var(--gold-glow); }
textarea.form-control { height: clamp(120px, 15vw, 150px); resize: vertical; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg-dark);
  padding: clamp(50px, 7vw, 80px) 0 0;
  border-top: 3px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(30px, 4vw, 50px);
  padding-bottom: clamp(40px, 5vw, 60px);
}

.footer-logo { height: clamp(36px, 5vw, 50px); width: auto; object-fit: contain; margin-bottom: 16px; filter: brightness(10); }
.footer-about-text { color: #9aa8bc; font-size: clamp(0.8rem, 1.3vw, 0.9rem); line-height: 1.8; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: clamp(34px, 4vw, 40px); height: clamp(34px, 4vw, 40px);
  background: rgba(227,181,35,0.1);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  transition: var(--transition);
}

.footer-social-link:hover { background: var(--gold-gradient); color: #000; border-color: transparent; }

.footer-heading {
  color: #fff; font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 700; margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}

.footer-heading::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 3px;
  background: var(--gold-gradient);
  border-radius: var(--radius-pill);
}

html[dir="rtl"] .footer-heading::after { left: auto; right: 0; }

.footer-links { display: flex; flex-direction: column; gap: 8px; }

.footer-links a {
  color: #9aa8bc; font-size: clamp(0.8rem, 1.3vw, 0.9rem);
  display: flex; align-items: center; gap: 8px;
  transition: var(--transition);
}

html[dir="rtl"] .footer-links a { flex-direction: row-reverse; justify-content: flex-end; }

.footer-links a::before { content: '›'; color: var(--gold); font-weight: 700; font-size: 1.1rem; }
html[dir="rtl"] .footer-links a::before { content: '‹'; }
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
html[dir="rtl"] .footer-links a:hover { padding-left: 0; padding-right: 5px; }

.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; color: #9aa8bc; font-size: clamp(0.8rem, 1.3vw, 0.9rem); }
.footer-contact-item .icon { color: var(--gold); font-size: 0.95rem; margin-top: 2px; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; text-align: center; color: #6b7588; font-size: clamp(0.75rem, 1.2vw, 0.85rem); }

/* ============================================================
   FLOATING CTAs
   ============================================================ */
.floating-ctas {
  position: fixed;
  bottom: clamp(20px, 3vw, 30px);
  right: clamp(16px, 2.5vw, 30px);
  z-index: 999; display: flex; flex-direction: column; gap: 10px;
}

.float-btn {
  width: clamp(48px, 6vw, 56px); height: clamp(48px, 6vw, 56px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: #fff; transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.float-wa { background: #25d366; animation: pulse-wa 2.5s infinite; }
.float-call { background: var(--gold-gradient); color: #000 !important; }
.float-btn:hover { transform: scale(1.12); }

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

/* ============================================================
   RTL ADJUSTMENTS
   ============================================================ */
html[dir="rtl"] .hero-content { text-align: right; }
html[dir="rtl"] .hero-actions { justify-content: flex-start; }
html[dir="rtl"] .hero-stats { right: auto; left: clamp(16px, 3vw, 40px); }
html[dir="rtl"] .hero-prev { left: auto; right: clamp(10px, 2vw, 30px); }
html[dir="rtl"] .hero-next { right: auto; left: clamp(10px, 2vw, 30px); }
html[dir="rtl"] .exp-badge { right: auto; left: -20px; bottom: -24px; }
html[dir="rtl"] .process-grid::before { left: 10%; right: 10%; }
html[dir="rtl"] .floating-ctas { right: auto; left: clamp(16px, 2.5vw, 30px); }
html[dir="rtl"] .checklist li { flex-direction: row-reverse; }
html[dir="rtl"] .faq-question { flex-direction: row-reverse; }
html[dir="rtl"] .contact-info-item { flex-direction: row-reverse; }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Large Desktop */
@media (min-width: 1400px) {
  .hero-title { font-size: 4.2rem; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop — Nav starts to compress */
@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 40px; }
  .nav-menu li a { font-size: 0.68rem; padding: 6px 8px; }
  .toolbar-btn .label { display: none; } /* icon only on smaller */
  .toolbar-btn { padding: 5px 8px; }
}

/* Laptop / Tablet Landscape */
@media (max-width: 1024px) {
  .nav-menu li a { font-size: 0.65rem; padding: 5px 7px; letter-spacing: 0.5px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
}

/* Hamburger triggers at 900px */
@media (max-width: 900px) {
  .nav-menu { display: none; }
  .nav-actions .nav-cta { display: none; }
  /* Keep Dark Mode & Language buttons visible on mobile header bar */
  .nav-actions .toolbar-btn { display: inline-flex; }
  .hamburger { display: flex; }
}

/* Tablet Portrait */
@media (max-width: 768px) {
  html { font-size: 15px; }
  
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image-wrap .exp-badge { right: 10px; bottom: -20px; }
  
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  
  .hero-content { text-align: center; }
  html[dir="ltr"] .hero-actions { justify-content: center; }
  .hero-desc { margin: 0 auto 32px; }
}

/* Mobile */
@media (max-width: 600px) {
  html { font-size: 14px; }
  
  /* Compact toolbar buttons in header on small mobile screens */
  .nav-actions { gap: 6px; }
  .nav-actions .toolbar-btn { padding: 4px 8px; font-size: 0.68rem; }
  .nav-actions .toolbar-btn .label { display: inline-block; font-size: 0.65rem; }
  
  .hero { min-height: 100svh; margin-top: 0; }
  .hero-title { font-size: clamp(1.6rem, 7vw, 2.5rem); }
  .hero-badge { font-size: 0.65rem; padding: 5px 14px; }
  
  .hero-actions .btn { font-size: 0.75rem; padding: 10px 18px; }
  
  .portfolio-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(227,181,35,0.2); padding: 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(227,181,35,0.2); }
  .stat-item:last-child, .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  
  .hero-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
  .hero-prev { left: 8px; }
  .hero-next { right: 8px; }
  
  .footer-grid { grid-template-columns: 1fr; }
  
  .floating-ctas { bottom: 16px; right: 12px; gap: 8px; }
  .float-btn { width: 46px; height: 46px; font-size: 1.1rem; }
}

/* Very Small Phones */
@media (max-width: 375px) {
  html { font-size: 13px; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
}

/* ============================================================
   DARK MODE - ADDITIONAL COLOR OVERRIDES
   ============================================================ */
[data-theme="dark"] .service-card h3,
[data-theme="dark"] .process-card h3,
[data-theme="dark"] .faq-question,
[data-theme="dark"] .contact-info-text h4,
[data-theme="dark"] .team-card .info h3 {
  color: var(--text-primary);
}

[data-theme="dark"] .filter-btn {
  color: var(--text-primary);
}

[data-theme="dark"] .form-control {
  color: var(--text-primary);
}

[data-theme="dark"] .form-control option {
  background: var(--bg-secondary);
  color: var(--text-primary);
}

[data-theme="dark"] .about-text .section-title,
[data-theme="dark"] h2.section-title {
  color: var(--text-primary);
}

[data-theme="dark"] p {
  color: var(--text-secondary);
}

[data-theme="dark"] .checklist li {
  color: var(--text-primary);
}

/* ============================================================
   PAGE OFFSET for inner pages (scrolled header always shown)
   ============================================================ */
body.inner-page .page-banner {
  padding-top: clamp(130px, 16vw, 200px);
}

/* ============================================================
   SECTION HEADER TEXT CENTER FIX
   ============================================================ */
.section-header-center {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 60px);
}

/* ============================================================
   WHATSAPP SECTION
   ============================================================ */
.wa-cta-section {
  padding: clamp(40px, 5vw, 60px) 0;
  background: #25d366;
}

.wa-cta-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 30px);
  flex-wrap: wrap;
  text-align: center;
}

.wa-cta-inner i { font-size: clamp(2rem, 5vw, 3rem); color: #fff; }
.wa-cta-inner h3 { color: #fff; font-size: clamp(1.1rem, 2.5vw, 1.4rem); margin-bottom: 4px; }
.wa-cta-inner p { color: rgba(255,255,255,0.9); font-size: clamp(0.82rem, 1.5vw, 0.95rem); }

/* Nav overlay toolbar btns */
.nav-overlay .toolbar-row {
  display: flex; gap: 12px; margin-top: 16px;
}

/* Dark mode cta section */
[data-theme="dark"] .cta-dark-section {
  background: #060e17;
}

/* Accessible focus ring */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
