/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');

/* Master Design Tokens */
:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* True Pitch-Black Luxury Theme Colors */
  --bg-main: #000000;
  --bg-surface: #08080A;
  --bg-surface-hover: #0E0E12;
  --bg-glass: rgba(0, 0, 0, 0.82);
  
  /* Metallic Gradient Gold Accent */
  --primary: #D4AF37; /* Clean Gold */
  --primary-hover: #F0CD5D;
  --primary-dark: #A68028;
  --primary-glow: rgba(212, 175, 55, 0.05);
  --primary-glow-heavy: rgba(212, 175, 55, 0.22);
  
  --text-main: #F4F4F6;
  --text-muted: #9494A1;
  --text-light: #5F5F6E;
  
  --border: rgba(255, 255, 255, 0.04);
  --border-gold: rgba(212, 175, 55, 0.2);
  --border-hover: rgba(255, 255, 255, 0.09);
  
  /* Dimensions & Radius */
  --header-height: 80px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 24px;
  
  --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  
  --shadow-sm: 0 4px 25px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 32px 80px rgba(0, 0, 0, 0.9);
  --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.25);
  --shadow-btn: 0 12px 30px rgba(212, 175, 55, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Ambient Glow Blobs */
.ambient-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.glow-blob {
  position: absolute;
  width: min(700px, 90vw);
  height: min(700px, 90vw);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0) 70%);
  filter: blur(130px);
  pointer-events: none;
}

@keyframes drift-1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, -60px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift-2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-70px, 70px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes drift-3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(60px, 50px) scale(1.05); }
  100% { transform: translate(0, 0) scale(1); }
}
.glow-1 { top: 8%; left: -15%; animation: drift-1 20s infinite alternate ease-in-out; }
.glow-2 { top: 45%; right: -20%; background: radial-gradient(circle, rgba(235, 195, 71, 0.06) 0%, rgba(235, 195, 71, 0) 70%); animation: drift-2 25s infinite alternate ease-in-out; }
.glow-3 { bottom: 12%; left: 8%; animation: drift-3 22s infinite alternate ease-in-out; }

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #1B1B1E;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography & Gold Metallic Text */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-main);
  text-wrap: balance;
}

p {
  color: var(--text-muted);
  text-wrap: pretty;
}

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

.gold-gradient-text {
  background: linear-gradient(135deg, #FFF5D6 0%, #D4AF37 50%, #9C7722 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Grid & Layout Containers */
.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 min(2.5rem, 6vw);
  position: relative;
  z-index: 2;
}

.section {
  padding: clamp(5.5rem, 11vw, 10rem) 0;
  position: relative;
  z-index: 2;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(3.5rem, 7vw, 5.5rem);
  max-width: 750px;
  margin-inline: auto;
}

.section-subtitle {
  color: var(--primary);
  font-size: clamp(0.82rem, 1.6vw, 0.98rem);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-weight: 700;
  margin-bottom: 1.15rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.section-desc {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Buttons with Shimmer Sweeps */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.5rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  gap: 0.65rem;
  border: none;
  outline: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn:hover::before {
  left: 150%;
}

.btn-primary {
  background-color: var(--primary);
  color: #000;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  box-shadow: var(--shadow-btn), var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.01);
  color: var(--text-main);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: var(--text-muted);
  transform: translateY(-3px);
}

/* Floating Navigation Header (Glassmorphic) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.header.scrolled {
  height: 70px;
  background-color: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-logo-img {
  height: 46px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.logo-wrapper:hover .brand-logo-img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.35));
}

.logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1;
}

.logo-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-main);
  transition: var(--transition);
}

.logo-wrapper:hover .logo-title {
  color: var(--primary);
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

.logo-tagline {
  font-family: var(--font-body);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--text-light);
  margin-top: 4px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  position: relative;
  padding: 0.6rem 0;
  letter-spacing: 0.03em;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

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

/* Language Dropdown Switcher */
.lang-selector {
  position: relative;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-dark);
}

.lang-btn svg {
  color: var(--primary);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: none;
  flex-direction: column;
  min-width: 130px;
  overflow: hidden;
  z-index: 1001;
  transform: translateY(10px);
  transition: var(--transition);
}

html[dir="rtl"] .lang-dropdown {
  right: auto;
  left: 0;
}

.lang-dropdown.active {
  display: flex;
  transform: translateY(0);
}

.lang-opt {
  padding: 0.8rem 1.35rem;
  font-size: 0.9rem;
  background: none;
  border: none;
  color: var(--text-muted);
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  font-family: var(--font-body);
}

html[dir="rtl"] .lang-opt {
  text-align: right;
}

.lang-opt:hover {
  background: var(--bg-surface-hover);
  color: var(--primary);
}

.lang-opt.selected {
  color: var(--primary);
  font-weight: 700;
  background: rgba(212, 175, 55, 0.04);
}

/* Hamburger Menu Toggle */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-main);
  margin: 6px 0;
  transition: var(--transition);
}

