/*
Theme Name: Rekhi Team Sports
Theme URI: https://rekhisports.com
Author: Rekhi Team Sports
Author URI: https://rekhisports.com
Description: Custom OEM Apparel Manufacturing theme converted from Hostinger Horizons. Features hero slider, RFQ form, product categories, manufacturing showcase, testimonials, FAQ and full admin panel.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
Text Domain: rekhi-theme
Tags: custom-background, custom-logo, custom-menu, full-width-template, threaded-comments, translation-ready
*/

/* =============================================
   REKHI TEAM SPORTS - CSS VARIABLES & BASE
   Brand: Orange #ff6600 | Dark: #111111
   Fonts: Outfit (headings) + Plus Jakarta Sans (body)
============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary:        #ff6600;
  --primary-dark:   #e55500;
  --primary-light:  #ff8833;
  --dark:           #111111;
  --dark-2:         #1a1a1a;
  --dark-3:         #222222;
  --white:          #ffffff;
  --gray-100:       #f5f5f5;
  --gray-200:       #e8e8e8;
  --gray-400:       #999999;
  --gray-600:       #666666;
  --text:           #111111;
  --text-light:     #555555;
  --border:         #e2e2e2;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:      0 12px 48px rgba(0,0,0,0.14);
  --transition:     all 0.3s ease;
  --font-body:      'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading:   'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --container:      1280px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: #fff;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

p { max-width: 65ch; line-height: 1.7; }

/* =============================================
   UTILITY CLASSES
============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.text-center { text-align: center; }
.text-primary { color: var(--primary); }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: rgba(255,102,0,0.1);
  border: 1px solid rgba(255,102,0,0.3);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,102,0,0.3); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }

.glass {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
}

.card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Section titles */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* Grid helpers */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

/* =============================================
   HEADER / NAVIGATION
============================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--dark);
  transition: box-shadow 0.3s ease;
}
#site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.header-left { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.site-logo img { width: 90px; height: auto; background: rgba(255,255,255,0.15); padding: 6px; border-radius: 8px; }

.logo-meta { display: flex; flex-direction: column; gap: 4px; }
.logo-meta strong { color: #fff; font-size: 13px; letter-spacing: 0.06em; }
.logo-meta .badges { display: flex; gap: 6px; }
.logo-meta .badges span {
  padding: 2px 8px;
  border-radius: 100px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.logo-meta .badge-primary { background: rgba(255,102,0,0.15); border: 1px solid rgba(255,102,0,0.3); color: var(--primary); }
.logo-meta .badge-light   { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); }

/* Main Nav */
#main-nav { display: flex; align-items: center; gap: 4px; }

#main-nav > li { position: relative; }

#main-nav > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-radius: 8px;
  white-space: nowrap;
}
#main-nav > li > a:hover,
#main-nav > li.current-menu-item > a { color: var(--primary); }

/* Mega dropdown */
.mega-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  width: 960px;
  background: rgba(17,17,17,0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  display: none;
  z-index: 9999;
}
#main-nav > li:hover .mega-dropdown { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.mega-dropdown h4 {
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mega-dropdown ul li a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  padding: 4px 0;
  transition: var(--transition);
}
.mega-dropdown ul li a:hover { color: #fff; padding-left: 6px; }

/* Header right */
.header-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }

.header-contacts { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.header-contacts a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
}
.header-contacts a:hover { color: var(--primary); }
.header-contacts svg { width: 13px; height: 13px; }

.btn-quote {
  padding: 10px 22px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-quote:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,102,0,0.35); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  padding: 8px;
  color: #fff;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}
.mobile-toggle:hover { background: rgba(255,255,255,0.15); }

