/* ===== CSS Variables ===== */
:root {
  --primary: #ED7D31;
  --primary-dark: #D16A2A;
  --primary-light: #F0955B;
  --secondary: #1F3764;
  --secondary-dark: #16284A;
  --secondary-light: #2A4A7F;
  --dark: #1a1a1a;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-100: #F5F7FA;
  --white: #fff;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--gray-900); line-height: 1.6; font-size: 15px; background: #fff;
  min-height: 100vh;
  min-height: 100dvh; display: flex; flex-direction: column;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-block; padding: 12px 28px; background: var(--primary); color: #fff;
  border-radius: var(--radius); font-weight: 600; font-size: 15px; border: none; cursor: pointer;
  transition: all var(--transition);
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,107,0,0.3); }
.btn-secondary {
  display: inline-block; padding: 12px 28px; background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.7); border-radius: var(--radius); font-weight: 600;
  cursor: pointer; transition: all var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; }
.btn-outline {
  display: inline-block; padding: 8px 20px; border: 2px solid var(--primary); color: var(--primary);
  border-radius: var(--radius); font-weight: 600; font-size: 13px; transition: all var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== Top Bar ===== */
.header-top {
  background: var(--dark); color: #ccc; font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-contact span { margin-right: 20px; }
.header-contact i { color: var(--primary); margin-right: 5px; }
.header-lang select {
  background: rgba(255,255,255,0.1); color: #ccc; border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 10px; border-radius: 4px; cursor: pointer; font-size: 13px;
}

/* ===== Header & Nav ===== */
.header { background: #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 1000; }
.header-main { padding: 10px 0; }
.header-main .container { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px;
}
.logo-image {
  width: 46px; height: 46px; object-fit: contain; border-radius: 8px;
}
.logo-text h1 { font-size: 18px; color: var(--dark); line-height: 1.2; letter-spacing: 1px; }
.logo-text p { font-size: 11px; color: var(--gray-500); letter-spacing: 0.5px; }

.nav-menu { display: flex; align-items: center; gap: 5px; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: flex; align-items: center; gap: 4px; padding: 10px 16px; font-weight: 500;
  font-size: 15px; color: var(--gray-700); border-radius: var(--radius); transition: all var(--transition);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active { color: var(--primary); background: #fff8f0; }
.nav-menu > li > a i { font-size: 11px; transition: transform var(--transition); }

/* Dropdown */
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown:hover > a i { transform: rotate(180deg); }
.nav-dropdown.scrolling:hover .dropdown-menu { opacity: 0; visibility: hidden; transform: translateY(8px); }
.nav-dropdown.scrolling:hover > a i { transform: rotate(0deg); }
.dropdown-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: #fff; border: 1px solid #eee; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(8px); transition: all 0.25s ease; z-index: 2000; padding: 8px 0;
}
.dropdown-menu > li { position: relative; }
.dropdown-menu > li > a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 18px; font-size: 14px; color: var(--gray-700); transition: all 0.15s;
}
.dropdown-menu > li > a:hover { background: #fafafa; color: var(--primary); padding-left: 22px; }

/* Submenu (nested) */
.dropdown-submenu { position: relative; }
.dropdown-submenu .submenu {
  position: absolute; left: 100%; top: -8px; min-width: 200px;
  background: #fff; border: 1px solid #eee; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateX(8px); transition: all 0.25s ease; padding: 8px 0; z-index: 2001;
}
.dropdown-submenu:hover .submenu { opacity: 1; visibility: visible; transform: translateX(0); }
.submenu li a { display: block; padding: 8px 18px; font-size: 13px; color: var(--gray-700); }
.submenu li a:hover { background: #fafafa; color: var(--primary); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; }
.btn-cta-nav {
  display: flex; align-items: center; gap: 6px; padding: 9px 18px;
  background: #25D366; color: #fff !important; border-radius: var(--radius);
  font-weight: 600; font-size: 14px; transition: all var(--transition);
}
.btn-cta-nav:hover { background: #128C7E; transform: translateY(-1px); }
.mobile-btn { display: none; background: none; border: none; font-size: 24px; cursor: pointer; color: var(--gray-700); }

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(15,52,96,0.85) 50%, rgba(26,26,46,0.85) 100%),
              url('../images/hero/hero-bg.png') center/cover no-repeat;
  color: #fff; padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255,107,0,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(255,140,0,0.1) 0%, transparent 50%);
}
.hero-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.hero h2 { font-size: 42px; font-weight: 800; margin-bottom: 18px; line-height: 1.2; }
.hero p { font-size: 18px; opacity: 0.85; margin-bottom: 32px; line-height: 1.6; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== Page Header ===== */
.page-header {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(45, 45, 45, 0.72) 50%, rgba(255, 107, 0, 0.28) 100%),
    url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=professional%20hydraulic%20cylinder%20factory%20workshop%20interior%2C%20large%20orange%20excavator%20boom%20cylinder%2C%20industrial%20machinery%2C%20dramatic%20dark%20mood%2C%20cinematic%20lighting%2C%20wide%20banner%20composition%2C%20blurred%20bokeh%20background&image_size=landscape_16_9") center/cover no-repeat,
    linear-gradient(135deg, var(--dark), #2d2d2d);
  background-blend-mode: normal;
  color: #fff;
  padding: 45px 0; text-align: center;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-header > .container {
  position: relative;
  z-index: 1;
}
.page-header h1 { font-size: 34px; font-weight: 700; margin-bottom: 8px; }
.breadcrumb { font-size: 14px; opacity: 0.7; }
.breadcrumb a:hover { color: var(--primary); }

.page-header-product {
  position: relative;
  background:
    linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(45, 45, 45, 0.72) 50%, rgba(255, 107, 0, 0.28) 100%),
    url("https://trae-api-cn.mchost.guru/api/ide/v1/text_to_image?prompt=professional%20hydraulic%20cylinder%20factory%20workshop%20interior%2C%20large%20orange%20excavator%20boom%20cylinder%2C%20industrial%20machinery%2C%20dramatic%20dark%20mood%2C%20cinematic%20lighting%2C%20wide%20banner%20composition%2C%20blurred%20bokeh%20background&image_size=landscape_16_9") center/cover no-repeat,
    linear-gradient(135deg, var(--dark), #2d2d2d);
  background-blend-mode: normal;
  overflow: hidden;
}
.page-header-product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 0, 0.12) 0%, transparent 60%);
  pointer-events: none;
}
.page-header-product > .container {
  position: relative;
  z-index: 1;
}

/* ===== Products Section ===== */
.products-section { padding: 60px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 30px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.section-header p { color: var(--gray-500); font-size: 16px; }

/* Product Grid */
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.product-card {
  background: #fff; border: 1px solid #eee; border-radius: 10px;
  overflow: hidden; transition: all var(--transition); display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent;
}
.product-image,
a.product-img {
  position: relative; overflow: hidden; background: #fafafa;
  display: flex; align-items: center; justify-content: center;
  width: 100%; aspect-ratio: 4 / 3; flex-shrink: 0;
}
.product-image img,
a.product-img img {
  width: 100%; height: 100%; object-fit: contain; transition: transform 0.4s;
  background: #fafafa; display: block;
}
.product-card:hover .product-image img,
.product-card:hover a.product-img img { transform: scale(1.05); }

a.product-img { text-decoration: none; color: inherit; }
.product-badge {
  position: absolute; top: 12px; left: 12px; padding: 5px 14px; z-index: 10;
  background: var(--primary); color: #fff; font-size: 11px; font-weight: 700;
  border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px;
  white-space: nowrap; line-height: 1.4; pointer-events: none;
  box-shadow: 0 2px 6px rgba(255,107,0,0.35);
}

.specs { margin: 8px 0 4px; }
.specs > div {
  font-size: 13px; color: var(--gray-500); padding: 3px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.specs > div:last-child { border-bottom: none; }

.product-cat {
  display: inline-block; font-size: 12px; color: var(--primary);
  background: #FFF4E5; padding: 3px 10px; border-radius: 20px; font-weight: 600;
  margin-bottom: 10px;
}
.product-price-row .price {
  font-size: 22px; font-weight: 800; color: var(--primary);
}
.btn-more { white-space: nowrap; }

.ph-img { user-select: none; pointer-events: none; }
.product-info { padding: 18px; }
.product-info h3 { font-size: 17px; margin-bottom: 10px; }
.product-info h3 a { color: var(--dark); }
.product-info h3 a:hover { color: var(--primary); }
.product-specs { margin-bottom: 14px; }
.product-specs li {
  font-size: 13px; color: var(--gray-500); padding: 3px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.product-specs li:last-child { border-bottom: none; }
.product-price {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid #f0f0f0;
}
.product-price .price { font-size: 22px; font-weight: 800; color: var(--primary); }

/* ===== Accordion Category Filter ===== */
.cat-accordion {
  margin-bottom: 35px; border: 1px solid #e0e0e0;
  border-radius: 8px; overflow: hidden; background: #fff;
}
.cat-acc-item { border-bottom: 1px solid #eee; }
.cat-acc-item:last-child { border-bottom: none; }
.cat-acc-head {
  padding: 14px 20px; cursor: pointer; display: flex; align-items: center;
  justify-content: space-between; font-weight: 600; font-size: 15px;
  color: #333; transition: all 0.2s ease; user-select: none;
}
.cat-acc-head:hover { background: #fafafa; color: var(--primary); }
.cat-acc-item.active > .cat-acc-head { color: var(--primary); background: #fff8f0; }
.cat-acc-item.active[data-group="all"] > .cat-acc-head {
  background: var(--primary); color: #fff;
}
.cat-acc-head i.acc-arrow { font-size: 12px; transition: transform 0.25s ease; color: #999; }
.cat-acc-body {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 20px; background: #fafafa;
}
.cat-acc-item.active .cat-acc-body { max-height: 500px; padding: 10px 20px 16px; }
.cat-sub-btn {
  display: inline-block; padding: 7px 16px; margin: 4px 6px 4px 0;
  border: 1px solid #ddd; border-radius: 20px; background: #fff;
  color: #555; font-size: 13px; cursor: pointer; transition: all 0.2s ease;
}
.cat-sub-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-sub-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(255,107,0,0.3);
}

/* ===== Pagination ===== */
.pagination {
  display: flex; justify-content: center; align-items: center; gap: 6px;
  margin-top: 36px; padding: 20px 0;
}
.pagination span, .pagination a {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; padding: 0 10px;
  border: 1px solid #ddd; border-radius: var(--radius);
  font-size: 14px; color: var(--gray-700); transition: all 0.2s;
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination span.active { background: var(--primary); color: #fff; border-color: var(--primary); font-weight: 600; }

/* ===== Features Section ===== */
.features { padding: 60px 0; background: var(--gray-100); }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  background: #fff; padding: 32px 24px; border-radius: 10px;
  text-align: center; box-shadow: var(--shadow); transition: all var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon { font-size: 42px; margin-bottom: 16px; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

/* ===== About Preview ===== */
.about-preview { padding: 80px 0; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.about-image img, .about-image > div {
  border-radius: 12px; width: 100%;
}
.about-content h2 { font-size: 30px; font-weight: 700; margin-bottom: 18px; color: var(--dark); }
.about-content p { color: var(--gray-700); margin-bottom: 14px; line-height: 1.7; }
.about-stats {
  display: flex; gap: 32px; margin-top: 24px; padding-top: 24px;
  border-top: 1px solid #eee;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 32px; font-weight: 800; color: var(--primary); display: block;
}
.stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* ===== CTA Section ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; padding: 60px 0; text-align: center;
}
.cta-section h2 { font-size: 32px; font-weight: 700; margin-bottom: 12px; }
.cta-section p { font-size: 17px; opacity: 0.9; margin-bottom: 26px; }
.cta-section .btn-primary { background: #fff; color: var(--primary); }
.cta-section .btn-primary:hover { background: #f5f5f5; }

/* ===== Footer ===== */
.footer { background: var(--dark); color: #aaa; padding: 56px 0 0; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-col h3 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: #aaa; font-size: 14px; }
.footer-col ul li a:hover { color: var(--primary); }

/* Social Links in Footer */
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 14px; transition: all 0.25s;
}
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.contact-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.contact-list li i { color: var(--primary); width: 16px; text-align: center; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 36px;
  padding: 18px 0; text-align: center; font-size: 13px;
}

/* ===== Floating Social Bar ===== */
.social-float {
  position: fixed; right: 20px; top: 50%; transform: translateY(-50%);
  z-index: 999; display: flex; flex-direction: column; gap: 8px;
}
.social-float-btn {
  width: 44px; height: 44px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; color: #fff;
  font-size: 18px; transition: all 0.25s; box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}
.social-float-btn:hover { transform: scale(1.1); }
.social-float-btn.facebook { background: #1877F2; }
.social-float-btn.linkedin { background: #0A66C2; }
.social-float-btn.youtube { background: #FF0000; }
.social-float-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-float-btn.tiktok { background: #000; }
.social-float-btn.vk { background: #0077FF; }
.social-float-btn.whatsapp { background: #25D366; }
.social-float-btn.whatsapp:hover { animation: pulse-wa 1s infinite; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 3px 12px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 3px 24px rgba(37,211,102,0.7); }
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
  background: var(--primary); color: #fff; border: none; border-radius: 50%;
  font-size: 18px; cursor: pointer; opacity: 0; visibility: hidden;
  transition: all 0.3s; z-index: 998; box-shadow: 0 3px 12px rgba(255,107,0,0.3);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== Inquiry Modal ===== */
.inquiry-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6); z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
}
.inquiry-overlay.open { opacity: 1; visibility: visible; }
.inquiry-modal {
  background: #fff; width: 90%; max-width: 540px; border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); transform: scale(0.9);
  transition: transform 0.3s;
}
.inquiry-overlay.open .inquiry-modal { transform: scale(1); }
.inquiry-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid #eee;
}
.inquiry-header h3 { font-size: 19px; font-weight: 700; }
.inquiry-close {
  background: none; border: none; font-size: 20px; cursor: pointer;
  color: var(--gray-500); transition: color 0.2s;
}
.inquiry-close:hover { color: var(--primary); }
.inquiry-body { padding: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--gray-700); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 14px; border: 1px solid #ddd; border-radius: var(--radius);
  font-size: 14px; transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary); }
.btn-submit-inquiry {
  width: 100%; padding: 13px; background: var(--primary); color: #fff;
  border: none; border-radius: var(--radius); font-size: 16px;
  font-weight: 600; cursor: pointer; transition: background 0.2s; margin-top: 8px;
}
.btn-submit-inquiry:hover { background: var(--primary-dark); }
.inquiry-footer {
  text-align: center; padding: 14px; background: var(--gray-100);
  font-size: 13px; color: var(--gray-500); border-top: 1px solid #eee;
}

/* ===== About Full Page ===== */
.about-full { padding: 60px 0; }
.about-full .about-grid { margin-bottom: 60px; }
.mission-section { padding: 60px 0; background: var(--gray-100); border-radius: 12px; margin-bottom: 20px; }
.mission-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.mission-card {
  background: #fff; padding: 32px 24px; border-radius: 10px;
  text-align: center; box-shadow: var(--shadow); transition: all var(--transition);
}
.mission-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mission-icon { font-size: 42px; margin-bottom: 16px; }
.mission-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.mission-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.about-values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  background: #fff; padding: 28px 20px; border-radius: 10px; text-align: center;
  border: 1px solid #eee; transition: all var(--transition);
}
.value-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.value-icon { font-size: 36px; margin-bottom: 14px; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.value-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.stats-bar { padding: 40px 0; margin: 50px 0; background: var(--gray-100); border-radius: 12px; }
.stats-bar .stat-number { font-size: 36px; font-weight: 800; color: var(--primary); }
.stats-bar .stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff; border-radius: 10px; overflow: hidden; text-align: center;
  border: 1px solid #eee; transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.team-photo { width: 100%; height: 240px; overflow: hidden; background: #f0f0f0; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 17px; font-weight: 700; margin-top: 16px; color: var(--dark); }
.team-card p { font-size: 13px; color: var(--gray-500); margin: 4px 0 16px; }

/* ===== Contact Page ===== */
.contact-section { padding: 60px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; margin-bottom: 40px; }
.contact-info h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { font-size: 28px; flex-shrink: 0; width: 40px; text-align: center; }
.contact-item h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: var(--gray-700); }

.contact-form { background: #fff; padding: 36px; border-radius: 12px; border: 1px solid #eee; }
.contact-form h2 { font-size: 22px; font-weight: 700; margin-bottom: 6px; color: var(--dark); }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form textarea { min-height: 120px; resize: vertical; }

.map-placeholder {
  width: 100%; height: 350px; background: #e8e8e8; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 16px; margin-top: 40px;
}

/* ===== Product Detail Page ===== */
.product-detail { padding: 60px 0; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; margin-bottom: 40px; }

.product-gallery .main-image {
  width: 100%; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden;
  background: #f5f5f5; margin-bottom: 12px; display: flex; align-items: center; justify-content: center;
}
.product-gallery .main-image img { width: 100%; height: 100%; object-fit: contain; background: #f5f5f5; display: block; }

.thumbnail-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.thumbnail {
  aspect-ratio: 1 / 1; border-radius: 8px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; transition: all 0.2s; background: #fafafa; display: flex; align-items: center; justify-content: center;
}
.thumbnail:hover, .thumbnail.active { border-color: var(--primary); }
.thumbnail img { width: 100%; height: 100%; object-fit: contain; background: #fafafa; display: block; }

.product-detail-info h1 { font-size: 28px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.product-detail-price { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.product-description { margin-bottom: 24px; }
.product-description p { color: var(--gray-700); line-height: 1.7; margin-bottom: 10px; }
.product-actions { display: flex; gap: 14px; margin-bottom: 16px; }
.product-actions .btn-primary { padding: 14px 32px; font-size: 16px; }
.product-actions .btn-outline { padding: 14px 28px; font-size: 15px; }

.specs-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.specs-table th, .specs-table td {
  padding: 12px 16px; text-align: left; border-bottom: 1px solid #eee;
  font-size: 14px;
}
.specs-table th {
  width: 40%; background: #fafafa; font-weight: 600; color: var(--gray-700);
}
.specs-table td { color: var(--gray-900); }

.attachments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.attachment-item { text-align: center; }
.attachment-item > div, .attachment-item img {
  width: 100%; aspect-ratio: 1 / 1; border-radius: 8px; object-fit: contain;
  background: #f0f0f0; margin-bottom: 6px; display: block;
}
.attachment-item small { font-size: 12px; color: var(--gray-500); }

/* ===== Admin Panel ===== */
.admin-sidebar {
  position: fixed; left: 0; top: 0; bottom: 0; width: 240px;
  background: var(--dark); color: #ccc; padding: 24px 0; z-index: 100;
  overflow-y: auto;
}
.sidebar-header { padding: 0 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.sidebar-header h2 { color: #fff; font-size: 20px; font-weight: 800; }
.sidebar-header p { font-size: 12px; color: #888; margin-top: 4px; }
.sidebar-menu { padding: 12px 0; }
.sidebar-menu li a {
  display: block; padding: 12px 24px; font-size: 14px; color: #bbb;
  transition: all 0.2s;
}
.sidebar-menu li a:hover, .sidebar-menu li a.active {
  background: rgba(255,255,255,0.06); color: #fff; border-left: 3px solid var(--primary);
}

.admin-main { margin-left: 240px; padding: 0; min-height: 100dvh; background: #f5f5f5; }
.admin-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 30px; background: #fff; border-bottom: 1px solid #eee;
  font-size: 14px;
}
.admin-header h1 { font-size: 22px; font-weight: 700; color: var(--dark); }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 24px 30px; }
.stat-card {
  background: #fff; padding: 24px; border-radius: 10px;
  box-shadow: var(--shadow); text-align: center;
}
.stat-card h3 { font-size: 13px; color: var(--gray-500); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.stat-card .number { font-size: 36px; font-weight: 800; color: var(--primary); margin-top: 8px; }

.data-table { background: #fff; border-radius: 10px; box-shadow: var(--shadow); margin: 0 30px 24px; overflow: hidden; }
.data-table-header { padding: 18px 24px; border-bottom: 1px solid #eee; }
.data-table-header h2 { font-size: 17px; font-weight: 700; color: var(--dark); }
.data-table table { width: 100%; border-collapse: collapse; }
.data-table th, .data-table td {
  padding: 12px 18px; text-align: left; font-size: 13px;
  border-bottom: 1px solid #f0f0f0;
}
.data-table th { background: #fafafa; font-weight: 600; color: var(--gray-700); }
.data-table td { color: var(--gray-900); }
.data-table tr:hover td { background: #fafafa; }

.action-btns { display: flex; gap: 8px; }
.btn-sm {
  display: inline-block; padding: 5px 12px; font-size: 12px; border-radius: 4px;
  font-weight: 600; cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.btn-edit { background: #e3f2fd; color: #1565c0; }
.btn-edit:hover { background: #1565c0; color: #fff; }
.btn-delete { background: #fce4ec; color: #c62828; }
.btn-delete:hover { background: #c62828; color: #fff; }
.btn-reply { background: #e8f5e9; color: #2e7d32; }
.btn-reply:hover { background: #2e7d32; color: #fff; }

.status-active { background: #e8f5e9; color: #2e7d32; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.status-pending { background: #fff3e0; color: #e65100; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }

.filter-bar {
  display: flex; gap: 12px; padding: 18px 30px; align-items: center; flex-wrap: wrap;
}
.filter-bar input, .filter-bar select {
  padding: 8px 14px; border: 1px solid #ddd; border-radius: var(--radius);
  font-size: 13px; min-width: 160px;
}
.filter-bar input:focus, .filter-bar select:focus { outline: none; border-color: var(--primary); }

.admin-form { padding: 30px; }
.admin-form h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 20px; }
.admin-form .form-row { margin-bottom: 20px; }
.admin-form .form-group { margin-bottom: 16px; }

.image-preview {
  width: 200px; height: 150px; background: #f0f0f0; border: 2px dashed #ddd;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #999; font-size: 13px; margin-top: 10px;
}

/* Admin Login */
.admin-login {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; min-height: 100dvh;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}
.login-box {
  background: #fff; padding: 40px; border-radius: 12px; width: 90%; max-width: 420px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.login-logo {
  width: 60px; height: 60px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 22px; margin: 0 auto 16px;
}
.login-box h1 { font-size: 22px; font-weight: 700; color: var(--dark); }
.login-box .form-group { margin-bottom: 18px; }

/* Admin Logout */
.logout-page {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh; min-height: 100dvh;
  background: var(--gray-100); text-align: center;
}

/* ===== Form Feedback ===== */
.form-feedback {
  padding: 12px 16px; border-radius: var(--radius); font-size: 14px;
  margin-top: 12px; display: none;
}
.form-feedback.success { display: block; background: #e8f5e9; color: #2e7d32; border: 1px solid #c8e6c9; }
.form-feedback.error   { display: block; background: #fce4ec; color: #c62828; border: 1px solid #f8bbd0; }
.form-feedback.info    { display: block; background: #e3f2fd; color: #1565c0; border: 1px solid #bbdefb; }
.form-group input.invalid, .form-group textarea.invalid, .form-group select.invalid {
  border-color: #c62828; background: #fff8f8;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .solution-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 16px; box-shadow: var(--shadow-lg); }
  .nav-menu.open { display: flex; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .submenu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding-left: 16px; display: none; }
  .dropdown-submenu.open .submenu { display: block; }
  .mobile-btn { display: block; }
  .nav-actions { display: none; }
  .hero h2 { font-size: 30px; }
  .hero p { font-size: 15px; }
  .social-float { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { width: 200px; }
  .admin-main { margin-left: 200px; }
}
@media (max-width: 576px) {
  .products-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .solution-cards-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 60px 0; }
  .hero h2 { font-size: 24px; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
  .cat-sub-btn { font-size: 12px; padding: 6px 12px; }
  .mission-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .attachments-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr; padding: 16px; }
  .data-table { margin: 0 16px 16px; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-header { padding: 14px 16px; }
  .filter-bar { padding: 14px 16px; }
  .admin-form { padding: 16px; }
}

/* ===== Solutions Page Styles ===== */
.solutions-hero {
  background: linear-gradient(135deg, rgba(31,55,100,0.9) 0%, rgba(22,40,74,0.95) 100%),
              url('../images/solutions/hero-solutions.jpg') center/cover no-repeat;
  color: #fff; padding: 120px 0; text-align: center; position: relative; overflow: hidden;
}
.solutions-hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(237,125,49,0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(237,125,49,0.1) 0%, transparent 50%);
}
.solutions-hero .hero-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.solutions-hero h1 { font-size: 44px; font-weight: 800; margin-bottom: 20px; line-height: 1.2; }
.solutions-hero p { font-size: 19px; opacity: 0.85; margin-bottom: 36px; line-height: 1.6; }
.solutions-hero .btn-primary { background: var(--primary); }
.solutions-hero .btn-primary:hover { background: var(--primary-dark); }
.solutions-hero .btn-secondary { border-color: rgba(255,255,255,0.5); }

.solutions-overview { padding: 80px 0; background: #fff; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.overview-image img { border-radius: 12px; box-shadow: var(--shadow-lg); }
.overview-content h2 { font-size: 32px; font-weight: 700; color: var(--secondary); margin-bottom: 20px; }
.overview-content p { color: var(--gray-700); margin-bottom: 16px; line-height: 1.7; font-size: 16px; }
.overview-content .btn-outline { margin-top: 16px; }

.solutions-painpoints { padding: 80px 0; background: var(--gray-100); }
.painpoints-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.painpoint-card {
  background: #fff; padding: 32px 24px; border-radius: 12px;
  text-align: center; box-shadow: var(--shadow); transition: all var(--transition);
}
.painpoint-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.painpoint-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 16px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 28px; margin: 0 auto 16px;
}
.painpoint-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--secondary); }
.painpoint-card p { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.solutions-products { padding: 80px 0; background: #fff; }

.solution-cards-section { padding: 80px 0; background: var(--gray-100); }
.solution-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card-item {
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow);
  transition: all var(--transition); cursor: pointer;
}
.solution-card-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.solution-card-image { position: relative; height: 200px; overflow: hidden; }
.solution-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--transition); }
.solution-card-item:hover .solution-card-image img { transform: scale(1.05); }
.solution-card-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}
.solution-card-content { padding: 24px; }
.solution-card-icon {
  width: 48px; height: 48px; background: var(--primary); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; margin-bottom: 16px;
}
.solution-card-content h3 {
  font-size: 18px; font-weight: 700; color: var(--secondary);
  margin-bottom: 8px;
}
.solution-card-content p {
  font-size: 14px; color: var(--gray-600); line-height: 1.6;
  margin-bottom: 16px;
}
.solution-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.solution-card-tags span {
  background: var(--gray-100); color: var(--secondary);
  padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 500;
}
.solution-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 14px;
  transition: color var(--transition);
}
.solution-card-link:hover { color: var(--primary-dark); }

.solutions-scenarios { padding: 80px 0; background: #fff; }
.scenarios-hero { position: relative; border-radius: 16px; overflow: hidden; margin-bottom: 40px; }
.scenarios-hero img { width: 100%; height: 400px; object-fit: cover; }
.scenarios-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(31,55,100,0.6);
}
.scenario-marker {
  position: absolute; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.scenario-marker .marker-icon {
  width: 50px; height: 50px; background: var(--primary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px; box-shadow: 0 4px 12px rgba(237,125,49,0.4);
}
.scenario-marker .marker-label {
  background: rgba(255,255,255,0.95); padding: 6px 12px; border-radius: 20px;
  font-size: 13px; font-weight: 600; color: var(--secondary); white-space: nowrap;
}
.scenario-marker.marker-1 { top: 30%; left: 15%; }
.scenario-marker.marker-2 { top: 50%; right: 20%; }
.scenario-marker.marker-3 { top: 70%; left: 25%; }
.scenario-marker.marker-4 { top: 40%; left: 55%; }
.scenarios-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.scenario-card {
  background: #fff; padding: 28px 24px; border-radius: 12px;
  border-left: 4px solid var(--primary); box-shadow: var(--shadow); transition: all var(--transition);
}
.scenario-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.scenario-icon { font-size: 32px; color: var(--primary); margin-bottom: 12px; }
.scenario-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.scenario-card p { font-size: 13px; color: var(--gray-500); line-height: 1.6; }

.solutions-advantages { padding: 80px 0; background: #fff; }
.advantages-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.advantage-card {
  background: var(--gray-100); padding: 28px 20px; border-radius: 12px;
  text-align: center; transition: all var(--transition);
}
.advantage-card:hover { background: var(--secondary); transform: translateY(-3px); }
.advantage-card:hover h3, .advantage-card:hover p { color: #fff; }
.advantage-icon { font-size: 36px; color: var(--primary); margin-bottom: 12px; }
.advantage-card:hover .advantage-icon { color: var(--primary-light); }
.advantage-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.advantage-card p { font-size: 13px; color: var(--gray-500); line-height: 1.5; }

.solutions-cases { padding: 80px 0; background: var(--gray-100); }
.case-card {
  background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg);
  display: grid; grid-template-columns: 1fr 1.2fr;
}
.case-image img { width: 100%; height: 100%; object-fit: cover; }
.case-content { padding: 40px; }
.case-meta { display: flex; gap: 16px; margin-bottom: 16px; }
.case-client { font-weight: 600; color: var(--secondary); }
.case-industry {
  background: var(--primary); color: #fff; padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 600;
}
.case-content h3 { font-size: 24px; font-weight: 700; color: var(--secondary); margin-bottom: 16px; }
.case-content p { color: var(--gray-700); margin-bottom: 12px; line-height: 1.7; font-size: 15px; }
.case-stats { display: flex; gap: 32px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #eee; }
.case-stat { text-align: center; }
.case-stat .stat-num { font-size: 32px; font-weight: 800; color: var(--primary); display: block; }
.case-stat .stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

.solutions-process { padding: 80px 0; background: #fff; }
.process-timeline {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.process-step { text-align: center; flex: 1; min-width: 100px; }
.step-icon {
  width: 56px; height: 56px; background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 24px; font-weight: 800; margin: 0 auto 12px;
  box-shadow: 0 4px 12px rgba(31,55,100,0.3);
}
.process-step h3 { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--gray-500); }
.process-line {
  flex: 1; height: 2px; background: linear-gradient(90deg, var(--secondary), var(--primary));
  min-width: 40px;
}

.solutions-faq { padding: 80px 0; background: var(--gray-100); }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item { background: #fff; border-radius: 10px; margin-bottom: 12px; overflow: hidden; box-shadow: var(--shadow); }
.faq-header {
  width: 100%; padding: 20px 24px; text-align: left; cursor: pointer;
  background: none; border: none; font-size: 16px; font-weight: 600;
  color: var(--secondary); display: flex; justify-content: space-between;
  align-items: center; transition: background 0.2s;
}
.faq-header:hover { background: rgba(31,55,100,0.05); }
.faq-header::after {
  content: '\f067'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: var(--primary); font-size: 14px; transition: transform 0.3s;
}
.faq-item.active .faq-header::after { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.active .faq-content { max-height: 200px; padding: 0 24px 20px; }
.faq-content p { color: var(--gray-700); line-height: 1.7; font-size: 15px; }

.solutions-inquiry { padding: 80px 0; background: #fff; }
.inquiry-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; }
.inquiry-form h2 { font-size: 26px; font-weight: 700; color: var(--secondary); margin-bottom: 8px; }
.inquiry-form p { color: var(--gray-500); margin-bottom: 24px; }
.inquiry-info h3 { font-size: 20px; font-weight: 700; color: var(--secondary); margin-bottom: 24px; }
.inquiry-info .contact-item {
  display: flex; gap: 16px; margin-bottom: 24px; padding: 20px;
  background: var(--gray-100); border-radius: 10px;
}
.inquiry-info .contact-icon {
  width: 48px; height: 48px; background: var(--secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; flex-shrink: 0;
}
.inquiry-info .contact-item h4 { font-size: 15px; font-weight: 700; color: var(--secondary); margin-bottom: 4px; }
.inquiry-info .contact-item p { color: var(--gray-700); font-size: 14px; }
.inquiry-info .contact-item a { color: var(--primary); }
.inquiry-info .wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ===== RTL Support (Arabic) ===== */
[dir="rtl"] { text-align: right; }
[dir="rtl"] .header-contact { direction: rtl; }
[dir="rtl"] .nav-menu { direction: rtl; }
[dir="rtl"] .header-lang select { direction: rtl; }
[dir="rtl"] .dropdown-menu,
[dir="rtl"] .submenu { left: auto; right: 0; }
[dir="rtl"] .dropdown-submenu > .submenu { left: auto; right: 100%; }
[dir="rtl"] .nav-actions { direction: rtl; }
[dir="rtl"] .breadcrumb { direction: rtl; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .form-group { direction: rtl; text-align: right; }
[dir="rtl"] .form-row { direction: rtl; }
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .mission-grid { direction: rtl; }
[dir="rtl"] .about-values { direction: rtl; }
[dir="rtl"] .team-grid { direction: rtl; }
[dir="rtl"] .news-layout { direction: rtl; }
[dir="rtl"] .gallery-tabs { direction: rtl; }
[dir="rtl"] .cat-accordion { direction: rtl; }
[dir="rtl"] .product-card { direction: rtl; }
[dir="rtl"] .news-card { direction: rtl; }
[dir="rtl"] .about-stats { direction: rtl; }
[dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .page-header { direction: rtl; }
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select { direction: rtl; text-align: right; }
[dir="rtl"] .overview-grid { direction: rtl; }
[dir="rtl"] .painpoints-grid { direction: rtl; }
[dir="rtl"] .scenarios-grid { direction: rtl; }
[dir="rtl"] .advantages-grid { direction: rtl; }
[dir="rtl"] .case-card { direction: rtl; }
[dir="rtl"] .process-timeline { direction: rtl; }
[dir="rtl"] .inquiry-grid { direction: rtl; }