/* Hero Section with Architectural Grid Overlay */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 5rem;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;

}

.hero-bg-image {
  width: 100%;
  height: 100%;
  background-image: url('assets/IMG-20260626-WA0090.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: kenburns 32s infinite alternate ease-in-out;
  will-change: transform;
  z-index: 0;
}

@keyframes kenburns {
  0% { transform: scale(1.04) translate(0, 0); }
  50% { transform: scale(1.12) translate(-1%, 0.5%); }
  100% { transform: scale(1.04) translate(0, 0); }
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(212, 175, 55, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 175, 55, 0.035) 1px, transparent 1px);
  background-size: 55px 55px;
  background-position: center;
  z-index: 2;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
  margin-top: auto;
  margin-bottom: auto;
}

.hero-content {
  max-width: 820px;
}

.hero-subtitle {
  color: var(--primary);
  font-size: clamp(0.92rem, 2vw, 1.18rem);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.hero-title {
  font-size: clamp(2.2rem, 6.5vw, 5.4rem);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 2.25rem;
}

.hero-title span {
  font-weight: 300;
  color: #FFF;
}

.hero-desc {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  max-width: 680px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Services Section (Hover Gold Border Glows) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2.5rem;
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  #service-card-furniture {
    grid-column: span 2;
  }
  
  #service-card-finishing {
    grid-column: span 1;
  }
  
  #service-card-commercial {
    grid-column: span 1;
  }
  
  #service-card-design {
    grid-column: span 2;
  }
}

.service-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(2.25rem, 4.5vw, 3.75rem) clamp(1.75rem, 3vw, 2.75rem);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

html[dir="rtl"] .service-card::after {
  background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
}

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

html[dir="rtl"] .service-card::before {
  left: auto;
  right: 0;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  background-color: var(--bg-surface-hover);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.08);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover::before {
  height: 100%;
}

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.25rem;
  border: 1px solid var(--border-gold);
  color: var(--primary);
  transition: var(--transition);
}

.service-card:hover .service-icon-box {
  background: var(--primary-glow-heavy);
  transform: scale(1.08);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.service-icon-box svg {
  width: 32px;
  height: 32px;
}

.service-card-title {
  font-size: clamp(1.25rem, 2vw, 1.48rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

/* Portfolio Filters & Custom Cards */
.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.7rem 1.85rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

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

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: minmax(280px, auto);
  gap: 2.5rem;
}

.portfolio-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  background-color: var(--bg-surface);
  cursor: pointer;
  grid-column: span 4;
  aspect-ratio: 4/3;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-overlay {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  background: rgba(6, 6, 8, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(0);
}

.portfolio-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95), 0 0 30px rgba(212, 175, 55, 0.25);
}

.portfolio-item:hover .portfolio-img {
  transform: scale(1.04);
}

.portfolio-item:hover .portfolio-overlay {
  background: rgba(8, 8, 10, 0.85);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8), 0 0 20px rgba(212, 175, 55, 0.08);
}

.portfolio-item:hover .portfolio-overlay::before {
  opacity: 1;
}

.portfolio-category {
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.4rem;
  font-weight: 700;
  display: block;
}

.portfolio-item-title {
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.3;
}

.portfolio-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  gap: 0.45rem;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0;
}

.portfolio-item:hover .portfolio-link {
  opacity: 1;
  max-height: 30px;
  margin-top: 0.75rem;
}

