/* ============================================
   Zarabi Carpets House Pvt Ltd
   Premium Luxury Carpet Brand
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #06272E;
  --primary-soft: #0E3A43;
  --secondary: #2ED8CF;
  --accent: #2ED8CF;
  --accent-deep: #20B5AC;
  --cream: #F7F2E9;
  --cream-soft: #FBF8F2;
  --beige: #EFE7D8;
  --dark: #06272E;
  --ink: #0A1A1E;
  --light: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-600: #6C757D;
  --gray-800: #343A40;
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow-sm: 0 2px 8px rgba(6, 39, 46, 0.08);
  --shadow-md: 0 8px 30px rgba(6, 39, 46, 0.12);
  --shadow-lg: 0 20px 60px rgba(6, 39, 46, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
  padding: 100px 0;
}

.section-padding-sm {
  padding: 70px 0;
}

.bg-primary-dark {
  background: var(--primary);
}

.bg-dark-custom {
  background: var(--dark);
}

.bg-gray {
  background: var(--gray-100);
}

.text-accent {
  color: var(--accent) !important;
}

.text-primary-custom {
  color: var(--primary) !important;
}

.gradient-overlay {
  position: relative;
}

.gradient-overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 39, 46, 0.92) 0%, rgba(6, 39, 46, 0.72) 100%);
  z-index: 1;
}

.gradient-overlay > * {
  position: relative;
  z-index: 2;
}

/* ---------- Section Title ---------- */
.section-title {
  margin-bottom: 60px;
}

.section-title .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 15px;
  position: relative;
  padding-left: 50px;
}

.section-title .subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 35px;
  height: 2px;
  background: var(--accent);
  transform: translateY(-50%);
}

.section-title h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 17px;
  color: var(--gray-600);
  max-width: 600px;
}

.section-title.text-center .subtitle {
  padding-left: 0;
}

.section-title.text-center .subtitle::before {
  display: none;
}

.section-title.text-center p {
  margin: 0 auto;
}

.section-title.light h2,
.section-title.light p {
  color: var(--light);
}

.section-title.light .subtitle {
  color: var(--accent);
}

/* ---------- Buttons ---------- */
.btn-zarabi {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  color: var(--light);
  background: var(--primary);
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
}

.btn-zarabi:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

.btn-zarabi-outline {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
}

.btn-zarabi-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

.btn-zarabi-dark {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  color: var(--light);
  background: var(--primary);
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
}

.btn-zarabi-dark:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--primary);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-zarabi {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  padding: 18px 0;
  transition: var(--transition);
  background: rgba(247, 242, 233, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(6, 39, 46, 0.06);
}

.navbar-zarabi.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(6, 39, 46, 0.08);
  border-bottom-color: transparent;
}

.navbar-zarabi .navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar-zarabi .navbar-brand img {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.navbar-zarabi.scrolled .navbar-brand img {
  height: 40px;
}

.navbar-zarabi .nav-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--primary);
  padding: 8px 18px !important;
  transition: var(--transition);
}

.navbar-zarabi .nav-link:hover,
.navbar-zarabi .nav-link.active {
  color: var(--accent-deep);
}

.navbar-zarabi .navbar-toggler {
  border: none;
  padding: 0;
  outline: none;
  box-shadow: none;
}

.navbar-zarabi .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2306272E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Page header for inner pages */
.navbar-zarabi.inner-nav {
  background: rgba(255, 255, 255, 0.98);
  padding: 12px 0;
  border-bottom: 1px solid rgba(6, 39, 46, 0.08);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 39, 46, 0.88) 0%, rgba(6, 39, 46, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 850px;
  padding: 0 20px;
}

.hero-content .tagline {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 25px;
  display: inline-block;
}

.hero-content h1 {
  font-size: 68px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 25px;
  line-height: 1.15;
}

.hero-content p {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.hero-content .btn-group-custom {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  margin: 0 auto 10px;
  position: relative;
}

.scroll-indicator .mouse .wheel {
  width: 4px;
  height: 8px;
  background: var(--accent);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

.scroll-indicator span {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PAGE BANNER (Inner Pages)
   ============================================ */
.page-banner {
  position: relative;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.page-banner .hero-bg::after {
  background: linear-gradient(135deg, rgba(6, 39, 46, 0.92) 0%, rgba(6, 39, 46, 0.78) 100%);
}

.page-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-banner-content h1 {
  font-size: 52px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 15px;
}

.page-banner-content .breadcrumb {
  justify-content: center;
  background: none;
  padding: 0;
  margin: 0;
}

.page-banner-content .breadcrumb-item,
.page-banner-content .breadcrumb-item a {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.page-banner-content .breadcrumb-item a:hover {
  color: var(--accent);
}

.page-banner-content .breadcrumb-item.active {
  color: var(--accent);
}

.page-banner-content .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
  content: "/";
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section .about-image {
  position: relative;
  overflow: hidden;
}

.about-section .about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-section .about-image .experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent);
  color: var(--dark);
  padding: 25px;
  text-align: center;
  min-width: 140px;
}

.about-section .about-image .experience-badge .number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  display: block;
}

.about-section .about-image .experience-badge .text {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-section .about-text h3 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-section .about-text p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 16px;
}

.about-section .about-text .features-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 35px;
}

.about-section .about-text .features-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--gray-800);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-section .about-text .features-list li i {
  color: var(--accent);
  font-size: 18px;
}

/* ============================================
   SERVICES / WHY ZARABI SECTION
   ============================================ */
.why-zarabi-section {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  position: relative;
}

.service-card {
  background: var(--light);
  padding: 45px 30px;
  text-align: center;
  border: 1px solid rgba(6, 39, 46, 0.08);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s ease;
}

.service-card:hover {
  border-color: rgba(46, 216, 207, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(6, 39, 46, 0.12);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon-box {
  width: 88px;
  height: 88px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(46, 216, 207, 0.12) 0%, rgba(6, 39, 46, 0.08) 100%);
  color: var(--primary);
  border: 1px solid rgba(46, 216, 207, 0.25);
  border-radius: 50%;
  transition: var(--transition);
}

.service-card .icon-box svg {
  width: 44px;
  height: 44px;
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--accent);
  transform: rotate(-5deg) scale(1.05);
}

.service-card:hover .icon-box svg {
  transform: rotate(5deg);
}

.service-card h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  cursor: pointer;
}

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

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

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 39, 46, 0.92) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

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

.gallery-item .gallery-overlay h5 {
  color: var(--light);
  font-size: 18px;
  font-weight: 600;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay h5 {
  transform: translateY(0);
}

.gallery-item .gallery-overlay span {
  color: var(--accent);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Gallery Filter */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.gallery-filters .filter-btn {
  padding: 8px 25px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid var(--gray-300);
  background: transparent;
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filters .filter-btn:hover,
.gallery-filters .filter-btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: var(--light);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-choose-card {
  text-align: center;
  padding: 40px 25px;
  transition: var(--transition);
}

.why-choose-card .icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 20px;
  transition: var(--transition);
}

.why-choose-card:hover .icon {
  transform: scale(1.15);
}

.why-choose-card h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--light);
}

.why-choose-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(6, 39, 46, 0.94) 0%, rgba(6, 39, 46, 0.82) 100%);
}

.cta-section > * {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: 44px;
  color: var(--light);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 35px;
}

/* ============================================
   STATS
   ============================================ */
.stat-item {
  text-align: center;
  padding: 30px 15px;
}

.stat-item .number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   TEAM / MANAGEMENT
   ============================================ */
.team-card {
  text-align: center;
  background: var(--light);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  overflow: hidden;
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.team-card .team-image {
  position: relative;
  overflow: hidden;
  height: 350px;
}

.team-card .team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-card .team-info {
  padding: 25px 20px;
}

.team-card .team-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.team-card .team-info .role {
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.team-card .team-info p {
  font-size: 14px;
  color: var(--gray-600);
}

.team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20px 25px;
}

.team-card .social-links a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  font-size: 14px;
  transition: var(--transition);
}

.team-card .social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

/* ============================================
   TIMELINE (History)
   ============================================ */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-300);
}

.timeline-item {
  position: relative;
  margin-bottom: 60px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-item .timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 18px;
  height: 18px;
  background: var(--accent);
  border: 4px solid var(--light);
  box-shadow: 0 0 0 3px var(--accent);
  border-radius: 50%;
  z-index: 2;
  top: 30px;
}

.timeline-item .timeline-content {
  width: 45%;
  background: var(--light);
  padding: 35px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.timeline-item .timeline-content:hover {
  box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
}

.timeline-item .timeline-content .year {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}

.timeline-item .timeline-content h4 {
  font-size: 22px;
  margin-bottom: 12px;
}

.timeline-item .timeline-content p {
  color: var(--gray-600);
  font-size: 15px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 24px;
  background: var(--light);
  border: 1px solid rgba(6, 39, 46, 0.08);
  transition: var(--transition);
  margin-bottom: 0;
  height: 100%;
}

.contact-info-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(6, 39, 46, 0.08);
  transform: translateY(-4px);
}

.contact-info-card .icon-box {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), #0E3A43);
  color: var(--accent);
  font-size: 20px;
  border-radius: 50%;
  transition: var(--transition);
}

.contact-info-card:hover .icon-box {
  background: var(--accent);
  color: var(--primary);
  transform: rotate(-6deg);
}

.contact-info-card h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.contact-info-card p {
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.contact-info-card p a {
  color: var(--gray-800);
  font-weight: 500;
}

.contact-info-card p a:hover {
  color: var(--accent-deep);
}

/* Contact Alert */
.contact-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
  border-left: 4px solid;
  animation: alertSlide 0.3s ease;
}

.contact-alert i {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-alert.alert-success {
  background: #E8F8F6;
  color: #0E3A43;
  border-color: var(--accent-deep);
}

.contact-alert.alert-error {
  background: #FDECEC;
  color: #8B1F1F;
  border-color: #D9534F;
}

@keyframes alertSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Contact form labels & errors */
.contact-form .form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form .form-label .req {
  color: #D9534F;
  margin-left: 2px;
}

.contact-form .form-error {
  display: block;
  min-height: 18px;
  margin-top: 4px;
  font-size: 12px;
  color: #D9534F;
  font-weight: 500;
}

.contact-form .form-control.is-invalid {
  border-color: #D9534F !important;
  background: #FDF6F6;
}

/* Submit button loading state */
#cfSubmit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  gap: 8px;
}

#cfSubmit:disabled {
  opacity: 0.85;
  cursor: not-allowed;
}

.spinner-inline {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 4px;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
}

/* Quick Action Buttons */
.quick-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 12px;
  background: var(--light);
  border: 1px solid rgba(6, 39, 46, 0.1);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
}

.quick-btn i {
  font-size: 18px;
  color: var(--accent-deep);
  transition: var(--transition);
}

.quick-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 39, 46, 0.18);
}

.quick-btn:hover i {
  color: var(--accent);
}

.quick-btn.whatsapp i {
  color: #25D366;
}

.quick-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.quick-btn.whatsapp:hover i {
  color: #fff;
}

.contact-form .form-control {
  border: 1px solid var(--gray-300);
  border-radius: 0;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-800);
  background: var(--light);
  transition: var(--transition);
  margin-bottom: 0;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(46, 216, 207, 0.18);
  outline: none;
}

@media (max-width: 575.98px) {
  .quick-actions {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   ABOUT PAGE — Mission / Approach blocks
   ============================================ */
.about-block-section {
  background: var(--cream-soft);
  position: relative;
}

.about-approach {
  background: var(--light);
  border-top: 1px solid rgba(6, 39, 46, 0.06);
}

.about-block-section .section-title.mb-0,
.about-approach .section-title.mb-0 {
  margin-bottom: 0;
}

.lead-copy {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.85;
  color: var(--gray-800);
  margin-bottom: 0;
}

.lead-copy strong {
  color: var(--primary);
  font-weight: 600;
}

.approach-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream-soft);
  border-left: 3px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  width: 100%;
  transition: var(--transition);
}

.approach-tag i {
  color: var(--accent-deep);
  font-size: 18px;
}

.approach-tag:hover {
  background: var(--primary);
  color: var(--light);
  border-left-color: var(--accent);
}

.approach-tag:hover i {
  color: var(--accent);
}

/* ============================================
   BRANCH CARD (About — branch network)
   ============================================ */
.bg-cream-section {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  position: relative;
}

.branch-card {
  background: var(--light);
  border: 1px solid rgba(6, 39, 46, 0.08);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.branch-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6, 39, 46, 0.14);
}

.branch-card .branch-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.branch-card .branch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.branch-card .branch-info {
  padding: 22px 22px 26px;
}

.branch-card .branch-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 8px;
}

.branch-card h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.branch-card p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 0;
}

/* ============================================
   PAGE BANNER — light theme refinements
   ============================================ */
.page-banner {
  margin-top: 0;
  padding-top: 84px;
  height: auto;
  min-height: 420px;
}

.page-banner .hero-bg::after {
  background: linear-gradient(135deg, rgba(6, 39, 46, 0.78) 0%, rgba(6, 39, 46, 0.5) 100%);
}

/* ============================================
   TIMELINE — image support
   ============================================ */
.timeline-item .timeline-content .timeline-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-top: 18px;
  border: 1px solid rgba(6, 39, 46, 0.08);
}

/* ============================================
   PRODUCT DETAIL CARD (Services / Products)
   ============================================ */
.product-detail-card {
  background: var(--light);
  border: 1px solid rgba(6, 39, 46, 0.06);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-detail-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(6, 39, 46, 0.12);
}

.product-detail-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-detail-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
}

.product-detail-info {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-detail-info h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.product-detail-info > p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 14px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-800);
  padding: 4px 0;
}

.product-features li i {
  color: var(--accent-deep);
  font-size: 16px;
  flex-shrink: 0;
}

.product-detail-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: var(--transition);
}

.product-detail-cta:hover {
  color: var(--accent-deep);
  gap: 12px;
}

/* ============================================
   PROCESS STEP CARDS
   ============================================ */
.process-step {
  text-align: center;
  padding: 30px 22px;
  background: var(--cream-soft);
  border: 1px solid rgba(6, 39, 46, 0.06);
  position: relative;
  height: 100%;
  transition: var(--transition);
}

.process-step:hover {
  background: var(--light);
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(6, 39, 46, 0.08);
}

.process-step .process-num {
  width: 64px;
  height: 64px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 4px solid var(--cream-soft);
  box-shadow: 0 0 0 1px rgba(6, 39, 46, 0.1);
  transition: var(--transition);
}

.process-step:hover .process-num {
  background: var(--accent);
  color: var(--primary);
}

.process-step h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Banner sub-text used on contact/services banner */
.page-banner-content .banner-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 8px auto 16px;
  line-height: 1.6;
}

/* ============================================
   CONTACT PAGE — refined design
   ============================================ */
.contact-banner {
  min-height: 460px;
}

.contact-banner .banner-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 8px auto 18px;
}

/* Floating contact cards overlap banner */
.contact-cards-row {
  margin-top: -90px;
  position: relative;
  z-index: 5;
  padding: 0 0 60px;
}

