/* ============================================
   شركة الرائد الشرقي - Main Stylesheet
   Theme: Gold #D4A017 | Charcoal #1F1F1F
   ============================================ */

/* ---------- Fonts (Local) ---------- */
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/Cairo-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Cairo-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Cairo-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Cairo-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Cairo-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Cairo-ExtraBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Cairo';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/Cairo-Black.ttf') format('truetype');
}

/* ---------- CSS Variables ---------- */
:root {
  --gold: #D4A017;
  --gold-light: #E5B834;
  --gold-dark: #B8870A;
  --white: #FFFFFF;
  --soft-white: #FAFAF8;
  --light-gray: #F4F4F2;
  --medium-gray: #E5E5E2;
  --charcoal: #1F1F1F;
  --charcoal-light: #2D2D2D;
  --text-dark: #1A1A1A;
  --text-medium: #4A4A4A;
  --text-light: #7A7A7A;
  --whatsapp: #25D366;
  --whatsapp-dark: #128C7E;
  --call: #D4A017;
  --call-dark: #B8870A;
  --shadow-sm: 0 2px 8px rgba(31, 31, 31, 0.06);
  --shadow-md: 0 4px 20px rgba(31, 31, 31, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 31, 31, 0.12);
  --shadow-gold: 0 8px 30px rgba(212, 160, 23, 0.25);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-family: 'Cairo', 'Tajawal', 'Segoe UI', system-ui, sans-serif;
}

/* ---------- Base Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  font-family: var(--font-family);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--soft-white);
  direction: rtl;
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, svg, video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-dark); }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.3;
  color: var(--charcoal);
  margin-bottom: 0.5em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); }
.text-gold { color: var(--gold); }
.text-charcoal { color: var(--charcoal); }
.fw-black { font-weight: 900; }
.lead {
  font-size: 1.15rem;
  color: var(--text-medium);
  font-weight: 500;
}

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Section ---------- */
section {
  padding: 5rem 0;
  position: relative;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3.5rem;
}
.section-tag {
  display: inline-block;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 0.3px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--gold);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}
.section-subtitle {
  color: var(--text-medium);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1.2;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 160, 23, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--charcoal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  border-color: var(--whatsapp);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1.1rem;
}
.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(31, 31, 31, 0.05);
  transition: all var(--transition);
  padding: 0.6rem 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  padding: 0.4rem 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--charcoal);
  flex-shrink: 0;
}
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  transition: transform var(--transition);
}
.logo:hover .logo-img { transform: rotate(-8deg) scale(1.05); }
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-size: 1rem;
  font-weight: 800;
  color: var(--charcoal);
}
.logo-tag {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.main-nav a {
  padding: 0.5rem 0.95rem;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.header-cta .btn { padding: 0.55rem 1.1rem; font-size: 0.9rem; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--charcoal);
  color: var(--gold);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 24px; height: 24px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  background:
    linear-gradient(135deg, rgba(31, 31, 31, 0.92) 0%, rgba(31, 31, 31, 0.85) 100%),
    url('../images/truck-1.webp') center/cover no-repeat;
  overflow: hidden;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 160, 23, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.3);
  color: var(--gold-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}
.hero h1 .gold {
  color: var(--gold);
  position: relative;
  display: inline-block;
}
.hero h1 .gold::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0; left: 0;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  animation: slideIn 1.2s ease-out forwards;
}
@keyframes slideIn {
  from { transform: scaleX(0); transform-origin: right; }
  to { transform: scaleX(1); transform-origin: right; }
}
.hero p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  line-height: 1.8;
  max-width: 600px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 600px;
}
.hero-feature {
  text-align: center;
}
.hero-feature .num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
}
.hero-feature .lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(212, 160, 23, 0.4));
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(-2deg); }
}
.hero-truck-img {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 130px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
  transform: rotate(-5deg);
}
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.85rem;
  text-align: center;
  z-index: 2;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 450px;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--charcoal);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
  font-weight: 800;
}
.about-badge .num {
  display: block;
  font-size: 2rem;
  line-height: 1;
  color: var(--charcoal);
}
.about-badge .lbl {
  font-size: 0.85rem;
}
.about-content .section-tag { margin-bottom: 0.8rem; }
.about-content h2 {
  text-align: right;
  margin-bottom: 1.5rem;
}
.about-content h2::after { margin: 0.8rem 0 0; }
.about-content p {
  color: var(--text-medium);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.about-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  color: var(--charcoal);
}
.about-point .icn {
  width: 32px; height: 32px;
  background: rgba(212, 160, 23, 0.15);
  color: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-point .icn svg { width: 16px; height: 16px; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: var(--light-gray);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--gold);
}
.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-image img { transform: scale(1.1); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(31, 31, 31, 0.7) 100%);
}
.service-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  z-index: 2;
}
.service-icon svg { width: 28px; height: 28px; }
.service-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}
.service-body p {
  color: var(--text-medium);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: auto;
}
.service-link svg { width: 18px; height: 18px; transition: transform var(--transition); }
.service-link:hover { color: var(--gold-dark); }
.service-link:hover svg { transform: translateX(-4px); }

/* ============================================
   WHY US
   ============================================ */
.why-us {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -50%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us::after {
  content: '';
  position: absolute;
  bottom: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212, 160, 23, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.why-us .section-tag { background: rgba(212, 160, 23, 0.2); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.why-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.15);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(212, 160, 23, 0.08);
}
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-gold);
}
.why-icon svg { width: 32px; height: 32px; }
.why-card h4 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}
.why-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ============================================
   SERVICE AREAS (SEO)
   ============================================ */
