@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --primary-navy: #0B192C;
  --secondary-navy: #1E293B;
  --accent-teal: #0D9488;
  --accent-cyan: #0EA5E9;
  --accent-cyan-hover: #0284C7;
  --bg-light: #F8FAFC;
  --bg-white: #FFFFFF;
  --border-color: #E2E8F0;
  --text-dark: #0F172A;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

[dir="rtl"] body {
  font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Top Notification Bar */
.topbar {
  background: var(--primary-navy);
  color: #94A3B8;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 0;
}
.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-links, .topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar a {
  color: #CBD5E1;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.topbar a:hover {
  color: #38BDF8;
}
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  padding: 3px 8px;
  border-radius: 6px;
}
.lang-btn {
  color: #94a3b8;
  text-decoration: none;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.2s;
}
.lang-btn.active {
  background: var(--accent-cyan);
  color: #ffffff;
}

/* Header & Navbar */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

/* Brand Logo */
.brand-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary-navy);
  line-height: 1.1;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--accent-cyan), var(--accent-teal));
  color: white;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.brand-sub {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-top: 2px;
}
[dir="rtl"] .brand-sub {
  letter-spacing: 0;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s;
  position: relative;
  padding: 6px 0;
}
.nav-link:hover, .nav-link.active {
  color: var(--accent-cyan);
}
.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-cyan);
  transform: scaleX(0);
  transition: transform 0.2s;
}
.nav-link:hover:after, .nav-link.active:after {
  transform: scaleX(1);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent-cyan);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
  background: var(--accent-cyan-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
}
.btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}
.btn-outline {
  background: transparent;
  color: var(--primary-navy);
  border-color: var(--border-color);
}
.btn-outline:hover {
  border-color: var(--primary-navy);
  background: var(--bg-light);
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #091424 0%, #0F172A 60%, #0A2540 100%);
  color: #FFFFFF;
  padding: 100px 0 90px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 10% 80%, rgba(13, 148, 136, 0.12) 0%, transparent 40%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  max-width: 820px;
  z-index: 1;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(14, 165, 233, 0.12);
  color: #38BDF8;
  border: 1px solid rgba(56, 189, 248, 0.3);
  margin-bottom: 24px;
}
[dir="rtl"] .badge-pill {
  letter-spacing: 0;
}
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.text-teal-400 {
  color: #2DD4BF;
}
.hero-lead {
  font-size: 19px;
  line-height: 1.6;
  color: #CBD5E1;
  margin-bottom: 40px;
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 36px;
}
.stat-item h3 {
  font-size: 24px;
  font-weight: 800;
  color: #38BDF8;
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 13px;
  color: #94A3B8;
}

/* Sections Common */
.section {
  padding: 90px 0;
}
.section-light {
  background-color: var(--bg-light);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-badge {
  color: var(--accent-teal);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 12px;
}
[dir="rtl"] .section-badge {
  letter-spacing: 0;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 16px;
  line-height: 1.25;
}
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
}

/* About Intro Grid */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.intro-text h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--primary-navy);
  margin-bottom: 20px;
  line-height: 1.3;
}
.intro-lead-text {
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 16px;
}
.intro-p {
  color: var(--text-muted);
  margin-bottom: 16px;
}
.intro-card {
  background: linear-gradient(135deg, var(--primary-navy), #1E293B);
  color: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.08);
}
.intro-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #38BDF8;
}
.intro-card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.intro-card-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #E2E8F0;
}
.intro-card-list svg {
  flex-shrink: 0;
  color: #2DD4BF;
  margin-top: 3px;
}

/* Categories Matrix (9 Categories) */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-lg);
}
.cat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 233, 0.08);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.cat-card:hover .cat-icon-box {
  background: var(--accent-cyan);
  color: white;
}
.cat-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}
.cat-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
.cat-link-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Products Catalogue Showcase */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
  background: white;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.category-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill-btn {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 9999px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.2s;
}
.pill-btn.active, .pill-btn:hover {
  background: var(--primary-navy);
  color: white;
  border-color: var(--primary-navy);
}
.search-box {
  position: relative;
  min-width: 280px;
}
.search-input {
  width: 100%;
  padding: 9px 16px 9px 38px;
  font-size: 13px;
  border: 1px solid var(--border-color);
  border-radius: 9999px;
  outline: none;
  transition: border-color 0.2s;
}
[dir="rtl"] .search-input {
  padding: 9px 38px 9px 16px;
}
.search-input:focus {
  border-color: var(--accent-cyan);
}
.search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}
[dir="rtl"] .search-icon {
  left: auto;
  right: 14px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: #CBD5E1;
}
.product-img-wrap {
  position: relative;
  background: var(--bg-light);
  padding: 20px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-cat-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(15, 23, 42, 0.85);
  color: #38BDF8;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}
[dir="rtl"] .product-cat-tag {
  right: auto;
  left: 12px;
}
.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.product-sku {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-teal);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.product-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.product-short-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-footer {
  display: flex;
  gap: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}

/* Why Choose Us */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--accent-teal);
  box-shadow: var(--shadow-md);
}
.why-num {
  font-size: 32px;
  font-weight: 800;
  color: rgba(13, 148, 136, 0.25);
  margin-bottom: 12px;
  line-height: 1;
}
.why-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Industries We Serve */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.2s;
}
.industry-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-md);
}
.ind-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(14, 165, 233, 0.1);
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.industry-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 6px;
}
.industry-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Brands Showcase */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brand-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--primary-navy);
}
.brand-origin {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}
.brand-desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.brand-cat-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  background: var(--bg-light);
  border-radius: 4px;
  color: var(--text-muted);
  align-self: flex-start;
}

/* Request a Quote (RFQ) Form */
.rfq-section {
  background: linear-gradient(180deg, var(--bg-light) 0%, #EDF2F7 100%);
  padding: 90px 0;
}
.rfq-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  padding: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-navy);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.2s;
  background: white;
  font-family: inherit;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}
.rfq-items-table {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 24px;
}
.rfq-item-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr 40px;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.btn-remove-row {
  background: #FEE2E2;
  color: #DC2626;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.file-upload-box {
  border: 2px dashed #CBD5E1;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  background: var(--bg-light);
  cursor: pointer;
  transition: border-color 0.2s;
}
.file-upload-box:hover {
  border-color: var(--accent-cyan);
}
.file-upload-box input {
  display: none;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.info-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}
.info-card-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-navy);
  color: #38BDF8;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--primary-navy);
  margin-bottom: 4px;
}
.info-card-body p, .info-card-body a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}
.info-card-body a:hover {
  color: var(--accent-cyan);
}

/* Map Embed */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
  margin-top: 24px;
  height: 200px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--primary-navy);
  color: #94A3B8;
  padding: 70px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #CBD5E1;
}
.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  position: relative;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #38BDF8;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
}
[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 30px;
}

/* Modal for Product Details */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 36px;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease-out;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #F1F5F9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
[dir="rtl"] .modal-close {
  right: auto;
  left: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .categories-grid, .products-grid, .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { height: 72px; }
  .nav-links { display: none; } /* Mobile toggle */
  .hero-title { font-size: 34px; }
  .hero-lead { font-size: 16px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .intro-grid { grid-template-columns: 1fr; }
  .categories-grid, .products-grid, .industries-grid, .brands-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .form-row-2, .form-row-3, .rfq-item-row { grid-template-columns: 1fr; }
  .rfq-card { padding: 24px 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