.portfolio-link svg {
  width: 18px;
  height: 18px;
  transition: var(--transition);
}

html[dir="rtl"] .portfolio-link svg {
  transform: scaleX(-1);
}

.portfolio-link:hover svg {
  transform: translateX(4px);
}

html[dir="rtl"] .portfolio-link:hover svg {
  transform: scaleX(-1) translateX(4px);
}

@media (max-width: 991px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    gap: 1.8rem;
  }
  
  .portfolio-item {
    aspect-ratio: 4/3;
    grid-column: span 1;
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .portfolio-item {
    aspect-ratio: 4/3;
  }
}

/* Partnerships & About Us */
.about-split {
  display: flex;
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
}

.about-img-box {
  flex: 1;
  position: relative;
  width: 100%;
}

.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-decor-square {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 70%;
  height: 70%;
  border: 3px solid var(--primary);
  border-radius: var(--radius-md);
  z-index: 1;
  opacity: 0.85;
}

html[dir="rtl"] .about-decor-square {
  right: auto;
  left: -25px;
}

.about-content {
  flex: 1.15;
}

.about-tag {
  color: var(--primary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 700;
  margin-bottom: 1.25rem;
  display: block;
}

.about-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.benefit-icon {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-icon svg {
  width: 22px;
  height: 22px;
}

.benefit-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.benefit-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* Cost Estimator Configurator App */
.estimator-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.estimator-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(212,175,55,0.06) 0%, transparent 70%);
  z-index: 1;
}

.estimator-config {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 2.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.select-wrapper {
  position: relative;
}

.estimator-select {
  width: 100%;
  background: #0E0E12;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 1.05rem 1.4rem;
  font-size: 0.98rem;
  font-family: var(--font-body);
  appearance: none;
  cursor: pointer;
  transition: var(--transition);
}

.estimator-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(212,175,55,0.1);
}

.select-arrow {
  position: absolute;
  top: 50%;
  right: 1.4rem;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-light);
  font-size: 0.8rem;
}

html[dir="rtl"] .select-arrow {
  right: auto;
  left: 1.4rem;
}

/* Custom visual selection chips */
.chips-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
}

.chip-option {
  background: #0E0E12;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  position: relative;
  overflow: hidden;
}

.chip-option:hover {
  background: var(--bg-surface-hover);
  border-color: var(--text-light);
}

.chip-option.active {
  border-color: var(--primary);
  background: var(--primary-glow);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.06);
}

.chip-color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  box-shadow: var(--shadow-sm);
}

.chip-color.walnut { background-color: #4E3629; }
.chip-color.oak { background-color: #A68D72; }
.chip-color.charcoal { background-color: #1A1A1A; }
.chip-color.white-oak { background-color: #E2D3C4; }

.chip-label {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Range Slider */
.range-container {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.estimator-range {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  background: #0E0E12;
  height: 8px;
  border-radius: 4px;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--border);
}

.estimator-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--bg-surface);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.estimator-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.estimator-range::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--bg-surface);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  cursor: pointer;
  transition: transform 0.1s ease;
}

.estimator-range::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.range-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  min-width: 70px;
  text-align: end;
}

/* Estimator Preview Visualizer */
.estimator-preview {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: #000;
}

.estimator-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.preview-overlay-text {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--primary);
  border: 1px solid var(--border-gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-heading);
}

html[dir="rtl"] .preview-overlay-text {
  right: auto;
  left: 1.25rem;
}

/* Estimator Result Output Card */
.estimator-result {
  background: #0A0A0C;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  align-self: center;
  width: 100%;
  min-height: 420px;
}

.estimator-lead-gate { display: flex; flex-direction: column; align-items: center; width: 100%; }
.estimator-lead-gate.hidden { display: none; }
.lead-gate-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--primary-glow); border: 1px solid var(--border-gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 1.25rem;
}
.lead-gate-title {
  font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem;
}
.lead-gate-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.5rem; max-width: 340px; line-height: 1.6; }
.estimator-lead-form { width: 100%; text-align: start; }
.estimator-lead-captcha-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.estimator-lead-form .form-group { margin-bottom: 1rem; }
.phone-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
}
.phone-prefix-select {
  width: auto;
  min-width: 6.5rem;
  max-width: 7.5rem;
  flex-shrink: 0;
  padding: 1.05rem 0.65rem;
  cursor: pointer;
}
.phone-number-input {
  flex: 1;
  min-width: 0;
}
.estimator-result-content { width: 100%; display: flex; flex-direction: column; align-items: center; }
.estimator-result-content.locked { display: none; }

