@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Tajawal:wght@300;400;500;700;800&display=swap');

:root {
  /* Colors - ORIGINAL STABLE PALETTE */
  --dark-green: #062e12; 
  --dark-green-rgb: 6, 46, 18;
  --accent-gold: #c5a059;
  --gold-primary: #e6c17d;
  --gold-midtone: #d4af37;
  --gold-dark: #a38048;
  --white: #ffffff;
  --off-white: #f8fbf8;
  --text-dark: #333333;
  --text-muted: #666666;
  --border-color: rgba(197, 160, 89, 0.2);
  
  /* Fonts - ORIGINAL: CORMORANT & JAKARTA */
  --font-header: 'Cormorant Garamond', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-ar: 'Tajawal', sans-serif;

  /* Dimensions & Effects */
  --nav-h: 120px;
  --nav-h-scrolled: 80px;
  --radius: 12px;
  --radius-lg: 24px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-dark: 0 20px 50px rgba(0, 0, 0, 0.3);
  --shadow-green: 0 15px 40px rgba(10, 46, 18, 0.1);
  --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. Reset & Global */
* { margin:0; padding:0; box-sizing:border-box; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; overflow-x: hidden; scroll-padding-top: 120px; }
body { 
  font-family: var(--font-body); 
  color: var(--text-dark); 
  background: var(--white); 
  line-height: 1.6; 
  overflow-x: hidden;
}
/* body.inner-page { zoom: 1.0; } */
[dir="rtl"] body { font-family: var(--font-ar), var(--font-body); }

h1, h2, h3, h4 { font-family: var(--font-header); font-weight: 600; color: var(--white); line-height: 1.2; }
p { margin-bottom: 1.2rem; font-weight: 400; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; position: relative; }
section { padding: 4rem 0; position: relative; overflow: hidden; }

/* Center Utility */
.flex-center { display: flex; align-items: center; justify-content: center; text-align: center; }

/* 2. Layout Utilities */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.svc-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }

.section-header { text-align: center; max-width: 1000px; margin: 0 auto 2rem; }
.section-tag { display: inline-block; color: var(--accent-gold); font-weight: 950; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; margin-bottom: 0.5rem; }
.section-title { font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 0.5rem; position: relative; color: var(--dark-green); }
.title-bar { width: 100px; height: 5px; background: var(--accent-gold); margin: 0 auto 1.5rem; border-radius: 4px; }
.section-desc { color: var(--text-muted); font-size: 1.15rem; line-height: 1.8; }

.unique-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
#contact .ct-grid { display: grid; grid-template-columns: 1fr 1fr; }


/* Text Gradient Effect */
.text-gold {
  background: linear-gradient(135deg, #e6c17d 0%, #c5a059 50%, #a38048 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 3. Buttons (Level Up) */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 1.3rem 3.2rem; border-radius: 100px; font-weight: 800;
  letter-spacing: 0.08em; font-size: 0.95rem; cursor: pointer; transition: var(--transition);
  border: none; position: relative; overflow: hidden; text-transform: uppercase;
}
.btn-primary { background: var(--gold-primary); color: var(--dark-green); box-shadow: 0 12px 35px rgba(197,160,89,0.35); }
.btn-primary:after { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.2); transform: translateX(-100%); transition: 0.4s; }
.btn-primary:hover { transform: translateY(-6px); box-shadow: 0 18px 45px rgba(197,160,89,0.5); }
.btn-primary:hover:after { transform: translateX(0); }

.btn-outline { background: transparent; border: 2.5px solid var(--gold-midtone); color: var(--gold-primary); }
.btn-outline:hover { background: var(--gold-midtone); color: var(--dark-green); transform: translateY(-6px); box-shadow: var(--shadow-green); }

/* 4. Navbar (Zoomed Logo & Better Scrolled State) */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); background: transparent;
  transition: var(--transition); z-index: 1000;
  display: flex; align-items: center;
}
.navbar.scrolled {
  background: rgba(var(--dark-green-rgb), 0.98); 
  backdrop-filter: blur(15px);
  height: var(--nav-h-scrolled); 
  border-bottom: 1px solid rgba(197,160,89,0.3);
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.nav-container { position: relative; display: flex; justify-content: space-between; align-items: center; width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 4rem; }
.nav-logo-img { height: 90px; width: auto; transition: var(--transition); }
.navbar.scrolled .nav-logo-img { height: 70px; }

.nav-links { display: flex; gap: 3.5rem; list-style: none; }
.nav-item { color: #fff; font-weight: 700; font-size: 0.9rem; opacity: 0.65; letter-spacing: 0.12em; position: relative; text-transform: uppercase; transition: 0.3s; }
.nav-item.active { opacity: 1; color: var(--gold-primary); }
.nav-item:hover { opacity: 1; color: var(--gold-primary); }
 .nav-item.active::after { content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%); width: 100%; height: 2px; background: var(--gold-primary); border-radius: 2px; }

/* 4b. Vertical Sub-Menu (Premium Slide-out) */
.nav-item-dropdown { position: relative; }

.vertical-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 240px; /* Reduced from 280px */
  background: rgba(6, 46, 18, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-top: 3.5px solid var(--gold-primary);
  border-radius: 0 0 12px 12px;
  padding: 0.8rem 0; /* Reduced from 1.2rem */
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-dark);
  z-index: 1100;
  transform: translateY(15px);
}

.nav-item-dropdown:hover .vertical-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vertical-dropdown li {
  position: relative;
  padding: 0 0.8rem; /* Reduced from 1rem */
}

.vertical-dropdown li a {
  display: flex !important;
  align-items: center;
  gap: 0.8rem; /* Reduced from 1.2rem */
  padding: 0.7rem 1.2rem; /* Reduced from 1.1rem 1.5rem */
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem; /* Slightly smaller for elegance */
  font-weight: 500; /* Lighter weight */
  letter-spacing: 0.05em;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-transform: none;
}

.vertical-dropdown li a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--gold-primary);
  padding-left: 1.5rem;
}

/* Sub-Menu Level 2 (Subtle Fade-in) */
.sub-dropdown {
  position: absolute;
  top: 0;
  left: 100%;
  width: 280px;
  background: rgba(6, 46, 18, 0.98);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 0 12px 12px 12px;
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(10px);
  box-shadow: 20px 20px 60px rgba(0,0,0,0.5);
  list-style: none;
}

.vertical-dropdown li:hover .sub-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.sub-dropdown li { padding: 0 1rem; }

.sub-dropdown li a {
  padding: 0.8rem 1.8rem !important;
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.7;
}

