/* ============================================================
   ELEGANCE TEXTYL GROUP — style.css
   Colors: #D62271 | #071E3D | #C5A46E | #F8F9FA | #FFFFFF | #212529
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --pink:    #D62271;
  --navy:    #071E3D;
  --gold:    #C5A46E;
  --light:   #F8F9FA;
  --white:   #FFFFFF;
  --dark:    #212529;
  --gray:    #6C757D;
  --gray-lt: #DEE2E6;

  --font-display: 'Playfair Display', serif;
  --font-script:  'Dancing Script', cursive;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  --shadow-card: 0 4px 24px rgba(7,30,61,.07);
  --shadow-hover: 0 12px 40px rgba(214,34,113,.15);
  --shadow-btn:   0 6px 20px rgba(214,34,113,.35);
  --transition: .28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* RTL support */
body[dir="rtl"] { direction: rtl; text-align: right; }
body[dir="rtl"] .logo { flex-direction: row-reverse; }
body[dir="rtl"] nav ul { flex-direction: row-reverse; }
body[dir="rtl"] .topbar .left,
body[dir="rtl"] .topbar .right { flex-direction: row-reverse; }
body[dir="rtl"] .hero-content { text-align: right; }
body[dir="rtl"] .sec-label,
body[dir="rtl"] .sec-title { text-align: right; }
body[dir="rtl"] .left-align .sec-label,
body[dir="rtl"] .left-align .sec-title { text-align: right; }
body[dir="rtl"] .sec-div.left-div { margin: 0 0 28px; }
body[dir="rtl"] .cat-card ul li::before,
body[dir="rtl"] .footer-brand-item::before { content: '– '; }
body[dir="rtl"] .ci { flex-direction: row-reverse; }
body[dir="rtl"] .hero-btns { flex-direction: row-reverse; }

/* Arabic font override */
body.lang-ar {
  font-family: 'Tajawal', 'Inter', sans-serif;
}
body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar .sec-title {
  font-family: 'Tajawal', serif;
  font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ── UTILITY ── */
.wrap { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.sec  { padding: 90px 0; }

.sec-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--pink); text-align: center; margin-bottom: 12px;
}
.sec-title {
  font-family: var(--font-display); font-size: 38px;
  color: var(--navy); text-align: center; line-height: 1.2; margin-bottom: 14px;
}
.sec-div {
  width: 52px; height: 3px; background: var(--pink);
  margin: 0 auto 52px; border-radius: 2px;
}
.sec-div.left-div { margin: 0 0 32px; }