.contact-cards-row .contact-info-card {
  background: var(--light);
  box-shadow: 0 14px 40px rgba(6, 39, 46, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
  border-top: 3px solid var(--accent);
}

.contact-info-card .muted {
  font-size: 12px;
  color: var(--gray-600);
}

/* Main section bg */
.contact-main-section {
  background: linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  padding-top: 0;
}

/* Contact form card */
.contact-form-card {
  background: var(--light);
  padding: 44px 40px;
  border: 1px solid rgba(6, 39, 46, 0.06);
  box-shadow: 0 12px 40px rgba(6, 39, 46, 0.06);
  position: relative;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent);
}

.contact-form-card__header {
  margin-bottom: 28px;
}

.contact-form-card__header .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 10px;
}

.contact-form-card__header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.contact-form-card__header p {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Input with icon */
.contact-form .input-with-icon {
  position: relative;
}

.contact-form .input-with-icon i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: var(--accent-deep);
  pointer-events: none;
  z-index: 2;
}

.contact-form .input-with-icon .form-control {
  padding-left: 44px;
}

/* Override base form-control for the new card */
.contact-form .form-control {
  border: 1px solid rgba(6, 39, 46, 0.14);
  background: var(--cream-soft);
  height: 48px;
  padding: 12px 16px;
  font-size: 14px;
}

.contact-form textarea.form-control {
  height: auto;
  min-height: 140px;
  resize: vertical;
  padding-top: 14px;
}

.contact-form .form-control:focus {
  border-color: var(--accent);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(46, 216, 207, 0.18);
}

.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path fill='%2306272E' d='M6 8.5L1.5 4h9z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
}

.contact-form .form-label {
  font-size: 11px;
  letter-spacing: 1.2px;
}

/* Submit row */
.form-submit-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-foot-note {
  font-size: 12px;
  color: var(--gray-600);
}

#cfSubmit .btn-text i {
  margin-right: 6px;
}

/* Side panel */
.contact-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* WhatsApp big card */
.contact-whatsapp-card {
  display: flex;
  gap: 18px;
  padding: 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: var(--light);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.contact-whatsapp-card::after {
  content: '';
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.contact-whatsapp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.35);
  color: var(--light);
}

.contact-whatsapp-card__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
  z-index: 2;
}

.contact-whatsapp-card__body {
  position: relative;
  z-index: 2;
  flex: 1;
}

.contact-whatsapp-card__body .muted {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 4px;
}

.contact-whatsapp-card__body h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 6px;
}

.contact-whatsapp-card__body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
  margin-bottom: 10px;
}

.contact-whatsapp-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--light);
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 4px;
}

/* Map card */
.contact-map-card {
  background: var(--light);
  border: 1px solid rgba(6, 39, 46, 0.06);
  box-shadow: 0 12px 40px rgba(6, 39, 46, 0.05);
}

.contact-map-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(6, 39, 46, 0.06);
  flex-wrap: wrap;
}

.contact-map-card__head .subtitle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 4px;
}

.contact-map-card__head h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0;
  line-height: 1.4;
}

.contact-map-card .map-container {
  height: 280px;
  border: none;
}

.map-direction-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(46, 216, 207, 0.08);
  padding: 8px 14px;
  white-space: nowrap;
  transition: var(--transition);
}

.map-direction-link:hover {
  background: var(--primary);
  color: var(--accent);
}

/* Branch Strip */
.contact-branch-strip {
  background: var(--primary);
  color: var(--light);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-branch-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'><g fill='none' stroke='%232ED8CF' stroke-opacity='0.06' stroke-width='1'><circle cx='80' cy='80' r='40'/><circle cx='80' cy='80' r='60'/><path d='M80 0v160M0 80h160'/></g></svg>");
  background-size: 200px 200px;
  pointer-events: none;
}

.contact-branch-strip > * { position: relative; z-index: 1; }

.contact-branch-strip .subtitle {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-branch-strip h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 12px;
}

.contact-branch-strip p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  margin-bottom: 0;
}

.branch-strip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.branch-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(46, 216, 207, 0.2);
  color: var(--light);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.branch-pill i {
  color: var(--accent);
}

.branch-pill:hover {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

.branch-pill:hover i {
  color: var(--primary);
}

/* Floating WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 95px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulseRing 2.5s ease-out infinite;
}

.float-whatsapp:hover {
  transform: scale(1.08);
  color: #fff;
}

@keyframes pulseRing {
  0%   { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70%  { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Contact responsive */
@media (max-width: 991.98px) {
  .contact-cards-row {
    margin-top: -50px;
    padding-bottom: 40px;
  }
  .contact-form-card {
    padding: 32px 26px;
  }
  .contact-form-card__header h2 {
    font-size: 26px;
  }
  .contact-branch-strip {
    padding: 50px 0;
  }
  .contact-branch-strip h3 {
    font-size: 24px;
  }
}

@media (max-width: 575.98px) {
  .contact-cards-row {
    margin-top: -30px;
  }
  .contact-form-card {
    padding: 26px 20px;
  }
  .contact-whatsapp-card {
    padding: 20px;
  }
  .contact-whatsapp-card__body h4 {
    font-size: 18px;
  }
}

.contact-form textarea.form-control {
  min-height: 160px;
  resize: vertical;
}

.contact-form .form-control::placeholder {
  color: var(--gray-600);
}

/* Map Container */
.map-container {
  width: 100%;
  height: 400px;
  border: 1px solid var(--gray-200);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  padding-top: 80px;
}

.footer-top {
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-brand {
  display: inline-block;
  margin-bottom: 20px;
}

.footer .footer-brand img {
  height: 50px;
  width: auto;
}

.footer p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.8;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer .footer-links {
  list-style: none;
  padding: 0;
}

.footer .footer-links li {
  margin-bottom: 12px;
}

.footer .footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer .footer-links a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer .footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer .footer-contact li i {
  color: var(--accent);
  margin-top: 4px;
  font-size: 16px;
}

.footer .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.footer .social-icons a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: var(--transition);
}

.footer .social-icons a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.footer-bottom {
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--light);
  font-size: 20px;
  border: none;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  color: var(--dark);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader .spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============================================
   PRODUCT CATEGORY CARDS
   ============================================ */
.product-category-card {
  display: block;
  background: var(--light);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  text-decoration: none;
}

.product-category-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.product-category-card .category-image {
  overflow: hidden;
  height: 240px;
}

.product-category-card .category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-category-card:hover .category-image img {
  transform: scale(1.08);
}

.product-category-card .category-info {
  padding: 25px;
}

.product-category-card .category-info h4 {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.product-category-card .category-info p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 15px;
  line-height: 1.6;
}

.product-category-card .category-link {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.product-category-card:hover .category-link {
  gap: 12px;
  color: var(--primary);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--light);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.product-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.product-card .product-image {
  position: relative;
  overflow: hidden;
  height: 280px;
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.product-card .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--light);
  z-index: 2;
}

.product-card .product-badge.new {
  background: var(--accent);
  color: var(--dark);
}

.product-card .product-badge.eco {
  background: #2d7a3a;
  color: var(--light);
}

.product-card .product-actions {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 2;
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateY(0);
}

.product-card .btn-quick {
  display: block;
  text-align: center;
  padding: 10px;
  background: var(--accent);
  color: var(--dark);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.product-card .btn-quick:hover {
  background: var(--light);
  color: var(--dark);
}

.product-card .product-info {
  padding: 20px;
}

.product-card .product-category {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.product-card .product-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.product-card .product-material {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.product-card .product-sizes {
  font-size: 12px;
  color: var(--gray-600);
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

/* ============================================
   ROOM CARDS (Shop by Room)
   ============================================ */
.room-card {
  position: relative;
  overflow: hidden;
  height: 320px;
  cursor: pointer;
}

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

.room-card:hover img {
  transform: scale(1.08);
}

.room-card .room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px 25px;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 100%);
  transition: var(--transition);
}

.room-card .room-overlay h5 {
  font-size: 22px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 5px;
}

.room-card .room-overlay span {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.room-card:hover .room-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   MANAGEMENT / DIRECTOR CARDS
   ============================================ */
.director-card {
  display: flex;
  background: var(--light);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.director-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.director-card .director-photo {
  width: 180px;
  min-width: 180px;
  overflow: hidden;
}

.director-card .director-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  min-height: 240px;
  transition: var(--transition);
}

.director-card:hover .director-photo img {
  transform: scale(1.04);
}

.director-card .director-info {
  padding: 25px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.director-card .director-role {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}

.director-card .director-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.director-card .director-info p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 0;
}

.director-card .director-social {
  display: flex;
  gap: 8px;
  margin-top: 15px;
}

.director-card .director-social a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-300);
  color: var(--gray-600);
  font-size: 14px;
  transition: var(--transition);
}

.director-card .director-social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--light);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 56px;
  }
  .section-title h2 {
    font-size: 36px;
  }
}

@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .page-banner {
    height: 380px;
  }

  .page-banner-content h1 {
    font-size: 40px;
  }

  .navbar-zarabi .navbar-collapse {
    background: rgba(10, 10, 10, 0.98);
    padding: 20px 25px;
    margin-top: 15px;
  }

  .timeline::before {
    left: 30px;
  }

  .timeline-item .timeline-dot {
    left: 30px;
  }

  .timeline-item .timeline-content,
  .timeline-item:nth-child(odd) .timeline-content {
    width: calc(100% - 70px);
    margin-left: 70px;
  }

  .about-section .about-image img {
    height: 400px;
  }

  .cta-section h2 {
    font-size: 36px;
  }

  .director-card {
    flex-direction: column;
  }

  .director-card .director-photo {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }

  .director-card .director-photo img {
    min-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 60px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .hero-section {
    min-height: 600px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .page-banner {
    height: 320px;
  }

  .page-banner-content h1 {
    font-size: 32px;
  }

  .stat-item .number {
    font-size: 40px;
  }

  .gallery-item img {
    height: 250px;
  }

  .product-card .product-image {
    height: 220px;
  }

  .room-card {
    height: 250px;
  }

  .about-section .about-image img {
    height: 300px;
    margin-bottom: 30px;
  }

  .cta-section {
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 28px;
  }

  .footer {
    padding-top: 60px;
  }

  .team-card .team-image {
    height: 280px;
  }
}

@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .btn-zarabi,
  .btn-zarabi-outline,
  .btn-zarabi-dark {
    padding: 10px 24px;
    font-size: 11px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .timeline-item .timeline-content {
    padding: 25px;
  }
}

/* ============================================================
   ZARABI PREMIUM V2 — Catalogue-inspired luxury design system
   Aligns the site with the printed Zarabi catalogue:
   • Elegant serif headlines (Cormorant Garamond)
   • Deep teal #06272E + cream + turquoise #2ED8CF accents
   • Generous whitespace, sharp grids, large product photography
   ============================================================ */

:root {
  --zb-primary: #06272E;
  --zb-primary-2: #0A3038;
  --zb-teal: #2ED8CF;
  --zb-teal-2: #1FB5AC;
  --zb-cream: #F7F2E9;
  --zb-cream-2: #FBF8F2;
  --zb-ink: #0A1A1E;
  --zb-line: rgba(6,39,46,.08);
  --zb-shadow-elev: 0 30px 80px -30px rgba(6,39,46,.35);
  --zb-radius: 4px;
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
}

body { font-feature-settings: 'liga' 1, 'kern' 1; }

/* ---------- Premium typography helpers ---------- */
.zb-serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.01em; }
.zb-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 4px; text-transform: uppercase;
  color: var(--zb-teal-2);
}
.zb-eyebrow::before {
  content: ''; width: 36px; height: 1px; background: var(--zb-teal-2);
}
.zb-eyebrow.is-center::before { display: none; }
.zb-eyebrow.is-light { color: var(--zb-teal); }
.zb-eyebrow.is-light::before { background: var(--zb-teal); }
.zb-display {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(34px, 5.2vw, 64px); line-height: 1.05;
  letter-spacing: -.02em; color: var(--zb-primary);
}
.zb-display em {
  font-style: italic; font-weight: 500; color: var(--zb-teal-2);
}
.zb-display.is-light { color: #fff; }
.zb-display.is-light em { color: var(--zb-teal); }
.zb-headline {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.1;
  letter-spacing: -.015em; color: var(--zb-primary);
}
.zb-lede {
  font-family: 'Inter', sans-serif; font-size: 17px;
  color: #4a5a5f; line-height: 1.75;
}
.zb-section { padding: clamp(70px, 9vw, 120px) 0; }
.zb-section--tight { padding: clamp(50px, 6vw, 80px) 0; }
.zb-section--ink { background: var(--zb-primary); color: #d8e6e7; }
.zb-section--ink .zb-display,
.zb-section--ink .zb-headline { color: #fff; }
.zb-section--cream { background: var(--zb-cream); }

.zb-divider {
  width: 64px; height: 2px; background: var(--zb-teal-2);
  display: inline-block; margin: 18px 0;
}
.zb-divider.is-light { background: var(--zb-teal); }

/* ---------- Premium pill — "Imported Collection From [Country]" ---------- */
.zb-import-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  background: var(--zb-teal); color: var(--zb-primary);
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 8px 18px;
}
.zb-import-pill .flag {
  display: inline-block; font-size: 16px; line-height: 1;
}
.zb-import-pill.is-dark {
  background: var(--zb-primary); color: var(--zb-teal);
}

/* ---------- Feature trio (Premium Quality / Soft / Long Lasting) ---------- */
.zb-features {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px; margin-top: 28px;
}
.zb-features__item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
}
.zb-features__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(46,216,207,.12); color: var(--zb-teal-2);
  font-size: 24px;
}
.zb-features__item.is-on-dark .zb-features__icon {
  background: rgba(46,216,207,.18); color: var(--zb-teal);
}
.zb-features__label {
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; color: var(--zb-primary); letter-spacing: .8px;
  text-transform: capitalize; max-width: 9em;
}
.zb-features__item.is-on-dark .zb-features__label { color: #fff; }

/* ============================================================
   PREMIUM HERO — Editorial home banner
   ============================================================ */
.zb-hero {
  position: relative; min-height: 100vh; overflow: hidden;
  background: var(--zb-primary); color: #fff;
  display: flex; align-items: stretch;
}
.zb-hero__bg { position: absolute; inset: 0; z-index: 0; }
.zb-hero__bg .slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1.2s ease, transform 8s ease;
}
.zb-hero__bg .slide.is-active {
  opacity: 1; transform: scale(1);
}
.zb-hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,39,46,.85) 0%, rgba(6,39,46,.55) 45%, rgba(6,39,46,.25) 75%, rgba(6,39,46,.1) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.55) 100%);
  z-index: 1;
}
.zb-hero__inner {
  position: relative; z-index: 2;
  width: 100%; padding: 140px 0 80px;
  display: grid; grid-template-columns: 1fr; align-items: end;
}
.zb-hero__content { max-width: 720px; }
.zb-hero__content .zb-eyebrow { color: var(--zb-teal); }
.zb-hero__content .zb-eyebrow::before { background: var(--zb-teal); }
.zb-hero__content h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(42px, 7vw, 92px); line-height: 1; letter-spacing: -.02em;
  margin: 18px 0 22px; color: #fff;
}
.zb-hero__content h1 em {
  font-style: italic; font-weight: 500; color: var(--zb-teal);
}
.zb-hero__content p {
  font-size: clamp(15px, 1.2vw, 19px); line-height: 1.7;
  max-width: 560px; color: rgba(255,255,255,.82);
}
.zb-hero__ctas { margin-top: 36px; display: flex; gap: 14px; flex-wrap: wrap; }
.zb-btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 18px 32px; border: 1px solid transparent;
  transition: all .35s cubic-bezier(.4,0,.2,1); cursor: pointer;
}
.zb-btn--solid { background: var(--zb-teal); color: var(--zb-primary); border-color: var(--zb-teal); }
.zb-btn--solid:hover { background: #fff; border-color: #fff; color: var(--zb-primary); }
.zb-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.zb-btn--ghost:hover { background: #fff; color: var(--zb-primary); border-color: #fff; }
.zb-btn--dark { background: var(--zb-primary); color: #fff; border-color: var(--zb-primary); }
.zb-btn--dark:hover { background: var(--zb-teal); border-color: var(--zb-teal); color: var(--zb-primary); }
.zb-btn--line { background: transparent; color: var(--zb-primary); border-color: var(--zb-primary); }
.zb-btn--line:hover { background: var(--zb-primary); color: #fff; }

/* Hero bottom strip */
.zb-hero__strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3;
  padding: 22px 0; border-top: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(6,39,46,0), rgba(6,39,46,.55));
}
.zb-hero__thumbs {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
}
.zb-hero__thumb {
  display: flex; align-items: center; gap: 14px;
  background: transparent; border: 0; cursor: pointer; padding: 6px 10px;
  color: rgba(255,255,255,.55); transition: color .3s;
}
.zb-hero__thumb:hover, .zb-hero__thumb.is-active { color: #fff; }
.zb-hero__thumb .num {
  font-family: var(--font-serif); font-size: 22px;
  font-weight: 500; color: inherit;
}
.zb-hero__thumb .lbl {
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: inherit; line-height: 1.4; text-align: left;
}
.zb-hero__thumb .lbl small {
  display: block; font-size: 10px; opacity: .6;
  letter-spacing: 1.5px; font-weight: 500;
}
.zb-hero__thumb .bar {
  width: 60px; height: 1px; background: rgba(255,255,255,.25);
  position: relative; overflow: hidden;
}
.zb-hero__thumb.is-active .bar::after {
  content: ''; position: absolute; left: 0; top: 0; height: 100%;
  width: 100%; background: var(--zb-teal); transform: translateX(-100%);
  animation: zbHeroBar 6s linear forwards;
}
@keyframes zbHeroBar {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

/* Hero side vertical text */
.zb-hero__side {
  position: absolute; right: clamp(16px, 3vw, 40px); top: 50%;
  transform: translateY(-50%); z-index: 3;
}
.zb-hero__side span {
  display: inline-flex; align-items: center;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,.6);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.zb-hero__side span::before {
  content: ''; width: 1px; height: 50px; background: var(--zb-teal);
  margin: 14px 0;
}

/* Hero badge */
.zb-hero__badge {
  position: absolute; top: 110px; right: clamp(20px, 4vw, 90px); z-index: 3;
  width: 110px; height: 110px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: #fff;
}
.zb-hero__badge::after {
  content: ''; position: absolute; inset: 6px; border-radius: 50%;
  border: 1px dashed rgba(46,216,207,.55);
  animation: zbSpin 22s linear infinite;
}
@keyframes zbSpin { to { transform: rotate(360deg); } }
.zb-hero__badge b {
  font-family: var(--font-serif); font-size: 13px;
  font-weight: 600; line-height: 1.15; display: block;
  padding: 10px;
}
.zb-hero__badge b small {
  display: block; font-family: 'Inter', sans-serif;
  font-size: 9px; letter-spacing: 2px; font-weight: 600;
  color: var(--zb-teal); margin-top: 4px;
}

/* Hero arrows */
.zb-hero__nav-arrows {
  position: absolute; bottom: 120px; right: clamp(20px,3vw,40px); z-index: 4;
  display: flex; flex-direction: column; gap: 8px;
}
.zb-hero__nav-arrows button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3); background: transparent;
  color: #fff; cursor: pointer; transition: all .3s;
  display: flex; align-items: center; justify-content: center;
}
.zb-hero__nav-arrows button:hover {
  background: var(--zb-teal); color: var(--zb-primary); border-color: var(--zb-teal);
}

@media (max-width: 991.98px) {
  .zb-hero { min-height: 92vh; }
  .zb-hero__inner { padding: 130px 0 130px; }
  .zb-hero__content h1 { font-size: clamp(36px, 9vw, 60px); }
  .zb-hero__side, .zb-hero__badge, .zb-hero__nav-arrows { display: none; }
}

/* ============================================================
   PRODUCT SHOWCASE (catalogue-style)
   ============================================================ */
.zb-showcase {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid var(--zb-line);
}
.zb-showcase__media {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
}
.zb-showcase__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s cubic-bezier(.25,.46,.45,.94);
}
.zb-showcase:hover .zb-showcase__media img { transform: scale(1.06); }
.zb-showcase__media .zb-import-pill {
  position: absolute; top: 16px; right: 16px;
}
.zb-showcase__body { padding: 28px 28px 30px; }
.zb-showcase__title {
  font-family: var(--font-serif); font-size: 32px;
  font-weight: 500; line-height: 1.15; color: var(--zb-primary);
  margin-bottom: 8px;
}
.zb-showcase__sub {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: #607378; margin-bottom: 18px; line-height: 1.7;
}
.zb-showcase__body .zb-features { margin-top: 18px; gap: 14px; }
.zb-showcase__body .zb-features__icon { width: 46px; height: 46px; font-size: 20px; }
.zb-showcase__body .zb-features__label { font-size: 11px; letter-spacing: .5px; }

/* Big editorial showcase */
.zb-editorial {
  position: relative; overflow: hidden; background: var(--zb-primary);
  color: #fff; min-height: 540px; display: grid;
  grid-template-columns: 1fr 1.2fr;
}
.zb-editorial--reverse { grid-template-columns: 1.2fr 1fr; }
.zb-editorial--reverse .zb-editorial__media { order: -1; }
.zb-editorial--light { background: var(--zb-cream); color: var(--zb-primary); }
.zb-editorial--light p { color: #3f5256; }
.zb-editorial--light h3 { color: var(--zb-primary); }
.zb-editorial--light .zb-features__label { color: var(--zb-primary); }
.zb-editorial--light .zb-features__icon { background: rgba(46,216,207,.18); color: var(--zb-teal-2); }
.zb-editorial__copy { padding: clamp(40px, 5vw, 70px); display: flex; flex-direction: column; justify-content: center; }
.zb-editorial__copy h3 {
  font-family: var(--font-serif); font-size: clamp(34px, 4vw, 54px);
  font-weight: 500; line-height: 1.05; color: #fff; margin: 12px 0 18px;
}
.zb-editorial__copy p { color: rgba(255,255,255,.78); font-size: 16px; line-height: 1.75; max-width: 480px; }
.zb-editorial__copy .zb-features { margin-top: 24px; }
.zb-editorial__copy .zb-features__label { color: #fff; }
.zb-editorial__copy .zb-features__icon { background: rgba(46,216,207,.18); color: var(--zb-teal); }
.zb-editorial__media {
  position: relative; min-height: 480px;
  background-size: cover; background-position: center;
}
.zb-editorial__media .zb-import-pill {
  position: absolute; top: 24px; right: 24px;
}
@media (max-width: 991.98px) {
  .zb-editorial, .zb-editorial--reverse { grid-template-columns: 1fr; }
  .zb-editorial--reverse .zb-editorial__media { order: 0; }
  .zb-editorial__media { min-height: 320px; }
}

/* ============================================================
   PRODUCT GRID
   ============================================================ */
.zb-grid {
  display: grid; gap: clamp(16px, 1.6vw, 22px);
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.zb-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.zb-grid--4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
@media (max-width: 991.98px) { .zb-grid--3, .zb-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .zb-grid--3, .zb-grid--4 { grid-template-columns: 1fr 1fr; } }

.zb-pcard {
  position: relative; overflow: hidden; background: #fff;
  border: 1px solid var(--zb-line); transition: all .35s;
}
.zb-pcard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -22px rgba(6,39,46,.32); }
.zb-pcard__media { aspect-ratio: 1/1; overflow: hidden; position: relative; background: var(--zb-cream-2); }
.zb-pcard__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s; }
.zb-pcard:hover .zb-pcard__media img { transform: scale(1.08); }
.zb-pcard__body { padding: 18px 18px 22px; text-align: center; }
.zb-pcard__name {
  font-family: var(--font-serif); font-size: 20px; font-weight: 500;
  color: var(--zb-primary); letter-spacing: .2px; margin: 0;
}
.zb-pcard__name small {
  display: block; font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 500;
  color: #7a8a8d; letter-spacing: 1px; margin-top: 4px; text-transform: uppercase;
}

/* ============================================================
   STATS — premium counters
   ============================================================ */
.zb-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 40px; }
@media (max-width: 767.98px) { .zb-stats { grid-template-columns: 1fr; gap: 28px; } }
.zb-stat__num {
  font-family: var(--font-serif); font-size: clamp(48px, 5vw, 76px);
  font-weight: 500; color: var(--zb-primary); line-height: 1;
  display: inline-flex; align-items: baseline;
}
.zb-stat__num .plus { font-size: .55em; color: var(--zb-teal-2); margin-left: 4px; }
.zb-stat__label {
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: #4d5e62; letter-spacing: .5px; margin-top: 4px;
}
.zb-stats.is-light .zb-stat__num { color: #fff; }
.zb-stats.is-light .zb-stat__num .plus { color: var(--zb-teal); }
.zb-stats.is-light .zb-stat__label { color: rgba(255,255,255,.7); }

/* ============================================================
   GALLERY / MOSAIC
   ============================================================ */
.zb-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 180px; gap: 14px;
}
.zb-mosaic__item {
  position: relative; overflow: hidden; background: var(--zb-cream);
  border-radius: var(--zb-radius);
}
.zb-mosaic__item img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .8s;
}
.zb-mosaic__item:hover img { transform: scale(1.06); }
.zb-mosaic__item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6,39,46,.78) 100%);
  opacity: 0; transition: opacity .4s;
}
.zb-mosaic__item:hover::after { opacity: 1; }
.zb-mosaic__item .caption {
  position: absolute; left: 18px; right: 18px; bottom: 14px;
  color: #fff; transform: translateY(8px); opacity: 0; z-index: 1;
  transition: all .4s;
}
.zb-mosaic__item:hover .caption { transform: translateY(0); opacity: 1; }
.zb-mosaic__item .caption small {
  font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--zb-teal);
}
.zb-mosaic__item .caption strong {
  display: block; font-family: var(--font-serif); font-size: 20px;
  font-weight: 500;
}
/* Mosaic spans */
.zb-mosaic__item.span-4 { grid-column: span 4; grid-row: span 2; }
.zb-mosaic__item.span-6 { grid-column: span 6; grid-row: span 2; }
.zb-mosaic__item.span-3 { grid-column: span 3; grid-row: span 1; }
.zb-mosaic__item.span-8 { grid-column: span 8; grid-row: span 2; }
.zb-mosaic__item.span-12 { grid-column: span 12; grid-row: span 2; }
@media (max-width: 991.98px) {
  .zb-mosaic { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 160px; }
  .zb-mosaic__item.span-4, .zb-mosaic__item.span-3 { grid-column: span 3; }
  .zb-mosaic__item.span-6, .zb-mosaic__item.span-8, .zb-mosaic__item.span-12 { grid-column: span 6; }
}
@media (max-width: 575.98px) {
  .zb-mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .zb-mosaic__item { grid-column: span 1 !important; grid-row: span 1 !important; }
}

/* ============================================================
   CHAIRMAN / LEADERSHIP
   ============================================================ */
.zb-chairman {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px;
  align-items: center; background: var(--zb-cream); padding: clamp(40px, 5vw, 72px);
  position: relative;
}
.zb-chairman__photo {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--zb-primary);
}
.zb-chairman__photo img { width: 100%; height: 100%; object-fit: cover; }
.zb-chairman__photo::before {
  content: ''; position: absolute; left: -16px; top: -16px;
  width: 100%; height: 100%; border: 2px solid var(--zb-teal);
  z-index: -1;
}
.zb-chairman__body .zb-headline { margin-bottom: 22px; }
.zb-chairman__body p { font-size: 16px; line-height: 1.85; color: #3f5256; margin-bottom: 14px; }
.zb-chairman__sign {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--zb-line);
}
.zb-chairman__sign strong {
  font-family: var(--font-serif); font-size: 24px; font-weight: 500;
  color: var(--zb-primary); display: block;
}
.zb-chairman__sign span {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 500;
  letter-spacing: 2px; text-transform: uppercase; color: var(--zb-teal-2);
}
@media (max-width: 991.98px) { .zb-chairman { grid-template-columns: 1fr; gap: 32px; } }

.zb-director {
  background: #fff; border: 1px solid var(--zb-line);
  transition: all .35s;
}
.zb-director:hover { transform: translateY(-4px); box-shadow: var(--zb-shadow-elev); }
.zb-director__photo { aspect-ratio: 4/5; overflow: hidden; background: var(--zb-cream-2); position: relative; }
.zb-director__photo img { width: 100%; height: 100%; object-fit: cover; }
.zb-director__photo .placeholder {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  background: linear-gradient(180deg, #f1ece1, #e7e0d0);
}
.zb-director__photo .placeholder i { font-size: 72px; color: var(--zb-teal-2); opacity: .35; }
.zb-director__photo .placeholder span {
  font-family: var(--font-serif); font-size: 18px; color: var(--zb-primary); opacity: .55;
  letter-spacing: 1px;
}
.zb-director__body { padding: 22px 22px 28px; text-align: center; }
.zb-director__role {
  font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--zb-teal-2);
}
.zb-director__name {
  font-family: var(--font-serif); font-size: 28px; font-weight: 500;
  color: var(--zb-primary); margin: 6px 0 8px;
}
.zb-director__bio { font-size: 14px; color: #586a6e; line-height: 1.7; }

/* ============================================================
   GLOBAL SOURCING
   ============================================================ */
.zb-sourcing {
  background: var(--zb-primary); color: #d8e6e7;
  padding: clamp(60px, 8vw, 110px) 0;
  position: relative; overflow: hidden;
}
.zb-sourcing::before {
  content: ''; position: absolute; right: -120px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(46,216,207,.18), transparent 60%);
  pointer-events: none;
}
.zb-sourcing .zb-flags {
  display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px;
}
.zb-flag-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px; background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: #d8e6e7; backdrop-filter: blur(6px);
}
.zb-flag-pill .flag { font-size: 18px; }

/* ============================================================
   CONTACT
   ============================================================ */
.zb-contact-hero {
  position: relative; padding: 180px 0 70px;
  background: linear-gradient(135deg, var(--zb-primary), var(--zb-primary-2));
  color: #fff; overflow: hidden;
}
.zb-contact-hero::after {
  content: ''; position: absolute; right: -200px; top: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(46,216,207,.16), transparent 65%);
}
.zb-contact-hero > .container { position: relative; z-index: 2; }
.zb-contact-hero .crumb {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--zb-teal); margin-bottom: 14px;
}
.zb-contact-hero h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px); color: #fff; margin: 0 0 14px;
}
.zb-contact-hero p { color: rgba(255,255,255,.7); max-width: 600px; font-size: 17px; }

.zb-info-card {
  background: #fff; padding: 32px 28px 30px;
  border-top: 3px solid var(--zb-teal);
  display: flex; gap: 18px; align-items: flex-start;
  box-shadow: 0 24px 50px -28px rgba(6,39,46,.18);
  height: 100%;
}
.zb-info-card__icon {
  flex: 0 0 50px; width: 50px; height: 50px;
  background: var(--zb-cream); color: var(--zb-teal-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.zb-info-card h5 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--zb-primary); margin: 0 0 6px;
}
.zb-info-card p, .zb-info-card a {
  font-size: 14px; color: #3f5256; line-height: 1.65;
}
.zb-info-card a { color: var(--zb-primary); font-weight: 600; }
.zb-info-card a:hover { color: var(--zb-teal-2); }
.zb-info-card small { display: block; color: #8a9a9d; font-size: 12px; margin-top: 6px; }

.zb-contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px;
  align-items: start;
}
@media (max-width: 991.98px) { .zb-contact-grid { grid-template-columns: 1fr; } }
.zb-contact-card {
  background: #fff; padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--zb-line);
  box-shadow: 0 30px 80px -40px rgba(6,39,46,.18);
}
.zb-contact-card h2 {
  font-family: var(--font-serif); font-size: clamp(28px, 3vw, 38px);
  font-weight: 500; color: var(--zb-primary); margin: 8px 0 6px;
}
.zb-contact-card p { color: #4f6266; margin-bottom: 24px; }
.zb-form-grid { display: grid; gap: 16px; grid-template-columns: 1fr 1fr; }
@media (max-width: 575.98px) { .zb-form-grid { grid-template-columns: 1fr; } }
.zb-field { position: relative; display: block; }
.zb-field--full { grid-column: 1/-1; }
.zb-field label {
  display: block; font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--zb-primary); margin-bottom: 6px;
}
.zb-field input, .zb-field select, .zb-field textarea {
  width: 100%; padding: 14px 16px; border: 1px solid #d4dcde;
  background: #fafbfb; font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--zb-primary); transition: all .25s; border-radius: 2px;
}
.zb-field textarea { min-height: 130px; resize: vertical; }
.zb-field input:focus, .zb-field select:focus, .zb-field textarea:focus {
  outline: 0; background: #fff; border-color: var(--zb-teal-2);
  box-shadow: 0 0 0 4px rgba(46,216,207,.12);
}
.zb-field .err {
  display: none; font-size: 12px; color: #c0392b; margin-top: 6px;
}
.zb-field.has-error input,
.zb-field.has-error select,
.zb-field.has-error textarea { border-color: #c0392b; background: #fff5f3; }
.zb-field.has-error .err { display: block; }

.zb-form-actions { margin-top: 26px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.zb-form-actions small { font-size: 12px; color: #8c9ca0; }

.zb-side-panel { display: flex; flex-direction: column; gap: 22px; }
.zb-wa-card {
  background: linear-gradient(135deg, #128c7e, #25d366);
  color: #fff; padding: 26px; display: flex; gap: 18px;
  align-items: center; transition: transform .3s;
}
.zb-wa-card:hover { transform: translateY(-3px); color: #fff; }
.zb-wa-card i { font-size: 42px; }
.zb-wa-card h4 { font-family: var(--font-serif); font-weight: 500; color: #fff; margin: 0; font-size: 22px; }
.zb-wa-card p { margin: 4px 0 0; font-size: 13px; color: rgba(255,255,255,.85); }

.zb-map { position: relative; padding-bottom: 60%; background: var(--zb-cream); }
.zb-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================
   THANK YOU MODAL
   ============================================================ */
.zb-modal {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(6,39,46,.72); backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .4s;
}
.zb-modal.is-open { display: flex; opacity: 1; }
.zb-modal__box {
  background: #fff; max-width: 460px; width: 90%;
  padding: 56px 36px 40px; text-align: center; position: relative;
  border-top: 4px solid var(--zb-teal);
  transform: translateY(20px); transition: transform .4s;
  box-shadow: 0 30px 80px rgba(0,0,0,.3);
}
.zb-modal.is-open .zb-modal__box { transform: translateY(0); }
.zb-modal__check {
  width: 86px; height: 86px; border-radius: 50%;
  background: var(--zb-teal); color: var(--zb-primary);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 44px; margin-bottom: 20px;
  animation: zbPop .55s cubic-bezier(.34,1.56,.64,1);
}
@keyframes zbPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.zb-modal__box h3 {
  font-family: var(--font-serif); font-size: 32px; font-weight: 500;
  color: var(--zb-primary); margin: 0 0 8px;
}
.zb-modal__box p { color: #4f6266; margin: 0 0 22px; }
.zb-modal__close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px; border-radius: 50%;
  background: transparent; border: 0; cursor: pointer; font-size: 18px;
  color: #4f6266;
}
.zb-modal__close:hover { color: var(--zb-primary); }

/* ============================================================
   PAGE BANNER (inner pages)
   ============================================================ */
.zb-page-banner {
  position: relative; padding: 180px 0 90px;
  background: var(--zb-primary); color: #fff; overflow: hidden;
}
.zb-page-banner__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: .35; filter: saturate(.8);
}
.zb-page-banner::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(6,39,46,.9) 0%, rgba(6,39,46,.65) 100%);
}
.zb-page-banner > .container { position: relative; z-index: 2; }
.zb-page-banner h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(40px, 5vw, 72px); color: #fff; margin: 12px 0 12px;
}
.zb-page-banner .crumb {
  font-family: 'Inter', sans-serif; font-size: 12px;
  letter-spacing: 3px; text-transform: uppercase; color: var(--zb-teal);
}
.zb-page-banner .crumb a { color: rgba(255,255,255,.7); }
.zb-page-banner .crumb a:hover { color: #fff; }
.zb-page-banner p { color: rgba(255,255,255,.7); max-width: 600px; font-size: 17px; }

/* ============================================================
   TIMELINE
   ============================================================ */
.zb-timeline { position: relative; padding-left: 50px; }
.zb-timeline::before {
  content: ''; position: absolute; left: 14px; top: 12px; bottom: 12px;
  width: 1px; background: rgba(6,39,46,.12);
}
.zb-tl-item { position: relative; padding-bottom: 56px; }
.zb-tl-item:last-child { padding-bottom: 0; }
.zb-tl-item::before {
  content: ''; position: absolute; left: -42px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--zb-teal); border: 3px solid var(--zb-primary);
}
.zb-tl-item .year {
  font-family: var(--font-serif); font-size: 36px; font-weight: 500;
  color: var(--zb-teal-2); line-height: 1;
}
.zb-tl-item .title {
  font-family: var(--font-serif); font-size: 26px; font-weight: 500;
  color: var(--zb-primary); margin: 6px 0 10px;
}
.zb-tl-item p { font-size: 15px; color: #4f6266; line-height: 1.75; }

/* ============================================================
   FOOTER refresh
   ============================================================ */
.zb-footer {
  background: var(--zb-primary); color: rgba(255,255,255,.7);
  padding: 80px 0 0; position: relative;
}
.zb-footer::before {
  content: ''; position: absolute; left: 0; top: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--zb-teal), transparent);
}
.zb-footer h5 {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: #fff; margin: 0 0 22px;
}
.zb-footer a { color: rgba(255,255,255,.7); transition: color .2s; }
.zb-footer a:hover { color: var(--zb-teal); }
.zb-footer ul { list-style: none; padding: 0; margin: 0; }
.zb-footer ul li { padding: 6px 0; font-size: 14px; }
.zb-footer-brand img { height: 56px; margin-bottom: 22px; }
.zb-footer .intro { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.6); }
.zb-footer .social { display: flex; gap: 10px; margin-top: 22px; }
.zb-footer .social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); display: inline-flex;
  align-items: center; justify-content: center;
  color: #fff;
}
.zb-footer .social a:hover { background: var(--zb-teal); color: var(--zb-primary); }
.zb-footer .contact-list li {
  display: flex; gap: 12px; align-items: flex-start; font-size: 14px;
}
.zb-footer .contact-list li i { color: var(--zb-teal); margin-top: 4px; }
.zb-footer-bottom {
  margin-top: 60px; border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0; text-align: center;
  font-size: 13px; color: rgba(255,255,255,.55);
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.zb-wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  animation: zbWaPulse 2.5s infinite;
}
.zb-wa-float:hover { background: #128c7e; color: #fff; transform: scale(1.08); }
@keyframes zbWaPulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.zb-elevate { box-shadow: var(--zb-shadow-elev); }
.zb-img-frame { border: 1px solid var(--zb-line); padding: 6px; background: #fff; }
.zb-img-frame img { display: block; width: 100%; }
.zb-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--zb-teal-2);
}
.zb-tag i { color: var(--zb-teal-2); }
.zb-text-muted { color: #6a7c80; }

/* Refined section title for legacy compatibility */
.section-title h2 { font-family: var(--font-serif); font-weight: 500; letter-spacing: -.01em; }

/* Override existing buttons to align with catalogue palette */
.btn-zarabi, .btn-zarabi-dark {
  background: var(--zb-primary); color: #fff; border: 1px solid var(--zb-primary);
  font-family: 'Inter', sans-serif; letter-spacing: 2.5px;
}
.btn-zarabi:hover, .btn-zarabi-dark:hover {
  background: var(--zb-teal); border-color: var(--zb-teal); color: var(--zb-primary);
}
.btn-zarabi-outline {
  border: 1px solid var(--zb-primary); color: var(--zb-primary);
  font-family: 'Inter', sans-serif; letter-spacing: 2.5px;
}
.btn-zarabi-outline:hover {
  background: var(--zb-primary); color: #fff;
}

/* Category sticky nav */
.zb-cat-nav {
  background: var(--zb-cream); border-bottom: 1px solid var(--zb-line);
  padding: 18px 0; position: sticky; top: 80px; z-index: 50;
}
.zb-cat-nav__list {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  font-family: 'Inter', sans-serif; font-size: 12px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
}
.zb-cat-nav__list a {
  color: var(--zb-primary); padding: 6px 4px; border-bottom: 2px solid transparent;
  transition: all .25s;
}
.zb-cat-nav__list a:hover { color: var(--zb-teal-2); border-bottom-color: var(--zb-teal); }

/* ============================================================
   V3 REFINEMENTS — Bold headings, mobile fixes, no overflow
   ============================================================ */

/* Global overflow safety */
html, body { overflow-x: hidden; max-width: 100%; }
* { word-wrap: break-word; }

/* Make all headlines bolder */
.zb-display, .zb-headline {
  font-weight: 600;
}
.zb-display em, .zb-headline em {
  font-weight: 600;
}
.zb-hero__content h1 {
  font-weight: 600;
}
.zb-showcase__title,
.zb-director__name,
.zb-editorial__copy h3,
.zb-chairman__sign strong,
.zb-tl-item .title {
  font-weight: 600;
}
.zb-page-banner h1,
.zb-contact-hero h1 {
  font-weight: 600;
}

/* Hero refinements — keep buttons + thumbnails inside the viewport */
.zb-hero {
  min-height: 100vh;
  max-height: 1000px;
}
.zb-hero__inner {
  padding: 130px 0 140px;
}
.zb-hero__content {
  max-width: 640px;
}
.zb-hero__content h1 {
  font-size: clamp(36px, 6vw, 78px);
  margin: 16px 0 18px;
}
.zb-hero__content p {
  max-width: 520px;
  font-size: clamp(14px, 1.05vw, 17px);
}
.zb-hero__ctas {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.zb-hero__ctas .zb-btn {
  padding: 16px 26px;
  font-size: 11px;
  letter-spacing: 2px;
}

/* Bottom strip stays at the very bottom, doesn't overlap content */
.zb-hero__strip {
  padding: 16px 0;
}
.zb-hero__thumbs {
  gap: 10px;
}
.zb-hero__thumb { padding: 4px 8px; }
.zb-hero__thumb .bar { width: 50px; }

/* Tighter heading metrics */
.zb-display {
  font-weight: 600;
  font-size: clamp(30px, 4.4vw, 52px);
}
.zb-headline {
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
}

/* Hero badge & side label — smaller, less intrusive */
.zb-hero__badge {
  width: 90px;
  height: 90px;
  top: 100px;
  right: clamp(20px, 3vw, 60px);
}
.zb-hero__badge b { font-size: 11px; padding: 6px; }
.zb-hero__badge b small { font-size: 8px; }

/* MOBILE-FIRST OVERRIDES */
@media (max-width: 991.98px) {
  .zb-hero {
    min-height: auto;
    max-height: none;
  }
  .zb-hero__inner {
    padding: 120px 0 130px;
  }
  .zb-hero__content h1 {
    font-size: clamp(32px, 8vw, 52px);
    line-height: 1.05;
  }
  .zb-hero__content p {
    font-size: 14px;
  }
  .zb-hero__ctas {
    margin-top: 22px;
  }
  .zb-hero__ctas .zb-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 22px;
  }
  /* Show only first 2 thumbnails on mobile to avoid clutter */
  .zb-hero__thumbs { gap: 6px; justify-content: center; }
  .zb-hero__thumb .lbl small { display: none; }
  .zb-hero__thumb .bar { display: none; }
}

@media (max-width: 575.98px) {
  .zb-hero__strip { padding: 12px 0; }
  .zb-hero__thumb { padding: 2px 4px; }
  .zb-hero__thumb .num { font-size: 16px; }
  .zb-hero__thumb .lbl { font-size: 10px; }
  .zb-hero__inner { padding: 110px 0 110px; }
}

/* Contact info card overflow fix */
.zb-info-card p,
.zb-info-card a,
.zb-info-card h5 {
  word-break: break-word;
  overflow-wrap: anywhere;
  min-width: 0;
}
.zb-info-card {
  flex-wrap: wrap;
}
.zb-info-card > div:not(.zb-info-card__icon) {
  min-width: 0;
  flex: 1 1 auto;
}

/* Contact hero subtitle stays inside viewport */
.zb-contact-hero p,
.zb-page-banner p {
  max-width: 100%;
  padding-right: 12px;
}

/* Container safety for narrow viewports */
@media (max-width: 575.98px) {
  .container { padding-left: 18px; padding-right: 18px; }
  .zb-info-card { padding: 24px 20px; }
  .zb-contact-card { padding: 28px 22px; }
}

/* Catalogue sticky nav — hide scrollbar but allow horizontal scroll */
.zb-cat-nav__list {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  flex-wrap: nowrap;
  padding-bottom: 4px;
}
@media (max-width: 575.98px) {
  .zb-cat-nav__list a { white-space: nowrap; flex-shrink: 0; }
}

/* Hero side text - hide on smaller screens */
@media (max-width: 1199.98px) {
  .zb-hero__side { display: none; }
}

/* Hero badge - hide on smaller screens */
@media (max-width: 991.98px) {
  .zb-hero__badge { display: none; }
}

/* Section titles bolder on legacy sections */
.section-title h2,
h1, h2, h3 {
  font-weight: 600;
}

/* Director cards — placeholder text more readable */
.zb-director__photo .placeholder { color: var(--zb-primary); }

/* Image frame for hero slides — ensure they cover uniformly */
.zb-hero__bg .slide {
  background-position: center center;
}

/* Stat counter numbers bolder */
.zb-stat__num { font-weight: 600; }

/* Eyebrow visual weight */
.zb-eyebrow { font-weight: 700; }

/* Buttons — slightly bolder + consistent height */
.zb-btn {
  font-weight: 700;
  white-space: nowrap;
}

/* V3.1: Strong word-wrap + container safety for narrow viewports */
.zb-info-card, .zb-info-card * { min-width: 0; }
.zb-info-card { box-sizing: border-box; max-width: 100%; }
.zb-info-card p, .zb-info-card a { word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
.zb-contact-hero p, .zb-page-banner p, .zb-hero__content p {
  word-break: break-word; overflow-wrap: anywhere;
}
.zb-contact-card { box-sizing: border-box; max-width: 100%; }
.zb-contact-card input, .zb-contact-card select, .zb-contact-card textarea { max-width: 100%; box-sizing: border-box; }

/* Make sure no element pushes container wider on mobile */
@media (max-width: 767.98px) {
  .container { padding-left: 16px !important; padding-right: 16px !important; max-width: 100%; }
  .row { margin-left: -8px; margin-right: -8px; }
  .row > * { padding-left: 8px; padding-right: 8px; }
  .zb-info-card { padding: 22px 18px; }
  .zb-info-card h5 { font-size: 18px; }
  .zb-info-card p, .zb-info-card a { font-size: 13px; }
}

/* V3.2: Force word-break stronger */
.zb-info-card p, .zb-info-card a {
  word-break: break-word !important;
  overflow-wrap: anywhere !important;
  max-width: 100% !important;
  display: block;
}
.zb-contact-hero, .zb-page-banner { padding-right: 0; }
.zb-contact-hero > .container, .zb-page-banner > .container { overflow: hidden; }
.zb-contact-hero p, .zb-page-banner p {
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
}

/* V3.3: ease word-break — only apply to long unbroken strings, not entire fields */
.zb-info-card p, .zb-info-card a {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
}
.zb-contact-hero p, .zb-page-banner p, .zb-hero__content p {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: auto;
}
/* Email links — let them wrap as a whole, no character-break */
.zb-info-card a[href^="mailto:"], .zb-info-card a[href^="tel:"] {
  word-break: keep-all;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .zb-info-card a[href^="mailto:"] { white-space: normal; word-break: break-word; font-size: 13px; }
}

/* ================================================================
   ZARABI V4 — Premium Brand Overhaul
   - Refined color: dark teal-green + light green + white + neutrals
   - No orange, no warm accents
   - Smaller refined components, premium typography
   - Modern subtle hover/animations
   - Islamic geometric pattern backgrounds (SVG inline)
   ================================================================ */

:root {
  --brand-ink:        #0B2E33;   /* deep brand teal-green, near black */
  --brand-ink-2:      #103A41;
  --brand-green:      #1FB5AC;   /* primary brand green (logo accent) */
  --brand-green-2:    #2ED8CF;   /* light green (logo) */
  --brand-green-soft: #E5F6F4;   /* very pale green wash */
  --brand-mint:       #C8EDE9;
  --brand-cream:      #F5F2EC;   /* soft neutral */
  --brand-paper:      #FAF8F4;
  --brand-line:       rgba(11,46,51,.08);
  --brand-line-2:     rgba(11,46,51,.14);
  --brand-text:       #2A3A3D;
  --brand-text-soft:  #5B6E72;
  --brand-text-mute:  #8B9CA0;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;
  --shadow-card: 0 8px 28px -16px rgba(11,46,51,.18);
  --shadow-deep: 0 22px 60px -30px rgba(11,46,51,.28);
  --ease: cubic-bezier(.4,0,.2,1);
}

/* Override prior variables so all components inherit the new palette */
:root {
  --zb-primary: var(--brand-ink);
  --zb-primary-2: var(--brand-ink-2);
  --zb-teal: var(--brand-green-2);
  --zb-teal-2: var(--brand-green);
  --zb-cream: var(--brand-cream);
  --zb-cream-2: var(--brand-paper);
  --zb-line: var(--brand-line);
}

/* ---------- Base typography polish ---------- */
body { color: var(--brand-text); font-size: 15px; line-height: 1.7; }
.zb-display, .zb-headline, .zb-hero__content h1,
.zb-page-banner h1, .zb-contact-hero h1,
h1, h2, h3 { font-feature-settings: "ss01" 1, "kern" 1, "liga" 1; }

/* ---------- Premium decorative patterns (SVG via data URI) ---------- */
.zb-pattern-bg {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'><g fill='none' stroke='%231FB5AC' stroke-width='.6' opacity='.18'><path d='M40 6 L74 40 L40 74 L6 40 Z'/><path d='M40 20 L60 40 L40 60 L20 40 Z'/><circle cx='40' cy='40' r='4'/><path d='M40 0 L40 80 M0 40 L80 40'/></g></svg>");
  background-size: 60px 60px;
  background-repeat: repeat;
}
.zb-pattern-light {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%231FB5AC' stroke-width='.7' opacity='.07'><path d='M50 5 L95 50 L50 95 L5 50 Z'/><path d='M50 25 L75 50 L50 75 L25 50 Z'/><circle cx='50' cy='50' r='5'/></g></svg>");
  background-size: 100px 100px;
}
.zb-pattern-on-dark {
  position: relative;
}
.zb-pattern-on-dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'><g fill='none' stroke='%232ED8CF' stroke-width='.6' opacity='.12'><path d='M50 5 L95 50 L50 95 L5 50 Z'/><path d='M50 25 L75 50 L50 75 L25 50 Z'/><circle cx='50' cy='50' r='5'/></g></svg>");
  background-size: 110px 110px;
  pointer-events: none;
}

/* Decorative top hairline for sections */
.zb-rule {
  width: 48px; height: 2px; background: var(--brand-green);
  display: inline-block;
}

/* ================================================================
   HEADER — transparent over hero, solid white after
   ================================================================ */
.navbar-zarabi {
  background: transparent !important;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  padding: 22px 0 !important;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.navbar-zarabi.scrolled,
.is-inner .navbar-zarabi,
body.has-light-nav .navbar-zarabi {
  background: #ffffff !important;
  border-bottom-color: var(--brand-line) !important;
  box-shadow: 0 1px 12px rgba(11,46,51,.05);
  padding: 22px 0 !important;
}
.navbar-zarabi .navbar-brand img { height: 42px !important; transition: none !important; }
.navbar-zarabi.scrolled .navbar-brand img { height: 42px !important; }

.navbar-zarabi .navbar-collapse {
  justify-content: center !important;
  position: relative;
}
.navbar-zarabi .navbar-nav {
  margin: 0 auto;
  gap: 4px;
}
.navbar-zarabi .nav-link {
  font-family: 'Inter', sans-serif !important;
  font-size: 13px !important; font-weight: 500 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  color: #ffffff !important;
  padding: 8px 16px !important;
  position: relative;
}
.navbar-zarabi.scrolled .nav-link,
.is-inner .navbar-zarabi .nav-link,
body.has-light-nav .navbar-zarabi .nav-link {
  color: var(--brand-ink) !important;
}
.navbar-zarabi .nav-link::after {
  content: '';
  position: absolute; left: 16px; right: 16px; bottom: 4px;
  height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.navbar-zarabi .nav-link:hover::after,
.navbar-zarabi .nav-link.active::after {
  transform: scaleX(1);
}
.navbar-zarabi .nav-link.active { color: var(--brand-green) !important; }

/* Contact button (rightmost) — CTA pill */
.navbar-zarabi .nav-cta {
  margin-left: 18px;
  background: var(--brand-green);
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius);
  font-weight: 600 !important;
  letter-spacing: 1.2px !important;
  transition: all .25s var(--ease);
}
.navbar-zarabi .nav-cta::after { display: none; }
.navbar-zarabi .nav-cta:hover {
  background: var(--brand-ink) !important;
  color: #fff !important;
}
.navbar-zarabi.scrolled .nav-cta,
body.has-light-nav .navbar-zarabi .nav-cta {
  background: var(--brand-ink);
  color: #fff !important;
}
.navbar-zarabi.scrolled .nav-cta:hover,
body.has-light-nav .navbar-zarabi .nav-cta:hover {
  background: var(--brand-green);
}

.navbar-zarabi .navbar-toggler {
  border: 1px solid rgba(255,255,255,.4) !important;
  padding: 6px 10px !important;
}
.navbar-zarabi.scrolled .navbar-toggler,
body.has-light-nav .navbar-zarabi .navbar-toggler {
  border-color: var(--brand-line-2) !important;
}
.navbar-zarabi .navbar-toggler-icon {
  filter: invert(1) brightness(2);
}
.navbar-zarabi.scrolled .navbar-toggler-icon,
body.has-light-nav .navbar-zarabi .navbar-toggler-icon {
  filter: none;
}

/* ================================================================
   BUTTON SYSTEM — modern, refined, no icons, consistent
   ================================================================ */
.zb-btn,
.btn-zarabi, .btn-zarabi-outline, .btn-zarabi-dark {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.zb-btn i, .btn-zarabi i, .btn-zarabi-dark i, .btn-zarabi-outline i { display: none; }
.zb-btn .arrow, .zb-btn .icon-ok { display: inline-block; } /* allow specific icons */

.zb-btn--solid, .btn-zarabi, .btn-zarabi-dark {
  background: var(--brand-green); color: var(--brand-ink); border-color: var(--brand-green);
}
.zb-btn--solid:hover, .btn-zarabi:hover, .btn-zarabi-dark:hover {
  background: var(--brand-ink); color: #fff; border-color: var(--brand-ink);
  transform: translateY(-1px);
}
.zb-btn--dark { background: var(--brand-ink); color: #fff; border-color: var(--brand-ink); }
.zb-btn--dark:hover { background: var(--brand-green); border-color: var(--brand-green); color: var(--brand-ink); transform: translateY(-1px); }
.zb-btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.zb-btn--ghost:hover { background: #fff; color: var(--brand-ink); border-color: #fff; transform: translateY(-1px); }
.zb-btn--line, .btn-zarabi-outline {
  background: transparent; color: var(--brand-ink); border-color: var(--brand-ink);
}
.zb-btn--line:hover, .btn-zarabi-outline:hover {
  background: var(--brand-ink); color: #fff; border-color: var(--brand-ink); transform: translateY(-1px);
}

/* Small button variant */
.zb-btn--sm { height: 38px; padding: 0 18px; font-size: 11px; }

/* ================================================================
   FORM SYSTEM — labels above, premium fields
   ================================================================ */
.zb-field { margin-bottom: 0; }
.zb-field label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  color: var(--brand-ink) !important;
  margin-bottom: 8px;
}
.zb-field input, .zb-field select, .zb-field textarea {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  border: 1px solid #d8dfe1;
  background: #ffffff;
  font-family: 'Inter', sans-serif; font-size: 14px;
  color: var(--brand-ink);
  border-radius: var(--radius-sm);
  transition: all .25s var(--ease);
  box-shadow: none !important;
}
.zb-field textarea { height: auto; min-height: 140px; padding: 14px 16px; resize: vertical; }
.zb-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230B2E33' d='M6 7L0 1l1.4-1.4L6 4.2 10.6-.4 12 1z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.zb-field input::placeholder, .zb-field textarea::placeholder { color: #aab3b6; }
.zb-field input:focus, .zb-field select:focus, .zb-field textarea:focus {
  outline: 0;
  border-color: var(--brand-green);
  box-shadow: 0 0 0 4px rgba(31,181,172,.12) !important;
}
.zb-field.has-error input, .zb-field.has-error select, .zb-field.has-error textarea {
  border-color: #c93737; background: #fff5f3;
}
.zb-field .err { display: none; font-size: 12px; color: #c93737; margin-top: 8px; }
.zb-field.has-error .err { display: block; }

/* ================================================================
   TYPOGRAPHY — refined hierarchy
   ================================================================ */
.zb-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand-green) !important;
}
.zb-eyebrow::before { background: var(--brand-green) !important; width: 32px; }
.zb-eyebrow.is-light { color: var(--brand-green-2) !important; }
.zb-eyebrow.is-light::before { background: var(--brand-green-2) !important; }

.zb-display {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.05;
  letter-spacing: -.015em;
  color: var(--brand-ink);
}
.zb-display em { color: var(--brand-green); font-style: italic; font-weight: 600; }
.zb-display.is-light { color: #fff; }
.zb-display.is-light em { color: var(--brand-green-2); }

.zb-headline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--brand-ink);
}
.zb-headline em { color: var(--brand-green); font-style: italic; }

.zb-lede {
  font-family: 'Inter', sans-serif;
  font-size: 15px; line-height: 1.75;
  color: var(--brand-text-soft);
}

/* ================================================================
   HERO BANNER — premium, no overlap, soft overlay
   ================================================================ */
.zb-hero { min-height: 100vh; max-height: 920px; background: var(--brand-ink); }
.zb-hero__bg::after {
  background:
    linear-gradient(110deg, rgba(11,46,51,.88) 0%, rgba(11,46,51,.55) 50%, rgba(11,46,51,.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,.55) 100%);
}
.zb-hero__inner { padding: 160px 0 130px; }
.zb-hero__content .zb-eyebrow { color: var(--brand-green-2) !important; }
.zb-hero__content .zb-eyebrow::before { background: var(--brand-green-2) !important; }
.zb-hero__content h1 {
  font-size: clamp(40px, 6.5vw, 86px);
  font-weight: 600;
}
.zb-hero__content h1 em { color: var(--brand-green-2); }
.zb-hero__content p { max-width: 520px; color: rgba(255,255,255,.82); }
.zb-hero__ctas { margin-top: 32px; }

/* Refined bottom strip */
.zb-hero__strip {
  background: linear-gradient(180deg, transparent, rgba(11,46,51,.5));
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
}
.zb-hero__thumb .num { font-size: 22px; font-weight: 600; color: inherit; }
.zb-hero__thumb .lbl { font-size: 10.5px; letter-spacing: 2px; }
.zb-hero__thumb .lbl small { font-size: 9.5px; }
.zb-hero__thumb.is-active { color: var(--brand-green-2); }

/* Hide side label and badge — keep hero clean */
.zb-hero__side { display: none !important; }
.zb-hero__badge { display: none !important; }
.zb-hero__nav-arrows { right: 24px; bottom: 130px; }
.zb-hero__nav-arrows button {
  width: 40px; height: 40px;
}

/* ================================================================
   SECTIONS — refined spacing & varied composition
   ================================================================ */
.zb-section { padding: clamp(70px, 8vw, 110px) 0; }
.zb-section--tight { padding: clamp(50px, 6vw, 80px) 0; }
.zb-section--cream { background: var(--brand-paper); position: relative; }
.zb-section--ink { background: var(--brand-ink); }
.zb-section--mint { background: var(--brand-green-soft); }

/* Featured Collections — refined editorial cards */
.zb-editorial {
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--brand-line);
  background: #fff;
}
.zb-editorial:not(.zb-editorial--light) { background: var(--brand-ink); }
.zb-editorial__copy { padding: clamp(36px, 4vw, 56px); }
.zb-editorial__copy h3 {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  margin: 14px 0 16px;
}
.zb-editorial__media { min-height: 420px; }

/* Product showcase card */
.zb-showcase { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--brand-line); }
.zb-showcase__title { font-size: 26px; font-weight: 600; }
.zb-showcase__media { aspect-ratio: 5/4; }

/* Import pill — softer corners */
.zb-import-pill {
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 10.5px; letter-spacing: 1.8px;
  background: var(--brand-green-2); color: var(--brand-ink);
  font-weight: 700;
}
.zb-import-pill.is-dark { background: var(--brand-ink); color: var(--brand-green-2); }

/* Feature icons — softer */
.zb-features__icon {
  width: 48px; height: 48px;
  background: rgba(31,181,172,.12) !important;
  color: var(--brand-green) !important;
  font-size: 20px;
}
.zb-features__item.is-on-dark .zb-features__icon {
  background: rgba(46,216,207,.18) !important;
  color: var(--brand-green-2) !important;
}
.zb-features__label { font-size: 11px; font-weight: 600; letter-spacing: .5px; color: var(--brand-ink); }
.zb-features__item.is-on-dark .zb-features__label { color: #fff; }

/* ================================================================
   PRODUCT CARDS — smaller, refined
   ================================================================ */
.zb-pcard {
  border-radius: var(--radius);
  border: 1px solid var(--brand-line);
  background: #fff;
  overflow: hidden;
  transition: all .35s var(--ease);
}
.zb-pcard:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
  border-color: var(--brand-green);
}
.zb-pcard__media { aspect-ratio: 4/3; }
.zb-pcard__media img { transition: transform .7s var(--ease); }
.zb-pcard__body { padding: 18px 18px 22px; }
.zb-pcard__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 19px; font-weight: 600; color: var(--brand-ink);
}
.zb-pcard__name small {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; letter-spacing: 1.5px;
  color: var(--brand-text-mute);
  font-weight: 500; text-transform: uppercase;
}

/* ================================================================
   STATS — refined
   ================================================================ */
.zb-stat__num { font-weight: 600; color: var(--brand-ink); }
.zb-stat__num .plus { color: var(--brand-green) !important; }
.zb-stats.is-light .zb-stat__num { color: #fff; }
.zb-stats.is-light .zb-stat__num .plus { color: var(--brand-green-2) !important; }
.zb-stat__label { color: var(--brand-text-soft); }

/* ================================================================
   SOURCING SECTION — subtle pattern bg
   ================================================================ */
.zb-sourcing {
  background: var(--brand-ink);
  position: relative;
  overflow: hidden;
}
.zb-sourcing::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%232ED8CF' stroke-width='.6' opacity='.18'><path d='M60 5 L115 60 L60 115 L5 60 Z'/><path d='M60 25 L95 60 L60 95 L25 60 Z'/><path d='M60 45 L75 60 L60 75 L45 60 Z'/><circle cx='60' cy='60' r='3'/></g></svg>");
  background-size: 140px 140px;
  pointer-events: none;
  opacity: .55;
}
.zb-flag-pill {
  border-radius: 30px;
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: rgba(255,255,255,.85) !important;
}

/* ================================================================
   CHAIRMAN / LEADERSHIP — top-aligned, premium
   ================================================================ */
.zb-chairman {
  background: var(--brand-paper);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 4vw, 64px);
  align-items: flex-start !important;
  border: 1px solid var(--brand-line);
}
.zb-chairman__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-ink);
  position: relative;
}
.zb-chairman__photo img { object-position: top center; }
.zb-chairman__photo::before {
  content: ''; position: absolute; left: -14px; top: -14px;
  width: 100%; height: 100%; border: 1px solid var(--brand-green);
  border-radius: var(--radius); z-index: -1;
}
.zb-chairman__body .zb-headline { color: var(--brand-ink); }
.zb-chairman__body p { font-size: 15px; line-height: 1.85; color: var(--brand-text); }

/* Director cards — refined */
.zb-director {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  overflow: hidden;
}
.zb-director:hover {
  border-color: var(--brand-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.zb-director__photo {
  aspect-ratio: 1/1;
  background: var(--brand-cream);
}
.zb-director__photo img { object-position: top center; }
.zb-director__photo .placeholder i { color: var(--brand-green); opacity: .35; font-size: 56px; }
.zb-director__photo .placeholder span { color: var(--brand-ink); }
.zb-director__body { padding: 22px 22px 26px; text-align: center; }
.zb-director__role {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; letter-spacing: 2.5px; font-weight: 700;
  text-transform: uppercase; color: var(--brand-green);
}
.zb-director__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 600; color: var(--brand-ink);
  margin: 6px 0 8px;
}
.zb-director__bio { font-size: 13px; color: var(--brand-text-soft); line-height: 1.6; }

/* ================================================================
   STICKY TIMELINE HEADING
   ================================================================ */
.zb-tl-wrap .col-lg-4 { position: relative; }
.zb-tl-wrap .zb-tl-heading {
  position: sticky; top: 120px;
}
.zb-tl-item .year {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; color: var(--brand-green);
}
.zb-tl-item .title { font-weight: 600; }
.zb-tl-item::before {
  background: var(--brand-green); border-color: var(--brand-ink);
}

/* ================================================================
   GALLERY — sliding active tab, masonry-style
   ================================================================ */
.zb-filter {
  display: inline-flex;
  position: relative;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 40px;
  padding: 5px;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
}
.zb-filter button {
  position: relative;
  background: transparent !important;
  border: 0 !important;
  padding: 11px 18px !important;
  font-size: 11px !important; font-weight: 600 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  color: var(--brand-text-soft) !important;
  border-radius: 40px !important;
  z-index: 1;
  cursor: pointer;
  transition: color .3s var(--ease);
}
.zb-filter button:hover { color: var(--brand-ink) !important; }
.zb-filter button.is-active { color: #fff !important; }
.zb-filter__pill {
  position: absolute;
  top: 5px; left: 5px;
  height: calc(100% - 10px);
  background: var(--brand-ink);
  border-radius: 40px;
  z-index: 0;
  transition: left .35s var(--ease), width .35s var(--ease);
  pointer-events: none;
}

.zb-gal-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brand-cream);
}
.zb-gal-item .meta strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
}
.zb-gal-item .meta small { color: var(--brand-green-2); }

/* ================================================================
   PAGE BANNER — refined, with pattern
   ================================================================ */
.zb-page-banner {
  padding: 200px 0 100px;
  position: relative;
  overflow: hidden;
}
.zb-page-banner::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%232ED8CF' stroke-width='.6' opacity='.18'><path d='M60 5 L115 60 L60 115 L5 60 Z'/><path d='M60 25 L95 60 L60 95 L25 60 Z'/><circle cx='60' cy='60' r='3'/></g></svg>");
  background-size: 140px 140px; pointer-events: none;
  opacity: .35;
}
.zb-page-banner__bg { opacity: .42; filter: saturate(.85); }
.zb-page-banner > .container { z-index: 2; }
.zb-page-banner h1 { font-weight: 600; font-size: clamp(38px, 4.8vw, 64px); }
.zb-page-banner p { color: rgba(255,255,255,.78); max-width: 580px; }
.zb-page-banner .crumb { color: var(--brand-green-2); }

/* ================================================================
   CONTACT — premium
   ================================================================ */
.zb-contact-hero {
  background: var(--brand-ink);
  position: relative; overflow: hidden;
  padding: 200px 0 90px;
}
.zb-contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><g fill='none' stroke='%232ED8CF' stroke-width='.6' opacity='.18'><path d='M60 5 L115 60 L60 115 L5 60 Z'/><path d='M60 25 L95 60 L60 95 L25 60 Z'/><circle cx='60' cy='60' r='3'/></g></svg>");
  background-size: 140px 140px; opacity: .35;
}
.zb-contact-hero > .container { position: relative; z-index: 2; }
.zb-contact-hero h1 { font-weight: 600; font-size: clamp(40px, 5vw, 70px); }
.zb-contact-hero p { color: rgba(255,255,255,.75); }

.zb-info-card {
  border-radius: var(--radius);
  border: 1px solid var(--brand-line);
  border-top: 2px solid var(--brand-green);
  padding: 26px 24px 24px;
  background: #fff;
  box-shadow: 0 12px 30px -20px rgba(11,46,51,.18);
}
.zb-info-card__icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  background: var(--brand-green-soft) !important;
  color: var(--brand-green) !important;
  font-size: 18px;
}
.zb-info-card h5 { font-size: 19px; }
.zb-info-card p { font-size: 13.5px; }

.zb-contact-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--brand-line);
  padding: clamp(32px, 3.5vw, 48px) !important;
}
.zb-contact-card h2 { font-weight: 600; font-size: clamp(24px, 2.6vw, 34px); margin: 10px 0 8px; }
.zb-contact-card p { color: var(--brand-text-soft); margin-bottom: 28px; font-size: 14px; }

.zb-wa-card {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #128c7e, #1FB5AC) !important;
}

/* ================================================================
   FOOTER — premium with subtle pattern
   ================================================================ */
.zb-footer {
  background: var(--brand-ink);
  position: relative;
  overflow: hidden;
}
.zb-footer::before {
  content: ''; position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'><g fill='none' stroke='%232ED8CF' stroke-width='.5' opacity='.12'><path d='M70 8 L132 70 L70 132 L8 70 Z'/><path d='M70 30 L110 70 L70 110 L30 70 Z'/><circle cx='70' cy='70' r='3'/></g></svg>");
  background-size: 160px 160px;
  opacity: .8;
  pointer-events: none;
}
.zb-footer > * { position: relative; z-index: 1; }
.zb-footer h5 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600; font-size: 22px; margin-bottom: 22px;
}
.zb-footer h5::after {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--brand-green-2); margin-top: 12px;
}
.zb-footer ul li { padding: 6px 0; font-size: 13.5px; }
.zb-footer .contact-list li { font-size: 13.5px; line-height: 1.6; }
.zb-footer .social a { width: 36px; height: 36px; border-radius: 50%; }

/* ================================================================
   MOSAIC GALLERY — refined hover
   ================================================================ */
.zb-mosaic__item { border-radius: var(--radius); }
.zb-mosaic__item .caption small { color: var(--brand-green-2); }

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */
.zb-wa-float { background: var(--brand-green); }
.zb-wa-float:hover { background: var(--brand-ink); }

/* ================================================================
   ABOUT card frames
   ================================================================ */
.zb-img-frame { border-radius: var(--radius); padding: 0; border: 0; }
.zb-img-frame img { border-radius: var(--radius); }

/* ================================================================
   COMMON OVERRIDES — remove orange tones, refine
   ================================================================ */
.bg-cream-section, .bg-cream { background: var(--brand-paper) !important; }
.bg-gray-100, .bg-gray { background: var(--brand-paper) !important; }
.text-accent { color: var(--brand-green) !important; }

/* Top spacing reserved for fixed nav */
body { padding-top: 0; }

/* Inner page padding (compensate for white nav over content) */
.is-inner main, body.has-light-nav main { padding-top: 0; }

/* Section title fallback */
.section-title h2 { font-weight: 600 !important; }
.section-title .subtitle { color: var(--brand-green) !important; font-weight: 700 !important; letter-spacing: 2.5px !important; }
.section-title .subtitle::before { background: var(--brand-green) !important; }

/* Disable any orange overrides from base */
.cta-section { background-color: var(--brand-ink) !important; }

/* Cat-nav cleaner styling */
.zb-cat-nav {
  background: #fff;
  top: 78px;
}
.zb-cat-nav__list { gap: 26px; }
.zb-cat-nav__list a {
  position: relative;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: all .25s var(--ease);
  color: var(--brand-text-soft) !important;
  font-size: 11px !important;
  letter-spacing: 1.5px !important;
}
.zb-cat-nav__list a:hover, .zb-cat-nav__list a.is-active {
  color: var(--brand-ink) !important;
  border-bottom-color: var(--brand-green) !important;
}

/* Modal refinements */
.zb-modal__box { border-radius: var(--radius-lg); border-top-width: 3px; border-top-color: var(--brand-green); }
.zb-modal__check { background: var(--brand-green); color: #fff; }
.zb-modal__box h3 { font-weight: 600; }

/* Inner page banner backgrounds — replace inauguration with carpet/mosque */
body.has-light-nav { padding-top: 0; }

/* Make sure header always renders above content */
.navbar-zarabi { z-index: 9999; }

/* Mobile improvements */
@media (max-width: 991.98px) {
  .navbar-zarabi { background: #fff !important; border-bottom-color: var(--brand-line) !important; }
  .navbar-zarabi .nav-link { color: var(--brand-ink) !important; }
  .navbar-zarabi .navbar-toggler-icon { filter: none; }
  .navbar-zarabi .navbar-collapse {
    background: #fff;
    margin-top: 16px;
    border-radius: var(--radius);
    padding: 12px 0;
    box-shadow: 0 12px 28px -10px rgba(11,46,51,.18);
  }
  .navbar-zarabi .nav-cta { margin: 12px 16px 0; }
}

/* Empty state for the gallery */
.zb-gal-empty { padding: 40px; text-align: center; color: var(--brand-text-mute); }

/* Mosaic captions always visible on touch devices */
@media (hover: none) {
  .zb-mosaic__item::after { opacity: .8; }
  .zb-mosaic__item .caption { opacity: 1; transform: none; }
}

/* ================================================================
   V4.1 — Leadership tiers (medium / small) + tier labels
   ================================================================ */
.zb-tier-label {
  display: flex; align-items: center; justify-content: center;
  gap: 18px; margin-bottom: 28px;
  font-family: 'Inter', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--brand-green);
}
.zb-tier-label span {
  display: inline-block; height: 1px; width: 50px;
  background: var(--brand-green); opacity: .6;
}
.zb-tier { max-width: 880px; margin: 0 auto; }
.zb-tier--md .zb-director__photo { aspect-ratio: 4/5; }
.zb-tier--md .zb-director__name { font-size: 26px; }
.zb-tier--sm .zb-director__photo { aspect-ratio: 1/1; }
.zb-tier--sm .zb-director__name { font-size: 19px; margin: 4px 0 2px; }
.zb-tier--sm .zb-director__role { font-size: 9.5px; letter-spacing: 1.5px; }
.zb-tier--sm .zb-director__body { padding: 16px 14px 20px; }
.zb-director--compact .zb-director__bio { display: none; }

/* Make chairman photo top-aligned (already in v4 but ensure) */
.zb-chairman__photo img { object-position: top center !important; }

/* Chairman bigger on desktop */
@media (min-width: 992px) {
  .zb-chairman { grid-template-columns: 0.9fr 1.1fr; gap: 70px; }
}

/* ================================================================
   V4.2 — Sister Concerns / Locations premium cards
   ================================================================ */
.zb-locations { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 1199.98px) { .zb-locations { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767.98px)  { .zb-locations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)     { .zb-locations { grid-template-columns: 1fr; } }

.zb-loc {
  position: relative;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius);
  padding: 28px 22px 26px;
  text-align: center;
  transition: all .35s var(--ease);
  overflow: hidden;
}
.zb-loc::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--brand-green-2), var(--brand-green));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.zb-loc:hover {
  transform: translateY(-4px);
  border-color: var(--brand-green);
  box-shadow: var(--shadow-deep);
}
.zb-loc:hover::before { transform: scaleX(1); }