.sub-dropdown li a:hover {
  opacity: 1;
  padding-left: 2.2rem !important;
}

/* Category label inside Barqan sub-dropdown (Electrical / Civil) */
.submenu-category-label {
  display: block;
  padding: 0.45rem 1.8rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-primary);
  opacity: 0.8;
  pointer-events: none;
  margin-top: 0.4rem;
}
.submenu-category-label:first-child { margin-top: 0; }

.dropdown-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: none;
  background: #fff;
  border-radius: 4px;
  padding: 2px;
}



.nav-actions { display: flex; align-items: center; gap: 1.5rem; }
.lang-btn { background: rgba(255,255,255,0.06); border: 1px solid rgba(197,160,89,0.3); color: var(--gold-primary); padding: 0.6rem 1.2rem; border-radius: 50px; cursor: pointer; transition: 0.4s; font-weight: 700; display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; }
.lang-btn:hover { background: var(--accent-gold); color: var(--dark-green); transform: scale(1.05); }

/* Hamburger Menu (Fixes the "Dot") */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  gap: 5px;
  z-index: 2000;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--gold-primary);
  transition: all 0.3s ease;
}

@media (max-width: 1024px) {
  .hamburger { display: flex; z-index: 1001; }
  .navbar { padding: 0.8rem 0; }
  .nav-links { 
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100vh; 
    background: rgba(6, 46, 18, 0.98); 
    backdrop-filter: blur(15px);
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    gap: 2rem;
    z-index: 1000;
  }
  .nav-links.open { display: flex; }
  .lang-btn { margin-right: 1.5rem; }
  .lang-btn .lang-label { display: none; }
  .nav-brand .nav-logo-img { height: 45px; }
}


/* #contact, #unique, .about-values-section { zoom: 1.0; } */
/* 5. Hero Section (CONSTRAINED & CENTERED) */
.hero {
  height: 100vh; min-height: 850px; 
  background: var(--dark-green) url('assets/images/riyadh_night.jpg') center center / cover no-repeat;
  position: relative; display: flex; align-items: center; justify-content: center; color: #fff; overflow: hidden;
}
.hero-overlay { 
  position: absolute; inset: 0; 
  background: linear-gradient(to right, rgba(6,46,18,0.98) 0%, rgba(6,46,18,0.85) 30%, rgba(6,46,18,0.4) 100%); 
  z-index: 1; 
}
.hero-bg { display: none; }
.hero-particles { position: absolute; inset: 0; pointer-events: none; z-index: 3; }

/* Centered content block - UPDATED TO LEFT ALIGN */
.hero .container { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; text-align: left; width: 100%; z-index: 10; }

.hero-content { max-width: 1100px; text-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.hero-title { color: #fff; font-size: clamp(3.5rem, 8vw, 6.8rem); margin-bottom: 2.5rem; line-height: 1.05; display: block; font-weight: 400; font-family: var(--font-header); }
.hero-title span { color: var(--accent-gold); }

.hero-subtitle-new { 
  color: rgba(255,255,255,0.65); font-size: 1.35rem; margin-bottom: 5rem; 
  line-height: 1.7; font-weight: 400; max-width: 850px;
}

.hero-actions-new { display: flex; align-items: center; gap: 2rem; }

.btn-hero-solid {
  background: var(--gold-primary); color: var(--dark-green); 
  padding: 1.4rem 3.2rem; border-radius: 4px; font-weight: 800;
  letter-spacing: 0.12em; font-size: 0.95rem; transition: var(--transition);
  text-transform: uppercase; border: none; cursor: pointer;
}
.btn-hero-solid:hover { background: #fff; color: var(--dark-green); transform: translateY(-4px); box-shadow: 0 15px 40px rgba(0,0,0,0.4); }

.btn-hero-text {
  color: var(--gold-primary); font-weight: 800; font-size: 0.95rem;
  letter-spacing: 0.12em; transition: var(--transition); text-transform: uppercase;
}
.btn-hero-text:hover { color: #fff; }

.hero-stats { display: flex; align-items: center; gap: 5rem; position: relative; margin-top: 2rem; justify-content: center; }
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-num { font-size: 3.5rem; font-weight: 400; font-family: var(--font-header); color: var(--gold-primary); line-height: 1; margin-bottom: 0.8rem; }
.stat-label { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.65); font-weight: 700; font-family: var(--font-body); }
.stat-divider { width: 2px; height: 60px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.2), transparent); }

/* 6. Heritage/Skyline Banners (PREMIUM RESTORATION) */
.heritage-sec { background: var(--dark-green); color: #fff; padding: 2.5rem 0; position: relative; }
.heritage-bg, .ct-hero-bg { 
  position: absolute; inset: 0; 
  background: url('assets/images/riyadh_skyline.png') center/cover no-repeat; 
  opacity: 0.12; filter: none; 
}
.heritage-overlay, .ct-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--dark-green) 0%, rgba(6,46,18,0.7) 50%, var(--dark-green) 100%); }