.left-align .sec-label,
.left-align .sec-title { text-align: left; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 600; padding: 13px 30px;
  border-radius: var(--radius-xl); cursor: pointer;
  transition: var(--transition); border: 2px solid transparent;
  letter-spacing: .3px; white-space: nowrap;
}
.btn-primary {
  background: var(--pink); color: var(--white); border-color: var(--pink);
}
.btn-primary:hover {
  background: #b81c60; border-color: #b81c60;
  box-shadow: var(--shadow-btn); transform: translateY(-2px);
}
.btn-outline-dark {
  background: transparent; color: var(--navy); border-color: var(--navy);
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-outline-pink {
  background: transparent; color: var(--pink); border-color: var(--pink);
  font-size: 12px; padding: 7px 18px;
}
.btn-outline-pink:hover { background: var(--pink); color: var(--white); }

.btn-gold {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-gold:hover { background: #a8875a; box-shadow: 0 6px 20px rgba(197,164,110,.4); }

/* ── TOPBAR ── */
.topbar {
  background: var(--white); border-bottom: 1px solid var(--gray-lt);
  padding: 8px 0; font-size: 12px; color: var(--gray);
}
.topbar .inner {
  max-width: 1220px; margin: 0 auto; padding: 0 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.topbar .left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar .right { display: flex; gap: 12px; align-items: center; }
.topbar a { color: var(--gray); transition: color var(--transition); }
.topbar a:hover { color: var(--pink); }
.topbar .sep { color: var(--gray-lt); }
.social-top a {
  width: 26px; height: 26px; border-radius: 50%; background: var(--light);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; transition: var(--transition);
}
.social-top a:hover { background: var(--pink); color: var(--white); }

/* ── NAVBAR ── */
#mainNav {
  background: var(--white); position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 16px rgba(7,30,61,.08);
  transition: box-shadow var(--transition);
}
#mainNav.scrolled { box-shadow: 0 4px 28px rgba(7,30,61,.14); }

#mainNav .inner {
  max-width: 1220px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 74px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 58px; width: auto; object-fit: contain; }
nav ul {
  list-style: none; display: flex; align-items: center; gap: 2px;
}
nav ul li a {
  font-size: 12px; font-weight: 500; color: var(--dark);
  padding: 8px 12px; text-transform: uppercase; letter-spacing: .5px;
  transition: color var(--transition); position: relative; display: block;
}
nav ul li a:hover,
nav ul li a.active { color: var(--pink); }
nav ul li a.active::after {
  content: ''; position: absolute; bottom: 0; left: 12px; right: 12px;
  height: 2px; background: var(--pink); border-radius: 2px;
}
.btn-nav {
  background: var(--pink); color: var(--white) !important; padding: 10px 22px !important;
  border-radius: var(--radius-xl); font-size: 12px !important; letter-spacing: .3px !important;
  transition: var(--transition) !important;
}
.btn-nav:hover { background: #b81c60 !important; }
.btn-nav.active::after { display: none !important; }

/* Language switcher */
.lang-switcher {
  display: flex; gap: 4px; align-items: center;
  border: 1px solid var(--gray-lt); border-radius: var(--radius-xl);
  padding: 4px 8px; margin-left: 8px;
}
.lang-switcher button {
  background: none; border: none; cursor: pointer; font-size: 11px;
  font-weight: 600; color: var(--gray); padding: 3px 8px; border-radius: 12px;
  transition: var(--transition); font-family: var(--font-body); letter-spacing: .5px;
}
.lang-switcher button.active-lang {
  background: var(--pink); color: var(--white);
}
.lang-switcher button:hover:not(.active-lang) { color: var(--pink); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: .3s; }

/* Mobile nav */
.mobile-nav {
  display: none; background: var(--white); border-top: 1px solid var(--gray-lt);
  padding: 16px 24px 24px; box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav ul li a {
  display: block; padding: 12px 0; font-size: 14px; font-weight: 500;
  color: var(--dark); border-bottom: 1px solid var(--light);
  text-transform: uppercase; letter-spacing: .5px; transition: color var(--transition);
}
.mobile-nav ul li a:hover { color: var(--pink); }
.mobile-nav .btn-nav { display: inline-flex; margin-top: 16px; }
.mobile-lang { display: flex; gap: 8px; margin-top: 16px; }
.mobile-lang button {
  background: var(--light); border: none; padding: 6px 16px; border-radius: 20px;
  font-size: 12px; font-weight: 600; cursor: pointer; font-family: var(--font-body);
  transition: var(--transition);
}
.mobile-lang button.active-lang { background: var(--pink); color: var(--white); }

/* ── HERO ── */
.hero {
  min-height: 620px;
  background: linear-gradient(110deg, #fdf5fb 0%, var(--white) 55%, #f0f4ff 100%);
  display: flex; align-items: center; overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; right: -120px; top: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,34,113,.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero .inner {
  max-width: 1220px; margin: 0 auto; padding: 70px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; width: 100%;
}
.hero-label {
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--pink); margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display); font-size: 54px;
  line-height: 1.1; color: var(--navy); margin-bottom: 20px;
}
.hero h1 em { color: var(--pink); font-style: italic; }
.hero-tags {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: #AAA; line-height: 2.4; margin-bottom: 38px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-img {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-img-wrap {
  width: 100%; max-width: 500px; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(7,30,61,.15);
}
.hero-img-wrap img { width: 100%; height: 380px; object-fit: cover; object-position: center top; }
.hero-dots { display: flex; gap: 8px; justify-content: center; margin-top: 14px; }
.hero-dots span {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gray-lt);
  cursor: pointer; transition: var(--transition);
}
.hero-dots span.on { background: var(--pink); width: 22px; border-radius: 4px; }

/* ── STATS BAR ── */
.stats-bar { background: var(--navy); padding: 28px 0; }
.stats-bar .inner {
  max-width: 1220px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 20px;
}
.stat {
  text-align: center; color: var(--white);
  border-right: 1px solid rgba(255,255,255,.1); padding: 10px 20px;
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 32px; font-weight: 700; line-height: 1; }
.stat-num b { color: var(--pink); }
.stat p { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px; }
body[dir="rtl"] .stat { border-right: none; border-left: 1px solid rgba(255,255,255,.1); }
body[dir="rtl"] .stat:last-child { border-left: none; }

/* ── BRANDS ── */
.brands-section { background: var(--white); }
.brands-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
.brand-card {
  border: 1px solid var(--gray-lt); border-radius: var(--radius-md);
  padding: 30px 18px; text-align: center;
  transition: var(--transition); cursor: pointer;
}
.brand-card:hover {
  border-color: var(--pink); box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.b-logo { height: 88px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.b-logo img { max-height: 80px; max-width: 110px; object-fit: contain; }
.b-name { font-size: 12px; font-weight: 700; color: var(--pink); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 10px; }
.b-desc { font-size: 12px; color: var(--gray); line-height: 1.7; margin-bottom: 16px; }

/* Brands logos image banner */
.brands-logos-img {
  margin-top: 56px; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-card);
}
.brands-logos-img img { width: 100%; height: auto; }

/* ── PRODUCT CATEGORIES ── */
.cat-section { background: var(--navy); }
.cat-section .sec-label { color: var(--pink); }
.cat-section .sec-title { color: var(--white); }
.cat-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.cat-visual {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  position: relative;
}
.cat-visual img { width: 100%; height: 480px; object-fit: cover; object-position: center; }
.cat-visual-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(7,30,61,.7), transparent);
}
.cat-content-inner { padding: 0 0 0 10px; }
body[dir="rtl"] .cat-content-inner { padding: 0 10px 0 0; }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 4px; }
.cat-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md); padding: 22px; transition: var(--transition); cursor: pointer;
}
.cat-card:hover { background: rgba(214,34,113,.12); border-color: var(--pink); }
.cat-icon { font-size: 26px; margin-bottom: 10px; }
.cat-card h3 { color: var(--white); font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.cat-card ul { list-style: none; }
.cat-card ul li { color: rgba(255,255,255,.55); font-size: 12px; padding: 2px 0; }
.cat-card ul li::before { content: '– '; color: var(--pink); }
body[dir="rtl"] .cat-card ul li::before { content: '– '; }

/* ── MANUFACTURING ── */
.mfg-section { background: var(--light); }
.mfg-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.mfg-intro { color: var(--gray); line-height: 1.9; font-size: 14px; margin-bottom: 32px; }
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.svc-item {
  background: var(--white); border: 1px solid var(--gray-lt);
  border-radius: var(--radius-sm); padding: 18px 12px; text-align: center;
  transition: var(--transition);
}
.svc-item:hover { border-color: var(--pink); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.svc-icon { font-size: 22px; margin-bottom: 8px; }
.svc-item p { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .4px; color: var(--dark); line-height: 1.4; }
.mfg-right {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 20px 60px rgba(7,30,61,.15);
}
.mfg-right img { width: 100%; height: 480px; object-fit: cover; }

/* ── GALLERY ── */
.gallery-section { background: var(--white); }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gal-item { border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; position: relative; }
.gal-item:first-child { grid-column: span 2; grid-row: span 2; }
.gal-thumb { width: 100%; height: 100%; min-height: 170px; object-fit: cover; transition: transform .35s ease; display: block; }
.gal-item:first-child .gal-thumb { min-height: 352px; }
.gal-item:hover .gal-thumb { transform: scale(1.05); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(214,34,113,.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.gal-overlay span { font-size: 28px; color: var(--white); }
.gal-item:hover .gal-overlay { opacity: 1; }

/* ── TESTIMONIALS ── */
.test-section { background: var(--navy); }
.test-section .sec-title { color: var(--white); }
.test-layout { display: grid; grid-template-columns: 1fr 2.5fr; gap: 64px; align-items: center; }
.quote-block { color: var(--white); }
.big-quote { font-family: Georgia, serif; font-size: 90px; color: rgba(214,34,113,.35); line-height: .7; margin-bottom: 16px; }
.quote-block blockquote { font-size: 15px; line-height: 1.9; color: rgba(255,255,255,.75); font-style: italic; margin-bottom: 18px; }
.quote-author { font-size: 13px; color: var(--gold); font-weight: 600; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.trust-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md); padding: 30px 18px; text-align: center;
  transition: var(--transition);
}
.trust-card:hover { background: rgba(214,34,113,.1); border-color: var(--pink); }
.trust-card .ico { font-size: 32px; margin-bottom: 12px; }
.trust-card h4 { color: var(--white); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .5px; line-height: 1.5; }

/* ── CONTACT ── */
.contact-section { background: linear-gradient(135deg, #fdf0f9 0%, #f0f4ff 100%); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
.contact-intro { color: var(--gray); line-height: 1.9; font-size: 14px; margin-bottom: 28px; }
.contact-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.ci { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--dark); }
.ci-icon { color: var(--pink); font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.follow-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 12px; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.soc {
  width: 36px; height: 36px; border-radius: 50%; background: var(--navy);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 13px; text-decoration: none; transition: var(--transition);
}
.soc:hover { background: var(--pink); transform: translateY(-2px); }

/* Form */
.c-form { background: var(--white); border-radius: var(--radius-lg); padding: 42px; box-shadow: 0 8px 48px rgba(7,30,61,.09); }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 11px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; color: #AAA; margin-bottom: 6px; }
.fg input,
.fg select,
.fg textarea {
  width: 100%; border: 1px solid var(--gray-lt); border-radius: var(--radius-sm);
  padding: 12px 16px; font-size: 13px; font-family: var(--font-body);
  color: var(--dark); outline: none; background: #FAFAFA; transition: var(--transition);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus { border-color: var(--pink); background: var(--white); box-shadow: 0 0 0 3px rgba(214,34,113,.08); }
.fg textarea { height: 120px; resize: vertical; }
.btn-send {
  background: var(--pink); color: var(--white); border: none;
  padding: 14px 36px; border-radius: var(--radius-xl); font-size: 14px; font-weight: 600;
  cursor: pointer; display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); font-family: var(--font-body);
}
.btn-send:hover { background: #b81c60; box-shadow: var(--shadow-btn); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { background: #0A0F1E; padding: 70px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 54px; }

.ft-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ft-logo img { height: 54px; object-fit: contain; }
.ft-desc { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.9; }
.ft-socials { display: flex; gap: 10px; margin-top: 18px; }

footer h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white); margin-bottom: 20px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer li a { color: rgba(255,255,255,.45); font-size: 12px; transition: color var(--transition); }
footer li a:hover { color: var(--pink); }

.ft-brand-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.ft-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink); flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--pink); }
.ft-bottom-links { display: flex; gap: 18px; }

/* ── SCROLL ANIMATION ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fu { opacity: 1; transform: translateY(0); transition: opacity .6s ease, transform .6s ease; }
.fu.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .brands-grid { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 960px) {
  nav ul, .lang-switcher { display: none; }
  .hamburger { display: flex; }
  .hero .inner { grid-template-columns: 1fr; text-align: center; }
  .hero h1 { font-size: 40px; }
  .hero-btns { justify-content: center; }
  .stats-bar .inner { grid-template-columns: repeat(2,1fr); }
  .cat-layout, .mfg-layout, .contact-layout { grid-template-columns: 1fr; }
  .cat-content-inner { padding: 0; }
  .test-layout { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(2,1fr); }
  .gal-item:first-child { grid-column: span 1; grid-row: span 1; }
  .gal-item:first-child .gal-thumb { min-height: 170px; }
  .sec-title { font-size: 30px; }
}

@media (max-width: 640px) {
  .brands-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 32px; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .f-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .c-form { padding: 28px 20px; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
}
/* تنسيقات صفحة "من نحن" في style.css */

/* الحاوية الرئيسية للقسم */
.about-section {
    padding: 60px 20px;
    background-color: #27F5E0;
}

/* تنسيق بطاقة المحتوى */
.about-card {
    max-width: 1100px;
    margin: 0 auto;
    background: #27F5E0;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* تنسيق العنوان */
.about-title {
    text-align: center;
    color: #FA5FF1;
    font-size: 32px;
    margin-bottom: 10px;
}

/* خط الزينة تحت العنوان */
.about-line {
    width: 80px;
    height: 4px;
    background:#FA5FF1;
    margin: 0 auto 40px;
}

/* التخطيط المرن للنص والصورة */
.about-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* النص */
.about-text {
    flex: 1;
    min-width: 300px;
    line-height: 1.8;
    color: #333;
    font-size: 16px;
    text-align: justify;
}

/* الصورة */
.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 5px 15px #FA5FF1(0,0,0,0.2);
}

/* استجابة الموبايل */
@media (max-width: 768px) {
    .about-wrapper {
        flex-direction: column;
    }
}
/* الألوان الجديدة للهوية */
:root {
    --cyan: #27F5E0;
    --neon-pink: #FA5FF1;
    --gradient-brand: linear-gradient(135deg, #27F5E0, #FA5FF1);
}

/* تنسيق قسم الخدمات الجديد */
.mfg-page-section {
    padding: 80px 20px;
    background: #071E3D; /* لون كحلي غامق لتبرز الألوان النيون */
    color: white;
}

.mfg-container {
    max-width: 1100px;
    margin: 0 auto;
}

.mfg-header {
    text-align: center;
    margin-bottom: 60px;
}

.mfg-header h1 {
    font-size: 3rem;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mfg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.mfg-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    text-align: center;
}

.mfg-card:hover {
    border-color: var(--cyan);
    box-shadow: 0 0 20px rgba(39, 245, 224, 0.2);
}

.mfg-card h3 {
    color: var(--cyan);
    margin-bottom: 15px;
}

.mfg-card p {
    color: #ccc;
    line-height: 1.6;
}
.home-btn {
    display: inline-block;
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--cyan); /* استخدام اللون الفيروزي */
    color: var(--cyan);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.4s;
    margin-bottom: 20px;
}

.home-btn:hover {
    background: var(--gradient-brand); /* التدرج اللوني الذي طلبته */
    color: #071E3D;
    border-color: var(--neon-pink);
    box-shadow: 0 0 15px rgba(250, 95, 241, 0.4);
}
/* تنسيق قسم المنتجات */
.products-section {
    padding: 80px 20px;
    background: #071E3D;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 40px auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--cyan);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(39, 245, 224, 0.2);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.product-card h3 {
    color: white;
    margin-bottom: 10px;
}

.product-card p {
    color: var(--neon-pink);
    font-weight: bold;
}
/* تنسيق أزرار التصنيفات */
.filter-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--cyan);
    color: var(--cyan);
    padding: 10px 2