/* ============================================
   PROMET - Global Steel Trading
   Main Stylesheet
   ============================================ */

:root {
  --primary:    #0b1a2e;
  --primary-light: #112240;
  --accent:     #c9a227;
  --accent-light: #e6be4a;
  --steel:      #64748b;
  --steel-light:#94a3b8;
  --white:      #ffffff;
  --off-white:  #f8f9fa;
  --light-gray: #f1f5f9;
  --border:     #e2e8f0;
  --text-dark:  #1e293b;
  --text-body:  #475569;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.12), 0 1px 2px rgba(0,0,0,.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,.12);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.18);
  --radius:     8px;
  --radius-lg:  16px;
  --transition: all .3s ease;
}

body.dark-mode {
  --primary: #081322;
  --primary-light: #0f223a;
  --accent: #d6b14a;
  --accent-light: #e8c768;
  --white: #0b1726;
  --off-white: #0f1d2e;
  --light-gray: #102133;
  --border: #23384f;
  --text-dark: #ecf2fb;
  --text-body: #b9c7d8;
  --steel: #9eb0c4;
  --steel-light: #b8c6d8;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
html { overflow-x: hidden; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4 { color: var(--text-dark); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { font-size: 1rem; }

/* ---- Layout Helpers ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-alt { background: var(--light-gray); }
.section-dark { background: var(--primary); color: var(--white); }
.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 620px; margin: 0 auto; color: var(--steel); font-size: 1.05rem; }
.section-dark .section-header p { color: var(--steel-light); }

.divider {
  width: 60px; height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600; font-size: .95rem;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,162,39,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 20px;
  background: rgba(11,26,46,.65);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(11,26,46,.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

/* ── Logo box: white rounded container ── */
.nav-logo {
  display: flex; align-items: center;
  background: var(--white);
  border-radius: 12px;
  padding: 7px 14px;
  margin-inline-end: 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
  transition: var(--transition);
}
.nav-logo:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transform: translateY(-1px);
}
.nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
  margin-inline-start: 0;
}
.nav-links a {
  color: rgba(255,255,255,.88);
  font-weight: 500; font-size: .92rem;
  letter-spacing: .3px;
  position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  margin-left: 0;
  margin-right: 0;
  margin-inline-start: 12px;
  padding: 10px 22px !important;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-actions .theme-toggle,
.nav-actions .lang-toggle,
.nav-actions .hamburger {
  margin: 0;
}
html[dir="rtl"] .nav-actions {
  margin-left: 0;
  margin-right: auto;
}

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  color: #f6f9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 12px;
}
.theme-toggle:hover {
  background: rgba(201,162,39,.18);
  border-color: rgba(201,162,39,.5);
}
.theme-toggle svg {
  width: 19px;
  height: 19px;
}
.theme-toggle .sun-icon { display: none; }
body.dark-mode .theme-toggle .moon-icon { display: none; }
body.dark-mode .theme-toggle .sun-icon { display: block; }

.lang-toggle {
  min-width: 48px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.08);
  color: #f6f9ff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  margin-left: 10px;
  padding: 0 12px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .6px;
}
.lang-toggle:hover {
  background: rgba(201,162,39,.18);
  border-color: rgba(201,162,39,.5);
}
body.dark-mode .lang-toggle {
  background: rgba(255,255,255,.06);
}

body.dark-mode .navbar {
  background: rgba(5, 12, 21, .76);
}
body.dark-mode .navbar.scrolled {
  background: rgba(5, 12, 21, .97);
}
body.dark-mode .nav-logo {
  background: #ffffff;
}
body.dark-mode .mobile-menu {
  background: rgba(6, 14, 25, .98);
}
body.dark-mode .hero-title {
  color: #ffffff;
}
body.dark-mode .hero .btn-outline {
  color: #ffffff;
  border-color: #ffffff;
  background: rgba(255,255,255,.04);
}
body.dark-mode .hero .btn-outline:hover {
  color: #0b1a2e;
  background: #ffffff;
  border-color: #ffffff;
}
body.dark-mode #why-us .section-header h2 {
  color: #ffffff;
}
body.dark-mode #why-us .section-header p,
body.dark-mode #why-us .feature-card h3,
body.dark-mode #why-us .feature-card p {
  color: #ffffff;
}

html[dir="rtl"] body {
  font-family: 'Cairo', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}
