/*
Theme Name: Vileson Trade
Theme URI: https://vilesontradefzco.com
Author: Vileson Trade FZCO
Description: Professional theme for Vileson Trade FZCO — household chemicals, cleaning & sanitizing solutions. Fully compatible with Elementor, WPBakery, and Beaver Builder for drag-and-drop editing.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vileson
Tags: business, elementor, one-column, two-columns, custom-colors, custom-menu, featured-images, full-width-template, sticky-post, translation-ready
*/

/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --primary:       #0b3d2e;   /* Deep forest green */
  --primary-light: #155c44;
  --primary-pale:  #e8f4f0;
  --accent:        #2ecc8f;   /* Fresh mint */
  --accent-dark:   #1fa870;
  --gold:          #c9a84c;
  --text-dark:     #111e1a;
  --text-mid:      #3d5049;
  --text-muted:    #7a9186;
  --bg:            #ffffff;
  --bg-soft:       #f4f9f7;
  --bg-dark:       #071f17;
  --border:        #d4e8e1;
  --font-head:     'Playfair Display', Georgia, serif;
  --font-body:     'DM Sans', sans-serif;
  --radius:        10px;
  --radius-lg:     18px;
  --shadow:        0 4px 24px rgba(11,61,46,0.10);
  --shadow-lg:     0 8px 40px rgba(11,61,46,0.16);
  --transition:    0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; transition: color var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ============================================================
   UTILITY
   ============================================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto 0;
  line-height: 1.7;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  width: 38px; height: 38px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.logo-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.main-nav ul {
  display: flex;
  gap: 36px;
  align-items: center;
}
.main-nav ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 2px;
}
.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width var(--transition);
}
.main-nav ul li a:hover { color: var(--primary); }
.main-nav ul li a:hover::after { width: 100%; }
.nav-actions { display: flex; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
}
.btn-accent:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(46,204,143,0.3);
}
.btn-lg { padding: 14px 34px; font-size: 15px; border-radius: 12px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--bg-soft);
  overflow: hidden;
  position: relative;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(46,204,143,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}
.hero-content { flex: 1; min-width: 300px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(11,61,46,0.12);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero h1 {
  font-family: var(--font-head);
  font-size: 52px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.5px;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent-dark);
}
.hero-desc {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 38px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-avatars { display: flex; }
.trust-avatars span {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: #fff;
  margin-right: -8px;
}
.hero-visual { flex: 0 0 420px; }
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  position: relative;
}
.hero-card-tag {
  position: absolute;
  top: -14px; left: 24px;
  background: var(--accent);
  color: var(--primary);
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.stat-box { text-align: center; padding: 18px; background: var(--bg-soft); border-radius: var(--radius); }
.stat-val { font-family: var(--font-head); font-size: 30px; font-weight: 700; color: var(--primary); }
.stat-lbl { font-size: 12px; color: var(--text-muted); margin-top: 2px; font-weight: 500; }
.certif-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.certif-pill {
  background: var(--primary-pale);
  color: var(--primary);
  font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--border);
}

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients-strip {
  background: var(--bg-dark);
  padding: 30px 0;
}
.clients-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.clients-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.client-name {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: -0.3px;
  transition: color var(--transition);
}
.client-name:hover { color: rgba(255,255,255,0.75); }

/* ============================================================
   PRODUCTS / SERVICES
   ============================================================ */
.products-section { background: var(--bg); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 56px;
}
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--accent); }
.product-card:hover::before { transform: scaleX(1); }
.product-icon {
  width: 54px; height: 54px;
  background: var(--primary-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 10px;
  font-weight: 600;
}
.product-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 11px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--bg-soft);
  color: var(--text-mid);
  border: 1px solid var(--border);
}

/* ============================================================
   WHY VILESON — FEATURES
   ============================================================ */
