/* =========================================
   Remal Al Nokhba - styles.css
   Design inspired by infomeuae.com layout
   ========================================= */

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

/* ---- CSS Variables ---- */
:root {
  --primary:       #0D4F9F;
  --primary-dark:  #0a3a7a;
  --primary-light: #1a6fd4;
  --secondary:     #F26522;
  --secondary-light: #ff8a4a;
  --white:         #ffffff;
  --dark:          #0f1624;
  --dark-2:        #1a2236;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --border:        #e2e8f0;
  --bg-light:      #f8fafc;
  --bg-dark:       #0f1624;
  --success:       #25D366;

  --font-heading:  'Outfit', sans-serif;
  --font-body:     'Inter', sans-serif;

  --header-height: 76px;
  --radius-sm:     8px;
  --radius-md:     16px;
  --radius-lg:     24px;
  --radius-full:   9999px;

  --shadow-sm:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.14);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.20);

  --transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1260px; margin: 0 auto; padding: 0 24px; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,79,159,0.35); }
.btn-secondary { background: var(--secondary); color: var(--white); }
.btn-secondary:hover { background: #d4531a; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(242,101,34,0.35); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.w-full { width: 100%; justify-content: center; }

/* ---- Section Defaults ---- */
.section { padding: 70px 0; }
.section-light { background: var(--bg-light); }
.section-dark { background: var(--bg-dark); }

/* ---- Section Header Row ---- */
.section-hdr-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 12px;
  flex-wrap: wrap;
}
.section-hdr-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  position: relative;
  padding-bottom: 10px;
}
.section-hdr-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--secondary);
  border-radius: 2px;
}
.section-hdr-sub { color: var(--text-muted); font-size: 0.9rem; }
.show-all-link { color: var(--primary); font-weight: 600; font-size: 0.9rem; white-space: nowrap; transition: var(--transition); }
.show-all-link:hover { color: var(--secondary); }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition);
  height: var(--header-height);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}
.logo-link { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-box { display: flex; flex-direction: column; line-height: 1; }
.logo-remal {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo-al {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: -0.5px;
  margin-left: 6px;
}
.logo-sub {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.logo-box { flex-direction: row; flex-wrap: wrap; align-items: flex-end; gap: 0; }
.logo-box .logo-sub { width: 100%; margin-left: 0; }

.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--primary); background: rgba(13,79,159,0.06); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  min-width: 210px;
  padding: 8px;
  display: none;
  flex-direction: column;
  z-index: 100;
}
.nav-dropdown:hover .dropdown-menu { display: flex; }
.dropdown-menu a {
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }

.header-actions { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; border-radius: var(--radius-sm); }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  z-index: 999;
  display: none;
  padding: 16px 24px 24px;
}
.mobile-nav.active { display: block; }
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: var(--transition);
}
.mobile-nav-link:hover { background: var(--bg-light); color: var(--primary); }
.mobile-dropdown-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 2px solid #eaeaea;
  margin-left: 12px;
  margin-top: 4px;
  margin-bottom: 6px;
}
.mobile-nav-link.sub-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  color: var(--text-light);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: transparent;
}
.slider-track { position: relative; width: 100%; height: 320px; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  width: 100%;
}
.slide-content-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}
.slide-text { flex: 1; min-width: 0; }
.slide-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.brand-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.slide-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.slide-title span { color: var(--secondary); }
.slide-desc {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 20px;
  max-width: 550px;
  line-height: 1.65;
}
.slide-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.slide-img {
  flex: 0 0 360px;
  max-width: 360px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
}
.slide-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}

/* Slider dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--white); transform: scale(1.3); }

/* Slider arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* =============================================
   CATEGORIES
   ============================================= */
