/*
Theme Name: GearboxPlus
Theme URI: https://gearboxplus.com
Author: GearboxPlus Team
Author URI: https://gearboxplus.com
Description: قالب اختصاصی گیربکس پلاس — تعمیر و فروش گیربکس اتوماتیک خودرو
Version: 1.0.1
License: Proprietary
License URI: https://gearboxplus.com/license
Text Domain: gearboxplus
Tags: rtl, farsi, persian, automotive, gearbox
*/

/* ============================================================
   FONT FACE — IRANYekanX
   ============================================================ */
@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanXVFaNumVF.woff2') format('woff2'),
       url('fonts/IRANYekanXVFaNumVF.woff') format('woff');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanXFaNum-Bold.woff') format('woff'),
       url('fonts/IRANYekanXFaNum-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanXFaNum-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'IRANYekanX';
  src: url('fonts/IRANYekanXFaNum-Light.woff') format('woff'),
       url('fonts/IRANYekanXFaNum-Regular.ttf') format('truetype');
  font-weight: 300 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --color-primary: #1A237E;
  --color-primary-dark: #0D1457;
  --color-primary-light: #3949AB;
  --color-secondary: #00C853;
  --color-secondary-dark: #2E7D32;
  --color-secondary-light: #69F0AE;
  --color-bg: #FAFBFC;
  --color-card: #FFFFFF;
  --color-text: #1A1A2E;
  --color-text-muted: #546E7A;
  --color-success: #2E7D32;
  --color-danger: #C62828;
  --color-warning: #F57C00;
  --color-gray-light: #ECEFF1;
  --color-gray-medium: #B0BEC5;
  --color-border: #E0E4EF;

  --gradient-primary: linear-gradient(135deg, #1A237E 0%, #3949AB 50%, #1565C0 100%);
  --gradient-hero: linear-gradient(135deg, #0D1457 0%, #1A237E 40%, #1565C0 80%, #0288D1 100%);
  --gradient-secondary: linear-gradient(135deg, #2E7D32 0%, #00C853 100%);
  --gradient-card: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
  --gradient-dark: linear-gradient(135deg, #1A1A2E 0%, #16213E 100%);
  --gradient-accent: linear-gradient(135deg, #1A237E 0%, #00C853 100%);

  --shadow-sm: 0 2px 8px rgba(26, 35, 126, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 35, 126, 0.12);
  --shadow-lg: 0 8px 40px rgba(26, 35, 126, 0.18);
  --shadow-xl: 0 16px 60px rgba(26, 35, 126, 0.24);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --font-family: 'IRANYekanX', Tahoma, Arial, sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  background-color: var(--color-bg);
  color: var(--color-text);
  direction: rtl;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden !important;
  width: 100%;
  position: relative;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover { color: var(--color-primary-light); }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  line-height: 1.4;
  font-weight: 700;
  color: var(--color-text);
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-wide {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--gradient-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  isolation: isolate; /* اضافه شد برای جلوگیری از تداخل با Hero */
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 20px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.site-logo-text {
  display: flex;
  flex-direction: column;
}

.site-logo-text .brand-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  background: linear-gradient(135deg, #ffffff, #69F0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-logo-text .brand-tagline {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* Top Bar */
.header-top-bar {
  background: linear-gradient(135deg, #0D1457, #1A237E);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-contact-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-contact-info a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.header-contact-info a:hover { color: var(--color-secondary-light); }

.header-contact-info .icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-ancestor > a {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}

.nav-menu > li > a .chevron {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-menu > li:hover > a .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 1001; /* افزایش z-index برای روی آمدن روی Hero */
  padding: 8px;
}

.nav-menu > li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu li a {
  display: block;
  padding: 9px 14px;
  color: var(--color-text);
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-menu .sub-menu li a:hover {
  background: var(--color-gray-light);
  color: var(--color-primary);
  padding-right: 20px;
}

/* Mega Menu */
.nav-menu .mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: -100px;
  width: 680px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 1001; /* افزایش z-index برای روی آمدن روی Hero */
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* مگا منوی ۵ ستونه */
.nav-menu .mega-menu--5col {
  width: 1050px;
  right: -200px;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .nav-menu .mega-menu--5col {
    width: 900px;
    right: -150px;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
  }
}

@media (max-width: 1024px) {
  .nav-menu .mega-menu--5col {
    width: 720px;
    right: -100px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.nav-menu > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-gray-light);
}

.mega-menu-col a {
  display: block;
  padding: 6px 8px;
  color: var(--color-text-muted);
  font-size: 0.82rem;
  border-radius: 6px;
  transition: var(--transition);
}

.mega-menu-col a:hover {
  background: var(--color-gray-light);
  color: var(--color-primary);
  padding-right: 14px;
}

/* عنوان دوم در ستون مگا منو (مثلاً تعمیرگاه‌ها زیر نوع خودرو) */
.mega-menu-col h4 + h4,
.mega-menu-col a + h4 {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--color-gray-light);
}

/* CTA Button in Header */
.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-header-call {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--gradient-secondary);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
  white-space: nowrap;
}

.btn-header-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 200, 83, 0.4);
  color: #ffffff;
}

/* ============================================================
   HAMBURGER & MOBILE SIDEBAR
   ============================================================ */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  cursor: pointer;
  gap: 5px;
  transition: var(--transition);
  flex-shrink: 0;
}

.hamburger-btn:hover { background: rgba(255,255,255,0.2); }

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.active span:nth-child(2) { opacity: 0; }
.hamburger-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Sidebar Overlay */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(4px);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: min(300px, calc(100vw - 24px));
  height: 100vh;
  height: 100dvh;
  background: var(--gradient-dark);
  z-index: 3001;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.mobile-sidebar.active {
  display: flex;
  transform: translate3d(0, 0, 0);
}

/* Ensure no overflow from any section */
section, main, header, footer {
  max-width: 100%;
}

/* Removed duplicate selector */

body.mobile-sidebar-open {
  overflow: hidden;
}

/* جلوگیری از نمایش هم‌زمان دکمه تماس شناور و CTA داخل منو */
body.mobile-sidebar-open .floating-contact {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none;
  transform: translate3d(0, 16px, 0);
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(0,0,0,0.2);
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-logo img {
  height: 40px;
  width: auto;
}

.sidebar-logo-text {
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #69F0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar-close {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sidebar-close:hover { background: rgba(255,255,255,0.2); }

.sidebar-nav {
  flex: 1;
  padding: 16px 0;
  overflow-y: auto;
}

.sidebar-nav-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sidebar-nav-item > a,
.sidebar-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: right;
  font-family: var(--font-family);
}

.sidebar-nav-item > a:hover,
.sidebar-nav-toggle:hover {
  background: rgba(255,255,255,0.08);
  color: var(--color-secondary-light);
}

.sidebar-nav-toggle .toggle-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.sidebar-nav-toggle.open .toggle-icon {
  transform: rotate(180deg);
}

.sidebar-sub-menu {
  display: none;
  background: rgba(0,0,0,0.2);
  padding: 4px 0;
}

.sidebar-sub-menu.open { display: block; }

.sidebar-sub-menu a {
  display: block;
  padding: 10px 20px 10px 32px;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
  border-right: 3px solid transparent;
}

.sidebar-sub-menu a:hover {
  color: var(--color-secondary-light);
  border-right-color: var(--color-secondary);
  background: rgba(255,255,255,0.05);
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.sidebar-footer .btn-sidebar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  background: var(--gradient-secondary);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition);
}

/* ============================================================
   FLOATING CONTACT BUTTON
   ============================================================ */
.floating-contact {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.floating-contact-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  background: var(--gradient-secondary);
  color: #ffffff;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
  border: 2px solid rgba(255,255,255,0.3);
}

.floating-contact-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(0, 200, 83, 0.5);
  color: #ffffff;
}

.floating-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 6px 24px rgba(0, 200, 83, 0.4); }
  50% { box-shadow: 0 6px 32px rgba(0, 200, 83, 0.7), 0 0 0 8px rgba(0, 200, 83, 0.1); }
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--gradient-dark);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand .footer-logo img {
  height: 48px;
  width: auto;
}

.footer-brand .footer-logo-name {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff, #69F0AE);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
}

.footer-contact-list li svg {
  width: 16px;
  height: 16px;
  fill: var(--color-secondary);
  flex-shrink: 0;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 40px;
  height: 2px;
  background: var(--gradient-secondary);
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a::before {
  content: '›';
  color: var(--color-secondary);
  font-size: 1rem;
}

.footer-col ul li a:hover {
  color: var(--color-secondary-light);
  padding-right: 4px;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom-links {
  display: flex;
  gap: 16px;
}

.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--color-secondary-light); }

.footer-enamad {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-enamad img {
  max-height: 80px;
  width: auto;
  border-radius: 6px;
  transition: opacity 0.2s ease;
}

.footer-enamad img:hover {
  opacity: 0.85;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(26, 35, 126, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
  color: #ffffff;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  color: var(--color-primary);
}

.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-sm { padding: 50px 0; }
.section-lg { padding: 100px 0; }

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: linear-gradient(135deg, rgba(26,35,126,0.1), rgba(0,200,83,0.1));
  border: 1px solid rgba(26,35,126,0.2);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 14px;
  line-height: 1.3;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,35,126,0.2);
}

/* ============================================================
   HERO SECTION (Landing Pages)
   ============================================================ */
.lp-hero {
  background: var(--gradient-hero);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.lp-hero::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");
}

.lp-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--color-bg));
}