.why-section { background: var(--bg-soft); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 20px;
}
.why-text {}
.why-text .section-sub { margin: 0 0 36px; max-width: 100%; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--primary);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-icon svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  display: block;
}
.why-item-text h4 { font-family: var(--font-head); font-size: 17px; color: var(--primary); margin-bottom: 4px; }
.why-item-text p { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
.why-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.metric-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.metric-card.accent-card { background: var(--primary); border-color: var(--primary); }
.metric-card.accent-card .metric-num { color: var(--accent); }
.metric-card.accent-card .metric-lbl { color: rgba(255,255,255,0.6); }
.metric-num { font-family: var(--font-head); font-size: 36px; font-weight: 700; color: var(--primary); }
.metric-lbl { font-size: 12px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }

/* ============================================================
   PROCESS
   ============================================================ */
.process-section { background: var(--bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}
.step-num-wrap {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  transition: all var(--transition);
}
.step-num-wrap:hover { border-color: var(--accent); box-shadow: 0 0 0 6px rgba(46,204,143,0.12); }
.step-num {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}
.process-step h4 {
  font-family: var(--font-head);
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 8px;
}
.process-step p { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background: var(--bg-soft); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.quote-mark {
  font-family: Georgia, serif;
  font-size: 60px;
  line-height: 0.8;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 14px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--primary); }
.author-role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 200px; height: 400px;
  background: radial-gradient(circle, rgba(46,204,143,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-inner h2 {
  font-family: var(--font-head);
  font-size: 40px;
  color: #fff;
  margin-bottom: 16px;
}
.cta-inner p { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 38px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
}
.btn-white:hover { background: var(--bg-soft); color: var(--primary); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================================
   CERTIFICATIONS BAND
   ============================================================ */
.cert-band { background: var(--bg-dark); padding: 50px 0; }
.cert-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.cert-item {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.55);
  font-size: 13px; font-weight: 500;
}
.cert-item svg { width: 22px; height: 22px; opacity: 0.6; }
.cert-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.12); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #040e09; padding: 60px 0 28px; color: rgba(255,255,255,0.5); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.35); }
.footer-desc { font-size: 13px; line-height: 1.8; margin-top: 14px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 13px; }
.footer-contact-item svg { width: 14px; height: 14px; opacity: 0.5; margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--accent); }
.footer-legal { display: flex; gap: 20px; }

/* ============================================================
   ELEMENTOR COMPATIBILITY
   ============================================================ */
.elementor-section,
.elementor-container,
.elementor-column,
.elementor-widget-wrap {
  display: block;
}
.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: 1200px;
  margin: 0 auto;
}
.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-head);
  color: var(--primary);
}
.elementor-widget-text-editor {
  color: var(--text-mid);
  font-family: var(--font-body);
  line-height: 1.75;
}
.elementor-widget-button .elementor-button {
  font-family: var(--font-body);
  font-weight: 500;
  border-radius: var(--radius);
}
.e-con, .e-container {
  max-width: 1200px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 40px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .hero { padding: 60px 0 50px; }
  .hero h1 { font-size: 32px; }
  .hero-visual { flex: none; width: 100%; }
  .hero-inner { flex-direction: column; gap: 40px; }
  .main-nav { display: none; }
  .section-title { font-size: 28px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 60px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 26px; }
  .hero-actions { flex-direction: column; }
  .cta-inner h2 { font-size: 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   WORDPRESS CORE CLASSES
   ============================================================ */
.wp-caption { max-width: 100%; }
.alignleft { float: left; margin-right: 1.5rem; }
.alignright { float: right; margin-left: 1.5rem; }
.aligncenter { display: block; margin: 0 auto; }
.wp-block-image img { border-radius: var(--radius); }
.is-layout-flex { display: flex; flex-wrap: wrap; }


.social-links {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
  padding: 12px 20px;
  text-decoration: none;
  transition: all 0.2s;
  min-width: 200px;
}
.cta-contact-btn:hover {
  background: rgba(255,255,255,0.13);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.cta-btn-icon {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.cta-btn-icon svg {
  width: 16px; height: 16px;
}
.cta-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.cta-btn-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  line-height: 1;
  margin-bottom: 4px;
}
.cta-btn-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .whatsapp-float {
  align-items: center !important;
  line-height: 0 !important;
}
.whatsapp-float svg {
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 0 !important;
  vertical-align: middle;
}
  .whatsapp-float span {
    display: none;
  }
}
@media (max-width: 768px) {
  .wa-text { display: none; }
  .whatsapp-float {
    width: 52px !important;
    height: 52px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    bottom: 20px !important;
    right: 16px !important;
    line-height: 1 !important;
  }
  .whatsapp-float svg {
    display: block;
    margin: 0 auto;
    flex-shrink: 0;
  }
}