.section-categories {
  padding: 40px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.categories-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.categories-grid::-webkit-scrollbar { display: none; }
.cat-card {
  flex: 0 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1.4;
}
.cat-card:hover {
  border-color: var(--primary);
  background: rgba(13,79,159,0.04);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.cat-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-icon svg { width: 100%; height: 100%; }
.cat-icon-more {
  background: var(--bg-light);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}
.cat-card:hover .cat-icon { color: var(--primary); }

/* =============================================
   TRENDING PRODUCTS
   ============================================= */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trending-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card-grad, linear-gradient(135deg, #0D4F9F, #0a3578));
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  transition: var(--transition);
  gap: 20px;
}
.trending-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.trending-content { flex: 1; min-width: 0; }
.trending-brand {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trending-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}
.trending-cta {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.trending-card:hover .trending-cta { background: rgba(255,255,255,0.25); }
.trending-img {
  flex: 0 0 200px;
  max-width: 200px;
}
.trending-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius-md);
  opacity: 0.9;
}

/* =============================================
   FEATURED PRODUCTS GRID
   ============================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary); transform: translateY(-4px); }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  z-index: 1;
}
.new-badge { background: var(--secondary); }
.product-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg-light);
}
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-info { padding: 16px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.product-brand {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.product-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; flex: 1; }
.product-info .btn { margin-top: 10px; align-self: flex-start; }

/* =============================================
   BRANDS STRIP
   ============================================= */
.brands-strip {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.brand-item { flex: 1 0 140px; }
.brand-logo-box {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.brand-logo-box:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.brand-name-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  transition: var(--transition);
}
.brand-logo-box:hover .brand-name-text { color: var(--primary); }

/* =============================================
   ABOUT / WHY CHOOSE US
   ============================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.about-text-col { color: var(--white); }
.about-lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 16px;
}
.about-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.advantages-col { display: flex; flex-direction: column; gap: 16px; }
.advantage-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: var(--transition);
}
.advantage-card:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.2); }
.adv-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.adv-icon svg { width: 22px; height: 22px; }
.advantage-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.advantage-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.55; }

/* =============================================
   INDUSTRIES
   ============================================= */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 16px;
  text-align: center;
  background: var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.industry-card:hover { border-color: var(--primary); background: rgba(13,79,159,0.04); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.industry-icon { font-size: 2rem; margin-bottom: 10px; }
.industry-card h4 { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--text); }

/* =============================================
   LOCATIONS
   ============================================= */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.location-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
}
.location-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.location-flag { font-size: 2.2rem; margin-bottom: 12px; }
.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hq-tag {
  background: var(--primary);
  color: var(--white);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.ksa-tag {
  background: #006C35;
  color: var(--white);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
}
.location-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 6px; line-height: 1.5; }
.location-card p a { color: var(--primary); transition: var(--transition); }
.location-card p a:hover { color: var(--secondary); }
.location-map-btn {
  display: inline-block;
  margin-top: 14px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.location-map-btn:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* =============================================
   CONTACT SECTION
   ============================================= */
.section-contact { background: var(--bg-light); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}
.contact-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-subtitle { color: var(--text-muted); line-height: 1.7; margin-bottom: 28px; font-size: 0.95rem; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail-item { display: flex; align-items: center; gap: 12px; font-size: 0.92rem; }
.cd-icon { font-size: 1.2rem; width: 20px; text-align: center; }
.contact-detail-item a { color: var(--primary); font-weight: 600; transition: var(--transition); }
.contact-detail-item a:hover { color: var(--secondary); }

.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.83rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(13,79,159,0.12);
}

/* =============================================
   FOOTER
   ============================================= */
.footer { background: #0f1624; color: rgba(255,255,255,0.7); }
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-top: 56px;
  padding-bottom: 48px;
}
.footer-logo-box { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0 6px; margin-bottom: 16px; }
.footer-brand-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.footer-col h5 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact-info { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.footer-contact-info p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-info a { color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-contact-info a:hover { color: var(--white); }
.footer-offices { display: flex; flex-direction: column; gap: 6px; }
.fo-item { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* =============================================
   FLOATING WIDGETS
   ============================================= */
.floating-whatsapp {
  display: none !important;
  /* position: fixed;
  bottom: 30px;
  left: 30px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 990;
  transition: var(--transition); */
}
.floating-whatsapp svg { width: 30px; height: 30px; }
.floating-whatsapp:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

.chat-trigger-badge {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 10px 18px 10px 10px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  z-index: 990;
  transition: var(--transition);
}
.chat-trigger-badge:hover { border-color: var(--primary); transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.chat-trigger-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.chat-trigger-text { display: flex; flex-direction: column; }
.ctt-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; color: var(--text); }
.ctt-sub { font-size: 0.75rem; color: var(--success); font-weight: 600; }

/* ---- Chat Window ---- */
.chat-window {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 360px;
  max-width: 95vw;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1.5px solid var(--border);
  z-index: 991;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.chat-window.active { display: flex; }
.chat-header {
  background: linear-gradient(135deg, #0A5F4E, #0d7a62);
  color: var(--white);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-profile { display: flex; align-items: center; gap: 12px; }
.chat-avatar-wrap { position: relative; flex-shrink: 0; }
.chat-avatar-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.chat-avatar-icon svg { width: 24px; height: 24px; }
.chat-online-dot {
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4ade80;
  border: 2px solid white;
}
.chat-profile-info strong { display: block; font-size: 0.92rem; }
.chat-status { font-size: 0.75rem; color: #86efac; }
.chat-close-btn { color: rgba(255,255,255,0.7); font-size: 1rem; padding: 4px; transition: var(--transition); border-radius: 4px; }
.chat-close-btn:hover { color: var(--white); background: rgba(255,255,255,0.15); }
.chat-body {
  flex: 1;
  max-height: 260px;
  overflow-y: auto;
  padding: 16px;
  background: #f8fafb;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}
.chat-bubble.agent {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--border);
  align-self: flex-start;
  border-radius: 2px 12px 12px 12px;
}
.chat-bubble.user {
  background: var(--primary);
  color: var(--white);
  align-self: flex-end;
  border-radius: 12px 12px 2px 12px;
}
.chat-footer { padding: 12px 14px; background: var(--white); border-top: 1px solid var(--border); }
.chat-input-row { display: flex; gap: 8px; margin-bottom: 10px; }
.chat-input {
  flex: 1;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-full);
  padding: 9px 14px;
  font-size: 0.88rem;
  outline: none;
  transition: var(--transition);
}
.chat-input:focus { border-color: var(--primary); }
.chat-send-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}
.chat-send-btn svg { width: 18px; height: 18px; }
.chat-send-btn:hover { background: var(--primary-dark); }
.chat-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.chat-wa-btn:hover { background: #20b95a; }

/* =============================================
   RESPONSIVE BREAKPOINTS
   ============================================= */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: repeat(2, 1fr); }
  .footer-top .footer-brand { grid-column: span 2; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .trending-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .slider-track { height: 420px; }
  .slide-img { display: none; }
  .slide-title { font-size: 2.1rem; }
}

@media (max-width: 768px) {
  :root { --header-height: 68px; }
  .nav-menu, .header-actions { display: none; }
  .hamburger { display: flex; }
  .section { padding: 50px 0; }
  .section-categories { padding: 30px 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 10px; }
  .chat-window { width: calc(100vw - 40px); right: 20px; bottom: 100px; }
  .form-row { grid-template-columns: 1fr; }
  .trending-img { display: none; }
}

@media (max-width: 480px) {
  .slide-title { font-size: 1.7rem; }
  .slide-brand-tag { font-size: 0.75rem; }
  .slide-actions { flex-direction: column; gap: 10px; }
  .products-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .section-hdr-title { font-size: 1.3rem; }
}

/* ---- Utility ---- */
.text-center { text-align: center; }


/* =============================================
   HERO SLIDER - infomeuae.com style (contained box)
   ============================================= */
.hero-slider-wrap {
  background: var(--bg-light);
  padding: 20px 0 0;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-width: 1260px;
  margin: 0 auto 0;
  background: #071428;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 320px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  width: 100%;
}
.slide-content-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 32px 48px;
  height: 100%;
}
.slide-text { flex: 1; min-width: 0; }
.slide-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.slide-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.slide-title span { color: var(--secondary); }
.slide-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  max-width: 420px;
  line-height: 1.65;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slide-img {
  flex: 0 0 360px;
  max-width: 360px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active { background: var(--white); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  line-height: 1;
}
.slider-arrow:hover { background: rgba(255,255,255,0.25); }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }

/* Contained wrapper padding */
.hero-outer {
  background: var(--bg-light);
  padding: 16px 24px 0;
}

@media (max-width: 900px) {
  .slider-track { height: 320px; }
  .slide-img { flex: 0 0 280px; max-width: 280px; height: 240px; }
  .slide-title { font-size: 1.7rem; }
  .slide-content-wrap { padding: 24px 32px; gap: 20px; }
}
@media (max-width: 700px) {
  .slider-track { height: 260px; }
  .slide-img { display: none; }
  .slide-title { font-size: 1.4rem; }
  .slide-desc { font-size: 0.85rem; }
  .slide-content-wrap { padding: 20px 24px; }
  .slide-actions .btn { font-size: 0.8rem; padding: 9px 18px; }
  .hero-outer { padding: 12px 12px 0; }
}


/* =============================================
   HERO SLIDER - infomeuae.com style (contained box)
   ============================================= */
.hero-slider-wrap {
  background: var(--bg-light);
  padding: 20px 0 0;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  max-width: 1260px;
  margin: 0 auto 0;
  background: #071428;
}
.slider-track {
  position: relative;
  width: 100%;
  height: 320px;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.slide.active { opacity: 1; z-index: 2; }
.slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  width: 100%;
}
.slide-content-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  width: 100%;
  padding: 32px 48px;
  height: 100%;
}
.slide-text { flex: 1; min-width: 0; }
.slide-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.brand-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  flex-shrink: 0;
}
.slide-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.slide-title span { color: var(--secondary); }
.slide-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 22px;
  max-width: 420px;
  line-height: 1.65;
}
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.slide-img {
  flex: 0 0 360px;
  max-width: 360px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.slider-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dot.active { background: var(--white); transform: scale(1.3); }
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  line-height: 1;
}
.slider-arrow:hover { background: rgba(255,255,255,0.25); }
.slider-arrow.prev { left: 14px; }
.slider-arrow.next { right: 14px; }

/* Contained wrapper padding */
.hero-outer {
  background: var(--bg-light);
  padding: 16px 24px 0;
}

@media (max-width: 900px) {
  .slider-track { height: 320px; }
  .slide-img { flex: 0 0 280px; max-width: 280px; height: 240px; }
  .slide-title { font-size: 1.7rem; }
  .slide-content-wrap { padding: 24px 32px; gap: 20px; }
}
@media (max-width: 700px) {
  .slider-track { height: 260px; }
  .slide-img { display: none; }
  .slide-title { font-size: 1.4rem; }
  .slide-desc { font-size: 0.85rem; }
  .slide-content-wrap { padding: 20px 24px; }
  .slide-actions .btn { font-size: 0.8rem; padding: 9px 18px; }
  .hero-outer { padding: 12px 12px 0; }
}

/* =============================================
   MOBILE LAYOUT - infomeuae.com style
   ============================================= */

@media (max-width: 768px) {

  /* --- Mobile Header --- */
  .header { height: 64px; }
  :root { --header-height: 64px; }
  .logo-remal, .logo-al { font-size: 1.3rem; }
  .logo-sub { font-size: 0.6rem; }

  /* --- Categories - bigger on mobile --- */
  .section-categories { padding: 24px 0; }
  .categories-grid { gap: 10px; padding: 0 0 6px; }
  .cat-card { flex: 0 0 100px; padding: 16px 8px 12px; font-size: 0.8rem; }
  .cat-icon { width: 42px; height: 42px; }

  /* --- Footer mobile: infomeuae style --- */
  .footer { background: var(--primary); }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 32px 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-brand {
    grid-column: span 2;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .footer-logo-box { margin-bottom: 14px; }
  .footer-brand-desc {
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
  }
  .social-links { gap: 14px; }
  .social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    color: var(--white);
  }
  .social-btn svg { width: 20px; height: 20px; }
  .social-btn:hover { background: rgba(255,255,255,0.3); }

  /* Footer columns: 2 per row on mobile */
  .footer-col {
    padding: 20px 10px 20px 0;
  }
  .footer-col h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .footer-col h5::after { background: rgba(255,255,255,0.4); }
  .footer-links a { color: rgba(255,255,255,0.8); font-size: 0.88rem; }
  .footer-links a:hover { color: var(--white); padding-left: 4px; }
  .footer-contact-info p { color: rgba(255,255,255,0.8); }
  .footer-contact-info a { color: rgba(255,255,255,0.8); }
  .fo-item { color: rgba(255,255,255,0.65); }

  /* Locations divider style - like infomeuae */
  #footer .footer-locations-header {
    display: flex;
    align-items: center;
    gap: 12px;
    grid-column: span 2;
    padding: 20px 0 4px;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
  }
  #footer .footer-locations-header::before,
  #footer .footer-locations-header::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.3);
  }

  /* Footer bottom */
  .footer-bottom {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 16px 20px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    color: rgba(255,255,255,0.55);
  }
  .footer-bottom-links a { color: rgba(255,255,255,0.55); }
  .footer-bottom-links a:hover { color: var(--white); }

  /* --- Sections padding --- */
  .section { padding: 40px 0; }
  .section-hdr-title { font-size: 1.25rem; }

  /* --- Products grid - 1 col on mobile --- */
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-img { height: 150px; }
  .product-name { font-size: 0.88rem; }
  .product-desc { font-size: 0.78rem; }

  /* --- Trending cards --- */
  .trending-card { padding: 24px 20px; min-height: 170px; }
  .trending-title { font-size: 1.1rem; }

  /* --- Industries --- */
  .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .industry-card { padding: 20px 10px; }
  .industry-icon { font-size: 1.6rem; }
  .industry-card h4 { font-size: 0.82rem; }

  /* --- Locations --- */
  .locations-grid { grid-template-columns: 1fr; gap: 14px; }
  .location-card { padding: 20px; }

  /* --- Contact --- */
  .contact-form { padding: 24px 18px; }
  .contact-title { font-size: 1.5rem; }

  /* --- Floating chat --- */
  .chat-trigger-badge { right: 16px; bottom: 20px; padding: 8px 14px 8px 8px; }
  .chat-trigger-icon { width: 38px; height: 38px; font-size: 1.1rem; }
  .ctt-title { font-size: 0.82rem; }
  .ctt-sub { font-size: 0.72rem; }
  .floating-whatsapp { left: 16px; bottom: 20px; width: 50px; height: 50px; }
  .floating-whatsapp svg { width: 26px; height: 26px; }

  /* --- Mobile nav --- */
  .mobile-nav { padding: 12px 16px 20px; }
  .mobile-nav-link { font-size: 0.9rem; padding: 10px 14px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; gap: 16px; }
  .product-info { padding: 12px; }
  .product-name { font-size: 0.82rem; }
  .btn-sm { padding: 7px 14px; font-size: 0.78rem; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }

  /* Cat cards scroll nicely */
  .cat-card { flex: 0 0 90px; font-size: 0.75rem; }
  .cat-icon { width: 38px; height: 38px; }

  /* Hero */
  .slide-title { font-size: 1.3rem; }
  .slide-actions { flex-direction: column; gap: 8px; }
  .slide-actions .btn { text-align: center; justify-content: center; }
  .hero-outer { padding: 10px 10px 0; }
}

/* =============================================
   SOLUTIONS LIST SECTION - Premium Cards
   ============================================= */
.section-solutions-list {
  padding: 70px 0;
  background: var(--bg-light);
}
.solutions-list-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.sol-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.sol-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.sol-card:hover {
  border-color: rgba(13,79,159,0.25);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.sol-card:hover::after { transform: scaleX(1); }
.sol-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(13,79,159,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  transition: var(--transition);
}
.sol-card:hover .sol-icon-wrap {
  background: var(--primary);
}
.sol-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
  transition: var(--transition);
}
.sol-card:hover .sol-icon-wrap svg { color: var(--white); }
.sol-num {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: rgba(13,79,159,0.07);
  line-height: 1;
  transition: var(--transition);
}
.sol-card:hover .sol-num { color: rgba(13,79,159,0.13); }
.sol-info h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
  transition: var(--transition);
}
.sol-card:hover .sol-info h3 { color: var(--primary); }
.sol-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.sol-arrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--transition);
}
.sol-card:hover .sol-arrow { opacity: 1; transform: translateX(0); }
/* 4-column trending grid */
.trending-grid-4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px;
}
.trending-card-sm {
  min-height: 180px !important;
  padding: 24px 20px !important;
}
.trending-card-sm .trending-title {
  font-size: 1.05rem !important;
  margin-bottom: 14px !important;
}
.trending-card-sm .trending-img {
  flex: 0 0 110px !important;
  max-width: 110px !important;
}
.trending-card-sm .trending-img img {
  height: 120px !important;
  border-radius: 8px !important;
}