.lp-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.lp-hero-content {}

.lp-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.lp-hero-breadcrumb a,
.lp-hero-breadcrumb span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: var(--transition);
}

.lp-hero-breadcrumb a:hover { color: var(--color-secondary-light); }

.lp-hero-breadcrumb .sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}

.lp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(0, 200, 83, 0.2);
  border: 1px solid rgba(0, 200, 83, 0.4);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-secondary-light);
  margin-bottom: 18px;
}

.lp-hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.lp-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 18px;
}

.lp-hero h1 .highlight {
  background: linear-gradient(135deg, #69F0AE, #00C853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lp-hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 30px;
}

.lp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lp-hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.lp-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-hero-stat .stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-secondary-light);
  line-height: 1;
}

.lp-hero-stat .stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.6);
}

.lp-hero-visual {
  position: relative;
}

.lp-hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
}

.lp-hero-img-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.lp-hero-img-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ============================================================
   CAR + GEARBOX IMAGE SECTION
   ============================================================ */
.lp-car-section {
  padding: 60px 0;
  background: var(--color-card);
}

.lp-car-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

.lp-car-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  background: var(--color-gray-light);
}

.lp-car-img-box img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.lp-car-img-box:hover img { transform: scale(1.04); }

.lp-car-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ============================================================
   VIDEO PLACEHOLDER
   ============================================================ */