.result-heading {
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.result-price-range {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  text-shadow: 0 0 20px rgba(212,175,55,0.25);
  letter-spacing: -0.02em;
}

.result-info {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.result-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Contacts Layout */
.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: clamp(3rem, 6vw, 5.5rem);
}

.contacts-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.contact-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.showroom-info-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.showroom-info-row .contact-card {
  flex: 1;
  flex-direction: column;
  gap: 0.5rem;
}

.info-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.coming-soon {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.contact-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-surface-hover);
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

html[dir="rtl"] .contact-card:hover {
  transform: translateX(-5px);
}

.contact-meta {
  display: flex;
  flex-direction: column;
}

.contact-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
}

.contact-lang-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.contact-phone {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-top: 6px;
}

.contact-action-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
}

.contact-card:hover .contact-action-btn {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.08);
}

/* Contact Message Form */
.contact-form-wrapper {
  width: 100%;
}

.contact-form {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.input-field {
  width: 100%;
  background: #0E0E12;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  padding: 1.05rem 1.4rem;
  font-size: 16px;
  font-family: var(--font-body);
  transition: var(--transition);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 12px rgba(212,175,55,0.1);
}

textarea.input-field {
  min-height: 160px;
  resize: vertical;
}

/* Footer Section */
.footer {
  border-top: 1px solid var(--border);
  background-color: #040405;
  padding: 5rem 0;
  font-size: 0.95rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-nav {
  display: flex;
  gap: 2.25rem;
}

.footer-nav a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-copy {
  color: var(--text-light);
}

/* Section Dividers */
.section-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.15) 50%, transparent 100%);
  position: relative;
  z-index: 3;
}

/* Mobile Responsive Improvements */
@media (max-width: 992px) {
  .about-split {
    flex-direction: column;
    gap: 4.5rem;
  }
  
  .about-img-box {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .estimator-wrapper {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .contacts-info {
    gap: 2rem;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 65px;
  }

  .header.scrolled {
    height: 60px;
  }

  .brand-logo-img {
    height: 36px;
  }

  .logo-wrapper {
    gap: 0.65rem;
  }

  .logo-title {
    font-size: 1.55rem;
    letter-spacing: 0.08em;
  }

  .logo-tagline {
    display: none;
  }

  #current-lang {
    display: none;
  }

  .lang-btn {
    padding: 0.6rem;
    width: 38px;
    height: 38px;
    justify-content: center;
  }

  .lang-btn svg {
    margin: 0;
  }

  .hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: -100%;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background-color: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3.5rem 2rem;
    gap: 2rem;
    transition: var(--transition);
    border-top: 1px solid var(--border);
  }

  html[dir="rtl"] .nav-menu {
    left: auto;
    right: -100%;
  }

  .nav-menu.active {
    left: 0;
  }

  html[dir="rtl"] .nav-menu.active {
    right: 0;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 2rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .section {
    padding: 3rem 0 !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  .portfolio-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 0.5rem;
    margin-bottom: 1.75rem !important;
    gap: 0.6rem !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    scrollbar-width: none;
  }

  .portfolio-filters::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    padding: 0.6rem 1.35rem !important;
    font-size: 0.85rem !important;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-benefits {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .about-decor-square {
    bottom: -15px !important;
    right: -15px !important;
    width: 100% !important;
    height: 100% !important;
    border-width: 2px !important;
  }
  
  html[dir="rtl"] .about-decor-square {
    right: auto !important;
    left: -15px !important;
  }

  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-actions .btn {
    width: 100%;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 4.5rem;
  }

  .hero .container {
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-subtitle {
    font-size: 0.88rem;
    margin-bottom: 0.85rem;
    letter-spacing: 0.2em;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.35;
    margin-bottom: 1.25rem;
  }

  .hero-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 2.25rem;
  }
  
  .result-price-range {
    font-size: 2rem;
  }
}

/* Interactivity Enhancements */
.service-card, .portfolio-item, .contact-card {
  cursor: pointer;
}

/* Interactive Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  max-width: 850px;
  width: 90%;
  position: relative;
  overflow: hidden;
  padding: 3.5rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0.9) translateY(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
  z-index: 10;
}

html[dir="rtl"] .modal-close {
  right: auto;
  left: 1.5rem;
}

.modal-close:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-body-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
}

.modal-img-container {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
}

.modal-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.modal-category {
  color: var(--primary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.modal-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.modal-specs {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.spec-item {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.spec-item strong {
  color: var(--text-main);
  margin-inline-end: 0.5rem;
  font-family: var(--font-heading);
}

/* Toast Notifications */
.toast {
  position: fixed;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: #000;
  padding: 0.85rem 2.5rem;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Reveal on Scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

@media (max-width: 768px) {
  .modal-body-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .modal-content {
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    margin: 1rem;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-close {
    top: 1rem;
    right: 1rem;
  }
  
  html[dir="rtl"] .modal-close {
    left: 1rem;
  }

  .modal-title {
    font-size: 1.6rem;
  }
}

/* Side Dots Navigation Indicator */
.side-nav-dots {
  position: fixed;
  top: 50%;
  right: 2.5rem;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 1000;
}

html[dir="rtl"] .side-nav-dots {
  right: auto;
  left: 2.5rem;
}

.side-nav-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--text-light);
  transition: var(--transition-fast);
  position: relative;
}

.side-nav-dots .dot:hover, .side-nav-dots .dot.active {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-gold);
  transform: scale(1.2);
}

.side-nav-dots .dot::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) scale(0.9);
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-heading);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