html[dir="rtl"] .hero-text,
html[dir="rtl"] .about-content,
html[dir="rtl"] .markets-info,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .contact-form-wrap,
html[dir="rtl"] .footer-col,
html[dir="rtl"] .section-header {
  text-align: right;
}
html[dir="rtl"] #products .section-header,
html[dir="rtl"] #products .section-header p {
  text-align: center;
}
html[dir="rtl"] #why-us .section-header,
html[dir="rtl"] #why-us .section-header p {
  text-align: center;
}
html[dir="rtl"] #contact .section-header,
html[dir="rtl"] #contact .section-header h2 {
  text-align: center;
}
html[dir="rtl"] #contact .contact-detail-list {
  align-items: stretch;
}
html[dir="rtl"] #contact .contact-detail {
  flex-direction: row;
  justify-content: flex-start;
  width: 100%;
}
html[dir="rtl"] #contact .cd-text {
  flex: 1;
  text-align: right;
  direction: rtl;
}
html[dir="rtl"] #contact .social-links {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
html[dir="rtl"] footer .footer-brand,
html[dir="rtl"] footer .footer-col,
html[dir="rtl"] footer .footer-contact-item,
html[dir="rtl"] footer .footer-bottom {
  text-align: right;
}
html[dir="rtl"] footer .footer-col h4::after {
  left: auto;
  right: 0;
}
html[dir="rtl"] footer .footer-contact-list {
  align-items: stretch;
}
html[dir="rtl"] footer .footer-contact-item {
  flex-direction: row;
  width: 100%;
  justify-content: flex-start;
}
html[dir="rtl"] footer .footer-contact-item span,
html[dir="rtl"] footer .footer-contact-item a {
  text-align: right;
  direction: rtl;
}
html[dir="rtl"] footer .footer-bottom {
  flex-direction: row-reverse;
}
html[dir="rtl"] .country-item,
html[dir="rtl"] .contact-detail,
html[dir="rtl"] .footer-contact-item {
  flex-direction: row-reverse;
  text-align: right;
}
html[dir="rtl"] .about-list li {
  flex-direction: row;
  text-align: right;
}
html[dir="rtl"] .about-list li .check-icon {
  order: 1;
}
html[dir="rtl"] .about-list li span:last-child {
  order: 2;
  flex: 1;
  text-align: right;
  direction: rtl;
}
html[dir="rtl"] .about-list li span:last-child {
  width: auto;
}
html[dir="rtl"] .country-note {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .mobile-menu a {
  justify-content: flex-start;
  text-align: right;
}
html[dir="rtl"] .mobile-menu a:hover,
html[dir="rtl"] .mobile-menu a:active {
  padding-left: 16px;
  padding-right: 22px;
}
html[dir="rtl"] .mobile-menu .mob-cta:hover {
  padding-right: 16px;
}

/* ── Hamburger — professional button ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 10px;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.hamburger:hover {
  background: rgba(201,162,39,.2);
  border-color: rgba(201,162,39,.5);
}
.hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger span:nth-child(2) { width: 14px; }
.hamburger.active span:nth-child(2) { width: 20px; }
.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); }
body.dark-mode .hamburger span { background: #ffffff; }

/* ── Mobile menu ── */
.mobile-menu {
  display: none;
  background: rgba(7,17,32,.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  gap: 4px;
  padding: 16px 16px 20px;
  border-top: 1px solid rgba(201,162,39,.2);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,.82);
  padding: 13px 16px;
  border-radius: 10px;
  font-weight: 500;
  font-size: .95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.mobile-menu a:hover,
.mobile-menu a:active {
  background: rgba(201,162,39,.1);
  border-color: rgba(201,162,39,.25);
  color: var(--white);
  padding-left: 22px;
}
.mobile-menu .mob-cta {
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 700;
  text-align: center;
  justify-content: center;
  margin-top: 8px;
  border-color: var(--accent) !important;
}
.mobile-menu .mob-cta:hover {
  background: var(--accent-light);
  padding-left: 16px;
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 600px;
  overflow: hidden;
}
.slider {
  position: relative; width: 100%; height: 100%;
}
.slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.slide.active { opacity: 1; }
.slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11,26,46,.82) 0%, rgba(11,26,46,.55) 60%, rgba(0,0,0,.35) 100%);
}

/* Slide backgrounds — put your photos in assets/images/ with these exact names */
.slide-1 {
  background-image: url('../images/slide-1.jpg');
  background-color: #0b1a2e; /* fallback if image missing */
  background-size: cover;
  background-position: center;
}
.slide-2 {
  background-image: url('../images/slide-2.jpg');
  background-color: #0b2e1a;
  background-size: cover;
  background-position: center;
}
.slide-3 {
  background-image: url('../images/slide-3.jpg');
  background-color: #3d2200;
  background-size: cover;
  background-position: center;
}
.slide-4 {
  background-image: url('../images/slide-4.jpg');
  background-color: #1a0b2e;
  background-size: cover;
  background-position: center;
}
.slide-5 {
  background-image: url('../images/slide-5.jpg');
  background-color: #0b2030;
  background-size: cover;
  background-position: center;
}

