/*
Theme Name: Grevo EV - Electric Vehicle Charging Theme
Theme URI: https://example.com/grevo-ev
Author: Grevo Team
Author URI: https://example.com
Description: Electric Vehicle Charging WordPress Theme - Modern, responsive, full-featured EV charging company theme.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: grevo-ev
Tags: electric-vehicle, responsive, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ===================================
   CSS VARIABLES
=================================== */
:root {
  --primary: #7cba27;
  --primary-dark: #5a9a1a;
  --primary-light: #a0d44a;
  --secondary: #1a2332;
  --dark: #0f1923;
  --dark2: #1e2d3d;
  --text: #555f6e;
  --text-light: #888;
  --white: #ffffff;
  --light-bg: #f5f8fa;
  --border: #e5e9ef;
  --shadow: 0 5px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 40px rgba(124,186,39,0.2);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s ease;
  --font-heading: 'Barlow', sans-serif;
  --font-body: 'Open Sans', sans-serif;
}

/* ===================================
   RESET & BASE
=================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary);
}
p { margin-bottom: 1rem; }

/* ===================================
   UTILITY
=================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  font-family: var(--font-heading);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(124,186,39,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--primary);
  border-color: var(--primary);
}
.btn-dark {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}
.btn-dark:hover {
  background: var(--primary);
  border-color: var(--primary);
}

/* Section Title */
.section-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 15px;
  color: var(--text);
  max-width: 600px;
}

/* ===================================
   TOP BAR
=================================== */
.top-bar {
  background: var(--secondary);
  padding: 10px 0;
  font-size: 13px;
  color: #aab5c2;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-info { display: flex; gap: 30px; flex-wrap: wrap; }
.top-bar-info a { color: #aab5c2; display: flex; align-items: center; gap: 7px; }
.top-bar-info a:hover { color: var(--primary); }
.top-bar-info a i { color: var(--primary); font-size: 12px; }
.top-bar-social { display: flex; gap: 12px; align-items: center; }
.top-bar-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #aab5c2; font-size: 12px;
}
.top-bar-social a:hover { background: var(--primary); color: var(--white); }

/* ===================================
   HEADER / NAVIGATION
=================================== */
#site-header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
#site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.15); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  height: 80px;
}
.site-logo img { height: 55px; width: auto; }
.site-logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--secondary);
}
.site-logo-text span { color: var(--primary); }

/* NAV */
.main-nav { display: flex; align-items: center; gap: 5px; }
.main-nav > li { position: relative; }
.main-nav > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
}
.main-nav > li > a:hover,
.main-nav > li.current-menu-item > a { color: var(--primary); }
.main-nav > li > a .arrow {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s;
}
.main-nav > li:hover > a .arrow { transform: rotate(180deg); }

/* DROPDOWN */
.main-nav .sub-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 15px 50px rgba(0,0,0,0.15);
  min-width: 220px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 200;
  border-top: 3px solid var(--primary);
}
.main-nav > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.main-nav .sub-menu li a:hover { color: var(--primary); padding-left: 28px; }

/* Header CTA */
.header-cta { display: flex; align-items: center; gap: 15px; }
.header-cta .btn { padding: 10px 24px; font-size: 13px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===================================
   HERO SLIDER
=================================== */
.hero-slider {
  position: relative;
  overflow: hidden;
  height: 680px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
}
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,35,0.85) 40%, rgba(10,20,35,0.2));
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 0 20px;
  margin-left: 5%;
}
.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 20px;
  animation: fadeDown 0.6s ease both;
}
.hero-title {
  font-size: 56px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.8s 0.2s ease both;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-controls {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.hero-dot.active { background: var(--primary); width: 30px; border-radius: 5px; }
.hero-arrows { position: absolute; top: 50%; transform: translateY(-50%); width: 100%; display: flex; justify-content: space-between; padding: 0 20px; z-index: 10; }
.hero-arrow {
  width: 50px; height: 50px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}
.hero-arrow:hover { background: var(--primary); border-color: var(--primary); transform: scale(1.1); }

/* ===================================
   FEATURES BAR
=================================== */
.features-bar {
  background: var(--white);
  padding: 0;
  position: relative;
  z-index: 5;
  margin-top: -1px;
}
.features-bar .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.feature-item {
  padding: 40px 30px;
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  cursor: pointer;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--light-bg); }
.feature-item:hover .feature-icon { background: var(--primary); color: var(--white); }
.feature-icon {
  width: 65px; height: 65px; min-width: 65px;
  border-radius: var(--radius-lg);
  background: rgba(124,186,39,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.feature-icon img { width: 35px; height: 35px; object-fit: contain; }
.feature-icon i { font-size: 24px; color: var(--primary); }
.feature-text h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--secondary); }
.feature-text p { font-size: 13px; color: var(--text); line-height: 1.5; margin: 0; }
.feature-text a { color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }

/* ===================================
   ABOUT SECTION
=================================== */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.about-media { position: relative; }
.about-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 480px; object-fit: cover; }
.about-img-badge {
  position: absolute;
  bottom: -25px;
  right: -25px;
  width: 140px; height: 140px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(124,186,39,0.4);
}
.about-img-badge .num { font-size: 32px; font-weight: 800; line-height: 1; }
.about-img-badge .label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }
.video-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-btn {
  width: 72px; height: 72px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.video-btn:hover { background: var(--primary); box-shadow: 0 0 0 12px rgba(124,186,39,0.3); }
.video-btn i { font-size: 20px; color: var(--primary); margin-left: 4px; }
.video-btn:hover i { color: var(--white); }
.about-content .section-desc { margin-bottom: 30px; }
.about-missions { display: flex; flex-direction: column; gap: 20px; margin: 30px 0; }
.about-mission-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}
.about-mission-item:hover { background: var(--light-bg); }
.mission-num {
  width: 45px; height: 45px; min-width: 45px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
}
.mission-text h4 { font-size: 16px; font-weight: 700; color: var(--secondary); margin-bottom: 5px; }
.mission-text p { font-size: 14px; margin: 0; }