html[dir="rtl"] .side-nav-dots .dot::after {
  right: auto;
  left: 2rem;
}

.side-nav-dots .dot:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Step numeric badges styles */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-glow-heavy);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  margin-inline-end: 0.65rem;
  font-family: var(--font-heading);
}

@media (max-width: 992px) {
  .side-nav-dots {
    display: none;
  }
}

/* ==========================================
   WOW FACTOR UPGRADES: PRELOADER, GLOW & ENTRY
   ========================================== */

/* 1. Premium Screen Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader.fade-out {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.02);
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.preloader-logo {
  height: 85px;
  width: auto;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  animation: preloader-logo-in 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  letter-spacing: 0.15em;
  color: var(--text-main);
  opacity: 0;
  transform: translateY(15px);
  animation: preloader-text-in 1.2s 0.3s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.preloader-bar-bg {
  width: 180px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  opacity: 0;
  animation: preloader-fade-in 1.2s 0.6s forwards ease;
}

.preloader-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--primary);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
  transition: width 0.4s ease;
}

@keyframes preloader-logo-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.45));
  }
}

@keyframes preloader-text-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloader-fade-in {
  to {
    opacity: 1;
  }
}

/* 2. Staggered Hero Section Entry Animations */
.hero-content > * {
  opacity: 0;
  transform: translateY(30px);
  animation: hero-fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-content .hero-subtitle { animation-delay: 1.1s; }
.hero-content .hero-title { animation-delay: 1.3s; }
.hero-content .hero-desc { animation-delay: 1.5s; }
.hero-content .hero-actions { animation-delay: 1.7s; }

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 3. Vercel-style Mouse Spotlight Glow Effect */
.glow-card {
  position: relative;
}

.glow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(212, 175, 55, 0.09),
    transparent 40%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glow-card:hover::before {
  opacity: 1;
}

/* Ensure child elements sit above the mouse glow layer */
.glow-card > * {
  position: relative;
  z-index: 2;
}

/* ==========================================================
   NEW MODULES: BRAND LOGOS, PROCESS TIMELINE, SLIDER, FAQ
   ========================================================== */

/* 1. Scrolling Trust Badges Marquee */
.partners-marquee-container {
  margin-bottom: clamp(4rem, 8vw, 6rem);
  text-align: center;
  width: 100%;
  overflow: hidden;
}

.partners-marquee-title {
  font-size: clamp(0.82rem, 1.6vw, 0.98rem);
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
  font-weight: 700;
}

.partners-marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  direction: ltr !important;
}