.lp-video-section {
  padding: 60px 0;
  background: var(--color-bg);
}

.lp-video-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: var(--gradient-dark);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
}

.lp-video-box .video-placeholder-content {
  text-align: center;
  color: #ffffff;
  padding: 30px;
}

.lp-video-box .play-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.15);
  border: 3px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition);
}

.lp-video-box:hover .play-icon {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  transform: scale(1.1);
}

.lp-video-box .play-icon svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
  margin-right: -4px;
}

.lp-video-box .video-placeholder-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.lp-video-box .video-placeholder-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   BANNER PLACEHOLDER
   ============================================================ */
.lp-banner-placeholder {
  width: 100%;
  background: linear-gradient(135deg, #ECEFF1, #CFD8DC);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-gray-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  transition: var(--transition);
}

.lp-banner-placeholder:hover {
  background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
  border-color: var(--color-primary-light);
}

.lp-banner-placeholder svg {
  width: 36px;
  height: 36px;
  fill: var(--color-gray-medium);
}

.lp-banner-sm {
  height: 160px;
  margin: 30px 0;
}

.lp-banner-wide {
  height: 200px;
  margin: 40px 0;
}

/* ============================================================
   PRICE SECTION
   ============================================================ */
.lp-price-section {
  padding: 60px 0;
  background: var(--color-card);
}

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.price-card {
  background: var(--gradient-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 2px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.price-card.featured {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}

.price-card.featured::before {
  background: var(--gradient-secondary);
}

.price-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.price-card.featured:hover {
  transform: translateY(-4px) scale(1.04);
}

.price-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,35,126,0.1), rgba(0,200,83,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.price-card-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-primary);
}

.price-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.price-card .price-range {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.price-card .price-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.price-card .price-features {
  text-align: right;
  margin-bottom: 20px;
}

.price-card .price-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  border-bottom: 1px solid var(--color-gray-light);
}

.price-card .price-features li:last-child { border-bottom: none; }

.price-card .price-features li::before {
  content: '✓';
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   INFO BOX (Gearbox Description)
   ============================================================ */
.lp-info-section {
  padding: 60px 0;
  background: var(--color-bg);
}

.lp-info-box {
  background: var(--color-card);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.lp-info-box::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(26,35,126,0.05), transparent 70%);
  pointer-events: none;
}

.lp-info-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-gray-light);
  position: relative;
}

.lp-info-box h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 60px;
  height: 2px;
  background: var(--gradient-primary);
}

.lp-info-box .info-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.lp-info-box .info-text p {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 2.2;
  margin-bottom: 16px;
}

.lp-info-box .symptoms-list {
  background: linear-gradient(135deg, #FFF3E0, #FFF8E1);
  border: 1px solid #FFCC02;
  border-radius: var(--radius-md);
  padding: 20px;
}

.lp-info-box .symptoms-list h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-warning);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-info-box .symptoms-list ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--color-text);
  border-bottom: 1px solid rgba(255,204,2,0.2);
  line-height: 1.7;
}

.lp-info-box .symptoms-list ul li:last-child { border-bottom: none; }

.lp-info-box .symptoms-list ul li::before {
  content: '⚠';
  color: var(--color-warning);
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
.lp-map-section {
  padding: 60px 0;
  background: var(--color-card);
}

.lp-map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--color-border);
}

.lp-map-wrap iframe {
  width: 100%;
  height: 380px;
  display: block;
  border: none;
}

.lp-map-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}

.lp-map-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.lp-map-info-item .map-info-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.lp-map-info-item .map-info-icon svg {
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.lp-map-info-item .map-info-text h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 4px;
}

.lp-map-info-item .map-info-text p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.lp-faq-section {
  padding: 60px 0;
  background: var(--color-bg);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(26,35,126,0.2);
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
}

.faq-question h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  flex: 1;
  line-height: 1.5;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  background: var(--color-gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  background: var(--gradient-primary);
  transform: rotate(45deg);
}

.faq-icon svg {
  width: 14px;
  height: 14px;
  fill: var(--color-text-muted);
}

.faq-item.active .faq-icon svg { fill: #ffffff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 2.2;
  border-top: 1px solid var(--color-gray-light);
  padding-top: 16px;
}

