/* ==========================================================================
   AL FAKHAMA - COMPONENT STYLES
   ========================================================================== */

/* ==========================================================================
   1. NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  transition: all var(--transition-normal);
  padding: 1.25rem 0;
  background: transparent;
}

.site-header.scrolled {
  background: rgba(8, 8, 8, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  z-index: 2000;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 94px; /* Increased by 25% from 75px */
  width: auto;
  max-width: 345px; /* Increased by 25% from 275px */
  object-fit: contain;
  transition: transform var(--transition-fast), filter var(--transition-fast), height var(--transition-fast);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.75));
}

.site-header.scrolled .brand-logo-img {
  height: 75px; /* Increased by 25% from 60px */
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
  filter: drop-shadow(0 0 16px rgba(201, 164, 92, 0.5));
}

.footer-logo-img {
  height: 95px;
  max-width: 330px;
  margin-bottom: 1.5rem;
}

.mobile-logo-img {
  height: 48px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.brand-monogram {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold-pure);
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(201, 164, 92, 0.15) 0%, rgba(0, 0, 0, 0.8) 100%);
  position: relative;
  transition: all var(--transition-fast);
}

.brand-monogram::after {
  content: "";
  position: absolute;
  inset: 2px;
  border: 1px solid rgba(201, 164, 92, 0.35);
}

.brand-monogram span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.brand-logo:hover .brand-monogram {
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(201, 164, 92, 0.4);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-white);
  line-height: 1.1;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-pure);
  text-transform: uppercase;
  font-weight: 500;
}

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2.25rem;
}

.nav-link {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-fast);
}

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

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

/* Desktop Nav Dropdown */
.nav-item-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}

.nav-dropdown-chevron {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover .nav-dropdown-chevron,
.nav-item-dropdown:focus-within .nav-dropdown-chevron,
.nav-item-dropdown.open .nav-dropdown-chevron {
  transform: rotate(180deg);
  color: var(--gold-light);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.65rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(14, 14, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(201, 164, 92, 0.2);
  min-width: 310px;
  padding: 0.65rem 0.5rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 2500;
}

/* Invisible bridge so mouse hover is never lost moving between link and menu */
.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -1.2rem;
  left: -20px;
  right: -20px;
  height: 1.2rem;
  background: transparent;
  display: block;
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(14, 14, 14, 0.98);
  border-top: 1px solid var(--border-gold);
  border-left: 1px solid var(--border-gold);
  z-index: 2;
}

.nav-item-dropdown:hover .nav-dropdown-menu,
.nav-item-dropdown:focus-within .nav-dropdown-menu,
.nav-item-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  color: var(--text-white);
  text-decoration: none;
  border-radius: 4px;
  transition: all var(--transition-fast);
}

.nav-dropdown-link:hover {
  background: rgba(201, 164, 92, 0.12);
  color: var(--gold-light);
  transform: translateX(4px);
}

html[dir="rtl"] .nav-dropdown-link:hover {
  transform: translateX(-4px);
}

.nav-dropdown-icon {
  font-size: 1.35rem;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.nav-dropdown-info {
  display: flex;
  flex-direction: column;
}

.nav-dropdown-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.25;
}

.nav-dropdown-desc {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  line-height: 1.35;
}

.nav-dropdown-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.4rem 0.5rem;
}

/* Mobile Subnav Links */
.mobile-subnav {
  list-style: none;
  padding-left: 1.25rem;
  margin-top: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 2px solid rgba(201, 164, 92, 0.4);
}

html[dir="rtl"] .mobile-subnav {
  padding-left: 0;
  padding-right: 1.25rem;
  border-left: none;
  border-right: 2px solid rgba(201, 164, 92, 0.4);
}

.mobile-subnav-link {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  transition: color var(--transition-fast);
}

.mobile-subnav-link:hover {
  color: var(--gold-light);
}

