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

:root {
  --navy: #002147;
  --navy-dark: #001730;
  --light-bg: #f4f7f9;
  --text: #333;
  --muted: #666;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ─── HEADER ─── */
header {
  background: var(--navy);
  padding: 0 6%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 13px;
  color: white;
}

.logo-box {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-box img {
  height: 38px;
  width: 38px;
  object-fit: contain;
}

.logo-text { display: flex; flex-direction: column; }
.logo-name { font-size: 1.25rem; font-weight: 800; letter-spacing: 1px; line-height: 1; }
.logo-sub { font-size: 0.6rem; letter-spacing: 2.5px; text-transform: uppercase; opacity: 0.6; margin-top: 2px; }

.nav-right { display: flex; align-items: center; gap: 8px; }

.nav-dd { position: relative; }

.nav-dd > button {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: white;
  padding: 9px 18px;
  border-radius: 5px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}

.nav-dd > button svg { opacity: 0.7; }
.nav-dd.open > button { background: rgba(255,255,255,0.15); }

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.16);
  min-width: 160px;
  overflow: hidden;
}

.nav-dd.open .dropdown { display: block; }
.lang-dropdown { min-width: 180px; }
.lang-opt.active-lang { font-weight: 700; background: #edf2f7; }
.footer-wa-icon { width: 28px; height: 28px; border-radius: 5px; flex-shrink: 0; display: block; }
.footer-wa-link { color: rgba(255,255,255,0.7) !important; margin-bottom: 0 !important; align-self: center; opacity: 1 !important; font-size: 0.875rem; }
.footer-wa-link:hover { color: white !important; }

/* ─── RTL SUPPORT ─── */
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-btns { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .about-label, [dir="rtl"] .about-heading, [dir="rtl"] .about-text { text-align: right; }
[dir="rtl"] .section-label, [dir="rtl"] .section-title { text-align: center; }
[dir="rtl"] .features-grid { direction: rtl; }
[dir="rtl"] .feature { text-align: right; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .footer-desc { text-align: right; }
[dir="rtl"] .footer-copy { text-align: center; }
[dir="rtl"] .page-banner { text-align: right; padding-right: 8%; padding-left: 8%; }
[dir="rtl"] .cat-section-top { text-align: right; }
[dir="rtl"] .cta-section { text-align: center; }
[dir="rtl"] .cl { text-align: right; }
[dir="rtl"] .ci { flex-direction: row-reverse; }
[dir="rtl"] .ci-info { text-align: right; }
[dir="rtl"] .cr { text-align: right; }
[dir="rtl"] .form-grid { direction: rtl; }
[dir="rtl"] .nav-right { flex-direction: row-reverse; }
[dir="rtl"] .dropdown { right: auto; left: 0; text-align: right; }
[dir="rtl"] .cat-card-body { text-align: right; }

.dropdown a {
  display: block;
  padding: 13px 22px;
  color: var(--navy);
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.2s;
}

.dropdown a:hover { background: var(--light-bg); }
.dropdown a.active { font-weight: 700; background: #edf2f7; }

/* ─── HERO ─── */
.hero {
  min-height: calc(100vh - 72px);
  background: linear-gradient(to right, rgba(0,22,55,0.9) 55%, rgba(0,22,55,0.5) 100%),
              url('/assets/images/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 80px 8%;
  color: white;
}

.hero-content { max-width: 640px; }

.hero-label {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-title .dim { opacity: 0.55; display: block; }

.hero-desc {
  font-size: 1.05rem;
  opacity: 0.82;
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid rgba(255,255,255,0.75);
  color: white;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  background: transparent;
  font-family: inherit;
}

.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: white; }

/* ─── SECTION SHARED ─── */
.section { padding: 90px 8%; }
.section-label {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 10px;
  text-align: center;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 56px;
}

/* ─── ABOUT ─── */
.about-section { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
}
.about-label {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.55;
  margin-bottom: 12px;
}
.about-heading {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.95rem; }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
  margin-top: 32px;
}
.feature { display: flex; gap: 13px; align-items: flex-start; }
.feature-icon {
  width: 38px;
  height: 38px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
}
.feature h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.feature p { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }

/* ─── CATEGORY CARDS ─── */
.cats-section { background: var(--light-bg); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: white;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.cat-card:hover { transform: translateY(-7px); box-shadow: 0 12px 32px rgba(0,0,0,0.13); }
.cat-card img { width: 100%; height: 210px; object-fit: cover; }
.cat-card-body { padding: 22px 24px 24px; }
.cat-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.cat-card p { font-size: 0.855rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.cat-divider { height: 1px; background: #eee; margin-bottom: 14px; }
.cat-inquire {
  font-size: 0.83rem;
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.cat-inquire:hover { opacity: 1; }

/* ─── CTA ─── */
.cta-section {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 100px 8%;
}
.cta-label {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 18px;
}
.cta-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 16px; }
.cta-desc { opacity: 0.65; max-width: 480px; margin: 0 auto 40px; line-height: 1.75; }

/* ─── FOOTER ─── */
footer { background: var(--navy); color: white; padding: 70px 8% 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; gap: 13px; align-items: center; margin-bottom: 20px; }
.footer-logo-box {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-logo-box img { height: 38px; width: 38px; object-fit: contain; }
.footer-brand-text .fn { font-size: 1.1rem; font-weight: 800; }
.footer-brand-text .fs { font-size: 0.58rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.55; margin-top: 2px; }
.footer-desc { font-size: 0.875rem; opacity: 0.55; line-height: 1.75; }
.footer-col h4 {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 22px;
}
.footer-col a { display: block; opacity: 0.65; font-size: 0.9rem; margin-bottom: 13px; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-contact-item { display: flex; gap: 10px; align-items: center; margin-bottom: 13px; font-size: 0.875rem; opacity: 0.65; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 22px; }
.footer-copy { text-align: center; font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; opacity: 0.38; }

/* ─── PAGE BANNER ─── */
.page-banner {
  background: var(--navy);
  color: white;
  padding: 84px 8% 72px;
}
.page-banner-label {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 16px;
}
.page-banner-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 16px; }
.page-banner-desc { opacity: 0.65; max-width: 520px; line-height: 1.75; font-size: 0.97rem; }

/* ─── PRODUCTS PAGE ─── */
.products-body { background: white; }
.cat-section { padding: 58px 8%; border-bottom: 1px solid #eee; }
.cat-section:last-child { border-bottom: none; }
.cat-section-top { margin-bottom: 28px; }
.cat-section-name { font-size: 1.55rem; font-weight: 700; color: var(--navy); margin-bottom: 5px; }
.cat-brands { font-size: 0.7rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.cat-section-desc { font-size: 0.9rem; color: var(--muted); max-width: 620px; line-height: 1.7; }
.cat-rule { border: none; border-top: 3px solid var(--navy); width: 36px; margin: 22px 0 0; }

.sub-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 20px;
}
.sub-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  border: 1px solid #f0f0f0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.sub-card:hover { transform: translateY(-5px); box-shadow: 0 10px 24px rgba(0,0,0,0.11); }
.sub-card img { width: 100%; height: 175px; object-fit: cover; }
.sub-card-body { padding: 18px 18px 16px; }
.sub-card h4 { font-size: 0.95rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; line-height: 1.4; }
.sub-divider { height: 1px; background: #eee; margin-bottom: 11px; }
.sub-inquire {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.sub-inquire:hover { opacity: 1; }

/* ─── CONTACT PAGE ─── */
.contact-wrapper { padding: 60px 8% 80px; background: var(--light-bg); }
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 2fr;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(0,0,0,0.12);
  max-width: 1100px;
  margin: 0 auto;
}

/* Left */
.cl { background: var(--navy); color: white; padding: 50px 40px; }
.cl-logo {
  background: white;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.cl-logo img { height: 54px; width: 54px; object-fit: contain; }
.cl h2 { font-size: 1.55rem; font-weight: 700; margin-bottom: 8px; }
.cl .sub { opacity: 0.6; font-size: 0.875rem; line-height: 1.65; margin-bottom: 36px; }

.ci { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-info label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 4px;
}
.ci-info a,
.ci-info span { font-size: 0.88rem; font-weight: 500; color: white; }
.cl-footer { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.78rem; opacity: 0.38; }

/* Right */
.cr { background: white; padding: 50px 48px; }
.cr h2 { font-size: 1.55rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.cr .sub { color: var(--muted); font-size: 0.88rem; margin-bottom: 36px; line-height: 1.6; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ff { display: flex; flex-direction: column; gap: 6px; }
.ff label { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.ff label .req { color: #c0392b; }
.ff input, .ff textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-family: inherit;
  font-size: 0.9rem;
  background: #f8fafc;
  transition: border-color 0.2s, background 0.2s;
  color: var(--text);
}
.ff input:focus, .ff textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: white;
}
.ff.full { grid-column: 1 / -1; }
.ff textarea { resize: vertical; min-height: 120px; }

.form-msg {
  display: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 16px;
}
.form-msg.success { background: #e8f5e9; color: #2e7d32; border: 1px solid #a5d6a7; display: block; }
.form-msg.error { background: #fdecea; color: #c62828; border: 1px solid #ef9a9a; display: block; }

.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: white;
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 6px;
  font-size: 0.97rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 6px;
}
.submit-btn:hover:not(:disabled) { background: var(--navy-dark); }
.submit-btn:disabled { opacity: 0.55; cursor: not-allowed; }

/* ─── ABOUT PAGE ─── */
.about-body { background: white; }

.about-mission-section {
  padding: 80px 8%;
  background: white;
}
.mission-inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.mission-label-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 8px;
}
.mission-accent-bar {
  width: 40px;
  height: 4px;
  background: var(--navy);
  border-radius: 2px;
  margin-bottom: 16px;
}
.mission-label {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 700;
  opacity: 0.7;
}
.mission-heading {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.25;
}
.mission-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}
.mission-sub {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 28px;
}
.mission-tagline {
  display: inline-block;
  border-left: 3px solid var(--navy);
  padding-left: 18px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  font-style: italic;
  opacity: 0.8;
}

.about-vision-section {
  background: var(--navy);
  color: white;
  padding: 90px 8%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.about-vision-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 60px solid rgba(255,255,255,0.04);
}
.about-vision-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 50px solid rgba(255,255,255,0.04);
}
.vision-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.vision-quote-mark {
  font-size: 9rem;
  line-height: 0.5;
  color: rgba(255,255,255,0.1);
  font-family: Georgia, serif;
  margin-bottom: 20px;
  user-select: none;
}
.vision-label {
  font-size: 0.72rem;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 28px;
}
.vision-body {
  font-size: 1.08rem;
  line-height: 1.9;
  opacity: 0.88;
  margin-bottom: 36px;
}
.vision-divider {
  width: 48px;
  height: 2px;
  background: rgba(255,255,255,0.35);
  margin: 0 auto 20px;
}
.vision-attr {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  opacity: 0.45;
  text-transform: uppercase;
}

.about-values-section {
  background: var(--light-bg);
  padding: 80px 8%;
  text-align: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 40px auto 0;
}
.value-card {
  background: white;
  border-radius: 10px;
  padding: 36px 28px;
  text-align: left;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.value-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .mission-inner { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .cats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-panel { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .cats-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .hero-btns { flex-direction: column; }
  .section { padding: 60px 6%; }
  header { padding: 0 5%; }
}