/* ============================================================
   TRUST BADGES
   ============================================================ */
.lp-trust-section {
  padding: 40px 0;
  background: var(--gradient-primary);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
}

.trust-badge-icon {
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-badge-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.trust-badge-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.trust-badge-text p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-bar {
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-bottom: 0;
  direction: rtl;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.breadcrumb a:hover { color: var(--color-primary); }

.breadcrumb .sep {
  color: var(--color-gray-medium);
  font-size: 0.75rem;
}

.breadcrumb .current {
  font-size: 0.82rem;
  color: var(--color-primary);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-hero h1 { font-size: 2rem; }
  .lp-price-grid { grid-template-columns: 1fr 1fr; }
  
  /* Home Page Tablet Fixes */
  .home-hero-inner { gap: 30px; }
  .home-hero-content h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: repeat(3, 1fr); }
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  /* Header Top Bar */
  .header-top-bar .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 0 12px;
  }

  .header-contact-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }

  .header-contact-info a {
    font-size: 0.72rem;
    gap: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 180px;
  }

  .header-contact-info .icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
  }

  /* مخفی کردن ساعت کاری در موبایل برای خلوت شدن فضا */
  .header-top-bar .container > div:last-child {
    display: none !important;
  }

  /* Main Navigation */
  .main-nav { display: none; }
  .header-cta .btn-header-call { display: none; }
  .hamburger-btn { display: flex; }

  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-hero-visual { display: none; }
  .lp-hero { padding: 50px 0 40px; }
  .lp-hero h1 { font-size: 1.7rem; }

  .lp-car-grid { grid-template-columns: 1fr; }
  .lp-info-box .info-content { grid-template-columns: 1fr; }
  .lp-price-grid { grid-template-columns: 1fr; }
  .lp-map-info { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-title { font-size: 1.5rem; }

  .trust-badges { gap: 20px; }

  .floating-contact { bottom: 20px; left: 16px; }
  .floating-contact-btn { padding: 12px 18px; font-size: 0.85rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .header-top-bar {
    padding: 6px 0;
  }

  .header-top-bar .container {
    padding: 0 8px;
  }

  .header-contact-info {
    gap: 4px;
  }

  .header-contact-info a {
    font-size: 0.68rem;
    gap: 3px;
    max-width: 140px;
  }

  .header-contact-info a svg {
    width: 12px;
    height: 12px;
  }

  .lp-hero h1 { font-size: 1.4rem; }
  .lp-hero-actions { flex-direction: column; }
  .lp-info-box { padding: 24px 20px; }
  .price-card.featured { transform: none; }

  /* Homepage Mobile Overflows Fix */
  .home-hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center !important; overflow: hidden; }
  .home-hero-content { text-align: center !important; width: 100% !important; }
  .home-hero-content h1 { font-size: 1.5rem !important; line-height: 1.4; word-break: break-word; margin-bottom: 15px; text-align: center !important; }
  .home-hero-content p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 25px; text-align: center !important; }
  .home-hero-actions { justify-content: center; flex-direction: column; width: 100%; gap: 12px; }
  .home-hero-actions .btn { width: 100%; padding: 14px 20px; font-size: 0.95rem; }
  .home-hero-stats { grid-template-columns: 1fr; gap: 12px; }
  .home-stat-card { padding: 12px; }
  .home-stat-card .num { font-size: 1.5rem; }
  .home-hero-visual { display: none; }
  .services-grid { display: block !important; width: 100% !important; }
  .services-grid > div { margin-bottom: 20px !important; width: 100% !important; display: block !important; }
  .home-card { padding: 24px 20px; width: 100% !important; }
  .brands-grid { display: block !important; width: 100% !important; }
  .brands-grid > a { display: block !important; width: 100% !important; margin-bottom: 12px !important; }
  .brand-card { padding: 15px 10px; width: 100% !important; }
  .brand-card h3 { font-size: 0.9rem; }
  .why-us-grid { display: block !important; width: 100% !important; }
  .why-us-grid > div { display: block !important; width: 100% !important; margin-bottom: 20px !important; }
  .why-card { padding: 20px 15px; }
  
  /* Fix container overflow */
  .container { padding: 0 15px; width: 100%; overflow: hidden; }
}

@media (max-width: 480px) {
  .home-hero-content h1 { font-size: 1.25rem !important; }
  .section-title { font-size: 1.3rem !important; }
}

/* ============================================================
   HOMEPAGE SPECIFIC
   ============================================================ */
.home-hero {
  background: var(--gradient-hero);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.home-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.home-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.home-hero-content h1 {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.home-hero-content h1 .accent {
  background: linear-gradient(135deg, #69F0AE, #00C853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 2;
  margin-bottom: 32px;
}

.home-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.home-stat-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
}

.home-stat-card .num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-secondary-light);
  line-height: 1;
  margin-bottom: 4px;
}

.home-stat-card .label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}

.home-hero-visual {
  position: relative;
}

.home-hero-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 2px solid rgba(255,255,255,0.1);
}