.heritage-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10rem; align-items: center; position: relative; z-index: 5; }
.heritage-story { text-align: left; }
.heritage-story h2 { color: #fff; font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 3.5rem; font-family: var(--font-header); font-weight: 400; }
.heritage-text p { font-size: 1.2rem; color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; line-height: 1.9; font-weight: 400; font-family: var(--font-body); }

/* 7. Inner Hero Banners (SKYLINE & GLASSMORPISM) */
.ct-hero-banner, .svc-hero-banner { 
  height: 280px; background: var(--dark-green); display: flex; align-items: center; justify-content: center; 
  position: relative; overflow: hidden; padding-top: 80px; /* Standard Navbar Clearance */
}
.products-page-hero { 
  height: 360px; background: var(--dark-green); display: flex; align-items: center; justify-content: center; 
  position: relative; overflow: hidden; padding-top: 90px; /* Extra height for scroller */
}

.ct-hero-content, .products-page-hero-content, .svc-hero-content { 
  position: relative; z-index: 10; text-align: center; max-width: 1100px; width: 100%; padding: 0 2rem;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.products-page-hero-content h1 { 
  margin-top: 1.5rem;
  margin-bottom: 2rem; /* Gap under the title */
}
.hero-breadcrumb, .about-breadcrumb { 
  display: flex !important; align-items: center !important; justify-content: center !important; gap: 0.8rem;
  margin-bottom: 1rem; color: rgba(255,255,255,0.7); font-size: 0.95rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.ct-hero-banner h1, .products-page-hero h1, .svc-hero-banner h1 { 
  font-size: clamp(2.5rem, 5vw, 4rem); color: #fff; text-shadow: 0 10px 30px rgba(0,0,0,0.5); 
  margin: 0; line-height: 1.1; font-weight: 400; font-family: var(--font-header);
}

/* 8. Mission/Vision (RE-CENTERED & REFINED) */
.about-mv-section { background: var(--dark-green); padding: 8rem 0; position: relative; }
.about-mv-grid { 
  display: grid; 
  grid-template-columns: 1fr 1px 1fr; 
  gap: 6rem; 
  align-items: center; 
  position: relative; 
  z-index: 5; 
}
.mv-block { text-align: center; padding: 2.5rem; }
.mv-icon { width: 110px; height: 110px; margin: 0 auto 3.5rem; padding: 20px; background: rgba(197,160,89,0.08); border-radius: 50%; border: 1px solid rgba(197,160,89,0.2); }
.mv-block h3 { color: var(--gold-primary); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 2.5rem; font-family: var(--font-header); font-weight: 400; }
.mv-block p { font-size: 1.2rem; line-height: 1.8; color: rgba(255,255,255,0.85); font-weight: 400; font-family: var(--font-body); }
.mv-divider-v { width: 1px; height: 80%; background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.3), transparent); margin: 0 auto; min-height: 100px; }

/* 10. Value Cards (STRICT UNIFORMITY) */
.about-values-section { padding: 4rem 0; background: var(--dark-green); }
.about-values-title { text-align: center; font-size: 3.5rem; margin-bottom: 6rem; color: var(--gold-primary); font-family: var(--font-header); font-weight: 400; }
.svc-grid-5 { 
  display: grid; 
  grid-template-columns: repeat(5, minmax(0, 1fr)); 
  gap: 1.5rem; 
  width: 100%; 
  max-width: 1240px; 
  margin: 0 auto; 
}
.av-card { 
  background: rgba(255,255,255,0.03); padding: 3rem 1.5rem; border-radius: 32px; text-align: center;
  box-shadow: 0 15px 45px rgba(0,0,0,0.2); border: 1.5px solid rgba(197, 160, 89, 0.15);
  transition: var(--transition); display: flex; flex-direction: column; align-items: center;
  height: 100%; min-height: 480px; justify-content: flex-start;
  overflow: hidden;
}
.av-card:hover { transform: translateY(-8px); box-shadow: 0 30px 60px rgba(0,0,0,0.08); border-color: var(--gold-midtone); }

.av-icon-wrap { height: 75px; margin-bottom: 2.5rem; display: flex; align-items: center; justify-content: center; }
.av-icon-wrap svg { height: 65px; width: 65px; stroke-width: 2.2; } /* Optimized for visual equality */

.av-card h4 { 
  font-size: 1.3rem; color: var(--gold-primary); margin-bottom: 1.5rem; 
  min-height: 4rem; display: flex; align-items: center; justify-content: center;
  font-weight: 400; font-family: var(--font-header); letter-spacing: 0.02em;
  padding: 0 0.5rem;
  width: 100%;
}
.av-card p { 
  font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.6; 
  margin: 0; padding: 0 1rem;
}

/* 10. Service Cards (ELITE GRID) */
.svc-cards-section { background: var(--dark-green); padding: 8rem 0; }
.svc-cards-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  gap: 1.5rem; 
  align-items: stretch;
}
.svc-card {
  background: rgba(255,255,255,0.02); border: 1.5px solid rgba(197, 160, 89, 0.15);
  padding: 3.5rem 2rem; border-radius: 4px; transition: var(--transition);
  display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important;
  min-height: 520px !important; height: auto !important;
  overflow: hidden;
}
.svc-card:hover { transform: translateY(-12px); border-color: var(--gold-primary); background: rgba(226, 166, 51, 0.08); box-shadow: 0 30px 70px rgba(0,0,0,0.5); }

.svc-card-icon { 
  width: 85px; height: 85px; margin: 0 auto 3.5rem; color: var(--gold-primary); 
  display: flex; align-items: center; justify-content: center;
}
.svc-card-icon svg { width: 100%; height: 100%; }

.svc-card-num { display: none; }

.svc-card .hero-title { font-size: 4.8rem; margin-bottom: 2.5rem; line-height: 1.1; font-weight: 700; }
.hero-title span { color: inherit; }
.hero-subtitle-new { font-size: 1.25rem; margin-bottom: 3.5rem; max-width: 800px; color: rgba(255,255,255,0.9); line-height: 1.8; font-weight: 300; }
.svc-card h3 { 
  font-size: 1.6rem !important; margin-bottom: 1.5rem !important; color: var(--gold-primary) !important; 
  font-family: var(--font-header) !important; font-weight: 500 !important;
  height: 4rem !important; display: flex !important; align-items: flex-start !important; justify-content: center !important;
}

.svc-card p { 
  font-size: 0.9rem !important; color: rgba(255,255,255,0.7) !important; line-height: 1.6 !important; margin-bottom: 2rem !important; 
  height: 7rem !important; display: flex !important; align-items: flex-start !important; justify-content: center !important;
  overflow: hidden !important;
}
.svc-card-list {
  list-style: none !important; padding: 0 !important; 
  margin: 2rem auto 0 !important; /* Forces lists to start on the exact same line */
  width: 100% !important;
  max-width: 250px !important;
  display: flex !important; flex-direction: column !important; align-items: flex-start !important;
}
.svc-card-list li { 
  margin-bottom: 1rem !important; font-size: 0.9rem !important; color: rgba(255,255,255,0.8) !important; 
  display: flex !important; align-items: flex-start !important; text-align: left !important; gap: 0.8rem !important;
  line-height: 1.3 !important;
}
.svc-card-list li::before {
  content: '✔' !important; color: var(--gold-primary) !important; font-size: 1.1rem !important; flex-shrink: 0 !important;
  margin-top: -0.1rem !important; font-family: sans-serif !important;
}




/* RTL Absolute Symmetry Mirrors */
[dir="rtl"] .svc-card-list { align-items: flex-start !important; }
[dir="rtl"] .svc-card-list li { text-align: right !important; flex-direction: row-reverse !important; justify-content: flex-end !important; }
[dir="rtl"] .svc-card-list li::before { margin-left: 0.8rem !important; content: '✔' !important; }