.service-areas {
  background: var(--soft-white);
}
.area-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.area-tab {
  padding: 0.6rem 1.4rem;
  background: var(--white);
  border: 2px solid var(--medium-gray);
  border-radius: 50px;
  font-weight: 700;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition);
  font-family: inherit;
  font-size: 0.95rem;
}
.area-tab:hover { border-color: var(--gold); color: var(--gold); }
.area-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
}
.area-content {
  display: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  animation: fadeIn 0.5s ease;
}
.area-content.active { display: block; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.area-content h3 {
  color: var(--charcoal);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.area-content h3::before {
  content: '';
  width: 4px;
  height: 30px;
  background: var(--gold);
  border-radius: 2px;
}
.area-content p {
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.9;
  margin: 0;
}
.area-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--medium-gray);
}
.area-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}
.area-feature svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
  border: 1px solid transparent;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  position: absolute;
  top: -10px;
  right: 24px;
  width: 50px;
  height: 50px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: var(--shadow-gold);
  font-family: Georgia, serif;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}
.testimonial-stars svg { width: 18px; height: 18px; color: var(--gold); }
.testimonial-text {
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: normal;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--medium-gray);
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-info h5 {
  font-size: 1rem;
  margin: 0;
  color: var(--charcoal);
}
.testimonial-info span {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--light-gray);
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-right: 4px solid transparent;
}
.faq-item.active {
  border-right-color: var(--gold);
  box-shadow: var(--shadow-md);
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: var(--white);
  text-align: right;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  font-family: inherit;
  line-height: 1.5;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--soft-white); }
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.1);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-toggle svg { width: 16px; height: 16px; transition: transform var(--transition); }
.faq-item.active .faq-toggle {
  background: var(--gold);
  color: var(--charcoal);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-medium);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: radial-gradient(circle at 100% 50%, rgba(212, 160, 23, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: rgba(255, 255, 255, 0.7); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  background: rgba(212, 160, 23, 0.08);
  border-color: var(--gold);
  transform: translateX(-5px);
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-icon.wa { background: var(--whatsapp); color: var(--white); }
.contact-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin: 0 0 0.25rem;
}
.contact-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
  direction: ltr;
  text-align: right;
}
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  color: var(--text-dark);
}
.contact-form h3 {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.contact-form > p {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  background: var(--soft-white);
  color: var(--text-dark);
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  margin-top: 0.5rem;
}
.form-message {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  color: #166534;
  display: block;
}
.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  color: #991B1B;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0E0E0E;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo {
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }
.footer h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 0.6rem;
}
.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 35px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.footer-links a:hover {
  color: var(--gold);
  padding-right: 0.5rem;
}
.footer-links a:hover::before { width: 12px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item a { color: inherit; }
.footer-contact-item a:hover { color: var(--gold); }
.footer-contact-item .ph { direction: ltr; display: inline-block; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.88rem;
}
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-credit {
  text-align: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed rgba(212, 160, 23, 0.2);
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-credit a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  background: rgba(212, 160, 23, 0.08);
}
.footer-credit a:hover {
  color: var(--white);
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 160, 23, 0.3);
}
.footer-credit a svg {
  transition: transform var(--transition);
}
.footer-credit a:hover svg {
  transform: translate(-2px, -2px);
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: all var(--transition);
  position: relative;
  text-decoration: none;
}
.floating-btn svg { width: 28px; height: 28px; }
.floating-btn:hover { transform: scale(1.1) translateY(-3px); color: var(--white); }
.floating-btn.whatsapp { background: var(--whatsapp); }
.floating-btn.whatsapp:hover { background: var(--whatsapp-dark); }
.floating-btn.call { background: var(--gold); color: var(--charcoal); }
.floating-btn.call:hover { background: var(--gold-dark); color: var(--white); }
.floating-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
  z-index: -1;
  animation: ripple 2s infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}
.floating-btn .tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.floating-btn:hover .tooltip { opacity: 1; }

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu .logo { color: var(--white); }
.mobile-menu .logo-name { color: var(--white); }
.mobile-close {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gold);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-close svg { width: 24px; height: 24px; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.mobile-nav a {
  color: var(--white);
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 160, 23, 0.05);
  padding-right: 1.5rem;
}
.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  section { padding: 4rem 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-features { margin: 0 auto; }
  .hero h1::after, .hero h1 .gold::after { right: 50%; transform: translateX(50%); }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image img { min-height: 350px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .main-nav { display: none; }
  .header-cta .btn-cta-text { display: none; }
}
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .container { padding: 0 1rem; }
  .menu-toggle { display: flex; }
  .header-cta .btn:not(.menu-toggle) { display: none; }
  .hero { padding: 7rem 0 3rem; }
  .hero-features { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero-feature .num { font-size: 1.6rem; }
  .hero-truck-img { display: none; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .area-features { grid-template-columns: 1fr; }
  .area-content { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .floating-btn { width: 54px; height: 54px; }
  .floating-btn svg { width: 24px; height: 24px; }
  .floating-actions { bottom: 16px; right: 16px; gap: 10px; }
  .about-points { grid-template-columns: 1fr; }
  .section-header { margin-bottom: 2.5rem; }
  .hero-cta .btn { flex: 1; min-width: 140px; }
}
@media (max-width: 480px) {
  .hero-features { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .area-tabs { gap: 0.4rem; }
  .area-tab { padding: 0.5rem 1rem; font-size: 0.85rem; }
  .contact-form { padding: 1.5rem; }
  .testimonial-card { padding: 1.5rem; }
}

/* Print */
@media print {
  .floating-actions, .site-header, .hero-cta { display: none; }
}

/* Accessibility */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