/* Nav Actions (Lang switch + Quote CTA) */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.lang-switch-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  padding: 0.45rem 0.95rem;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.lang-switch-btn:hover {
  border-color: var(--gold-pure);
  color: var(--gold-light);
  background: rgba(201, 164, 92, 0.15);
  box-shadow: 0 0 15px rgba(201, 164, 92, 0.3);
  transform: translateY(-1px);
}

.lang-flag-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lang-flag-img,
.flag-icon {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.nav-cta {
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 2100;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-white);
  margin: 5px 0;
  transition: all var(--transition-fast);
}

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

/* ==========================================================================
   MOBILE DRAWER NAVIGATION - CLEAN RESPONSIVE SCROLLABLE
   ========================================================================== */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 88vw;
  max-width: 360px;
  height: 100%;
  height: 100vh;
  height: 100dvh;
  max-height: 100dvh;
  background: #0d0d0d;
  border-left: 1px solid var(--border-gold);
  z-index: 4000;
  box-shadow: -15px 0 45px rgba(0, 0, 0, 0.95);
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch !important;
  touch-action: pan-y !important;
  overscroll-behavior-y: contain;
  overscroll-behavior: contain;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
  padding: 0.75rem 1.25rem;
  padding-top: max(0.75rem, env(safe-area-inset-top));
  padding-bottom: max(3.5rem, calc(env(safe-area-inset-bottom) + 2.5rem));
  display: block;
}

.mobile-drawer.open {
  right: 0;
}

/* Top bar with X button */
.mobile-top-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 38px;
  margin-bottom: 0.25rem;
  flex-shrink: 0;
}

.mobile-drawer-close-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.3);
  color: var(--gold-light);
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  pointer-events: auto !important;
  transition: all var(--transition-fast);
}

.mobile-drawer-close-btn svg,
.mobile-drawer-close-btn line {
  pointer-events: none;
}

.mobile-drawer-close-btn:hover,
.mobile-drawer-close-btn:active {
  background: var(--gold-pure);
  color: #000;
  border-color: var(--gold-pure);
  transform: rotate(90deg);
}

/* Centered Logo Area */
.mobile-logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 0 0.75rem 0;
  flex-shrink: 0;
}

.mobile-brand-logo {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.mobile-drawer-logo {
  height: 46px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.6));
  margin: 0 !important;
}

/* Language Switcher */
.mobile-lang-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.mobile-lang-pill-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: rgba(201, 164, 92, 0.12);
  border: 1px solid rgba(201, 164, 92, 0.35);
  color: var(--text-white);
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.mobile-lang-pill-btn:hover,
.mobile-lang-pill-btn:active {
  background: var(--gold-pure);
  color: #000;
  border-color: var(--gold-pure);
}

.mobile-lang-pill-btn .lang-flag-img {
  width: 18px;
  height: 13px;
  border-radius: 2px;
  object-fit: cover;
}

.lang-pill-icon {
  opacity: 0.7;
}

/* Scrollable Content Container */
.mobile-drawer-content {
  display: block;
  width: 100%;
  box-sizing: border-box;
}

/* Navigation Links */
.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1rem 0;
  width: 100%;
  box-sizing: border-box;
}

.mobile-nav-item {
  width: 100%;
}

.mobile-nav-link {
  font-size: 1.08rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-sizing: border-box;
  word-break: break-word;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
  background: rgba(201, 164, 92, 0.12);
  border-color: rgba(201, 164, 92, 0.35);
  color: var(--gold-light);
  transform: translateX(3px);
}

.mobile-nav-link::after {
  content: "›";
  font-size: 1.35rem;
  line-height: 1;
  color: rgba(201, 164, 92, 0.6);
  transition: transform var(--transition-fast);
}

.mobile-nav-link:hover::after {
  color: var(--gold-light);
  transform: translateX(2px);
}

/* Submenu */
.mobile-subnav {
  list-style: none;
  padding: 0.4rem 0.5rem 0.4rem 0.85rem;
  margin: 0.35rem 0 0.35rem 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  background: rgba(0, 0, 0, 0.35);
  border-left: 2px solid var(--border-gold);
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
}