/* Decorative steel texture overlay for each slide */
.slide::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(255,255,255,.015) 2px, rgba(255,255,255,.015) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255,255,255,.01) 40px, rgba(255,255,255,.01) 41px);
  pointer-events: none;
}

.hero-content {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center;
}
.hero-content .container { width: 100%; }
.hero-text { max-width: 720px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,.18);
  border: 1px solid rgba(201,162,39,.4);
  color: var(--accent-light);
  padding: 6px 16px; border-radius: 100px;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .8px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}
.hero-title {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  color: rgba(255,255,255,.75);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-desc {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Slider dots */
.slider-dots {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 20; display: flex; gap: 10px;
}
.dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--accent); width: 28px; }

/* Slider arrows */
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 20;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }
.slider-arrow svg { width: 20px; height: 20px; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 80px; right: 40px; z-index: 20;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: .72rem; letter-spacing: 1px;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollDown 2s infinite;
}
@keyframes scrollDown {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Stats bar */
.stats-bar {
  background: var(--primary);
  border-bottom: 1px solid rgba(201,162,39,.2);
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 0 24px;
}
.stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 2rem; font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: .82rem; color: rgba(255,255,255,.55);
  margin-top: 4px; letter-spacing: .4px;
}

/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 50%, #0d2540 100%);
  position: relative;
}
.about-main-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.about-img-placeholder {
  text-align: center; padding: 40px;
}
.about-img-placeholder svg { width: 100px; height: 100px; opacity: .3; }
.about-img-placeholder p { color: rgba(255,255,255,.3); margin-top: 12px; font-size: .9rem; }
.about-badge-card {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--accent);
  color: var(--primary);
  padding: 20px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(201,162,39,.35);
  text-align: center;
}
.about-badge-card .num { font-size: 2rem; font-weight: 800; line-height: 1; }
.about-badge-card .lbl { font-size: .78rem; font-weight: 600; letter-spacing: .5px; margin-top: 4px; }

.about-content {}
.about-tag {
  display: inline-block;
  color: var(--accent); font-size: .82rem;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.about-content h2 { margin-bottom: 20px; }
.about-content p { margin-bottom: 20px; color: var(--text-body); }
.about-list { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.about-list li {
  display: flex; align-items: flex-start; gap: 12px;
}
.check-icon {
  width: 22px; height: 22px; min-width: 22px;
  background: rgba(201,162,39,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--accent); }

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.product-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
/* Product card images — real photos with dark overlay for icon visibility */
.product-card:nth-child(1) .product-img {
  background: linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.48)),
              url('../images/products/product-hrc.jpg') center/cover no-repeat;
}
.product-card:nth-child(2) .product-img {
  background: linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.48)),
              url('../images/products/product-hrp.jpg') center/cover no-repeat;
}
.product-card:nth-child(3) .product-img {
  background: linear-gradient(rgba(0,0,0,.42), rgba(0,0,0,.42)),
              url('../images/products/product-crc.jpg') center 30%/cover no-repeat;
}
.product-card:nth-child(4) .product-img {
  background: linear-gradient(rgba(0,0,0,.48), rgba(0,0,0,.48)),
              url('../images/products/product-gi.jpg') center 70%/cover no-repeat;
}
.product-card:nth-child(5) .product-img {
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              url('../images/products/product-ppgi.jpg') center 60%/cover no-repeat;
}
.product-card:nth-child(6) .product-img {
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              url('../images/products/product-sheets.jpg') center 40%/cover no-repeat;
}
.product-card:nth-child(7) .product-img {
  background: linear-gradient(rgba(0,0,0,.38), rgba(0,0,0,.38)),
              url('../images/products/product-structural.jpg') center/cover no-repeat;
}
.product-card:nth-child(8) .product-img {
  background: linear-gradient(rgba(0,0,0,.4), rgba(0,0,0,.4)),
              url('../images/products/product-profiles.jpg') center/cover no-repeat;
}

.product-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,.12);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.8);
  position: relative; z-index: 1;
}
.product-icon svg { width: 32px; height: 32px; }

/* Product cards: hide overlay icons on image area */
.product-icon { display: none; }