.zb-loc__pin {
  width: 52px; height: 52px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--brand-green-soft);
  color: var(--brand-green);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px;
  position: relative;
  transition: all .3s var(--ease);
}
.zb-loc__pin::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 1px dashed var(--brand-green); opacity: 0;
  transition: opacity .3s var(--ease);
}
.zb-loc:hover .zb-loc__pin { background: var(--brand-green); color: #fff; }
.zb-loc:hover .zb-loc__pin::after { opacity: .5; }

.zb-loc__tag {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--brand-green);
  margin-bottom: 6px;
}
.zb-loc__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 24px; font-weight: 600;
  color: var(--brand-ink);
  margin: 0 0 4px;
}
.zb-loc__sub {
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: var(--brand-text-soft);
}

/* Featured HQ card */
.zb-loc--hq {
  background: var(--brand-ink); color: #fff;
  border-color: var(--brand-ink);
}
.zb-loc--hq .zb-loc__pin {
  background: rgba(46,216,207,.18); color: var(--brand-green-2);
}
.zb-loc--hq .zb-loc__tag { color: var(--brand-green-2); }
.zb-loc--hq .zb-loc__name { color: #fff; }
.zb-loc--hq .zb-loc__sub { color: rgba(255,255,255,.65); }
.zb-loc--hq:hover { transform: translateY(-4px); border-color: var(--brand-green-2); }

/* Section with subtle map silhouette */
.zb-presence {
  position: relative; overflow: hidden;
  background: var(--brand-paper);
}
.zb-presence::before {
  content: ''; position: absolute; left: 50%; top: 50%;
  width: 120%; height: 120%; transform: translate(-50%,-50%);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='%231FB5AC' stroke-width='.5' opacity='.06'><circle cx='100' cy='100' r='80'/><circle cx='100' cy='100' r='60'/><circle cx='100' cy='100' r='40'/><circle cx='100' cy='100' r='20'/><path d='M0 100 L200 100 M100 0 L100 200'/></g></svg>");
  background-size: 240px 240px;
  background-repeat: repeat;
  pointer-events: none;
}
.zb-presence > .container { position: relative; z-index: 1; }

/* ================================================================
   V4.3 — Director cards: name on top (primary), role below
   ================================================================ */
.zb-director__body { padding-top: 22px !important; padding-bottom: 24px !important; }
.zb-director__name {
  margin: 0 0 6px !important;
  font-size: 26px;
}
.zb-tier--md .zb-director__name { font-size: 30px; }
.zb-tier--sm .zb-director__name { font-size: 20px; margin-bottom: 4px !important; }
.zb-director__role {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 1.8px !important;
  text-transform: uppercase;
  color: var(--brand-text-soft) !important;
  margin-bottom: 0 !important;
}
.zb-tier--md .zb-director__role { font-size: 11.5px !important; color: var(--brand-green) !important; }
/* Always hide bio in this context */
.zb-director__bio { display: none !important; }

/* ================================================================
   V5 — Premium Hero & Header Refinement
   ================================================================ */

/* ---------- Dual-logo system (white on hero, dark on scroll) ---------- */
.navbar-zarabi .navbar-brand {
  position: relative;
  display: inline-flex; align-items: center;
}
.navbar-zarabi .navbar-brand img {
  height: 46px !important;
  width: auto;
  transition: opacity .3s var(--ease);
}
.navbar-zarabi .navbar-brand .logo-dark  { display: inline-block; }
.navbar-zarabi .navbar-brand .logo-white { display: none; }
.navbar-zarabi:not(.scrolled) .navbar-brand .logo-dark  { display: none; }
.navbar-zarabi:not(.scrolled) .navbar-brand .logo-white { display: inline-block; }
body.has-light-nav .navbar-zarabi .navbar-brand .logo-dark  { display: inline-block !important; }
body.has-light-nav .navbar-zarabi .navbar-brand .logo-white { display: none !important; }

@media (max-width: 991.98px) {
  .navbar-zarabi .navbar-brand .logo-dark  { display: inline-block !important; }
  .navbar-zarabi .navbar-brand .logo-white { display: none !important; }
}

/* ---------- Header layout — centered nav, Contact pinned far right ---------- */
.navbar-zarabi .container {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: nowrap;
}
.navbar-zarabi .navbar-brand {
  flex: 0 0 auto;
  margin-right: 0;
}
.navbar-zarabi .navbar-collapse {
  flex: 1 1 auto;
  justify-content: center !important;
}
.navbar-zarabi .navbar-nav {
  margin: 0 auto !important;
  gap: 6px;
  padding-right: 110px;
}
.navbar-zarabi .nav-link {
  padding: 8px 18px !important;
  font-size: 12.5px !important;
  letter-spacing: 1.8px !important;
}
.navbar-zarabi .nav-cta {
  position: absolute;
  right: 0px;
  top: 0%;
  transform: translateY(-50%);
  margin: 0 !important;
}
@media (max-width: 991.98px) {
  .navbar-zarabi .navbar-nav { padding-right: 0; }
  .navbar-zarabi .nav-cta {
    position: static;
    transform: none;
    margin: 12px 16px 0 !important;
  }
}

.navbar-zarabi { padding: 18px 0 !important; }
.navbar-zarabi.scrolled { padding: 14px 0 !important; }

/* ---------- HERO — Premium luxury redesign ---------- */
.zb-hero {
  min-height: 100vh;
  max-height: 920px;
  background: #000;
  overflow: hidden;
  position: relative;
}

.zb-hero__bg .slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease, transform 12s linear;
}
.zb-hero__bg .slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.zb-hero__bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,46,51,.45) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 65%, rgba(11,46,51,.7) 100%),
    linear-gradient(110deg, rgba(11,46,51,.85) 0%, rgba(11,46,51,.55) 40%, rgba(11,46,51,.15) 75%, rgba(11,46,51,0) 100%);
  z-index: 2;
  pointer-events: none;
}
.zb-hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><g fill='none' stroke='%232ED8CF' stroke-width='.6' opacity='.07'><path d='M100 10 L190 100 L100 190 L10 100 Z'/><path d='M100 40 L160 100 L100 160 L40 100 Z'/><path d='M100 70 L130 100 L100 130 L70 100 Z'/><circle cx='100' cy='100' r='4'/></g></svg>");
  background-size: 220px 220px;
  z-index: 2;
  opacity: .55;
  pointer-events: none;
}

.zb-hero__inner {
  position: relative; z-index: 3;
  padding: 180px 0 200px;
  display: flex; align-items: center;
  min-height: 100vh;
  max-height: 920px;
}
.zb-hero__content {
  max-width: 640px;
  position: relative;
}
.zb-hero__content .zb-eyebrow {
  font-size: 11px !important;
  letter-spacing: 5px !important;
  color: var(--brand-green-2) !important;
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 16px;
}
.zb-hero__content .zb-eyebrow::before {
  width: 40px !important; height: 1px;
  background: var(--brand-green-2) !important;
}
.zb-hero__content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #fff;
  margin: 0 0 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.zb-hero__content h1 em {
  font-style: italic;
  font-weight: 600;
  color: var(--brand-green-2);
}
.zb-hero__content p {
  font-family: "Inter", sans-serif;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  max-width: 530px;
  margin: 0 0 36px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}

.zb-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.zb-hero__ctas .zb-btn {
  height: 50px;
  padding: 0 32px;
  font-size: 11.5px;
  letter-spacing: 2px;
  border-radius: 2px;
}
.zb-hero__ctas .zb-btn--solid {
  background: var(--brand-green-2);
  color: var(--brand-ink);
  border-color: var(--brand-green-2);
}
.zb-hero__ctas .zb-btn--solid:hover {
  background: #fff;
  color: var(--brand-ink);
  border-color: #fff;
  box-shadow: 0 14px 30px -10px rgba(46,216,207,.5);
}
.zb-hero__ctas .zb-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
  backdrop-filter: blur(6px);
}
.zb-hero__ctas .zb-btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
}

.zb-hero__strip {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 4;
  padding: 24px 0;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.4));
  border-top: 1px solid rgba(255,255,255,.08);
}
.zb-hero__thumbs {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.zb-hero__thumb {
  flex: 1 1 0;
  display: flex; align-items: center;
  gap: 18px;
  background: transparent !important;
  border: 0 !important;
  padding: 8px 14px !important;
  color: rgba(255,255,255,.55);
  border-left: 1px solid rgba(255,255,255,.1);
  cursor: pointer;
  transition: all .3s var(--ease);
  text-align: left;
  min-height: 64px;
}
.zb-hero__thumb:first-child { border-left: 0; }
.zb-hero__thumb:hover { color: #fff; background: rgba(255,255,255,.04) !important; }
.zb-hero__thumb.is-active { color: var(--brand-green-2); background: rgba(46,216,207,.06) !important; }
.zb-hero__thumb .num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px; font-weight: 500;
  line-height: 1; color: inherit;
  min-width: 36px;
}
.zb-hero__thumb .lbl {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1.3;
  color: inherit;
}
.zb-hero__thumb .lbl small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: .6;
  letter-spacing: 1.2px;
  margin-top: 4px;
  color: inherit;
}
.zb-hero__thumb .bar { display: none; }

.zb-hero__side {
  display: block !important;
  position: absolute; right: 30px; top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: none;
}
.zb-hero__side span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Inter", sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 6px; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: inline-flex; align-items: center;
}
.zb-hero__side span::after {
  content: "";
  margin-top: 14px;
  width: 1px; height: 50px;
  background: var(--brand-green-2);
  opacity: .8;
}
@media (max-width: 1199.98px) { .zb-hero__side { display: none !important; } }

.zb-hero__badge { display: none !important; }

.zb-hero__nav-arrows {
  display: flex !important;
  bottom: 130px;
  right: 60px;
  z-index: 5;
}
.zb-hero__nav-arrows button {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.08) !important;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18) !important;
  color: #fff !important;
}
.zb-hero__nav-arrows button:hover {
  background: var(--brand-green-2) !important;
  color: var(--brand-ink) !important;
  border-color: var(--brand-green-2) !important;
}
@media (max-width: 1199.98px) { .zb-hero__nav-arrows { display: none !important; } }

@media (max-width: 991.98px) {
  .zb-hero { min-height: 92vh; max-height: none; }
  .zb-hero__inner { padding: 140px 0 160px; min-height: 92vh; max-height: none; }
  .zb-hero__content h1 { font-size: clamp(36px, 9vw, 56px); }
  .zb-hero__content p { font-size: 14px; }
  .zb-hero__strip { padding: 14px 0; }
  .zb-hero__thumb { min-height: 50px; }
  .zb-hero__thumb .num { font-size: 22px; }
  .zb-hero__thumb .lbl small { display: none; }
}
@media (max-width: 575.98px) {
  .zb-hero__thumbs { flex-wrap: nowrap; overflow-x: auto; }
  .zb-hero__thumb { flex: 0 0 auto; padding: 6px 10px !important; }
  .zb-hero__thumb .lbl { font-size: 9.5px; }
}

/* ================================================================
   V6 — Banner height standardization (max 600px) — hygiene
   ================================================================ */

/* HERO: lock to exactly 600px on desktop */
.zb-hero {
  min-height: 600px !important;
  max-height: 600px !important;
  height: 600px !important;
}
.zb-hero__inner {
  min-height: 600px !important;
  max-height: 600px !important;
  height: 600px !important;
  padding: 120px 0 130px !important;
}

/* Tighter hero content scale to fit 600px */
.zb-hero__content h1 {
  font-size: clamp(38px, 5.2vw, 64px) !important;
  margin-bottom: 18px !important;
}
.zb-hero__content p {
  font-size: 14.5px !important;
  margin-bottom: 26px !important;
  max-width: 500px;
}
.zb-hero__content .zb-eyebrow {
  margin-bottom: 16px !important;
}
.zb-hero__ctas .zb-btn { height: 46px; padding: 0 26px; }

/* Hero strip shorter */
.zb-hero__strip { padding: 14px 0 !important; }
.zb-hero__thumb { min-height: 52px !important; }
.zb-hero__thumb .num { font-size: 22px !important; }
.zb-hero__thumb .lbl { font-size: 10.5px !important; }
.zb-hero__thumb .lbl small { font-size: 9px !important; margin-top: 2px !important; }

/* PAGE BANNERS (inner pages) — lock to 360px */
.zb-page-banner {
  min-height: 360px !important;
  max-height: 360px !important;
  height: 360px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
}
.zb-page-banner__bg {
  height: 100%;
  filter: saturate(.85);
  opacity: .45;
}
.zb-page-banner h1 {
  font-size: clamp(36px, 4.4vw, 56px) !important;
  margin: 8px 0 10px !important;
}

/* CONTACT HERO — lock to 360px */
.zb-contact-hero {
  min-height: 360px !important;
  max-height: 360px !important;
  height: 360px !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
}
.zb-contact-hero h1 {
  font-size: clamp(36px, 4.4vw, 56px) !important;
  margin: 8px 0 10px !important;
}

/* Mobile — relax to auto but capped */
@media (max-width: 991.98px) {
  .zb-hero,
  .zb-hero__inner {
    min-height: 540px !important;
    max-height: 540px !important;
    height: 540px !important;
  }
  .zb-hero__inner { padding: 100px 0 110px !important; }
  .zb-page-banner,
  .zb-contact-hero {
    min-height: 280px !important;
    max-height: 280px !important;
    height: 280px !important;
  }
}
@media (max-width: 575.98px) {
  .zb-hero,
  .zb-hero__inner {
    min-height: 520px !important;
    max-height: 520px !important;
    height: 520px !important;
  }
}

/* Hide hero arrows now since hero is shorter */
.zb-hero__nav-arrows { bottom: 95px !important; }