/* Mobile nav */
#mobile-nav {
  display: none;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.08);
}
#mobile-nav.open { display: block; }
#mobile-nav ul { padding: 16px; }
#mobile-nav ul li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
}
#mobile-nav ul li a:hover { background: rgba(255,255,255,0.05); color: var(--primary); }
#mobile-nav .mobile-ctas { padding: 12px 16px 20px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 10px; }
#mobile-nav .mobile-ctas a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); font-size: 14px; padding: 10px 16px; }
#mobile-nav .mobile-ctas .btn-quote { text-align: center; justify-content: center; }

/* =============================================
   HERO SLIDER
============================================= */
#hero-slider {
  position: relative;
  height: 100vh;
  min-height: 620px;
  background: var(--dark);
  overflow: hidden;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.slide.active { opacity: 1; }

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.slide.active .slide-bg { transform: scale(1); }

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.2) 100%);
}

.slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.slide-content .container { width: 100%; }

.slide-inner { max-width: 700px; }

.slide-cat {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.slide-title {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.slide-desc {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 560px;
}

.slide-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
}
.trust-badge svg { color: var(--primary); width: 16px; height: 16px; }

/* Slider nav */
.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #fff;
  z-index: 10;
  transition: var(--transition);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-prev:hover, .slider-next:hover { background: rgba(255,255,255,0.2); transform: translateY(-50%) scale(1.1); }

.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  height: 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  cursor: pointer;
  width: 8px;
}
.slider-dot.active { width: 32px; background: var(--primary); }

/* =============================================
   TRUST INDICATORS (Stats)
============================================= */
#trust-indicators { background: linear-gradient(to bottom, #fff, var(--gray-100)); }

.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(255,102,0,0.2); }

.stat-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,102,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.stat-icon svg { width: 28px; height: 28px; }
.stat-number { font-size: 48px; font-weight: 900; color: var(--primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.stat-desc { font-size: 13px; color: var(--text-light); }

/* =============================================
   CATEGORY SLIDER (Product Rows)
============================================= */
.category-section { padding: 80px 0; }
.category-section:nth-child(even) { background: var(--gray-100); }

.category-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.category-label { display: flex; align-items: center; gap: 12px; }

.products-scroll {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-img {
  position: relative;
  padding-top: 75%;
  overflow: hidden;
}
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.08); }

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 100px;
}

.product-body { padding: 20px; }
.product-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.product-desc { font-size: 13px; color: var(--text-light); margin-bottom: 14px; }
.product-features { display: flex; flex-wrap: wrap; gap: 6px; }
.product-feature {
  padding: 3px 10px;
  background: var(--gray-100);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
}

/* =============================================
   WHY CHOOSE US
============================================= */
#why-choose { background: #fff; }

.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.feature-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  background: #fff;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,102,0,0.3); }

.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,102,0,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon { background: rgba(255,102,0,0.2); }
.feature-icon svg { width: 24px; height: 24px; }
.feature-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.feature-desc { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* =============================================
   MANUFACTURING PROCESS
============================================= */
#manufacturing-process { background: var(--gray-100); }

.process-steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), var(--primary-light));
  z-index: 0;
}

.process-step { text-align: center; padding: 0 12px; position: relative; z-index: 1; }

.step-num {
  width: 72px;
  height: 72px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(255,102,0,0.4);
  border: 4px solid #fff;
}
.step-icon { font-size: 20px; margin-bottom: 4px; }
.step-title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.step-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* =============================================
   INDUSTRIES
============================================= */
#industries { background: var(--dark); }
#industries .section-title, #industries .section-subtitle { color: rgba(255,255,255,0.9); }
#industries .section-subtitle { color: rgba(255,255,255,0.55); }

.industries-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.industry-card {
  padding: 32px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,102,0,0.4); transform: translateY(-4px); }