/* ===================================
   SERVICES SECTION
=================================== */
.services-section { background: var(--light-bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; margin-top: 50px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.service-card-img { position: relative; overflow: hidden; height: 220px; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-num {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 38px; height: 38px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-heading);
}
.service-card-body { padding: 25px; }
.service-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.service-card-body h3 a { color: var(--secondary); }
.service-card-body h3 a:hover { color: var(--primary); }
.service-card-body p { font-size: 14px; color: var(--text); margin-bottom: 15px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.service-link i { transition: var(--transition); }
.service-link:hover i { transform: translateX(5px); }
.service-link:hover { color: var(--primary-dark); }

/* ===================================
   STATS / COUNTER SECTION
=================================== */
.stats-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 0; position: relative; }
.stats-item {
  padding: 60px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  position: relative;
}
.stats-item:last-child { border-right: none; }
.stats-icon { font-size: 36px; color: var(--primary); margin-bottom: 15px; }
.stats-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.stats-num .plus { color: var(--primary); }
.stats-label { font-size: 14px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 2px; }

/* ===================================
   TESTIMONIALS
=================================== */
.testimonials-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.testimonials-section::before {
  content: '\201C';
  position: absolute;
  top: -30px;
  left: 5%;
  font-size: 300px;
  color: rgba(124,186,39,0.05);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.testimonials-slider { max-width: 800px; margin: 50px auto 0; position: relative; }
.testimonial-item { display: none; text-align: center; }
.testimonial-item.active { display: block; animation: fadeUp 0.5s ease; }
.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 35px;
  position: relative;
  padding: 30px;
  background: var(--light-bg);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--primary);
}
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-author img { width: 60px; height: 60px; border-radius: 50%; border: 3px solid var(--primary); object-fit: cover; }
.testimonial-author .name { font-size: 16px; font-weight: 700; color: var(--secondary); }
.testimonial-author .role { font-size: 13px; color: var(--text-light); }
.testimonial-dots { display: flex; justify-content: center; gap: 8px; margin-top: 30px; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-dot.active { background: var(--primary); width: 24px; border-radius: 4px; }

/* ===================================
   CLIENTS
=================================== */
.clients-section { background: var(--light-bg); padding: 50px 0; }
.clients-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; align-items: center; }
.client-item {
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  filter: grayscale(100%) opacity(0.5);
}
.client-item:hover { filter: none; box-shadow: var(--shadow); transform: translateY(-3px); }
.client-item img { height: 40px; object-fit: contain; width: auto; margin: 0 auto; }

/* ===================================
   APP SECTION
=================================== */
.app-section {
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}
.app-section::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: rgba(124,186,39,0.05);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.app-content .section-title { color: var(--white); }
.app-content .section-desc { color: rgba(255,255,255,0.7); margin-bottom: 35px; }
.app-stores { display: flex; gap: 15px; flex-wrap: wrap; }
.app-store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  color: var(--white);
  transition: var(--transition);
}
.app-store-btn:hover { background: var(--primary); border-color: var(--primary); }
.app-store-btn i { font-size: 28px; }
.app-store-btn .txt { display: flex; flex-direction: column; }
.app-store-btn .small { font-size: 10px; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; }
.app-store-btn .big { font-size: 15px; font-weight: 700; }
.app-charging-points { margin-top: 30px; }
.charging-point-count { font-size: 52px; font-weight: 800; color: var(--primary); font-family: var(--font-heading); }
.charging-point-label { font-size: 14px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 2px; }
.app-map { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.app-map img { width: 100%; }

/* ===================================
   BLOG SECTION
=================================== */
.blog-section { background: var(--white); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-card-img { position: relative; overflow: hidden; height: 220px; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-date {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--primary);
  color: var(--white);
  padding: 8px 12px;
  border-radius: var(--radius);
  text-align: center;
  line-height: 1.2;
}
.blog-date .day { font-size: 20px; font-weight: 800; display: block; font-family: var(--font-heading); }
.blog-date .month { font-size: 11px; text-transform: uppercase; }
.blog-card-body { padding: 25px; }
.blog-meta { display: flex; gap: 15px; font-size: 12px; color: var(--text-light); margin-bottom: 12px; }
.blog-meta a { color: var(--text-light); }
.blog-meta a:hover { color: var(--primary); }
.blog-meta i { color: var(--primary); margin-right: 4px; }
.blog-card-body h3 { font-size: 17px; margin-bottom: 12px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--secondary); }
.blog-card-body h3 a:hover { color: var(--primary); }
.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.read-more i { transition: var(--transition); }
.read-more:hover i { transform: translateX(5px); }

/* ===================================
   CTA BANNER
=================================== */
.cta-section {
  background: var(--primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -50px;
  top: -50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-text h2 { font-size: 32px; color: var(--white); margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 15px; margin: 0; }
.cta-section .btn { background: var(--white); color: var(--primary); }
.cta-section .btn:hover { background: var(--secondary); color: var(--white); }

/* ===================================
   FOOTER
=================================== */
#site-footer {
  background: var(--dark);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 50px; margin-bottom: 60px; }
.footer-about .site-logo-text { font-size: 24px; color: var(--white); margin-bottom: 20px; }
.footer-about p { font-size: 14px; line-height: 1.8; margin-bottom: 25px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  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); color: var(--white); transform: translateY(-3px); }
.footer-widget h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,255,255,0.08);
  position: relative;
}
.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: var(--primary); padding-left: 8px; }
.footer-links a i { font-size: 10px; color: var(--primary); }
.footer-contact-item { display: flex; gap: 15px; margin-bottom: 18px; align-items: flex-start; }
.footer-contact-item i { color: var(--primary); font-size: 16px; margin-top: 2px; }
.footer-contact-item span { font-size: 14px; line-height: 1.6; }
.footer-newsletter { margin-top: 20px; }
.footer-newsletter p { font-size: 14px; margin-bottom: 15px; }
.newsletter-form { display: flex; border-radius: var(--radius); overflow: hidden; }
.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  font-size: 14px;
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  padding: 12px 20px;
  background: var(--primary);
  border: none;
  color: var(--white);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--primary-dark); }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 20px 0;
  margin-top: 0;
}
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom a { color: var(--primary); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: var(--primary); }