/* Shimmer on hover */
.product-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,.06) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s;
}
.product-card:hover .product-img::after { transform: translateX(100%); }

.product-tag {
  position: absolute; top: 12px; right: 12px;
  background: rgba(201,162,39,.9);
  color: var(--primary); font-size: .72rem;
  font-weight: 700; padding: 3px 10px;
  border-radius: 100px; letter-spacing: .5px;
}
.product-body { padding: 24px; }
.product-body h3 { margin-bottom: 10px; font-size: 1.1rem; }
.product-body p { font-size: .9rem; color: var(--text-body); line-height: 1.6; }
.product-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  color: var(--accent); font-size: .88rem; font-weight: 600;
  transition: gap .3s;
}
.product-link:hover { gap: 10px; }

/* ============================================
   WHY CHOOSE PROMET
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.feature-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(201,162,39,.08);
  border-color: rgba(201,162,39,.3);
  transform: translateY(-4px);
}
.feature-icon {
  width: 64px; height: 64px;
  background: rgba(201,162,39,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(201,162,39,.2); }
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.feature-card p  { font-size: .85rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ============================================
   MARKETS
   ============================================ */
.markets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}
.markets-info {}
.markets-info h2 { margin-bottom: 16px; }
.markets-info .divider { margin: 0 0 24px; }
.markets-info p { margin-bottom: 32px; }

.country-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.country-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: default;
}
.country-item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(201,162,39,.12);
  transform: translateX(4px);
}
.country-flag { font-size: 1.4rem; line-height: 1; }
.country-name { font-weight: 600; font-size: .95rem; color: var(--text-dark); }
.country-note { font-size: .78rem; color: var(--steel); margin-left: auto; }

.markets-map {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative; overflow: hidden;
}
.map-title {
  color: rgba(255,255,255,.6); font-size: .78rem;
  letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 16px;
}
.map-visual { width: 100%; }
.me-map-svg { width: 100%; height: auto; display: block; border-radius: 8px; }

/* Real country flag images */
.flag-img {
  width: 28px; height: 20px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,.3);
  flex-shrink: 0;
}
.flag-globe {
  width: 28px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); flex-shrink: 0;
}
.flag-globe svg { width: 20px; height: 20px; }

.sourcing-note {
  margin-top: 18px;
  padding: 13px 16px;
  background: rgba(201,162,39,.08);
  border: 1px solid rgba(201,162,39,.2);
  border-radius: var(--radius);
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  line-height: 1.6;
}
.sourcing-note strong { color: var(--accent); }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info {}
.contact-info h2 { margin-bottom: 8px; }
.contact-info > p { margin-bottom: 36px; }

.contact-detail-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
}
.cd-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(201,162,39,.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.cd-icon svg { width: 20px; height: 20px; }
.cd-text .label { font-size: .78rem; color: var(--steel); font-weight: 600; letter-spacing: .5px; text-transform: uppercase; }
.cd-text .value { font-size: .95rem; color: var(--text-dark); font-weight: 500; margin-top: 2px; }
.cd-text a { color: var(--text-dark); transition: color .3s; }
.cd-text a:hover { color: var(--accent); }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 42px; height: 42px;
  background: var(--light-gray);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--steel);
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--primary); transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-title { font-size: 1.3rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .85rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px;
}
.form-group label span { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem; font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,39,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-submit { width: 100%; font-size: 1rem; padding: 16px; justify-content: center; margin-top: 8px; }
.form-note { font-size: .8rem; color: var(--steel); text-align: center; margin-top: 12px; }

/* Form success message */
.form-success {
  display: none;
  text-align: center; padding: 40px 20px;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: rgba(34,197,94,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: #22c55e;
}
.success-icon svg { width: 28px; height: 28px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--steel); font-size: .95rem; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #060e1a;
  color: rgba(255,255,255,.6);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand {}
.footer-logo {
  height: 48px; object-fit: contain;
  filter: brightness(1.1);
  margin-bottom: 20px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 {
  color: var(--white); font-size: .9rem;
  letter-spacing: .5px; margin-bottom: 20px;
  position: relative; padding-bottom: 12px;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 30px; height: 2px; background: var(--accent); border-radius: 1px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; transition: color .3s; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: .85rem; }
.footer-contact-item svg { width: 15px; height: 15px; min-width: 15px; color: var(--accent); margin-top: 3px; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0;
  font-size: .82rem;
}
.footer-bottom .copyright-line {
  font-size: .72rem;
  opacity: .9;
}
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left {
  opacity: 0; transform: translateX(-30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right {
  opacity: 0; transform: translateX(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Staggered children */
.stagger > * { transition-delay: calc(var(--i, 0) * 80ms); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .country-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .nav-inner { gap: 8px; }
  .nav-actions {
    gap: 8px;
    margin-left: auto;
    margin-right: 0;
  }
  html[dir="rtl"] .nav-actions {
    margin-left: 0;
    margin-right: auto;
  }
  .theme-toggle,
  .lang-toggle,
  .hamburger {
    margin: 0;
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }
  .theme-toggle svg { width: 16px; height: 16px; }
  .lang-toggle {
    min-width: 40px;
    padding: 0 8px;
    font-size: .68rem;
    letter-spacing: .3px;
  }
  .hamburger {
    gap: 4px;
  }
  .hamburger span {
    width: 17px;
    height: 2px;
  }
  .hamburger span:nth-child(2) { width: 12px; }
  .hamburger.active span:nth-child(2) { width: 17px; }
  .hamburger.active span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .hamburger.active span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .about-grid,
  .markets-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge-card { bottom: -12px; right: -12px; }
  .about-visual { max-width: 100%; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row    { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  /* Avoid RTL mobile horizontal overflow from reveal transforms */
  html[dir="rtl"] .fade-in-left,
  html[dir="rtl"] .fade-in-right {
    transform: translateY(24px);
  }
  html[dir="rtl"] .fade-in-left.visible,
  html[dir="rtl"] .fade-in-right.visible {
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  html            { font-size: 15px; }
  h1              { font-size: clamp(1.9rem, 9vw, 2.35rem); }
  h2              { font-size: clamp(1.45rem, 6.8vw, 1.9rem); }
  h3              { font-size: clamp(1rem, 4.6vw, 1.15rem); }
  p               { font-size: .94rem; }

  /* ── Spacing ── */
  .section       { padding: 56px 0; }
  .section-header { margin-bottom: 40px; }
  .container     { padding: 0 16px; }
  .section-header p { font-size: .92rem; }

  /* ── Navbar ── */
  .nav-inner  { height: 68px; }
  .nav-logo   { padding: 6px 12px; border-radius: 10px; }
  .nav-logo img { height: 34px; }

  /* ── Hero ── */
  .hero-text        { padding-right: 0; }
  .hero-title       { font-size: clamp(1.65rem, 7.2vw, 2rem); line-height: 1.22; }
  .hero-badge       { font-size: .75rem; padding: 5px 12px; }
  .hero-subtitle    { font-size: .9rem; }
  .hero-desc        { font-size: .85rem; line-height: 1.65; }
  .hero-buttons     { flex-direction: column; width: 100%; }
  .btn              { width: 100%; justify-content: center; padding: 12px 18px; font-size: .88rem; }
  .slider-arrow     { display: none; }
  .scroll-indicator { display: none; }
  .slider-dots      { bottom: 20px; }

  /* ── Stats bar ── */
  .stats-inner    { grid-template-columns: repeat(2, 1fr); }
  .stat-item      { padding: 18px 12px; }
  .stat-number    { font-size: 1.5rem; }
  .stat-label     { font-size: .75rem; }

  /* ── About ── */
  .about-img-wrap    { aspect-ratio: 16/9; }
  .about-badge-card  { padding: 14px 18px; bottom: -10px; right: -8px; }
  .about-badge-card .num { font-size: 1.4rem; }

  /* ── Products ── */
  .products-grid  { grid-template-columns: 1fr; gap: 20px; }
  .product-img    { height: 180px; }

  /* ── Features ── */
  .features-grid  { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature-card   { padding: 24px 16px; }
  .feature-icon   { width: 52px; height: 52px; margin-bottom: 14px; }
  .feature-card h3 { font-size: .9rem; }
  .feature-card p  { font-size: .78rem; }

  /* ── Markets ── */
  .country-item    { padding: 12px 14px; }
  .markets-map     { padding: 24px 20px; }
  .country-list    { grid-template-columns: 1fr; }

  /* ── Contact ── */
  .contact-form-wrap { padding: 24px 16px; }

  /* ── Footer ── */
  .footer-grid    { padding-bottom: 36px; }
  .footer-logo    { height: 26px; }
  .footer-products { display: none; }

  /* ── Floating buttons ── */
  #back-top       { bottom: 20px; right: 16px; }
}

/* Very small screens */
@media (max-width: 380px) {
  .hero-title   { font-size: clamp(1.45rem, 7vw, 1.75rem); line-height: 1.2; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-inner   { grid-template-columns: 1fr 1fr; }
}