.home-hero-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(26,35,126,0.15);
}

.service-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(26,35,126,0.1), rgba(0,200,83,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.service-card:hover .service-card-icon {
  background: var(--gradient-primary);
}

.service-card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-primary);
  transition: var(--transition);
}

.service-card:hover .service-card-icon svg { fill: #ffffff; }

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.9;
  margin-bottom: 18px;
}

.home-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.home-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.home-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.home-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  background: var(--color-card);
  border-radius: var(--radius-lg);
  padding: 20px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary-light);
}

.brand-card h3 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.brand-card p {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* Why Us */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  text-align: center;
  padding: 28px 20px;
}

.why-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 20px rgba(26,35,126,0.25);
}

.why-icon svg {
  width: 34px;
  height: 34px;
  fill: #ffffff;
}

.why-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.bg-primary { background: var(--gradient-primary); }
.bg-secondary { background: var(--gradient-secondary); }
.bg-dark { background: var(--gradient-dark); }
.bg-light { background: var(--color-bg); }
.bg-white { background: var(--color-card); }

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary-dark); }
.text-muted { color: var(--color-text-muted); }
.text-white { color: #ffffff; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }

/* ============================================================
   GEARBOX PLUS — MODERN HOMEPAGE REDESIGN
   ============================================================ */
.gp-homepage {
  --gp-green: #00c853;
  --gp-green-dark: #2e7d32;
  --gp-blue: #1a237e;
  --gp-blue-deep: #0d1457;
  --gp-ink: #14213d;
  --gp-text: #273449;
  --gp-muted: #667085;
  --gp-surface: #ffffff;
  --gp-soft: #f5f8fc;
  --gp-border: #e7edf5;
  --gp-shadow: 0 18px 55px rgba(13, 20, 87, 0.10);
  --gp-radius-xl: 30px;
  --gp-radius-lg: 22px;
  color: var(--gp-text);
  background: #fff;
  overflow: hidden;
}

.gp-homepage *,
.gp-homepage *::before,
.gp-homepage *::after { box-sizing: border-box; }

.gp-homepage a { text-decoration: none; }

.gp-home-section { padding: 96px 0; }

.gp-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 42px;
  margin-bottom: 38px;
}

.gp-section-heading > div { max-width: 670px; }

.gp-section-heading > p {
  max-width: 420px;
  margin: 0 0 7px;
  color: var(--gp-muted);
  font-size: .99rem;
  line-height: 2;
}