/* 8-column products grid override */
.products-grid {
  grid-template-columns: repeat(4, 1fr);
}

/* Solutions responsive */
@media (max-width: 1100px) {
  .solutions-list-grid { grid-template-columns: repeat(2, 1fr); }
  .trending-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 768px) {
  .solutions-list-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .section-solutions-list { padding: 40px 0; }
  .sol-card { padding: 18px 14px; }
  .sol-num { font-size: 1.5rem; }
  .sol-info h3 { font-size: 0.9rem; }
  .trending-grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .trending-card-sm .trending-img { display: none; }
}
@media (max-width: 480px) {
  .solutions-list-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .sol-card { padding: 14px 12px; }
}


/* =============================================
   SLIDE BACKGROUNDS & DECORATIVE ELEMENTS
   ============================================= */
.slide-bg-1 {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to right, #071428 0%, #0D4F9F 55%, #1565C0 100%);
}
.slide-bg-2 {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to right, #1a0800 0%, #8B3A00 55%, #c25200 100%);
}
.slide-bg-3 {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(to right, #071a0e 0%, #0a5c34 55%, #0d7a44 100%);
}
.slide-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.slide-decor-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.slide-decor-circle.c1 {
  width: 320px; height: 320px;
  top: -80px; right: -60px;
}
.slide-decor-circle.c2 {
  width: 200px; height: 200px;
  bottom: -60px; right: 260px;
  background: rgba(255,255,255,0.04);
}
.slide-decor-dots {
  position: absolute;
  top: 20px; left: 50%;
  width: 120px; height: 120px;
  background-image: radial-gradient(rgba(255,255,255,0.15) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  opacity: 0.5;
}

/* Ensure slide-content-wrap z-index is above decor */
.slide-content-wrap { z-index: 2 !important; }

/* Mobile Responsive Fixes for Product Pages */
@media (max-width: 991px) {
  .product-page-hero {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
    text-align: center;
  }
  .product-page-hero .product-page-text ul {
    text-align: left;
    display: inline-block;
  }
  .product-page-img img {
    max-width: 100%;
    height: auto;
  }
}


/* Hide slider dots on mobile to prevent overlapping buttons */
@media (max-width: 768px) {
  .slider-dots {
    display: none !important;
  }
}


@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr !important;
  }
}


@media (max-width: 700px) {
  .slider-track {
    height: 350px !important;
  }
}

/* =============================================
   STICKY CONTACT MENU
   ============================================= */
.sticky-contact-menu {
  position: fixed;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 9999;
}
.sticky-contact-item {
  width: 50px;
  height: 50px;
  background-color: #d13030;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.sticky-contact-item:hover {
  background-color: #a82424;
  width: 60px;
}
.sticky-contact-item svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