.mobile-subnav-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  padding: 0.5rem 0.65rem;
  border-radius: 4px;
  transition: all var(--transition-fast);
  box-sizing: border-box;
}

.mobile-subnav-link:hover,
.mobile-subnav-link:active {
  color: var(--gold-light);
  background: rgba(201, 164, 92, 0.1);
}

/* CTA */
.mobile-drawer-cta {
  width: 100%;
  margin-top: 0.75rem;
  box-sizing: border-box;
}

.mobile-drawer-cta .btn-gold {
  width: 100%;
  justify-content: center;
  padding: 0.85rem 1.15rem;
  font-size: 0.92rem;
  text-align: center;
  border-radius: 6px;
  box-sizing: border-box;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: 3900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden !important;
  touch-action: none;
}

/* ==========================================================================
   2. HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 8rem;
  padding-bottom: 6rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  transform: scale(1);
  animation: slowZoom 24s infinite alternate ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 75% 45%, rgba(201, 164, 92, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, rgba(6, 6, 6, 0.82) 0%, rgba(6, 6, 6, 0.65) 40%, rgba(6, 6, 6, 0.95) 85%, #060606 100%),
    linear-gradient(90deg, #060606 0%, rgba(6, 6, 6, 0.88) 35%, rgba(6, 6, 6, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid var(--border-gold);
  padding: 0.45rem 1.1rem;
  border-radius: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: var(--text-pure-white);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: #cfcfc8;
  line-height: 1.65;
  margin-bottom: 2.75rem;
  max-width: 620px;
  border-left: 2px solid var(--gold-pure);
  padding-left: 1.25rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.hero-specs-badge {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-spec-item {
  display: flex;
  flex-direction: column;
}

.hero-spec-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
}

.hero-spec-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   3. TRUST / VALUE STRIP
   ========================================================================== */
.trust-strip {
  background: #0d0d0d;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.25rem 1.75rem;
  border-right: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item:hover {
  background: rgba(201, 164, 92, 0.03);
}

.trust-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.25);
  border-radius: 4px;
  color: var(--gold-light);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.trust-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   4. ABOUT US SECTION
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
}

.about-img-frame {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 25px rgba(201, 164, 92, 0.12);
  border: 1px solid var(--border-gold);
  width: 100%;
}

.about-img-frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--transition-slow);
}

.about-img-frame:hover img {
  transform: scale(1.03);
}



.about-content h2 {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.75rem;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--text-white);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.about-text {
  margin-bottom: 2rem;
}

.about-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-white);
  font-weight: 500;
}

.about-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-pure);
  flex-shrink: 0;
}

/* ==========================================================================
   5. PRODUCTS SECTION
   ========================================================================== */
/* Category Selector Dropdown & Sub-Cut Filter Bar */
.product-category-selector-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
  width: 100%;
  position: relative;
  z-index: 50;
}

.category-dropdown-wrapper {
  position: relative;
  width: 100%;
  max-width: 620px;
  z-index: 60;
}

.category-dropdown-wrapper.open {
  z-index: 70;
}

.cat-dropdown-header-label {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold-light);
  margin-bottom: 0.65rem;
}

.cat-dropdown-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: 6px;
  padding: 1rem 1.4rem;
  color: var(--text-white);
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.cat-dropdown-trigger:hover,
.category-dropdown-wrapper.open .cat-dropdown-trigger {
  border-color: var(--gold-light);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 25px rgba(201, 164, 92, 0.25);
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(14, 14, 14, 0.98) 100%);
}

.cat-trigger-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
html[dir="rtl"] .cat-trigger-content {
  text-align: right;
}

.cat-trigger-icon {
  font-size: 1.75rem;
  line-height: 1;
  filter: drop-shadow(0 2px 8px rgba(201, 164, 92, 0.4));
}

.cat-trigger-text {
  display: flex;
  flex-direction: column;
}

.cat-trigger-prefix {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.cat-trigger-label {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-pure-white);
  font-family: var(--font-heading);
  letter-spacing: 0.02em;
}

.cat-dropdown-arrow {
  width: 22px;
  height: 22px;
  color: var(--gold-pure);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.category-dropdown-wrapper.open .cat-dropdown-arrow {
  transform: rotate(180deg);
}

/* Category Dropdown Options Menu */
.cat-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  left: 0;
  width: 100%;
  background: #0e0e0e;
  background: rgba(14, 14, 14, 0.99);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1.5px solid var(--border-gold);
  border-radius: 6px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95), 0 0 35px rgba(201, 164, 92, 0.25);
  padding: 0.65rem;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 80;
}

.category-dropdown-wrapper.open .cat-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.cat-dropdown-option {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  padding: 1.1rem 1.25rem;
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.cat-dropdown-option:hover {
  background: rgba(201, 164, 92, 0.1);
  border-color: rgba(201, 164, 92, 0.3);
}

.cat-dropdown-option.active {
  background: linear-gradient(90deg, rgba(201, 164, 92, 0.18) 0%, rgba(201, 164, 92, 0.04) 100%);
  border-color: var(--border-gold);
}

.cat-opt-icon {
  font-size: 1.9rem;
  flex-shrink: 0;
  line-height: 1;
}

.cat-opt-details {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.cat-opt-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.25;
}

.cat-opt-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 0.25rem;
}

.cat-opt-check {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  opacity: 0;
  transition: opacity var(--transition-fast);
  flex-shrink: 0;
}

.cat-dropdown-option.active .cat-opt-check {
  opacity: 1;
}

.cat-dropdown-sep {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0.35rem 0.5rem;
}

/* Sub-Cut Filters Row */
.sub-cut-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  width: 100%;
}

.sub-filter-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 0.5rem;
}

html[dir="rtl"] .sub-filter-title {
  margin-right: 0;
  margin-left: 0.5rem;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  padding: 0.6rem 1.25rem;
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 3px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
  background: rgba(201, 164, 92, 0.12);
  border-color: var(--gold-pure);
  color: var(--gold-light);
}

/* Parent Category Badge on Product Cards */
.product-parent-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(14, 14, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #e5e5e5;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  backdrop-filter: blur(8px);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 2;
}

html[dir="rtl"] .product-parent-tag {
  right: auto;
  left: 1rem;
}

html[dir="rtl"] .product-cut-badge {
  left: auto;
  right: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  position: relative;
  z-index: 1;
  min-height: 580px;
  transition: opacity 0.12s ease-out;
}

.products-grid.filtering {
  opacity: 0;
  pointer-events: none;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.product-card.card-hidden {
  display: none !important;
}

.product-card.is-visible {
  transition-delay: 0s !important;
}

.product-image-box {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #0d0d0d;
  contain: paint layout;
}

.product-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image-box img {
  transform: scale(1.06);
}

.product-cut-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(8, 8, 8, 0.85);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.product-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.product-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.75rem;
  font-size: 0.85rem;
}

.product-spec-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-spec-table td {
  padding: 0.5rem 0;
}

.product-spec-table td:first-child {
  color: var(--text-muted);
}

.product-spec-table td:last-child {
  text-align: right;
  color: var(--gold-light);
  font-weight: 600;
}

.product-actions {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-actions .btn {
  flex: 1;
  font-size: 0.82rem;
  padding: 0.75rem 1rem;
}

/* ==========================================================================
   6. PRODUCT DETAIL VISUAL (MACRO INTERACTIVE)
   ========================================================================== */
.macro-visual-section {
  position: relative;
  background: #080808;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 7rem 0;
}

.macro-display-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-lg), var(--gold-glow);
}

.macro-display-wrapper img {
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.macro-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 8, 8, 0.3) 0%, rgba(8, 8, 8, 0.75) 100%);
}

/* Floating Hotspot Cards */
.spec-hotspot {
  position: absolute;
  z-index: 10;
  transition: all var(--transition-fast);
}

.hotspot-pin {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-pure);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: 0 0 20px var(--gold-pure);
  animation: subtlePulse 3s infinite ease-in-out;
}

.hotspot-card {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
}

.spec-hotspot:hover .hotspot-card,
.spec-hotspot.active .hotspot-card {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-4px);
}

.hotspot-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.hotspot-text {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Positions for 4 hotspots */
.hotspot-1 { top: 35%; left: 22%; }
.hotspot-2 { top: 25%; left: 52%; }
.hotspot-3 { top: 60%; left: 75%; }
.hotspot-4 { top: 70%; left: 32%; }

/* ==========================================================================
   7. QUALITY SECTION
   ========================================================================== */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.quality-card {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quality-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: width var(--transition-normal);
}

.quality-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-6px);
  background: #161616;
  box-shadow: var(--shadow-gold);
}

.quality-card:hover::before {
  width: 100%;
}

.quality-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 4px;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-pure);
  margin-bottom: 1.75rem;
}

.quality-icon-box svg {
  width: 28px;
  height: 28px;
}

.quality-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.95rem;
}

.quality-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   8. PROCESS SECTION (01 - 06 TIMELINE)
   ========================================================================== */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.25rem;
  position: relative;
  margin-top: 3rem;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 40px;
  right: 40px;
  height: 1px;
  background: rgba(201, 164, 92, 0.25);
  z-index: 0;
}

.process-step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-num-box {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0d0d0d;
  border: 2px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  transition: all var(--transition-fast);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}

.process-step-item:hover .process-num-box {
  border-color: var(--gold-light);
  background: var(--gold-pure);
  color: #000;
  box-shadow: 0 0 20px var(--gold-pure);
  transform: scale(1.08);
}

.process-step-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

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

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 3rem 2.5rem;
  position: relative;
  transition: all var(--transition-normal);
}

.why-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.why-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.why-icon {
  color: var(--gold-pure);
}

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

.why-index {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 800;
  color: rgba(201, 164, 92, 0.3);
}

.why-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1rem;
}

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

/* ==========================================================================
   10. APPLICATIONS
   ========================================================================== */
.applications-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.app-card {
  background: #111111;
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.app-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  background: #171717;
  box-shadow: var(--shadow-gold);
}

.app-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 164, 92, 0.08);
  border: 1px solid rgba(201, 164, 92, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
  transition: transform var(--transition-fast);
}

.app-card:hover .app-icon {
  transform: scale(1.1);
  background: var(--gold-pure);
  color: #000;
}

.app-icon svg {
  width: 28px;
  height: 28px;
}

.app-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.app-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ==========================================================================
   11. GALLERY / VISUAL STORY
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 240px;
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-white);
}

.gallery-item-tag {
  font-size: 0.78rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Asymmetric Grid Spans */
.gallery-item-1 { grid-column: span 7; grid-row: span 2; }
.gallery-item-2 { grid-column: span 5; grid-row: span 1; }
.gallery-item-3 { grid-column: span 5; grid-row: span 1; }
.gallery-item-4 { grid-column: span 4; grid-row: span 1; }
.gallery-item-5 { grid-column: span 4; grid-row: span 1; }
.gallery-item-6 { grid-column: span 4; grid-row: span 1; }

/* ==========================================================================
   12. CTA BANNER
   ========================================================================== */
.cta-banner-box {
  background: radial-gradient(circle at center, #1b1b1b 0%, #0c0c0c 100%);
  border: 1px solid var(--border-gold);
  border-radius: 6px;
  padding: 5rem 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--gold-glow);
}

.cta-banner-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-gradient);
}

.cta-banner-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--text-pure-white);
  margin-bottom: 1.25rem;
}

.cta-banner-text {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   13. CONTACT & INTERACTIVE RFQ FORM
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: flex-start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
  padding: 2rem;
}

.contact-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 1.5rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

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

.contact-detail-icon {
  color: var(--gold-pure);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-detail-content span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.15rem;
}

.contact-detail-content p,
.contact-detail-content a {
  font-size: 0.98rem;
  color: var(--text-white);
  font-weight: 500;
}

.contact-detail-content a:hover {
  color: var(--gold-light);
}

.whatsapp-direct-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #128c7e;
  color: #fff;
  font-weight: 600;
  padding: 1rem;
  border-radius: 3px;
  margin-top: 1rem;
  transition: background var(--transition-fast);
}

.whatsapp-direct-btn:hover {
  background: #075e54;
  color: #fff;
}

/* Interactive RFQ Form */
.rfq-form-container {
  background: #111111;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 3rem 2.75rem;
  box-shadow: var(--shadow-lg);
}

.rfq-form-header {
  margin-bottom: 2rem;
}

.rfq-form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.rfq-form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.rfq-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d1d1cc;
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #181818;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 3px;
  padding: 0.9rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-white);
  outline: none;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-pure);
  background: #1f1f1f;
  box-shadow: 0 0 12px rgba(201, 164, 92, 0.25);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #181818;
  color: #fff;
}

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

.form-submit-btn {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

/* ==========================================================================
   14. FOOTER
   ========================================================================== */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border-gold);
  padding: 5.5rem 0 2.5rem;
  position: relative;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4.5rem;
}

.footer-brand-col p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 1.5rem 0 1.75rem;
  max-width: 340px;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast), background var(--transition-fast);
  text-decoration: none;
}

.social-link.social-facebook {
  background: #1877F2;
  border: 1px solid #1877F2;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(24, 119, 242, 0.35);
}

.social-link.social-facebook:hover {
  background: #166fe5;
  border-color: #166fe5;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 22px rgba(24, 119, 242, 0.55);
}

.social-link.social-whatsapp {
  background: #25D366;
  border: 1px solid #25D366;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.social-link.social-whatsapp:hover {
  background: #20ba5a;
  border-color: #20ba5a;
  color: #ffffff !important;
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.55);
}

.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--gold-pure);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ==========================================================================
   MODAL & LIGHTBOX
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(10px);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-card {
  background: #111111;
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  max-width: 680px;
  width: 100%;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg), var(--gold-glow);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-content-card {
  transform: translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 100;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  color: #ffffff;
  background: rgba(201, 164, 92, 0.25);
  border-color: var(--gold);
  transform: scale(1.08);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: none;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .quality-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem 1.5rem;
  }
  .process-timeline::before {
    display: none;
  }
  .applications-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  .nav-menu, .nav-cta {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .gallery-item-1, .gallery-item-2, .gallery-item-3,
  .gallery-item-4, .gallery-item-5, .gallery-item-6 {
    grid-column: span 6;
    grid-row: span 1;
  }
}

@media (max-width: 767px) {
  /* Trust Grid */
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
  }

  /* About Image Frame on Mobile */
  .about-image-wrapper {
    margin-bottom: 2rem;
    width: 100%;
  }
  .about-img-frame {
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 164, 92, 0.15);
    border: 1px solid var(--border-gold);
    width: 100%;
    overflow: hidden;
    position: relative;
  }
  .about-img-frame img {
    height: auto !important;
    aspect-ratio: 4 / 3;
    min-height: 220px;
    max-height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* Products Grid & Picture Boxes */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    opacity: 1 !important;
    transform: none !important;
    min-height: auto;
  }
  .product-card {
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    opacity: 1 !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  }
  .product-image-box {
    height: auto !important;
    aspect-ratio: 16 / 10;
    min-height: 190px;
    max-height: 250px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    border-bottom: 1px solid rgba(201, 164, 92, 0.15);
  }
  .product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .product-cut-badge {
    top: 0.65rem;
    left: 0.65rem;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }
  .product-parent-tag {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }
  .product-info {
    padding: 1.5rem 1.25rem;
  }

  /* Category Filter Bar on Mobile */
  .product-category-selector-bar {
    padding: 0.85rem;
    gap: 0.75rem;
  }
  .cat-dropdown-trigger {
    width: 100%;
  }
  .sub-cut-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem 0.1rem 0.6rem;
    gap: 0.5rem;
    scrollbar-width: none;
  }
  .sub-cut-filters::-webkit-scrollbar {
    display: none;
  }
  .filter-btn {
    flex-shrink: 0;
    white-space: nowrap;
    font-size: 0.78rem;
    padding: 0.45rem 0.85rem;
  }

  /* Section 6: Macro Visual Section & Frame */
  .macro-visual-section {
    padding: 4rem 0;
  }
  .macro-display-wrapper {
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    width: 100%;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(201, 164, 92, 0.15);
  }
  .macro-display-wrapper img {
    height: auto !important;
    aspect-ratio: 16 / 10;
    min-height: 240px;
    max-height: 340px;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .hotspot-pin {
    width: 28px;
    height: 28px;
    font-size: 0.76rem;
  }
  .hotspot-1 { top: 32%; left: 16%; }
  .hotspot-2 { top: 20%; left: 50%; }
  .hotspot-3 { top: 58%; left: 78%; }
  .hotspot-4 { top: 72%; left: 28%; }
  .hotspot-card {
    width: min(220px, 75vw) !important;
    padding: 0.75rem 0.9rem !important;
    font-size: 0.8rem;
  }
  .hotspot-1 .hotspot-card {
    left: 0 !important;
    transform: none !important;
  }
  .hotspot-2 .hotspot-card {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }
  .hotspot-3 .hotspot-card {
    left: auto !important;
    right: 0 !important;
    transform: none !important;
  }
  .hotspot-4 .hotspot-card {
    left: 0 !important;
    transform: none !important;
  }

  /* Quality & Workflow */
  .quality-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .applications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }
  .app-card {
    padding: 1.5rem 1rem;
  }

  /* Gallery Grid & Frame Accuracy */
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 1rem;
  }
  .gallery-item-1, .gallery-item-2, .gallery-item-3,
  .gallery-item-4, .gallery-item-5, .gallery-item-6 {
    grid-column: span 12 !important;
    grid-row: span 1 !important;
  }
  .gallery-item {
    border-radius: 6px;
    overflow: hidden;
    height: auto !important;
    aspect-ratio: 16 / 10;
    min-height: 200px;
    max-height: 260px;
    width: 100%;
    border: 1px solid var(--border-subtle);
    position: relative;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .gallery-overlay {
    opacity: 1 !important;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.88) 100%);
  }

  /* Forms & Modals */
  .form-row-2 {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .hero-specs-badge {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .modal-backdrop {
    padding: 0.85rem;
  }
  .modal-content-card {
    width: 100%;
    max-width: 100%;
    padding: 1.5rem 1.25rem;
    max-height: 90vh;
    overflow-y: auto;
  }
  #galleryLightbox .modal-content-card {
    padding: 1.25rem !important;
    max-width: 95vw !important;
  }
  #galleryLightbox .modal-content-card > div {
    max-height: 60vh !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #lightboxImage {
    width: 100% !important;
    height: auto !important;
    max-height: 55vh !important;
    object-fit: contain !important;
  }
}

.contact-val-link {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-fast);
}

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

/* Floating Direct WhatsApp CTA */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #25D366;
  color: #ffffff !important;
  padding: 0.8rem 1.35rem;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  text-decoration: none;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), background var(--transition-fast);
}

.floating-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  color: #ffffff !important;
}

.floating-whatsapp svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .brand-logo-img {
    height: 72px;
    max-width: 250px;
  }
  .site-header.scrolled .brand-logo-img {
    height: 58px;
  }
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    padding: 0.85rem;
    border-radius: 50%;
  }
  .floating-whatsapp span {
    display: none;
  }
}