.industry-icon {
  font-size: 36px;
  margin-bottom: 16px;
}
.industry-card h3 { color: #fff; font-size: 17px; margin-bottom: 8px; }
.industry-card p { color: rgba(255,255,255,0.55); font-size: 13px; }

/* =============================================
   FACTORY SHOWCASE
============================================= */
#factory { background: #fff; }

.factory-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

.factory-images { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 16px; }
.factory-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.factory-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.factory-img:hover img { transform: scale(1.05); }
.factory-img.featured { grid-row: span 2; }

.factory-content h2 { font-size: clamp(24px, 3vw, 36px); margin-bottom: 16px; }
.factory-content p { color: var(--text-light); margin-bottom: 28px; }

.factory-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.factory-stat { padding: 20px; background: var(--gray-100); border-radius: var(--radius); }
.factory-stat strong { display: block; font-size: 28px; font-weight: 900; color: var(--primary); }
.factory-stat span { font-size: 13px; color: var(--text-light); }

/* =============================================
   CUSTOMIZATION OPTIONS
============================================= */
#customization { background: var(--gray-100); }

.custom-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.custom-card {
  padding: 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.custom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(255,102,0,0.3); }
.custom-icon { font-size: 32px; margin-bottom: 16px; }
.custom-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.custom-desc { font-size: 13px; color: var(--text-light); }

/* =============================================
   GLOBAL EXPORT
============================================= */
#global-export { background: var(--dark); }
#global-export .section-title { color: #fff; }
#global-export .section-subtitle { color: rgba(255,255,255,0.55); }

.export-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.export-card {
  padding: 24px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  cursor: pointer;
}
.export-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,102,0,0.4); transform: translateY(-3px); }
.export-card h4 { color: #fff; font-size: 16px; margin-bottom: 6px; }
.export-card .vol { color: var(--primary); font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.export-card .clients { color: rgba(255,255,255,0.5); font-size: 12px; margin-bottom: 10px; }
.export-card p { color: rgba(255,255,255,0.5); font-size: 12px; line-height: 1.6; max-width: 100%; }

/* =============================================
   TESTIMONIALS
============================================= */
#testimonials { background: #fff; overflow: hidden; }

.testimonials-track { position: relative; }

.testimonials-slider { display: flex; gap: 24px; transition: transform 0.5s ease; }

.testimonial-card {
  min-width: calc(33.333% - 16px);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}

.testimonial-stars { display: flex; gap: 4px; margin-bottom: 16px; color: var(--primary); }
.testimonial-stars svg { width: 18px; height: 18px; fill: currentColor; }

.testimonial-text { font-size: 15px; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; font-style: italic; max-width: 100%; }

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 15px; }
.testimonial-meta { font-size: 12px; color: var(--text-light); }

.testimonials-nav { display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 40px; }
.testimonials-nav button {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text);
}
.testimonials-nav button:hover { border-color: var(--primary); color: var(--primary); }

.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.testimonials-dots span.active { background: var(--primary); width: 24px; border-radius: 100px; }

/* =============================================
   FAQ
============================================= */
#faq { background: var(--gray-100); }

.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  color: var(--text);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.faq-question:hover { color: var(--primary); }
.faq-question.open { color: var(--primary); }

.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--text-light); }
.faq-question.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer.open { max-height: 400px; }
.faq-answer p { padding: 0 28px 22px; color: var(--text-light); font-size: 15px; line-height: 1.7; }

/* =============================================
   RFQ FORM
============================================= */
#rfq { background: var(--dark); }
#rfq .section-title { color: #fff; }
#rfq .section-subtitle { color: rgba(255,255,255,0.55); }

.rfq-grid { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }

.rfq-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: span 2; }

.form-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.75); }

.form-input, .form-select, .form-textarea {
  padding: 13px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  font-size: 14px;
  color: #fff;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(255,102,0,0.15);
}