.partners-marquee-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite !important;
  padding: 0.75rem 0;
  direction: ltr !important;
}

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

.partners-marquee-track span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.2rem, 3vw, 2.2rem);
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: 0.08em;
  transition: var(--transition-fast);
}

.partners-marquee-track span:not(.partners-bullet):hover {
  color: var(--primary);
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.partners-bullet {
  color: var(--primary-dark) !important;
  opacity: 0.4;
}

/* 2. Our Process Steps Grid */
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .process-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step-card {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: clamp(2rem, 3.5vw, 3rem) 2rem;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.process-step-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  background-color: var(--bg-surface-hover);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.1);
}

.process-step-num {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4) 0%, rgba(212, 175, 55, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-step-title {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.process-step-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* 3. Before & After Compare Slider */
.ba-slider-container {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  user-select: none;
  background-color: #000;
}

.ba-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.ba-after-img {
  z-index: 1;
}

.ba-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
  border-inline-end: 2.5px solid var(--primary);
}

.ba-before-img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  object-fit: cover;
}

.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background-color: var(--primary);
  z-index: 3;
  transform: translateX(-50%);
  cursor: ew-resize;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

.ba-handle-line {
  flex: 1;
  width: 2px;
  background-color: rgba(255, 255, 255, 0.3);
}

.ba-handle-button {
  width: 50px;
  height: 50px;
  background-color: #000;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.8), 0 0 15px rgba(212, 175, 55, 0.3);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ba-handle:hover .ba-handle-button {
  transform: scale(1.12);
  background-color: var(--bg-surface-hover);
}

.ba-label {
  position: absolute;
  bottom: 1.5rem;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 0.55rem 1.35rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  pointer-events: none;
  z-index: 5;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow-sm);
}

.ba-label-before {
  left: 1.5rem;
  border-color: rgba(255, 255, 255, 0.1);
}

.ba-label-after {
  right: 1.5rem;
  border-color: var(--border-gold);
  color: var(--primary);
}

/* 4. FAQ Accordion styles */
.faq-container {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.faq-item {
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-gold);
  background-color: var(--bg-surface-hover);
}

.faq-item.active {
  border-color: var(--border-gold);
  background-color: var(--bg-surface-hover);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.faq-question-box {
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1.5rem;
  user-select: none;
}

.faq-question {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 700;
  color: var(--text-main);
  margin: 0;
  line-height: 1.4;
}

.faq-icon-arrow {
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer-box {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-content {
  padding: 0 2.5rem 2.25rem 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding-top: 1.5rem;
}

.faq-answer-content p {
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

/* 5. Custom Luxury Mouse Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10000;
  will-change: transform;
}

.custom-cursor::after {
  content: '';
  display: block;
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.28s, height 0.28s, background-color 0.28s, border-color 0.28s;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.18);
}

.custom-cursor.hover::after {
  width: 68px;
  height: 68px;
  background-color: rgba(212, 175, 55, 0.05);
  border-color: var(--primary-hover);
  box-shadow: var(--shadow-gold);
}

.custom-cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 10001;
  will-change: transform;
}

.custom-cursor-dot::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s, background-color 0.28s;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.custom-cursor-dot.hover::after {
  transform: translate(-50%, -50%) scale(1.6);
  background-color: var(--primary-hover);
}


@media (min-width: 992px) {
  html.has-custom-cursor,
  html.has-custom-cursor body,
  html.has-custom-cursor button,
  html.has-custom-cursor a,
  html.has-custom-cursor select,
  html.has-custom-cursor [role="button"],
  html.has-custom-cursor .chip-option,
  html.has-custom-cursor .faq-question-box,
  html.has-custom-cursor .ba-handle,
  html.has-custom-cursor .contact-card {
    cursor: none !important;
  }
}

/* 6. Floating Action Widgets (WhatsApp & Scroll to Top) */
.back-to-top-btn {
  position: fixed;
  bottom: 2.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}

.back-to-top-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--bg-surface-hover);
  box-shadow: var(--shadow-gold);
}

.floating-whatsapp-widget {
  position: fixed;
  bottom: 6.5rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #25D366;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp-widget:hover {
  transform: scale(1.1);
  background-color: #20ba5a;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Position swaps based on HTML Text Direction */
html[dir="rtl"] .back-to-top-btn {
  right: auto;
  left: 2.5rem;
}

html[dir="rtl"] .floating-whatsapp-widget {
  right: auto;
  left: 2.5rem;
}

/* ==========================================================
   MOBILE-SPECIFIC LAYOUT OPTIMIZATIONS (Max-width: 576px)
   ========================================================== */
@media (max-width: 1100px) {
  .nav-menu {
    overflow-y: auto; /* Enable vertical scroll inside mobile nav menu drawer */
  }
}

@media (max-width: 576px) {
  /* Slider Mobile Refinements */
  .ba-label {
    bottom: 0.75rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.72rem;
  }
  .ba-label-before {
    left: 0.75rem;
  }
  .ba-label-after {
    right: 0.75rem;
  }
  .ba-handle-button {
    width: 38px;
    height: 38px;
  }
  .ba-handle-button svg {
    width: 18px;
    height: 18px;
  }

  /* FAQ Accordion Mobile Spacings */
  .faq-question-box {
    padding: 1.25rem 1.25rem;
  }
  .faq-answer-content {
    padding: 0 1.25rem 1.5rem 1.25rem;
    padding-top: 1rem;
  }
  .faq-question {
    font-size: 0.98rem;
  }

  /* Floating Widgets Mobile Downscaling */
  .back-to-top-btn {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
  html[dir="rtl"] .back-to-top-btn {
    right: auto;
    left: 1.5rem;
  }
  .floating-whatsapp-widget {
    bottom: 4.8rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
  html[dir="rtl"] .floating-whatsapp-widget {
    right: auto;
    left: 1.5rem;
  }
  .floating-whatsapp-widget svg {
    width: 22px;
    height: 22px;
  }
}

/* ==========================================
   INTERACTIVE 3D SHOWROOM & GOOGLE MAPS SECTION
   ========================================== */

/* Showroom 3D Layout */
.showroom-3d-wrapper {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-top: 2.5rem;
}

@media (max-width: 992px) {
  .showroom-3d-wrapper {
    grid-template-columns: 1fr;
  }
}

/* 3D Viewport */
.showroom-viewport {
  position: relative;
  width: 100%;
  height: 550px;
  background: radial-gradient(circle at center, #16161a 0%, #030305 100%);
  overflow: hidden;
}

@media (max-width: 768px) {
  .showroom-viewport {
    height: 380px;
  }
}

.showroom-viewport canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* Viewport Loader */
.viewport-loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(5, 5, 7, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: opacity 0.5s ease;
}
.viewport-loader.fade-out {
  opacity: 0;
  pointer-events: none;
}
.spinner {
  width: 45px;
  height: 45px;
  border: 3px solid rgba(212, 175, 55, 0.1);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Showroom Controls */
.showroom-controls {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  background-color: rgba(255, 255, 255, 0.01);
  border-left: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

html[dir="rtl"] .showroom-controls {
  border-left: none;
  border-right: 1px solid var(--border);
}

@media (max-width: 992px) {
  .showroom-controls {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--border);
  }
}

.controls-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 0.25rem;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.control-label {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Showroom Wood Chips Grid */
.showroom-chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.65rem;
}

.showroom-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-fast);
}

.showroom-chip:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

.showroom-chip.active {
  background: rgba(212, 175, 55, 0.04);
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.08);
}

.showroom-chip span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.showroom-chip .chip-color {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Control Range Inputs */
.showroom-range {
  -webkit-appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: #1B1B1E;
  outline: none;
  transition: var(--transition-fast);
  margin: 10px 0;
}

.showroom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.showroom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--primary-hover);
}

/* Toggle Switch Styling */
.toggle-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
  gap: 0.75rem;
}

.switch-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1b1b1e;
  transition: .3s;
  border-radius: 34px;
  border: 1px solid var(--border);
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 3px;
  bottom: 3px;
  background-color: var(--text-muted);
  transition: .3s;
  border-radius: 50%;
}

.switch-toggle input:checked + .switch-slider {
  background-color: rgba(212, 175, 55, 0.1);
  border-color: var(--primary);
}

.switch-toggle input:checked + .switch-slider:before {
  transform: translateX(20px);
  background-color: var(--primary);
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

html[dir="rtl"] .switch-toggle {
  transform: scaleX(-1);
}

/* Google Map Split Styling */
.map-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .map-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.map-info-card {
  padding: clamp(2.25rem, 4.5vw, 3.5rem);
  background-color: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}

.map-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.65;
}

.map-details-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.map-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.map-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.map-detail-icon svg {
  width: 18px;
  height: 18px;
}

.map-detail-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.92rem;
}

.map-detail-text strong {
  color: var(--text-main);
  font-weight: 700;
}

.map-detail-text span {
  color: var(--text-muted);
}

/* Map Iframe Container */
.google-map-iframe-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  min-height: 450px;
  background-color: var(--bg-surface);
}

@media (max-width: 992px) {
  .google-map-iframe-container {
    min-height: 350px;
  }
}

.google-map-iframe-container iframe {
  display: block;
  width: 100%;
  height: 100%;
  filter: grayscale(0.9) invert(0.92) contrast(1.1) brightness(0.95);
  transition: var(--transition);
}

.google-map-iframe-container:hover iframe {
  filter: grayscale(0.25) invert(0) contrast(1) brightness(1);
}

/* ==========================================
   SPA ROUTING SYSTEM STYLES
   ========================================== */

/* Page View containers defaults */
.page-section {
  display: none !important;
}

.page-section > .section:first-of-type {
  padding-top: calc(var(--header-height) + clamp(2.5rem, 5vw, 4.5rem)) !important;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.996);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Active page visibility */
.page-section.active-page {
  display: block !important;
  animation: fadeInPage 0.42s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}



/* Hide global dividers between pages, show only inside active subpages */
.section-divider {
  display: none !important;
}

.active-page .section-divider {
  display: block !important;
}

/* Mobile responsive fixes for Hero page view */
@media (max-width: 768px) {
  .hero {
    min-height: 100vh !important;
    min-height: 100dvh !important;
    padding-top: calc(var(--header-height) + 2rem) !important;
    padding-bottom: 4rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
  }
  
  .hero-title {
    font-size: clamp(1.9rem, 7.5vw, 2.6rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-desc {
    font-size: 1rem !important;
    line-height: 1.6 !important;
    margin-bottom: 2.2rem !important;
    max-width: 100% !important;
  }
  
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.85rem !important;
    width: 100% !important;
  }
  
  .hero-actions .btn {
    width: 100% !important;
    padding: 0.95rem 2rem !important;
  }
}

/* ==========================================
   NEW CUSTOMIZER & AR PLACEMENT SIMULATOR STYLES
   ========================================== */

.showroom-chips-small {
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)) !important;
}

.ar-btn-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 12, 0.75);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  color: var(--text-main);
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

html[dir="rtl"] .ar-btn-overlay {
  left: auto;
  right: 20px;
}

.ar-btn-overlay:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
}

.ar-btn-overlay.ar-active {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #000 !important;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.4) !important;
}

.ar-btn-overlay.ar-active:hover {
  background: #1ebd59 !important;
  border-color: #1ebd59 !important;
  color: #000 !important;
}

.ar-btn-overlay svg {
  transition: transform 0.3s ease;
}

.ar-btn-overlay:hover svg {
  transform: rotate(15deg) scale(1.1);
}

.ar-status-toast {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(10, 10, 12, 0.85);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  backdrop-filter: blur(12px);
  padding: 0.65rem 1.25rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-main);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

html[dir="rtl"] .ar-status-toast {
  border-left: none;
  border-right: 3px solid var(--primary);
}

.ar-status-toast.show {
  opacity: 1;
  top: 30px;
}

.ar-status-toast .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 8px #ff3b30;
  animation: pulse-red 1.5s infinite;
}

@keyframes pulse-red {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 12px #ff3b30; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* Free Specs Wood Cards styling */
.spec-wood-card {
  cursor: pointer;
  transition: var(--transition);
}
.spec-wood-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary) !important;
  background: rgba(212, 175, 55, 0.04) !important;
  box-shadow: var(--shadow-gold);
}