/* 11. Brands (3-Column Side-by-Side Grid) */
.brands-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.brand-full-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  background: #fff;
  border-radius: 32px;
  padding: 3rem 2rem 2.5rem;
  border: 1px solid #eee;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
  transition: var(--transition);
  color: var(--text-dark);
}
.brand-full-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(10,46,18,0.12);
  border-color: var(--gold-midtone);
}

.brand-full-logo {
  width: 160px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.brand-full-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-full-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.brand-full-info h3 {
  font-size: 1.4rem;
  color: var(--dark-green);
  margin-bottom: 0.6rem;
  letter-spacing: 0.06em;
}
.brand-origin-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 1.2rem;
}
.brand-full-info p {
  font-size: 0.97rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.explore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-green);
  color: var(--gold-primary);
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.65rem 1.6rem;
  border-radius: 50px;
  transition: var(--transition);
  margin-top: auto;
  border: 1px solid var(--dark-green);
}
.brand-full-card:hover .explore-btn {
  background: var(--dark-green);
  color: var(--gold-primary);
}

@media (max-width: 1024px) {
  .brands-full-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 640px) {
  .brands-full-grid { grid-template-columns: 1fr !important; }
}

/* 11b. OBO Bettermann — Fullscreen Video Hero */
.obo-video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 750px; /* Reduced to fit typical screens */
  overflow: hidden;
  display: flex;
  align-items: flex-start; /* Changed from center to prevent top cutoff */
  justify-content: center;
  background: #000;
}
.obo-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.85;
}
.obo-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.3) 0%,
    rgba(0,0,0,0.1) 50%,
    rgba(0,0,0,0.5) 100%
  );
}
.obo-video-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 110px 2rem 2rem; /* Reduced top padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem; /* Significantly reduced gap from 3rem */
  width: 100%;
  max-width: 1400px;
}

/* Integrated Hero Breadcrumb */
.hero-breadcrumb {
  position: absolute;
  top: 75px; /* Moved up closer to navbar */
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.75rem; /* Slightly smaller */
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}
[dir="rtl"] .hero-breadcrumb { left: auto; right: 4rem; }

.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}
.hero-breadcrumb a:hover {
  color: var(--gold-primary);
}
.hero-breadcrumb span {
  color: var(--gold-primary);
}
.breadcrumb-sep {
  opacity: 0.5;
  font-weight: 400;
}

.obo-hero-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.obo-video-logo-wrap {
  width: 150px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent; /* Removed background box */
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  padding: 0;
  margin-bottom: 0.2rem;
  transition: var(--transition);
}
.obo-video-logo-wrap:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}
.obo-video-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.5)); /* Added shadow to logo itself */
}
.obo-video-content h2 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  color: #fff;
  letter-spacing: 0.1em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8), 0 0 40px rgba(0,0,0,0.4); /* Stronger shadows */
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
}
.obo-subtitle {
  font-size: 0.95rem;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

/* New Integrated Hero Info Section - Word Only Version */
.obo-hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 700px;
  background: transparent; /* Removed box */
  backdrop-filter: none;
  border: none;
  padding: 0;
  margin-top: 1rem;
  position: relative;
  box-shadow: none;
}

.obo-hero-col {
  text-align: center;
}

.brand-info-label {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.brand-info-title {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 1rem;
  font-family: var(--font-header);
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.brand-info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,1); /* Fully opaque white */
  margin-bottom: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

/* Removed Brand Info List Styles (Categories removed) */

.obo-scroll-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: oboScrollBounce 2.5s ease-in-out infinite;
}
.obo-scroll-hint svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold-primary);
}

@media (max-width: 1024px) {
  .obo-hero-info {
    flex-direction: column;
    gap: 2rem;
    padding: 0; margin-top: 2rem;
  }
  .obo-hero-divider { display: none; }
  .obo-hero-col { text-align: center; }
  .brand-info-list { align-items: center; }
}

@keyframes oboScrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%       { transform: translateY(12px); opacity: 1; }
}


/* 12. Contact Page (PREMIUM REDESIGN) */
.ct-main { padding: 2rem 0 0; background: #fafafa; position: relative; }
.ct-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4rem; align-items: stretch; max-width: 1200px; margin: 0 auto; padding-bottom: 8rem; }

/* 12b. Office Locations Section */
.offices-sec { padding: 4rem 0 6rem; background: #fff; }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 4rem;
}

.office-card {
  position: relative;
  background: var(--dark-green);
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 32px;
  padding: 3.5rem 2.8rem;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.02);
  min-height: 580px;
}

.office-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 80px rgba(10,46,18,0.1);
  border-color: rgba(197,160,89,0.3);
}

.office-watermark {
  display: none;
}

/* Removed Watermark Hover */