.form-select { appearance: none; cursor: pointer; }
.form-select option { background: var(--dark); color: #fff; }

.form-textarea { resize: vertical; min-height: 120px; }

.form-error { font-size: 12px; color: #ff4444; }

/* Customization checkboxes */
.customization-options { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.custom-checkbox { position: relative; }
.custom-checkbox input { display: none; }
.custom-checkbox label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  cursor: pointer;
  transition: var(--transition);
}
.custom-checkbox input:checked + label { border-color: var(--primary); color: var(--primary); background: rgba(255,102,0,0.1); }

/* File upload */
.file-drop {
  padding: 28px;
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.file-drop:hover { border-color: var(--primary); color: rgba(255,255,255,0.7); }
.file-drop svg { width: 32px; height: 32px; margin: 0 auto 12px; display: block; }
.file-drop strong { display: block; margin-bottom: 6px; font-size: 15px; color: rgba(255,255,255,0.8); }

.rfq-sidebar { display: flex; flex-direction: column; gap: 20px; }

.rfq-contact-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.rfq-contact-card h3 { color: #fff; font-size: 18px; margin-bottom: 20px; }
.contact-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon.mail { background: rgba(255,102,0,0.15); color: var(--primary); }
.contact-icon.phone { background: rgba(34,197,94,0.15); color: #22c55e; }
.contact-icon.wa { background: rgba(34,197,94,0.15); color: #22c55e; }
.contact-icon svg { width: 18px; height: 18px; }
.contact-item-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item-value { font-size: 14px; color: rgba(255,255,255,0.9); font-weight: 500; }

/* =============================================
   FOOTER
============================================= */
#site-footer { background: #0a0a0a; color: rgba(255,255,255,0.65); }

.footer-top {
  padding: 64px 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img { width: 80px; margin-bottom: 20px; background: rgba(255,255,255,0.12); padding: 6px; border-radius: 8px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a { color: var(--primary); }

/* =============================================
   PAGES (Inner)
============================================= */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(to bottom, var(--gray-100), #fff);
  text-align: center;
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--text-light); max-width: 600px; margin: 0 auto; }

.inner-section { padding: 80px 0; }

/* About page */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 400px; object-fit: cover; }

/* Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 400px; gap: 48px; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { padding-top: 60%; position: relative; overflow: hidden; background: var(--gray-100); }
.blog-card-body { padding: 24px; }
.blog-meta { font-size: 12px; color: var(--text-light); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-card h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card p { font-size: 14px; color: var(--text-light); }

/* =============================================
   SCROLL TO TOP
============================================= */
#scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,102,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 1000;
  cursor: pointer;
  border: none;
}
#scroll-top.visible { opacity: 1; pointer-events: all; }
#scroll-top:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(255,102,0,0.5); }
#scroll-top svg { width: 20px; height: 20px; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  .stats-grid, .features-grid, .industries-grid, .export-grid { grid-template-columns: repeat(2,1fr); }
  .products-scroll, .custom-grid { grid-template-columns: repeat(2,1fr); }
  .process-steps { grid-template-columns: repeat(3,1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .factory-grid, .rfq-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonial-card { min-width: calc(50% - 12px); }
  .mega-dropdown { width: 720px; grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  #main-nav, .header-right, .logo-meta { display: none; }
  .mobile-toggle { display: flex; }
  .stats-grid, .features-grid, .industries-grid, .export-grid,
  .products-scroll, .custom-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .slide-ctas { flex-direction: column; }
  .testimonial-card { min-width: 100%; }
  .footer-brand, .footer-col { padding: 0; }
  .blog-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
}

/* =============================================
   WORDPRESS SPECIFIC
============================================= */
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 13px; color: var(--text-light); text-align: center; margin-top: 8px; }
.alignleft { float: left; margin: 0 20px 16px 0; }
.alignright { float: right; margin: 0 0 16px 20px; }
.aligncenter { display: block; margin: 0 auto 16px; }
.sticky { /* wp sticky posts */ }
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* WP default form styles */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="tel"],
input[type="number"],
textarea,
select {
  font-family: inherit;
}

/* Comments */
.comments-area { padding: 60px 0; }
.comment-list { list-style: none; }
.comment-body { padding: 20px; margin-bottom: 16px; border: 1px solid var(--border); border-radius: var(--radius); }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; padding: 40px 0; }
.pagination a, .pagination span {
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
}
.pagination a:hover { border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }
