/* ====================================================
   80 TAKSİ OSMANİYE - Ana CSS Dosyası
   taksiomaniye80.com
   ==================================================== */

:root {
  --yellow: #F5C400;
  --yellow-dark: #D4A900;
  --yellow-light: #FFD740;
  --black: #111111;
  --dark: #1C1C1C;
  --dark2: #2A2A2A;
  --gray: #6B7280;
  --light-gray: #F8F8F8;
  --white: #FFFFFF;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5 { font-weight: 800; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { color: var(--gray); font-size: 1.05rem; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.text-center { text-align: center; }
.text-yellow { color: var(--yellow); }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light-gray); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

/* ---- Section Header ---- */
.section-header { margin-bottom: 56px; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 6px 16px;
  border-radius: 50px; margin-bottom: 16px;
}
.section-tag svg { width: 14px; height: 14px; }
.section-title { color: var(--dark); margin-bottom: 16px; }
.section-title span { color: var(--yellow); }
.section-desc { max-width: 560px; font-size: 1.1rem; }
.section-desc.center { margin: 0 auto; text-align: center; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 1rem; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  white-space: nowrap;
}
.btn-yellow {
  background: var(--yellow); color: var(--black);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark); border-color: var(--yellow-dark);
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,196,0,0.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1); border-color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark); color: var(--white);
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark2); transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ====================================================
   HEADER / NAV
   ==================================================== */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245,196,0,0.15);
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(17,17,17,0.98);
  box-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.nav-wrapper {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; max-width: 1280px; margin: 0 auto;
  height: 72px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 1.25rem; color: var(--white);
}
.nav-logo img {
  width: 50px; height: 50px; object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}
.nav-logo span { color: var(--yellow); }
.nav-menu {
  display: flex; align-items: center; gap: 4px;
}
.nav-menu a {
  color: rgba(255,255,255,0.75); font-weight: 600;
  font-size: 0.92rem; padding: 8px 14px; border-radius: 8px;
  transition: var(--transition); white-space: nowrap;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--yellow); background: rgba(245,196,0,0.1);
}
.nav-phones {
  display: flex; align-items: center; gap: 10px;
}
.nav-phone-btn {
  display: flex; align-items: center; gap: 7px;
  background: var(--yellow); color: var(--black);
  font-weight: 800; font-size: 0.88rem; padding: 9px 16px;
  border-radius: 50px; transition: var(--transition);
  white-space: nowrap;
}
.nav-phone-btn:hover {
  background: var(--yellow-dark); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(245,196,0,0.4);
}
.nav-phone-btn svg { width: 15px; height: 15px; }
.nav-phone-btn.outline {
  background: transparent; color: var(--yellow);
  border: 2px solid var(--yellow);
}
.nav-phone-btn.outline:hover {
  background: var(--yellow); color: var(--black);
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.mobile-nav {
  display: none; flex-direction: column;
  background: var(--dark); padding: 20px 24px;
  border-top: 1px solid rgba(245,196,0,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85); font-weight: 600;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 1rem; transition: var(--transition);
}
.mobile-nav a:hover { color: var(--yellow); }
.mobile-phones {
  display: flex; flex-direction: column; gap: 10px; margin-top: 16px;
}

/* ====================================================
   HERO
   ==================================================== */
.hero {
  min-height: 100vh; position: relative;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 50%, #111111 100%);
  display: flex; align-items: center; overflow: hidden;
  padding-top: 72px;
}
.hero-bg-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.hero-glow {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(245,196,0,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1200px; margin: 0 auto; padding: 60px 24px;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,196,0,0.12); border: 1px solid rgba(245,196,0,0.3);
  color: var(--yellow); font-weight: 700; font-size: 0.78rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 18px; border-radius: 50px; margin-bottom: 24px;
}
.hero-badge .dot {
  width: 7px; height: 7px; background: var(--yellow);
  border-radius: 50%; animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-title { color: var(--white); margin-bottom: 20px; }
.hero-title .line2 { color: var(--yellow); display: block; }
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1.15rem;
  margin-bottom: 36px; max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex; gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
}
.hero-stat-num {
  font-size: 2rem; font-weight: 900; color: var(--yellow); display: block;
}
.hero-stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.5); font-weight: 500; }
.hero-visual { position: relative; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}
.hero-img-wrap img {
  width: 100%; height: 520px; object-fit: cover;
  transition: transform 0.6s ease;
}
.hero-img-wrap:hover img { transform: scale(1.03); }
.hero-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
}
.hero-plate-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--yellow); color: var(--black);
  font-weight: 900; font-size: 1rem; padding: 8px 18px;
  border-radius: 8px; letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.hero-floating-card {
  position: absolute; top: -20px; right: -20px;
  background: var(--dark); border: 1px solid rgba(245,196,0,0.25);
  border-radius: var(--radius); padding: 16px 20px;
  box-shadow: var(--shadow-lg);
}
.hero-floating-card .icon { font-size: 1.5rem; margin-bottom: 6px; }
.hero-floating-card .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.hero-floating-card .value { font-size: 1.1rem; font-weight: 800; color: var(--yellow); }

/* ====================================================
   PHONE STRIP
   ==================================================== */
.phone-strip {
  background: var(--yellow);
  padding: 20px 24px;
}
.phone-strip-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.phone-card {
  display: flex; align-items: center; gap: 14px;
  background: rgba(0,0,0,0.08); border-radius: var(--radius);
  padding: 14px 24px; transition: var(--transition);
}
.phone-card:hover { background: rgba(0,0,0,0.15); transform: translateY(-2px); }
.phone-icon-wrap {
  width: 44px; height: 44px; background: var(--black);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.phone-icon-wrap svg { width: 22px; height: 22px; color: var(--yellow); fill: var(--yellow); }
.phone-plate { font-size: 0.72rem; font-weight: 700; color: rgba(0,0,0,0.55); text-transform: uppercase; letter-spacing: 0.08em; }
.phone-number { font-size: 1.3rem; font-weight: 900; color: var(--black); letter-spacing: 0.02em; }
.phone-divider { width: 1px; height: 50px; background: rgba(0,0,0,0.15); }

/* ====================================================
   FEATURES / WHY US
   ==================================================== */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 58px; height: 58px; background: rgba(245,196,0,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--yellow); }
.feature-title { font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.feature-desc { font-size: 0.9rem; color: var(--gray); line-height: 1.65; }

/* ====================================================
   FLEET / ARAÇLAR
   ==================================================== */
.fleet-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.fleet-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.fleet-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.fleet-img-wrap { position: relative; overflow: hidden; height: 220px; }
.fleet-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.fleet-card:hover .fleet-img-wrap img { transform: scale(1.05); }
.fleet-plate-tag {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--yellow); color: var(--black);
  font-weight: 900; font-size: 0.85rem; padding: 5px 14px;
  border-radius: 6px; letter-spacing: 0.06em;
}
.fleet-body { padding: 28px; }
.fleet-name { font-size: 1.3rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.fleet-specs {
  display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 20px;
}
.fleet-spec {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600; color: var(--gray);
  background: var(--light-gray); padding: 5px 12px; border-radius: 50px;
}
.fleet-spec svg { width: 14px; height: 14px; color: var(--yellow); }
.fleet-cta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.fleet-phone-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--yellow); color: var(--black);
  font-weight: 800; font-size: 0.95rem; padding: 12px 20px;
  border-radius: 50px; transition: var(--transition);
}
.fleet-phone-btn:hover {
  background: var(--yellow-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,196,0,0.4);
}
.fleet-phone-btn svg { width: 18px; height: 18px; }
.fleet-whatsapp-btn {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: #25D366; border-radius: 50%; transition: var(--transition);
  flex-shrink: 0;
}
.fleet-whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 4px 16px rgba(37,211,102,0.4); }
.fleet-whatsapp-btn svg { width: 22px; height: 22px; fill: white; }

/* ====================================================
   SERVICES
   ==================================================== */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--dark2); border-radius: var(--radius-lg);
  padding: 36px 28px; transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(245,196,0,0.2); }
.service-card:hover::after { transform: scaleX(1); }
.service-num {
  font-size: 3rem; font-weight: 900; color: rgba(245,196,0,0.08);
  position: absolute; top: 16px; right: 20px; line-height: 1;
}
.service-icon {
  width: 56px; height: 56px; background: rgba(245,196,0,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; color: var(--yellow); }
.service-title { font-size: 1.1rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.service-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* ====================================================
   STATS
   ==================================================== */
.stats-section {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-light) 100%);
  padding: 70px 0;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; text-align: center;
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem); font-weight: 900;
  color: var(--black); line-height: 1; margin-bottom: 8px;
}
.stat-label { font-size: 0.88rem; font-weight: 700; color: rgba(0,0,0,0.55); text-transform: uppercase; letter-spacing: 0.08em; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: var(--yellow); font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-size: 0.95rem; color: var(--gray); font-style: italic; line-height: 1.7; margin-bottom: 18px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; background: var(--yellow);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: var(--black); flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--dark); font-size: 0.92rem; }
.testimonial-city { font-size: 0.78rem; color: var(--gray); }

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  background: linear-gradient(135deg, #111 0%, #1a1a0a 100%);
  padding: 90px 24px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.03;
  background-image: repeating-linear-gradient(
    -45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.cta-title { color: var(--white); margin-bottom: 14px; position: relative; }
.cta-desc { color: rgba(255,255,255,0.55); font-size: 1.1rem; margin-bottom: 40px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.cta-phone-pair {
  display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 20px;
}
.cta-phone-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.cta-phone-label { font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.cta-phone-num {
  display: flex; align-items: center; gap: 8px;
  color: var(--yellow); font-size: 1.5rem; font-weight: 900; letter-spacing: 0.02em;
}
.cta-phone-num svg { width: 20px; height: 20px; color: var(--yellow); }

/* ====================================================
   CONTACT
   ==================================================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius); padding: 20px 22px; transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow); border-color: rgba(245,196,0,0.3); }
.contact-info-icon {
  width: 46px; height: 46px; background: rgba(245,196,0,0.12);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--yellow); }
.contact-info-label { font-size: 0.75rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.contact-info-value { font-weight: 700; color: var(--dark); font-size: 0.95rem; line-height: 1.5; }
.contact-phones-pair {
  display: flex; flex-direction: column; gap: 4px;
}
.contact-phone-row {
  display: flex; align-items: center; gap: 8px;
}
.contact-phone-plate { font-size: 0.7rem; font-weight: 700; color: var(--gray); background: var(--light-gray); padding: 2px 8px; border-radius: 4px; }
.contact-phone-num { font-weight: 800; color: var(--dark); font-size: 1.05rem; }
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); height: 360px;
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }
.contact-form-wrap {
  background: var(--light-gray); border-radius: var(--radius-lg); padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 700; font-size: 0.88rem; color: var(--dark); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 13px 18px;
  border: 2px solid rgba(0,0,0,0.08); border-radius: 10px;
  font-size: 0.95rem; color: var(--dark); background: var(--white);
  transition: var(--transition); font-family: inherit; outline: none;
}
.form-input:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(245,196,0,0.15); }
textarea.form-input { resize: vertical; min-height: 120px; }

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
  background: var(--black); padding: 70px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px; padding-bottom: 50px;
}
.footer-brand-logo {
  display: flex; align-items: center; gap: 12px;
  font-weight: 900; font-size: 1.15rem; color: var(--white); margin-bottom: 16px;
}
.footer-brand-logo img { width: 44px; height: 44px; object-fit: contain; }
.footer-brand-logo span { color: var(--yellow); }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 0.88rem; line-height: 1.75; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--yellow); transform: translateY(-2px); }
.footer-social-btn:hover svg { color: var(--black); }
.footer-social-btn svg { width: 18px; height: 18px; color: rgba(255,255,255,0.6); }
.footer-heading { font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--yellow); transform: translateX(4px); display: inline-block; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.footer-contact-text { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 22px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.footer-bottom span { color: var(--yellow); }

/* ====================================================
   WHATSAPP FLOAT
   ==================================================== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.whatsapp-float-main {
  width: 58px; height: 58px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  cursor: pointer; transition: var(--transition);
}
.whatsapp-float-main:hover { transform: scale(1.1); }
.whatsapp-float-main svg { width: 30px; height: 30px; fill: white; }
.whatsapp-panel {
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: 14px 16px;
  display: none; flex-direction: column; gap: 10px; min-width: 200px;
  border: 1px solid rgba(0,0,0,0.06);
}
.whatsapp-panel.open { display: flex; }
.whatsapp-panel-title { font-size: 0.78rem; font-weight: 700; color: var(--gray); margin-bottom: 2px; }
.whatsapp-btn-item {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white; border-radius: 8px;
  padding: 10px 14px; font-weight: 700; font-size: 0.88rem;
  transition: var(--transition);
}
.whatsapp-btn-item:hover { background: #128C7E; transform: translateX(4px); }
.whatsapp-btn-item svg { width: 18px; height: 18px; fill: white; flex-shrink: 0; }
.wa-plate-tag { font-size: 0.7rem; opacity: 0.8; }

/* ====================================================
   PAGE BANNER (inner pages)
   ==================================================== */
.page-banner {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a0a 100%);
  padding: 130px 24px 70px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0; opacity: 0.04;
  background-image: repeating-linear-gradient(
    45deg, var(--yellow) 0, var(--yellow) 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.page-banner-title { color: var(--white); position: relative; margin-bottom: 14px; }
.page-banner-title span { color: var(--yellow); }
.page-banner-breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  position: relative;
}
.page-banner-breadcrumb a { color: rgba(255,255,255,0.5); font-size: 0.88rem; font-weight: 600; }
.page-banner-breadcrumb a:hover { color: var(--yellow); }
.page-banner-breadcrumb span { color: rgba(255,255,255,0.25); font-size: 0.88rem; }
.page-banner-breadcrumb strong { color: var(--yellow); font-size: 0.88rem; }

/* ====================================================
   SCROLL ANIMATIONS
   ==================================================== */
.reveal {
  opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { 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; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .nav-phones { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 64px 0; }
  .fleet-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone-strip-inner { flex-direction: column; gap: 12px; }
  .phone-divider { width: 100%; height: 1px; }
  .hero-img-wrap img { height: 360px; }
  .hero-floating-card { top: -10px; right: -10px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
}
@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .cta-phone-pair { flex-direction: column; }
  .btn-lg { padding: 15px 30px; }
  /* Fleet cards: always 2-col even on very small screens */
  .fleet-img-wrap { height: 140px; }
  .fleet-body { padding: 12px 10px; }
  .fleet-name { font-size: 0.78rem; }
  .fleet-specs { display: none; }
  .fleet-phone-btn { font-size: 0.72rem; padding: 9px 8px; gap: 4px; }
  .fleet-phone-btn svg { width: 13px; height: 13px; }
  .fleet-whatsapp-btn { width: 36px; height: 36px; }
  .fleet-whatsapp-btn svg { width: 18px; height: 18px; }
  .fleet-cta { gap: 6px; }
  .fleet-plate-tag { font-size: 0.65rem; padding: 3px 8px; bottom: 8px; left: 8px; }
}
@media (max-width: 640px) and (min-width: 481px) {
  .fleet-img-wrap { height: 170px; }
  .fleet-body { padding: 14px 12px; }
  .fleet-name { font-size: 0.88rem; }
  .fleet-specs { gap: 6px; }
  .fleet-spec { font-size: 0.72rem; padding: 4px 8px; }
  .fleet-phone-btn { font-size: 0.8rem; padding: 10px 10px; }
}