/* V6.1 — Chairman bio strip */
.zb-chairman-bio {
  margin-top: 40px;
  padding: 44px clamp(28px,3.5vw,52px);
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.zb-chairman-bio::before {
  content:''; position:absolute; left:0; top:0; bottom:0; width:3px;
  background: linear-gradient(180deg, var(--brand-green-2), var(--brand-green));
}
.zb-chairman-bio__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 767.98px) {
  .zb-chairman-bio__grid { grid-template-columns: 1fr; gap: 22px; }
}
.zb-chairman-bio p {
  font-size: 15px; line-height: 1.85; color: var(--brand-text);
  margin: 0 0 14px;
}
.zb-chairman-bio__tags {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.zb-chairman-bio__tags li {
  background: var(--brand-green-soft);
  color: var(--brand-green);
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 30px;
}

/* ================================================================
   V6.2 — Inner page header/banner alignment + text visibility fixes
   ================================================================ */

/* Inner pages: add top padding equal to navbar height so the banner sits below the header */
body.has-light-nav { padding-top: 84px; }
body.has-light-nav .zb-page-banner,
body.has-light-nav .zb-contact-hero {
  margin-top: 0;
}

@media (max-width: 991.98px) {
  body.has-light-nav { padding-top: 76px; }
}

/* Fix Masjid Carpet (dark editorial) p contrast — was too pale */
.zb-editorial:not(.zb-editorial--light) .zb-editorial__copy p {
  color: rgba(255, 255, 255, 0.92) !important;
}
.zb-editorial:not(.zb-editorial--light) .zb-editorial__copy h3,
.zb-editorial:not(.zb-editorial--light) .zb-editorial__copy {
  color: #ffffff;
}

/* Make sure light editorials are dark-on-light too */
.zb-editorial--light .zb-editorial__copy p {
  color: #3f5256 !important;
}
.zb-editorial--light .zb-editorial__copy h3 {
  color: var(--brand-ink) !important;
}

/* Showcase title and copy contrast */
.zb-showcase__title { color: var(--brand-ink) !important; }
.zb-showcase__sub   { color: #607378 !important; }

/* Generic safety — any .zb-section--ink p */
.zb-section--ink p,
.zb-section--ink .zb-lede {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* Make sure light-section text is dark */
.zb-section--cream p,
.zb-section--mint p {
  color: var(--brand-text);
}

/* ================================================================
   V6.3 — Contact button: no hover lift + responsive polish
   ================================================================ */
/* Vertical-center the Contact CTA inside the container; kill any hover lift */
@media (min-width: 992px) {
  .navbar-zarabi .container { position: relative !important; }
  .navbar-zarabi .nav-cta {
    position: absolute !important;
    right: 0px !important;
    top: 0% !important;
    transform: translateY(-50%) !important;
    margin: 0 !important;
  }
  .navbar-zarabi .nav-cta:hover,
  .navbar-zarabi .nav-cta:focus,
  .navbar-zarabi .nav-cta:active {
    transform: translateY(-50%) !important;
  }
}

/* Ensure header text doesn't shift on hover */
.navbar-zarabi .nav-link:hover,
.navbar-zarabi .nav-link:focus {
  transform: none !important;
}

/* ---------- Responsive polish ---------- */

/* Tablet portrait (768–991) */
@media (max-width: 991.98px) {
  /* Hide vertical side label and arrows already done elsewhere */
  /* Header: keep logo + toggler in single line */
  .navbar-zarabi .container { flex-wrap: wrap; }
  .navbar-zarabi .navbar-brand img { height: 38px !important; }

  /* Hero content padding tighter */
  .zb-hero__inner { padding: 110px 0 130px !important; }
  .zb-hero__content h1 { font-size: clamp(34px, 6.5vw, 56px) !important; }
  .zb-hero__content p { font-size: 14px !important; }
  .zb-hero__ctas .zb-btn { padding: 0 22px; height: 44px; font-size: 11px; }

  /* Section padding */
  .zb-section { padding: 64px 0; }
  .zb-section--tight { padding: 48px 0; }

  /* Editorial layout stacks naturally */
  .zb-editorial { min-height: auto; }
  .zb-editorial__media { min-height: 280px; }
  .zb-editorial__copy { padding: 32px 28px !important; }

  /* Display sizes */
  .zb-display { font-size: clamp(28px, 4vw, 40px) !important; }
  .zb-headline { font-size: clamp(22px, 3vw, 30px) !important; }

  /* Locations grid: 2-3 cols max */
  .zb-locations { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Mosaic: smaller rows */
  .zb-mosaic { grid-auto-rows: 140px; gap: 10px; }

  /* Stats stacked */
  .zb-stats { grid-template-columns: 1fr; gap: 28px; text-align: center; }

  /* Footer alignment */
  .zb-footer h5 { margin-top: 22px; }
}

/* Mobile (≤575) */
@media (max-width: 575.98px) {
  .navbar-zarabi .navbar-brand img { height: 32px !important; }
  .navbar-zarabi { padding: 14px 0 !important; }

  .zb-hero,
  .zb-hero__inner {
    min-height: 540px !important;
    max-height: 540px !important;
    height: 540px !important;
  }
  .zb-hero__inner { padding: 100px 0 110px !important; }
  .zb-hero__content h1 { font-size: 32px !important; line-height: 1.05 !important; }
  .zb-hero__content p { font-size: 13px !important; }
  .zb-hero__ctas .zb-btn { width: 100%; justify-content: center; }

  .zb-page-banner,
  .zb-contact-hero {
    min-height: 240px !important;
    max-height: 240px !important;
    height: 240px !important;
  }
  .zb-page-banner h1,
  .zb-contact-hero h1 { font-size: 30px !important; }

  /* Single col card layouts */
  .zb-locations { grid-template-columns: 1fr; gap: 12px; }
  .zb-grid--3, .zb-grid--4 { grid-template-columns: 1fr 1fr; gap: 12px; }
  .zb-mosaic__item.span-4, .zb-mosaic__item.span-6,
  .zb-mosaic__item.span-8, .zb-mosaic__item.span-12 { grid-column: span 1 !important; grid-row: span 1 !important; }
  .zb-mosaic { grid-template-columns: 1fr; }

  /* Editorial copy */
  .zb-editorial__copy { padding: 26px 22px !important; }
  .zb-editorial__copy h3 { font-size: 26px !important; }

  /* Footer */
  .zb-footer { padding-top: 50px; }
  .zb-footer .row > * { margin-bottom: 24px; }

  /* Contact form: stack actions */
  .zb-form-actions { flex-direction: column; align-items: stretch; }
  .zb-form-actions .zb-btn { width: 100%; justify-content: center; }
  .zb-form-actions small { text-align: center; }

  /* Tier-md photos */
  .zb-tier--md .zb-director__name { font-size: 24px; }

  /* Hide WhatsApp float on very small to avoid overlap */
  .zb-wa-float { width: 50px; height: 50px; font-size: 24px; right: 16px; bottom: 16px; }
}

/* Ultra small (≤375) */
@media (max-width: 375px) {
  .zb-grid--3, .zb-grid--4 { grid-template-columns: 1fr; }
  .zb-display { font-size: 26px !important; }
  .zb-headline { font-size: 22px !important; }
}

/* ================================================================
   V7 — Mobile-first nav redesign (emudhra-inspired)
   ================================================================ */
@media (max-width: 991.98px) {
  /* Reset navbar to white sticky bar on mobile */
  .navbar-zarabi {
    background: #ffffff !important;
    border-bottom: 1px solid var(--brand-line) !important;
    padding: 12px 0 !important;
    box-shadow: 0 2px 10px rgba(11,46,51,.06);
  }
  .navbar-zarabi .navbar-brand img.logo-dark  { display: inline-block !important; }
  .navbar-zarabi .navbar-brand img.logo-white { display: none !important; }
  .navbar-zarabi .navbar-brand img { height: 36px !important; }

  /* Container alignment */
  .navbar-zarabi .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
  }

  /* Hamburger button — clean SVG-style, always visible */
  .navbar-zarabi .navbar-toggler {
    display: inline-flex !important;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    padding: 0 !important;
    background: var(--brand-ink) !important;
    border: 0 !important;
    border-radius: 6px;
    cursor: pointer;
    box-shadow: none !important;
    outline: 0 !important;
    transition: background .25s;
  }
  .navbar-zarabi .navbar-toggler:hover,
  .navbar-zarabi .navbar-toggler:focus {
    background: var(--brand-green) !important;
  }
  .navbar-zarabi .navbar-toggler-icon {
    width: 22px; height: 22px;
    background: none !important;
    filter: none !important;
    position: relative;
  }
  .navbar-zarabi .navbar-toggler-icon::before,
  .navbar-zarabi .navbar-toggler-icon::after,
  .navbar-zarabi .navbar-toggler-icon {
    /* 3-bar hamburger lines */
  }
  .navbar-zarabi .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.2' stroke-linecap='round'><path d='M3 12H21M3 6H21M3 18H21'/></svg>") !important;
    background-repeat: no-repeat;
    background-position: center;
  }
  /* When open, swap to X */
  .navbar-zarabi .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round'><path d='M6 6L18 18M18 6L6 18'/></svg>") !important;
  }

  /* Mobile drawer — slide down from header */
  .navbar-zarabi .navbar-collapse {
    position: fixed !important;
    top: 64px; left: 0; right: 0;
    background: #fff;
    margin: 0 !important;
    border-radius: 0;
    padding: 8px 0 24px !important;
    box-shadow: 0 14px 30px -10px rgba(11,46,51,.18);
    border-top: 1px solid var(--brand-line);
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .navbar-zarabi .navbar-nav {
    flex-direction: column;
    padding: 0 !important;
    gap: 0 !important;
  }
  .navbar-zarabi .navbar-nav .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--brand-line);
  }
  .navbar-zarabi .navbar-nav .nav-item:last-child { border-bottom: 0; }
  .navbar-zarabi .nav-link {
    display: block !important;
    width: 100%;
    padding: 18px 24px !important;
    font-size: 13px !important;
    color: var(--brand-ink) !important;
    text-align: left;
    border-radius: 0;
  }
  .navbar-zarabi .nav-link:hover {
    background: var(--brand-green-soft);
    color: var(--brand-green) !important;
  }
  .navbar-zarabi .nav-link.active {
    background: var(--brand-green-soft);
    color: var(--brand-green) !important;
    font-weight: 700 !important;
  }
  .navbar-zarabi .nav-link::after { display: none !important; }

  /* Contact CTA inside the drawer */
  .navbar-zarabi .nav-cta {
    position: static !important;
    transform: none !important;
    display: block;
    width: calc(100% - 32px) !important;
    margin: 18px 16px 0 !important;
    padding: 14px 24px !important;
    height: auto !important;
    font-size: 12px !important;
    text-align: center !important;
    justify-content: center !important;
    background: var(--brand-ink) !important;
    color: #fff !important;
    border-radius: 8px;
  }

  /* Backdrop when menu is open */
  body.has-nav-open { overflow: hidden; }
  body.has-nav-open::before {
    content: '';
    position: fixed; inset: 0;
    background: rgba(11,46,51,.45);
    z-index: 9990;
    backdrop-filter: blur(2px);
  }

  /* Top offset for inner pages */
  body.has-light-nav { padding-top: 64px !important; }
}

/* Above 991, keep desktop nav, ensure no hover lift */
@media (min-width: 992px) {
  .navbar-zarabi .nav-cta,
  .navbar-zarabi .nav-cta:hover { transform: none !important; }
}

/* ================================================================
   V7.1 — Mobile hero: tighten content to keep strip visible
   ================================================================ */
@media (max-width: 991.98px) {
  .zb-hero,
  .zb-hero__inner {
    min-height: 580px !important;
    max-height: 580px !important;
    height: 580px !important;
  }
  .zb-hero__inner { padding: 86px 0 90px !important; }

  .zb-hero__content { max-width: 100%; }
  .zb-hero__content .zb-eyebrow {
    font-size: 10px !important;
    letter-spacing: 3px !important;
    margin-bottom: 12px !important;
    gap: 10px !important;
  }
  .zb-hero__content .zb-eyebrow::before { width: 24px !important; }
  .zb-hero__content h1 {
    font-size: 34px !important;
    line-height: 1.05 !important;
    margin-bottom: 14px !important;
  }
  .zb-hero__content p {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 20px !important;
    max-width: 100%;
  }

  /* Buttons — compact but tappable */
  .zb-hero__ctas { gap: 10px; flex-direction: column; }
  .zb-hero__ctas .zb-btn {
    width: 100%;
    height: 44px;
    padding: 0 18px;
    font-size: 11px;
    letter-spacing: 1.5px;
    justify-content: center;
  }

  /* Bottom strip — keep visible */
  .zb-hero__strip {
    padding: 10px 0 !important;
    background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  }
  .zb-hero__thumbs {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .zb-hero__thumbs::-webkit-scrollbar { display: none; }
  .zb-hero__thumb {
    flex: 0 0 auto;
    min-height: 42px !important;
    padding: 4px 10px !important;
    gap: 10px !important;
    border-left: 1px solid rgba(255,255,255,.12) !important;
  }
  .zb-hero__thumb .num { font-size: 18px !important; min-width: 24px; }
  .zb-hero__thumb .lbl { font-size: 9.5px !important; letter-spacing: 1.2px !important; }
  .zb-hero__thumb .lbl small { display: none !important; }
}

@media (max-width: 575.98px) {
  .zb-hero,
  .zb-hero__inner {
    min-height: 560px !important;
    max-height: 560px !important;
    height: 560px !important;
  }
  .zb-hero__inner { padding: 80px 0 80px !important; }
  .zb-hero__content h1 { font-size: 30px !important; }
  .zb-hero__content p { font-size: 13px !important; }
}

/* ================================================================
   V7.2 — Mobile banner padding + button hygiene
   ================================================================ */
@media (max-width: 991.98px) {
  /* Container side padding for breathing room */
  .zb-hero .container {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
  /* Content keeps reasonable max-width even when container is wide-ish */
  .zb-hero__content { padding-right: 8px; }

  /* Buttons — refined, not edge-to-edge */
  .zb-hero__ctas {
    flex-direction: row !important;
    gap: 10px !important;
    flex-wrap: wrap;
  }
  .zb-hero__ctas .zb-btn {
    width: auto !important;
    flex: 0 1 auto !important;
    height: 42px !important;
    padding: 0 20px !important;
    font-size: 11px !important;
    letter-spacing: 1.4px !important;
  }
}

@media (max-width: 575.98px) {
  .zb-hero .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .zb-hero__content h1 { font-size: 28px !important; letter-spacing: -.01em !important; }
  .zb-hero__content p { font-size: 13px !important; }

  /* On very narrow, stack buttons but keep them compact */
  .zb-hero__ctas { flex-direction: column !important; align-items: stretch; }
  .zb-hero__ctas .zb-btn {
    width: 100% !important;
    max-width: 280px;
    margin: 0;
    align-self: flex-start;
  }
}

/* Strip safe padding */
@media (max-width: 991.98px) {
  .zb-hero__strip .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* V7.3 removed — was breaking slide visibility (display:block on inactive slides). */