.gp-section-heading--center {
  display: block;
  text-align: center;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.gp-section-heading--center > div { margin: 0 auto; }
.gp-section-heading--center > p { max-width: 650px; margin: 14px auto 0; }

.gp-section-kicker,
.gp-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--gp-green-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.gp-section-kicker::before,
.gp-eyebrow span {
  width: 26px;
  height: 3px;
  border-radius: 6px;
  background: linear-gradient(135deg, #2e7d32 0%, #00c853 100%);
}

.gp-section-heading h2,
.gp-home-process h2,
.gp-directory__heading h2,
.gp-home-cta h2 {
  margin: 0;
  color: var(--gp-ink);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.38;
}

.gp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.gp-btn:hover { transform: translateY(-3px); }

.gp-btn svg { width: 19px; height: 19px; fill: currentColor; }

.gp-btn--lg { min-height: 54px; padding: 0 22px; font-size: .92rem; }

.gp-btn--green {
  color: #fff;
  background: linear-gradient(135deg, #2e7d32 0%, #00c853 100%);
  box-shadow: 0 11px 26px rgba(0, 200, 83, .26);
}

.gp-btn--green:hover { box-shadow: 0 16px 35px rgba(0, 200, 83, .35); }

.gp-btn--ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .47);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(8px);
}

.gp-btn--ghost:hover { background: rgba(255, 255, 255, .17); }

/* Hero */
.gp-home-hero {
  position: relative;
  min-height: 670px;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(135deg, #0d1457, #1a237e);
  z-index: 1; /* اصلاح z-index برای قرارگیری زیر منو */
}

.gp-home-hero-media,
.gp-home-hero-media::after {
  position: absolute;
  inset: 0;
}

.gp-home-hero-media { z-index: -2; }
.gp-home-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.gp-home-hero-media::after {
  z-index: 1;
  content: '';
  background:
    linear-gradient(90deg, rgba(13,20,87,.98) 0%, rgba(13,20,87,.90) 35%, rgba(13,20,87,.50) 70%, rgba(13,20,87,.30) 100%),
    linear-gradient(135deg, rgba(13,20,87,.86), rgba(26,35,126,.54));
}

.gp-home-hero::before {
  position: absolute;
  z-index: -1;
  right: -150px;
  bottom: -215px;
  width: 620px;
  height: 620px;
  content: '';
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 0 0 55px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018);
}

.gp-home-hero__inner {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.gp-home-hero__content { max-width: 690px; }

.gp-home-hero .gp-eyebrow { color: rgba(235,255,242,.9); }
.gp-home-hero .gp-eyebrow span { background: #00c853; }

.gp-home-hero h1 {
  max-width: 680px;
  margin: 0 0 19px;
  color: #fff;
  font-size: clamp(2.35rem, 5vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.18;
}

.gp-home-hero h1 strong {
  display: block;
  color: #fff;
  background: linear-gradient(135deg, #86efac, #00c853);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gp-home-hero__lead {
  max-width: 595px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: 1.02rem;
  line-height: 2.05;
}

.gp-home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.gp-home-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 42px;
  max-width: 665px;
}

.gp-home-hero__proof > div {
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 13px;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(9px);
}

.gp-home-hero__proof b { display: block; margin-bottom: 3px; color: #86efac; font-size: .9rem; }
.gp-home-hero__proof span { display: block; color: rgba(255,255,255,.74); font-size: .72rem; line-height: 1.65; }

.gp-home-hero__badge {
  width: 190px;
  flex: 0 0 190px;
  padding: 18px 14px 15px;
  text-align: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 23px;
  background: rgba(13,20,87,.48);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 65px rgba(3, 8, 41, .4);
}

.gp-home-hero__badge img {
  display: block;
  width: 100px;
  height: 100px;
  margin: -3px auto 5px;
  object-fit: contain;
  border-radius: 12px;
}

.gp-home-hero__badge span { display: block; color: #fff; font-family: Arial, sans-serif; font-weight: 900; font-size: .85rem; letter-spacing: .04em; }
.gp-home-hero__badge small { display: block; margin-top: 4px; color: #86efac; direction: ltr; font-family: Arial, sans-serif; font-size: .7rem; }

/* Services */
.gp-home-services { background: #fff; }

.gp-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.gp-service-card {
  display: flex;
  align-items: center;
  gap: 17px;
  min-height: 126px;
  padding: 20px;
  color: var(--gp-text);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  background: #fff;
  box-shadow: 0 7px 24px rgba(15, 28, 68, .025);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.gp-service-card:hover { transform: translateY(-5px); border-color: rgba(0,200,83,.30); box-shadow: var(--gp-shadow); }

.gp-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 15px;
}

.gp-service-card__icon svg { width: 27px; height: 27px; fill: currentColor; }
.gp-icon--blue { color: #1a237e; background: rgba(26,35,126,.09); }
.gp-icon--green { color: #16803e; background: rgba(0,200,83,.10); }
.gp-icon--orange { color: #d97706; background: rgba(245,158,11,.12); }
.gp-icon--navy { color: #172554; background: rgba(23,37,84,.09); }

.gp-service-card__body { min-width: 0; }
.gp-service-card__body b { display: block; margin-bottom: 7px; color: var(--gp-ink); font-size: 1.02rem; font-weight: 850; }
.gp-service-card__body span { display: block; color: var(--gp-muted); font-size: .82rem; line-height: 1.8; }
.gp-service-card__arrow { margin-right: auto; color: var(--gp-blue); font-size: 1.2rem; transition: transform .25s ease; }
.gp-service-card:hover .gp-service-card__arrow { transform: translateX(-5px); }

/* Brands */
.gp-home-brands { background: var(--gp-soft); }

.gp-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 265px;
  gap: 17px;
}

.gp-brand-card {
  position: relative;
  overflow: hidden;
  display: block;
  min-height: 0;
  border-radius: var(--gp-radius-lg);
  background: #e9eef6;
  box-shadow: 0 8px 25px rgba(15, 28, 68, .06);
}

.gp-brand-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.gp-brand-card::after { position: absolute; inset: 0; content: ''; background: linear-gradient(0deg, rgba(11,20,58,.94) 0%, rgba(11,20,58,.19) 67%, rgba(11,20,58,.02) 100%); }
.gp-brand-card:hover img { transform: scale(1.07); }

.gp-brand-card__overlay {
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px;
  color: #fff;
}

.gp-brand-card__overlay small { color: #86efac; font-size: .70rem; font-weight: 800; }
.gp-brand-card__overlay b { margin: 4px 0 10px; color: #fff; font-size: 1.12rem; font-weight: 850; }
.gp-brand-card__overlay em { color: rgba(255,255,255,.81); font-size: .78rem; font-style: normal; }
.gp-brand-card__overlay i { display: inline-block; margin-right: 4px; color: #86efac; font-size: 1rem; font-style: normal; transition: transform .25s ease; }
.gp-brand-card:hover .gp-brand-card__overlay i { transform: translateX(-4px); }

.gp-brand-card--wide { grid-column: span 2; }
.gp-brand-card--dark { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.gp-brand-card--dark::after { background: radial-gradient(circle at 24% 30%, rgba(0,200,83,.23), transparent 36%); }
.gp-brand-card__gear { position: absolute; top: 22px; left: 24px; z-index: 1; color: rgba(255,255,255,.13); font-size: 9rem; line-height: 1; }
.gp-brand-card__overlay--simple { align-items: center; text-align: center; }

/* Promotional banner */
.gp-home-promo { padding: 32px 0; background: var(--gp-soft); }

.gp-home-promo__card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 325px;
  border-radius: var(--gp-radius-xl);
  background: var(--gp-blue-deep);
  box-shadow: var(--gp-shadow);
}

.gp-home-promo__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gp-home-promo__card:hover img { transform: scale(1.035); }
.gp-home-promo__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,16,60,.93), rgba(10,16,60,.67) 39%, rgba(10,16,60,.13) 77%); }
.gp-home-promo__content { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: flex-start; max-width: 555px; padding: 65px 62px; }
.gp-home-promo__content small { color: #86efac; font-size: .80rem; font-weight: 800; }
.gp-home-promo__content strong { margin: 12px 0 16px; color: #fff; font-size: clamp(1.45rem, 3vw, 2.15rem); font-weight: 850; line-height: 1.45; }
.gp-home-promo__content em { color: rgba(255,255,255,.84); font-size: .86rem; font-style: normal; }
.gp-home-promo__content i { margin-right: 5px; color: #86efac; font-size: 1.05rem; font-style: normal; }

/* Process */
.gp-home-process { background: #fff; }
.gp-home-process__layout { display: grid; grid-template-columns: .89fr 1.11fr; align-items: center; gap: 70px; }
.gp-home-process__intro p:not(.gp-section-kicker) { max-width: 510px; margin: 18px 0 23px; color: var(--gp-muted); font-size: .97rem; line-height: 2.05; }
.gp-text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--gp-blue); font-size: .87rem; font-weight: 850; }
.gp-text-link span { color: var(--gp-green); font-size: 1.1rem; transition: transform .25s ease; }
.gp-text-link:hover span { transform: translateX(-5px); }

.gp-process-list { position: relative; margin: 0; padding: 0; list-style: none; }
.gp-process-list::before { position: absolute; top: 47px; right: 26px; bottom: 47px; width: 1px; content: ''; background: #d9e5df; }
.gp-process-list li { position: relative; display: grid; grid-template-columns: 54px 1fr; gap: 19px; padding: 19px 0; }
.gp-process-list li > span { position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; color: var(--gp-green-dark); border-radius: 50%; background: #e9f9ee; font-family: Arial, sans-serif; font-size: .78rem; font-weight: 900; }
.gp-process-list li div { padding: 3px 0; }
.gp-process-list li b { display: block; margin-bottom: 6px; color: var(--gp-ink); font-size: 1.04rem; font-weight: 850; }
.gp-process-list li p { margin: 0; color: var(--gp-muted); font-size: .85rem; line-height: 1.85; }

/* Vehicle types */
.gp-home-vehicles { background: var(--gp-soft); }
.gp-vehicle-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 15px; }
.gp-vehicle-grid a { position: relative; display: block; min-height: 195px; padding: 23px; overflow: hidden; color: var(--gp-ink); border: 1px solid var(--gp-border); border-radius: 18px; background: #fff; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.gp-vehicle-grid a:hover { transform: translateY(-5px); border-color: rgba(0,200,83,.37); box-shadow: var(--gp-shadow); }
.gp-vehicle-grid__icon { display: block; margin-bottom: 25px; color: #00a844; font-family: Arial, sans-serif; font-size: .75rem; font-weight: 900; }
.gp-vehicle-grid b { display: block; margin-bottom: 7px; font-size: .97rem; font-weight: 850; }
.gp-vehicle-grid small { display: block; color: var(--gp-muted); font-size: .76rem; line-height: 1.7; }
.gp-vehicle-grid i { position: absolute; bottom: 18px; left: 20px; color: var(--gp-blue); font-size: 1.15rem; font-style: normal; transition: transform .25s ease; }
.gp-vehicle-grid a:hover i { transform: translateX(-4px); }

/* Directory */
.gp-home-directory { padding-top: 0; background: var(--gp-soft); }
.gp-directory__box { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding: 52px; border-radius: var(--gp-radius-xl); background: #fff; box-shadow: 0 12px 35px rgba(13,20,87,.06); }
.gp-directory__heading p:not(.gp-section-kicker) { margin: 15px 0 0; color: var(--gp-muted); font-size: .88rem; line-height: 1.95; }
.gp-directory__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-content: start; gap: 9px; }
.gp-directory__links a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; color: #3a4961; border-radius: 10px; background: #f7f9fc; font-size: .80rem; font-weight: 700; transition: color .2s ease, background .2s ease, transform .2s ease; }
.gp-directory__links a span { color: var(--gp-green-dark); font-size: 1rem; }
.gp-directory__links a:hover { color: var(--gp-blue); background: #edf9f0; transform: translateX(-3px); }

/* Bottom CTA */
.gp-home-cta { padding: 75px 0; color: #fff; background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); }
.gp-home-cta__inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.gp-home-cta .gp-eyebrow { color: #c8f9d7; }
.gp-home-cta .gp-eyebrow span { background: #00c853; }
.gp-home-cta h2 { max-width: 735px; color: #fff; }
.gp-home-cta p:not(.gp-eyebrow) { max-width: 650px; margin: 15px 0 0; color: rgba(255,255,255,.67); font-size: .91rem; line-height: 1.95; }
.gp-home-cta__actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: 11px; }

/* Responsive */
@media (max-width: 1060px) {
  .gp-home-hero__inner { gap: 30px; }
  .gp-home-hero__badge { width: 165px; flex-basis: 165px; }
  .gp-home-hero__badge img { width: 86px; height: 86px; }
  .gp-brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-brand-card--wide { grid-column: auto; }
  .gp-home-process__layout { gap: 40px; }
  .gp-vehicle-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gp-directory__box { grid-template-columns: 1fr; gap: 30px; }
  .gp-home-cta__inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 768px) {
  .gp-home-section { padding: 65px 0; }
  .gp-section-heading { display: block; margin-bottom: 27px; }
  .gp-section-heading > p { max-width: 100%; margin: 14px 0 0; }
  .gp-section-heading h2, .gp-home-process h2, .gp-directory__heading h2, .gp-home-cta h2 { font-size: 1.67rem; }
  .gp-home-hero { min-height: auto; }
  .gp-home-hero-media img { object-position: 62% center; }
  .gp-home-hero-media::after { background: linear-gradient(90deg, rgba(13,20,87,.96), rgba(13,20,87,.85) 65%, rgba(13,20,87,.63)); }
  .gp-home-hero__inner { display: block; padding-top: 72px; padding-bottom: 65px; }
  .gp-home-hero__badge { display: none; }
  .gp-home-hero h1 { font-size: clamp(2rem, 10vw, 3rem); }
  .gp-home-hero__lead { max-width: 550px; font-size: .93rem; }
  .gp-home-hero__proof { grid-template-columns: 1fr; max-width: 500px; margin-top: 27px; }
  .gp-home-hero__proof > div { display: flex; align-items: center; gap: 8px; padding: 10px 13px; }
  .gp-home-hero__proof b { margin: 0; }
  .gp-home-hero__proof span { line-height: 1.55; }
  .gp-service-grid { grid-template-columns: 1fr; }
  .gp-service-card { min-height: 109px; padding: 17px; }
  .gp-brand-grid { grid-template-columns: 1fr; grid-auto-rows: 246px; }
  .gp-home-promo { padding: 20px 0; }
  .gp-home-promo__card { min-height: 355px; }
  .gp-home-promo__shade { background: linear-gradient(90deg, rgba(10,16,60,.91), rgba(10,16,60,.66)); }
  .gp-home-promo__content { padding: 50px 30px; }
  .gp-home-process__layout { grid-template-columns: 1fr; gap: 25px; }
  .gp-vehicle-grid { grid-template-columns: 1fr 1fr; }
  .gp-directory__box { padding: 32px 23px; border-radius: 22px; }
  .gp-directory__links { grid-template-columns: 1fr; }
  .gp-home-cta { padding: 58px 0; }
  .gp-home-cta__actions { width: 100%; }
  .gp-home-cta__actions .gp-btn { flex: 1 1 220px; }
}

@media (max-width: 480px) {
  .gp-home-hero__actions { flex-direction: column; }
  .gp-home-hero__actions .gp-btn { width: 100%; }
  .gp-home-hero h1 { font-size: 2.02rem; }
  .gp-home-hero__proof > div { display: block; }
  .gp-home-hero__proof b { margin-bottom: 2px; }
  .gp-service-card { gap: 12px; }
  .gp-service-card__icon { width: 46px; height: 46px; flex-basis: 46px; border-radius: 13px; }
  .gp-service-card__body b { font-size: .94rem; }
  .gp-service-card__body span { font-size: .76rem; }
  .gp-brand-grid { grid-auto-rows: 225px; }
  .gp-vehicle-grid { grid-template-columns: 1fr; }
  .gp-vehicle-grid a { min-height: 165px; }
  .gp-process-list li { grid-template-columns: 45px 1fr; gap: 14px; }
  .gp-process-list li > span { width: 45px; height: 45px; }
  .gp-process-list::before { right: 22px; }
  .gp-home-promo__content { padding: 42px 24px; }
  .gp-home-promo__content strong { font-size: 1.44rem; }
}


/* ============================================================
   CART ICON IN NAVIGATION MENU
   ============================================================ */
.nav-cart-item {
  position: relative;
}

.nav-cart-link {
  display: flex !important;
  align-items: center;
  gap: 6px;
  padding: 7px 14px !important;
  color: rgba(255,255,255,0.88) !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.18);
  text-decoration: none;
}

.nav-cart-link:hover {
  background: rgba(255,255,255,0.18) !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

.nav-cart-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-cart-count {
  position: absolute;
  top: -8px;
  left: -8px;
  background: var(--color-secondary, #00C853);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cart-text {
  font-size: 0.85rem;
  font-weight: 600;
}

/* Mobile Sidebar Cart Item */
.sidebar-cart-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  padding: 2px 0;
}

.sidebar-cart-link:hover {
  color: #ffffff;
}

.sidebar-cart-count {
  background: var(--color-secondary, #00C853);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-right: 4px;
}