/* ===================================
   MOBILE NAV OVERLAY
=================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--secondary);
  z-index: 999;
  padding: 90px 30px 30px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: var(--transition);
}
.mobile-nav.open { opacity: 1; visibility: visible; transform: translateX(0); }
.mobile-nav-items { display: flex; flex-direction: column; gap: 5px; }
.mobile-nav-items a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-heading);
}
.mobile-nav-items a:hover { color: var(--primary); }
.mobile-nav-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ===================================
   INNER PAGES
=================================== */
.page-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark2) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,186,39,0.1), transparent);
}
.page-banner h1 { font-size: 42px; color: var(--white); position: relative; }
.page-banner .breadcrumb { margin-top: 12px; font-size: 14px; color: rgba(255,255,255,0.6); position: relative; }
.page-banner .breadcrumb a { color: var(--primary); }
.page-content { padding: 80px 0; }

/* ===================================
   ANIMATIONS
=================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(124,186,39,0.4); }
  50% { box-shadow: 0 0 0 20px rgba(124,186,39,0); }
}
.video-btn { animation: pulse 2s infinite; }
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1024px) {
  .hero-title { font-size: 42px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .top-bar .container { justify-content: center; }
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .hero-slider { height: 500px; }
  .hero-title { font-size: 32px; }
  .hero-content { margin-left: 0; padding: 0 30px; }
  .features-bar .container { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 26px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-slider { margin: 30px 15px 0; }
}

@media (max-width: 480px) {
  .features-bar .container { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}