.office-card h4 {
  font-size: 1.4rem;
  color: var(--gold-primary);
  font-weight: 800;
  margin: 0;
  position: relative;
  z-index: 1;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.office-details {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  z-index: 1;
}

.office-detail-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.office-icon {
  width: 22px;
  height: 22px;
  color: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.office-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.office-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.8;
}

.office-value {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-weight: 500;
}


.office-value a {
  color: inherit;
  transition: 0.3s;
}

.office-value a:hover {
  color: var(--gold-primary);
}

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

@media (max-width: 768px) {
  .offices-grid { flex-direction: column; gap: 1.5rem; }
  .office-card { padding: 2.5rem 2rem; }
}

/* RTL Adjustments for Watermark */
[dir="rtl"] .office-watermark {
  right: auto;
  left: -40px;
}

[dir="rtl"] .office-card h4 {
  font-family: var(--font-ar);
}


/* Info Panel (Dark Card) */
.ct-info-panel { 
  background: var(--dark-green); 
  padding: 3.5rem 3rem; 
  border-radius: 40px; 
  color: #fff;
  box-shadow: 0 40px 100px rgba(10,46,18,0.15);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.ct-info-panel::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(197,160,89,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.ct-info-head h3 { font-size: 1.8rem; margin-bottom: 3.5rem; color: #fff; font-family: var(--font-en); }

.ct-info-items { display: flex; flex-direction: column; gap: 2.2rem; }
.ct-info-item { display: flex; gap: 1.5rem; align-items: flex-start; }

.ct-icon-box { 
  width: 48px; height: 48px; background: rgba(197,160,89,0.1); 
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  color: var(--gold-primary); flex-shrink: 0; border: 1px solid rgba(197,160,89,0.2);
  transition: var(--transition);
}
.ct-icon-box svg { width: 22px; height: 22px; }
.ct-info-item:hover .ct-icon-box { background: var(--gold-primary); color: var(--dark-green); transform: translateY(-5px); }

.ct-item-text { display: flex; flex-direction: column; gap: 0.3rem; }
.ct-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: rgba(255,255,255,0.4); font-weight: 800; }
.ct-item-text a, .ct-item-text p { font-size: 1.1rem; font-weight: 500; color: #fff; text-decoration: none; line-height: 1.4; }
.ct-value-group { display: flex; flex-direction: column; gap: 0.6rem; }

/* WhatsApp Mini-Button Inside Office Card */
.office-wa-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  transition: 0.3s;
  width: fit-content;
}
.office-wa-link:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

/* Updated Contact Grid (No Sidebar) */
.ct-grid { display: flex; justify-content: center; }
.ct-form-panel { background: #fff; padding: 4.5rem; border-radius: 40px; box-shadow: 0 15px 45px rgba(0,0,0,0.03); border: 1px solid #efefef; max-width: 900px; width: 100%; }

.footer-contact p { 
  margin-bottom: 0.8rem; 
  display: flex; 
  align-items: center; 
  gap: 0.8rem; 
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-contact a:hover {
  color: var(--gold-primary);
}
.form-title-wrap h2 { font-size: 2.5rem; color: var(--dark-green); margin-bottom: 0.8rem; font-family: var(--font-en); }
.form-title-wrap p { font-size: 1.05rem; color: var(--text-muted); }

.ct-form { display: flex; flex-direction: column; gap: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.8rem; }
.form-group label { font-size: 0.95rem; font-weight: 700; color: var(--dark-green); letter-spacing: 0.02em; }
.form-group input, .form-group textarea { 
  padding: 1.1rem 1.3rem; border: 1px solid #e0e0e0; border-radius: 12px;
  font-family: var(--font-en); font-size: 1rem; transition: var(--transition);
  background: #fcfcfc;
}
.form-group input:focus, .form-group textarea:focus { 
  outline: none; border-color: var(--gold-primary); background: #fff;
  box-shadow: 0 5px 15px rgba(197,160,89,0.1);
}

/* File Upload Custom Style */
.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: 3.5rem; /* Match input height */
}
.file-input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.file-custom-btn {
  position: absolute;
  inset: 0;
  background: #fcfcfc;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 1.3rem;
  transition: var(--transition);
  z-index: 1;
}
.file-upload-wrapper:hover .file-custom-btn {
  border-color: var(--gold-primary);
  background: #fff;
}
.file-btn-text {
  background: var(--dark-green);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-right: 1.2rem;
  white-space: nowrap;
}
[dir="rtl"] .file-btn-text {
  margin-right: 0;
  margin-left: 1.2rem;
}
.file-name-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ct-form-btn { 
  padding: 1.1rem 2.8rem; background: var(--dark-green); color: #fff; border: none;
  border-radius: 12px; font-weight: 700; font-size: 1.1rem; cursor: pointer;
  transition: var(--transition); display: inline-flex; align-items: center; justify-content: center;
  margin-top: 0.5rem; align-self: flex-start;
}
.ct-form-btn:hover { background: var(--gold-primary); color: var(--dark-green); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(197,160,89,0.2); }

/* 13. Footer (SOLID BASE) */
.footer { background: #061a0b; padding: 6rem 0 5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-logo { height: 110px; margin-bottom: 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr; gap: 6rem; color: #fff; }
.footer h4 { color: var(--gold-midtone); font-size: 1.4rem; margin-bottom: 2rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer p { color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 1.05rem; margin-bottom: 1rem; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li a { color: rgba(255,255,255,0.7); transition: var(--transition); text-decoration: none; display: block; margin-bottom: 1rem; }
.footer ul li a:hover { color: var(--gold-midtone); padding-left: 5px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 4rem; text-align: center; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* 14. Mobile Responsive Refinement */
@media (max-width: 1024px) {
  .nav-container { padding: 0 2rem; }
  .grid-2, .grid-3, .grid-4, .heritage-grid, .ct-grid, .footer-grid, .svc-grid-5, .brands-full-grid, .about-mv-grid { grid-template-columns: 1fr !important; gap: 4rem; }
  .hero-content { text-align: center; align-items: center; }
  .stat-divider { display: none; }
  .mv-divider-v { display: none; }
  .nav-logo-img { height: 80px; }
  .navbar.scrolled .nav-logo-img { height: 60px; }
  .final-info-grid { grid-template-columns: 1fr !important; }
}

/* 15. Final Contact Banner (Reference Match) */
.final-contact-banner {
  background: #04251b; /* Extra deep green footer signature */
  position: relative; 
  padding: 10rem 0; 
  border-top: 1px solid rgba(217, 180, 110, 0.1);
  overflow: hidden;
  color: #fff;
  background-image: radial-gradient(circle at center, rgba(197,160,89,0.05) 0%, transparent 70%);
}
.final-logo-wrap { margin-bottom: 5rem; }
.final-logo-img { height: 180px; width: auto; margin: 0 auto 3rem; filter: brightness(0) invert(1); }
.final-company-name { font-size: 3.5rem; letter-spacing: 0.15em; font-weight: 900; margin-bottom: 0.5rem; color: #fff; }
.final-tagline { font-size: 1.15rem; letter-spacing: 0.25em; color: rgba(255,255,255,0.8); font-weight: 400; text-transform: uppercase; }

.final-address-row { margin-bottom: 5rem; font-size: 1.4rem; color: rgba(255,255,255,0.9); line-height: 1.8; font-weight: 300; }

.final-divider { width: 100%; max-width: 900px; height: 1px; background: rgba(255,255,255,0.3); margin: 0 auto 5rem; }

.final-info-grid { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 2.5rem 6rem; 
  max-width: 900px; 
  margin: 0 auto; 
  text-align: left;
}
.final-info-item { display: flex; gap: 1.5rem; align-items: center; }
.final-info-item .label { color: rgba(255,255,255,0.6); font-weight: 800; text-transform: uppercase; font-size: 0.9rem; min-width: 80px; }
.final-info-item .value { font-size: 1.4rem; font-weight: 500; white-space: nowrap; }

/* 16. Contact Side Card (Home Hero Right) */
.ct-side-card { 
  background: var(--dark-green);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 3rem;
  color: #fff;
  border: 1px solid rgba(230, 193, 125, 0.2);
  box-shadow: 0 40px 100px rgba(0,0,0,0.3);
  text-align: center;
  align-self: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}
.ct-side-card:hover {
  transform: translateY(-12px) scale(1.01);
  border-color: var(--gold-primary);
  box-shadow: 0 50px 120px rgba(0,0,0,0.5), 0 0 30px rgba(230, 193, 125, 0.1);
}

.card-link-value {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
  z-index: 10;
  position: relative;
}
.card-link-value:hover {
  color: var(--gold-primary);
  text-decoration: none;
}
.ct-card-backdrop { 
  position: absolute; inset: 0; 
  background: radial-gradient(circle at top right, rgba(197,160,89,0.18) 0%, transparent 60%);
  opacity: 0.6;
}
.ct-card-content { position: relative; z-index: 5; width: 100%; display: flex; flex-direction: column; align-items: center; }
.ct-card-logo { 
  height: 120px; width: auto; margin-bottom: 2rem; 
  filter: brightness(0) invert(1); opacity: 1; display: block;
  transition: 0.4s;
}
.ct-side-card:hover .ct-card-logo { transform: scale(1.05); filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }

.ct-card-name { font-family: var(--font-en); font-size: 2.8rem; font-weight: 800; letter-spacing: 0.05em; margin-bottom: 0.8rem; color: #fff; line-height: 1.1; }
.ct-card-tagline { font-size: 0.95rem; letter-spacing: 0.3em; color: var(--gold-primary); text-transform: uppercase; margin-bottom: 3.5rem; font-weight: 700; opacity: 0.9; }

.ct-card-divider { width: 100%; max-width: 300px; height: 1px; background: rgba(255,255,255,0.15); margin-bottom: 3.5rem; position: relative; }
.ct-card-divider::after { 
  content: ''; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); 
  width: 60px; height: 4px; background: var(--gold-midtone); border-radius: 10px;
}

.ct-card-info { font-size: 1.3rem; width: 100%; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.card-info-row { display: flex; align-items: center; gap: 2.5rem; margin-bottom: 1.6rem; width: 100%; justify-content: center; }
.card-info-row .label { color: rgba(255,255,255,0.4); text-transform: uppercase; font-weight: 800; font-size: 0.85rem; letter-spacing: 0.2em; width: 90px; text-align: right; }
.card-info-row .value { font-weight: 700; white-space: nowrap; text-align: left; color: #fff; letter-spacing: 0.02em; }
.value-group { text-align: left; display: flex; flex-direction: column; gap: 0.4rem; }

/* 17. RTL Mirroring */
[dir="rtl"] .hero .container, [dir="rtl"] .heritage-story { text-align: right; }
[dir="rtl"] .stat-item { text-align: center; }
[dir="rtl"] .service-card, [dir="rtl"] .brand-full-card { text-align: right; }
[dir="rtl"] .brand-full-info h3 { font-family: var(--font-header); font-weight: 400; font-size: 1.8rem; }
[dir="rtl"] .svc-card-list li { padding-left: 0; padding-right: 0; }
[dir="rtl"] .svc-card-list li::before { content: '✔' !important; margin-left: 0.8rem !important; right: auto !important; left: auto !important; }
[dir="rtl"] .dropdown-menu li a { padding: 0.8rem 1.8rem; flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .dropdown-menu li a:hover { padding-right: 2.2rem; padding-left: 1.8rem; }

/* 4c. Vertical Menu RTL Refinements */
[dir="rtl"] .vertical-dropdown {
  left: auto;
  right: 0;
}

[dir="rtl"] .sub-dropdown {
  left: auto;
  right: 100%;
  transform: translateX(-10px);
  border-radius: 12px 0 12px 12px;
}

[dir="rtl"] .vertical-dropdown li:hover .sub-dropdown {
  transform: translateX(0);
}

[dir="rtl"] .vertical-dropdown li a {
  flex-direction: row;
  justify-content: flex-start;
}

[dir="rtl"] .vertical-dropdown li a:hover {
  padding-left: 1rem !important;
  padding-right: 1.8rem !important;
}

[dir="rtl"] .mega-list li a::before {
  content: none;
}


/* Brand Product Tags (Products Page) */
.brand-product-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  width: 100%;
}

.brand-product-tags span {
  display: inline-block;
  background: rgba(197, 160, 89, 0.08);
  color: var(--dark-green);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(197, 160, 89, 0.15);
  transition: all 0.3s ease;
}

.brand-product-tags span::before {
  content: none;
}

.brand-product-tags span:hover {
  background: rgba(197, 160, 89, 0.1);
  color: var(--dark-green);
  border-color: rgba(197, 160, 89, 0.3);
}
/* Product Catalog Grid Placeholders */
.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  width: 100%;
}
.placeholder-item {
  background: rgba(34, 197, 94, 0.03);
  border: 1px dashed rgba(34, 197, 94, 0.3);
  border-radius: 12px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
}
/* 18. Brand Info Section Redesign */
.brand-info-section {
  padding: 5rem 0;
  background: #04251b url('assets/images/riyadh_skyline.png') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.brand-info-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(6,46,18,0.95) 0%, rgba(6,46,18,0.8) 50%, rgba(6,46,18,0.95) 100%);
  z-index: 1;
}

.brand-info-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 6rem;
  align-items: start;
}

.brand-info-column {
  padding: 2rem;
  text-align: center;
}

.brand-info-label {
  display: inline-block;
  color: var(--accent-gold);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.brand-info-title {
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 2rem;
  font-family: var(--font-header);
  font-weight: 400;
}

.brand-info-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.brand-info-divider {
  width: 1px;
  height: 100%;
  min-height: 200px;
  background: linear-gradient(to bottom, transparent, rgba(197,160,89,0.3), transparent);
}

.brand-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  display: inline-block;
}

.brand-info-list li {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  display: flex !important;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}

.brand-info-list li::before {
  content: '✔';
  color: var(--gold-primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

[dir="rtl"] .brand-info-list {
  text-align: right;
}

@media (max-width: 1024px) {
  .brand-info-container {
    grid-template-columns: 1fr !important;
    gap: 4rem;
  }
  .brand-info-divider {
    display: none;
  }
}

/* PRODUCT SCROLLER MARQUEE */
.product-scroller-wrapper {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: transparent;
  padding: 0.5rem 0 0;
  margin-top: 1rem;
}
.product-scroller-track {
  display: inline-block;
  animation: product-marquee 18s linear infinite;
}
.product-scroller-track img {
  height: 70px !important;
  display: inline-block !important;
  object-fit: contain;
  margin: 0 16px;
  border-radius: 10px;
  background: #ffffff;
  padding: 8px 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  vertical-align: middle;
}
.product-scroller-track:hover {
  animation-play-state: paused;
}
@keyframes product-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}




/* HERITAGE VISUAL ENHANCEMENT */
.heritage-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1500px;
}

.heritage-visual-backdrop {
  position: absolute;
  inset: 0;
  background: url('assets/images/heritage_visual.png') center/cover no-repeat;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5);
  overflow: hidden;
  border: 1px solid rgba(197,160,89,0.2);
}

.heritage-visual-backdrop::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, rgba(6,46,18,0.7) 0%, transparent 100%);
}

/* Rotating Badge */
.heritage-badge {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-badge 6s ease-in-out infinite;
}

.badge-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(197,160,89,0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-text {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: rotate-badge 20s linear infinite;
}

.badge-text svg {
  width: 100%;
  height: 100%;
  fill: var(--gold-primary);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: normal;
}

.badge-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 0 15px rgba(197,160,89,0.5));
}

/* Floating Stats Cards */
.heritage-stats-floating {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stat-mini-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 15;
  transition: transform 0.3s ease;
  pointer-events: auto;
}

.stat-mini-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--gold-primary);
}

.stat-mini-card .stat-num {
  font-size: 2.2rem;
  margin: 0;
}

.stat-mini-card .stat-label {
  font-size: 0.75rem;
  margin: 0;
}

.card-1 { bottom: 40px; left: -60px; animation: float-card 7s ease-in-out infinite; }
.card-2 { top: 60px; left: -40px; animation: float-card 8s ease-in-out infinite reverse; }

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

@keyframes float-badge {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(5deg); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 1200px) {
  .heritage-grid { gap: 4rem; }
  .card-1, .card-2 { left: 0; }
  .heritage-badge { top: 0; right: 0; width: 140px; height: 140px; }
}

@media (max-width: 1024px) {
  .heritage-visual { height: 400px; margin-top: 4rem; }
  .heritage-grid { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   ENHANCED MOBILE PROFESSIONALISM (PHASE 2 & 3)
   ========================================================================== */

@media (max-width: 768px) {
  /* Global Spacing */
  section, .section { padding: 4rem 0 !important; }
  .section-header { margin-bottom: 2.5rem !important; }
  .section-header h2 { font-size: 2.2rem !important; }
  
  /* Hero Mobile Refinement */
  .hero-title { font-size: 2.8rem !important; letter-spacing: -0.02em; line-height: 1.1; }
  .hero-actions-new { flex-direction: column; gap: 1rem; width: 100%; }
  .btn-hero-solid, .btn-hero-text { width: 100% !important; justify-content: center; padding: 1.1rem !important; }

  /* UNIQUE SECTION - 2-Column Grid */
  .unique-grid { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
  }
  .unique-item { 
    width: 100% !important;
    min-width: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important; 
    border-radius: 12px !important;
    gap: 0.8rem;
    background: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1) !important;
  }
  .unique-icon { 
    height: 40px !important; 
    width: 40px !important;
    margin: 0 auto 0.2rem !important; 
  }
  .unique-item h4 { font-size: 1rem !important; margin-bottom: 0.3rem !important; text-align: center !important; line-height: 1.2; }
  .unique-item p { font-size: 0.8rem !important; line-height: 1.4; color: rgba(255,255,255,0.7) !important; text-align: center !important; }

  /* OUR VALUES - 2-Column Grid */
  .about-values-grid { 
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
    padding: 0 1rem !important;
  }
  .about-values-grid::-webkit-scrollbar { display: none; }
  
  .av-card { 
    width: 100% !important;
    min-width: 0 !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 1.5rem 1rem !important; 
    min-height: auto !important; 
    border-radius: 12px !important;
    background: rgba(255,255,255,0.03) !important;
    backdrop-filter: blur(10px);
    gap: 0.8rem;
  }
  .av-icon-wrap { 
    height: 48px !important; 
    width: 48px !important; 
    margin: 0 auto 0.2rem !important;
    background: rgba(197,160,89,0.1);
    border-radius: 8px;
    padding: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .av-icon-wrap svg { height: 28px !important; width: 28px !important; stroke-width: 1.5; }
  .av-content-wrap { display: flex; flex-direction: column; gap: 0.2rem; align-items: center; }
  .av-card h4 { 
    font-size: 1rem !important; 
    margin: 0 !important; 
    min-height: auto !important; 
    justify-content: center !important;
    text-align: center !important;
    line-height: 1.2;
  }
  .av-card p { padding: 0 !important; font-size: 0.8rem !important; line-height: 1.4; text-align: center !important; }

  /* BRAND PRODUCTS FIX - Ensure visibility */
  #products-catalog .av-card {
    background: #fff !important;
    color: var(--dark-green) !important;
    flex-direction: column !important;
    padding: 2rem 1.5rem !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
  }
  #products-catalog .av-card img {
    max-height: 180px !important;
    width: auto !important;
    margin-bottom: 1rem !important;
    object-fit: contain !important;
  }
  #products-catalog .av-card h4, 
  #products-catalog .av-card p {
    color: var(--dark-green) !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Contact Section Refinement */
  .ct-grid { gap: 2.5rem !important; }
  .section-title { font-size: 2.3rem !important; }
  
  /* Contact Side Card Refinement ("Looks too big" Fix) */
  .ct-side-card { 
    padding: 2rem 1.5rem !important; 
    border-radius: 24px !important; 
    max-width: 100% !important;
  }
  .ct-card-logo { 
    height: 70px !important; 
    margin-bottom: 1rem !important; 
  }
  .ct-card-name { 
    font-size: 1.6rem !important; 
    margin-bottom: 0.4rem !important; 
  }
  .ct-card-tagline { 
    font-size: 0.75rem !important; 
    margin-bottom: 2rem !important; 
    letter-spacing: 0.15em !important; 
  }
  .ct-card-divider { margin-bottom: 2rem !important; }
  .card-info-row { gap: 1rem !important; margin-bottom: 1rem !important; flex-direction: column; align-items: center; }
  .card-info-row .label { width: auto !important; text-align: center !important; margin-bottom: 0.2rem; }
  .final-info-item .value, .card-link-value { font-size: 1.1rem !important; }
  
  /* Footer Refinement (Fixing oversized gaps & fonts) */
  .footer { padding: 3rem 0 2rem !important; }
  .footer-logo { height: 75px !important; margin-bottom: 1.5rem !important; }
  .footer-grid { text-align: center; gap: 2rem !important; }
  .footer h4 { font-size: 1.2rem !important; margin-bottom: 1rem !important; }
  .footer p { font-size: 0.95rem !important; margin-bottom: 0.5rem !important; }
  .footer ul li a { margin-bottom: 0.5rem !important; font-size: 0.95rem !important; }
  .footer-bottom { padding-top: 2rem !important; margin-top: 1.5rem; }
  .footer-logo { align-items: center; }
  .footer-links ul { align-items: center; }
  .footer-contact { align-items: center; }

  /* Services Page Mobile Polish */
  .svc-cards-section { padding: 3rem 0 !important; }
  .svc-grid-5 { gap: 1.5rem !important; }
  .svc-card { 
    padding: 2.5rem 1.5rem !important; 
    min-height: auto !important; 
    border-radius: 12px !important;
  }
  .svc-card-icon { height: 60px !important; width: 60px !important; margin-bottom: 2rem !important; }
  .svc-card .hero-title { font-size: 2.2rem !important; margin-bottom: 1.5rem !important; }
  .svc-card-list li { font-size: 0.95rem !important; margin-bottom: 0.8rem !important; }

  /* Contact Page Mobile Polish */
  .offices-grid { gap: 1.5rem !important; margin-top: 2rem !important; }
  .office-card {
    padding: 2.5rem 1.5rem !important;
    gap: 1.8rem !important;
    min-height: auto !important;
    border-radius: 16px !important;
  }
  .office-watermark { font-size: 5rem !important; top: -10px !important; right: -10px !important; left: auto !important; }
  [dir="rtl"] .office-watermark { right: auto !important; left: -10px !important; }
  .office-location-icon { width: 50px !important; height: 50px !important; }
  .office-card h4 { font-size: 1.5rem !important; }

  /* Mobile Nav Fix */
  .nav-links { -webkit-backdrop-filter: blur(15px); background: rgb(6, 46, 18) !important; }
  /* Contact Page Form Refinement (Fixing horizontal overflow) */
  .ct-form-panel { padding: 2rem 1.5rem !important; border-radius: 20px !important; }
  .form-row { grid-template-columns: 1fr !important; gap: 1rem !important; }
  .form-title-wrap h2 { font-size: 2rem !important; margin-bottom: 0.5rem !important; }
  .ct-info-panel { padding: 2.5rem 1.5rem !important; border-radius: 20px !important; }
  .ct-main .ct-grid { gap: 2rem !important; }}

/* ══════════════════════════════
   FLOATING WHATSAPP BUTTON
══════════════════════════════ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFF !important;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  animation: wa-pulse 2s infinite;
}

.ai-buddy-float-pill {
  position: fixed;
  bottom: 105px; /* Above WhatsApp (30px bottom + 60px height + 15px gap) */
  right: 30px; /* Aligned with WhatsApp */
  height: 48px;
  padding: 0 20px;
  background: var(--gold-primary);
  color: #062e12;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(197, 160, 89, 0.4);
  z-index: 1500;
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.ai-buddy-float-pill:hover {
  transform: translateY(-5px);
  background: #fff;
  box-shadow: 0 15px 35px rgba(197, 160, 89, 0.6);
}

.ai-buddy-float-pill span {
  font-size: 0.85rem;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #FFF;
}

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

@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 20px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .wa-float-label {
    display: none !important;
  }
  .ai-buddy-float-pill {
    right: 20px;
    bottom: 90px;
    height: 42px;
    padding: 0 15px;
  }
  .ai-buddy-float-pill span {
    font-size: 0.75rem;
  }
}

/* ══════════════════════════════
   AI CHAT WINDOW
══════════════════════════════ */
.ai-chat-window {
  position: fixed;
  bottom: 105px; /* Aligned with the pill */
  right: 30px; /* Aligned with the pill */
  width: 380px;
  max-height: 550px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.ai-chat-window.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.ai-chat-header {
  background: var(--dark-green);
  color: #fff;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ai-avatar {
  width: 45px;
  height: 45px;
  background: var(--gold-primary);
  border-radius: 50%;
  position: relative;
}

.ai-avatar::after {
  content: 'A';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  color: #062e12;
}

.ai-header-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.ai-status {
  font-size: 0.75rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 5px;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
  display: inline-block;
  animation: wa-pulse 2s infinite;
}

.ai-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.ai-close-btn:hover {
  opacity: 1;
}

.ai-chat-body {
  flex: 1;
  padding: 1.5rem;
  background: #f8f9fa;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-height: 300px;
}

.ai-msg {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.ai-msg-bot {
  background: #fff;
  color: var(--text-dark);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.ai-chat-footer {
  padding: 1.2rem;
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.ai-chat-footer textarea {
  flex: 1;
  border: 1px solid #e1e4e8;
  border-radius: 12px;
  padding: 12px;
  font-size: 0.95rem;
  resize: none;
  height: 45px;
  max-height: 120px;
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}

.ai-chat-footer textarea:focus {
  border-color: var(--gold-primary);
}

#aiSendBtn {
  background: var(--dark-green);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

#aiSendBtn:hover {
  background: var(--gold-primary);
  color: #062e12;
  transform: translateY(-2px);
}

#aiSendBtn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 480px) {
  .ai-chat-window {
    width: calc(100% - 40px);
    bottom: 20px;
    right: 20px;
    height: 70vh;
  }
}

.wa-float-label {
  position: absolute;
  right: 100%;
  margin-right: 15px;
  white-space: nowrap;
  background: rgba(6, 46, 18, 0.85); /* Dark green glassmorphism */
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.whatsapp-float:hover .wa-float-label {
  opacity: 1;
  transform: translateX(0);
}

/* Initially visible label with pulse for attention on brand pages */
.whatsapp-float .wa-float-label {
  opacity: 0.9;
  transform: translateX(0);
}

/* ══════════════════════════════
   PROFESSIONAL WHATSAPP CTAS
══════════════════════════════ */
.btn-wa-professional {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: #25D366 !important; /* WhatsApp Green for high-end contrast */
  border: 1px solid #25D366;
  padding: 0.65rem 1.6rem;
  border-radius: 50px; /* Match explore-btn */
  font-family: var(--font-header);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  text-decoration: none;
  backdrop-filter: blur(8px);
}

.btn-wa-professional:hover {
  background: #25D366;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-wa-professional svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Card-level WhatsApp trigger - Refined */
.wa-card-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-primary) !important; /* Gold instead of green for brand consistency */
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: all 0.2s ease;
  width: fit-content;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.wa-card-trigger:hover {
  border-color: var(--gold-primary);
  transform: translateX(3px);
}

.wa-card-trigger svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.verified-about-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--gold-primary);
  color: #062e12;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
}



