/* ============================================
   TAŞINMA NAKLİYAT - Premium Soft Dark Mode
   Design System & Main Stylesheet
   ============================================ */

/* ---- ROOT VARIABLES ---- */
:root {
  /* Background Tones - Soft Dark Palette */
  --bg-deepest: #12141a;
  --bg-body: #1a1d24;
  --bg-section: #1e2129;
  --bg-section-alt: #1b1f28;
  --bg-card: #24272f;
  --bg-card-hover: #2b2f38;
  --bg-elevated: #2e323c;
  --bg-surface: #282c35;
  --bg-input: #20232b;
  --bg-header: rgba(26, 29, 36, 0.96);
  --bg-topbar: #14161c;
  --bg-footer: #13151b;
  --bg-footer-bottom: #0f1015;

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.05);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.12);

  /* Text Colors */
  --text-primary: #e8e5e0;
  --text-secondary: #a8a49d;
  --text-muted: #706b64;
  --text-heading: #f0ede8;
  --text-light: #c4c0ba;

  /* Accent Colors - Soft Gold/Bronze */
  --accent: #c9a96e;
  --accent-light: #d6bb85;
  --accent-dark: #b0935a;
  --accent-rgb: 201, 169, 110;
  --accent-glow: rgba(201, 169, 110, 0.12);
  --accent-glow-strong: rgba(201, 169, 110, 0.25);

  /* Secondary Accent - Muted Blue-Gray */
  --accent-blue: #7b8fa3;
  --accent-blue-light: #94a7b8;

  /* Functional */
  --success: #7b9e7f;
  --warning: #d4a853;
  --danger: #c47272;
  --info: #7094ab;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
  --shadow-card: 0 4px 16px rgba(0, 0, 0, 0.18);
  --shadow-card-hover: 0 8px 32px rgba(0, 0, 0, 0.28);

  /* Spacing */
  --section-py: 100px;
  --section-py-sm: 70px;

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;

  /* Border Radius */
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---- BASE ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-body);
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection {
  background: rgba(201, 169, 110, 0.3);
  color: var(--text-heading);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.6em;
}

h1 { font-size: 3rem; font-weight: 700; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.lead {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ---- SECTION STYLING ---- */
.section {
  padding: var(--section-py) 0;
}

.section-alt {
  background-color: var(--bg-section);
}

.section-dark {
  background-color: var(--bg-section-alt);
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title .subtitle {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  position: relative;
  padding: 0 20px;
}

.section-title .subtitle::before,
.section-title .subtitle::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.section-title .subtitle::before {
  left: -20px;
}

.section-title .subtitle::after {
  right: -20px;
}

.section-title h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ---- BUTTONS ---- */
.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a1d24;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  color: #1a1d24;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--accent-rgb), 0.3);
}

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid rgba(var(--accent-rgb), 0.4);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  letter-spacing: 0.3px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-accent:hover {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent-light);
  border-color: var(--accent);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid var(--border-medium);
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-heading);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-sm {
  padding: 9px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: var(--font-heading);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

/* ---- TOP BAR ---- */
.top-bar {
  background-color: var(--bg-topbar);
  padding: 8px 0;
  font-size: 0.82rem;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 1001;
}

.top-bar a {
  color: var(--text-muted);
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
}

.top-bar .top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar .top-info i {
  color: var(--accent);
  margin-right: 6px;
  font-size: 0.78rem;
}

.top-bar .top-social {
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-bar .top-social a {
  font-size: 0.85rem;
  color: var(--text-muted);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-bar .top-social a:hover {
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.1);
}

/* ---- HEADER / NAVBAR ---- */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition-slow);
}

.main-header.scrolled {
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.main-header .navbar {
  padding: 16px 0;
  transition: var(--transition);
}

.main-header.scrolled .navbar {
  padding: 10px 0;
}

.navbar-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-heading) !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-brand .brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1d24;
  font-size: 1.1rem;
}

.navbar-brand .brand-text span {
  color: var(--accent);
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--accent) !important;
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.header-cta .btn-accent {
  padding: 10px 24px;
  font-size: 0.88rem;
}

.navbar-toggler {
  border: 1px solid var(--border-light);
  padding: 6px 10px;
  color: var(--text-light);
  font-size: 1.2rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  border-color: var(--accent);
}

/* Mobile Nav */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--bg-elevated);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
    border: 1px solid var(--border-subtle);
  }
  .navbar-nav .nav-link.active::after {
    display: none;
  }
  .header-cta {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
  }
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--bg-body);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: brightness(0.5) saturate(0.6);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 29, 36, 0.95) 0%,
    rgba(26, 29, 36, 0.85) 50%,
    rgba(26, 29, 36, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb), 0.1);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-heading);
}

.hero h1 span {
  color: var(--accent);
}

.hero .hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-trust-item .trust-icon {
  width: 44px;
  height: 44px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.hero-trust-item span {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
}

/* Hero Form */
.hero-form-wrapper {
  position: relative;
  z-index: 2;
}

.hero-form {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-form h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.hero-form p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ---- PREMIUM CARDS ---- */
.premium-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  height: 100%;
}

.premium-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.premium-card .card-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--accent-rgb), 0.08);
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}

.premium-card:hover .card-icon {
  background: rgba(var(--accent-rgb), 0.15);
  border-color: rgba(var(--accent-rgb), 0.25);
}

.premium-card h4 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.premium-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.premium-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}

.premium-card .card-link:hover {
  gap: 10px;
  color: var(--accent-light);
}

/* ---- STATS / COUNTER ---- */
.stats-section {
  position: relative;
  z-index: 10;
}

.stats-section .stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
}

.stats-section .stat-card:hover {
  border-color: rgba(var(--accent-rgb), 0.2);
}

.stat-card .stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card .stat-label {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-card .stat-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

/* ---- WHY US ---- */
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.why-item:hover {
  background: rgba(var(--accent-rgb), 0.04);
}

.why-item .why-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.why-item h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.why-item p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- PROCESS / TIMELINE ---- */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.process-step .step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: var(--bg-card);
  border: 2px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.process-step:hover .step-number {
  background: rgba(var(--accent-rgb), 0.12);
  border-color: var(--accent);
}

.process-step .step-line {
  position: absolute;
  top: 30px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 1px;
  background: var(--border-light);
  z-index: 1;
}

.process-step h5 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--text-muted);
}

/* ---- FLEET / VEHICLES ---- */
.vehicle-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.vehicle-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.vehicle-card .vehicle-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.vehicle-card .vehicle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.vehicle-card:hover .vehicle-img img {
  transform: scale(1.05);
}

.vehicle-card .vehicle-body {
  padding: 24px;
}

.vehicle-card h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.vehicle-card .vehicle-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.vehicle-card .vehicle-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--bg-surface);
  padding: 5px 12px;
  border-radius: 50px;
}

.vehicle-card .vehicle-spec i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  height: 100%;
  position: relative;
}

.testimonial-card .quote-icon {
  color: rgba(var(--accent-rgb), 0.15);
  font-size: 2.4rem;
  position: absolute;
  top: 20px;
  right: 24px;
}

.testimonial-card .stars {
  color: var(--accent);
  font-size: 0.85rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testimonial-card p {
  font-size: 0.93rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .client-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(var(--accent-rgb), 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-card .client-name {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.9rem;
}

.testimonial-card .client-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ---- REGIONS ---- */
.region-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--text-light);
  transition: var(--transition);
  margin: 4px;
}

.region-tag:hover {
  background: rgba(var(--accent-rgb), 0.08);
  border-color: rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
}

.region-tag i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---- GALLERY ---- */
.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 260px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 20, 26, 0.85) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item .gallery-overlay span {
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
}

.gallery-item .gallery-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 48px;
  height: 48px;
  background: rgba(var(--accent-rgb), 0.2);
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Gallery Full Page */
.gallery-grid .gallery-item {
  height: 300px;
}

/* ---- FAQ / ACCORDION ---- */
.faq-accordion .accordion-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius) !important;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-accordion .accordion-button {
  background: var(--bg-card);
  color: var(--text-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 18px 24px;
  box-shadow: none;
  border: none;
  font-family: var(--font-heading);
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-card-hover);
  color: var(--accent);
}

.faq-accordion .accordion-button::after {
  filter: brightness(0) invert(0.7);
  width: 16px;
  height: 16px;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(10deg);
}

.faq-accordion .accordion-body {
  background: var(--bg-card);
  color: var(--text-secondary);
  padding: 0 24px 20px;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ---- BLOG CARDS ---- */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.blog-card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-card .blog-category {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(var(--accent-rgb), 0.9);
  color: #1a1d24;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card .blog-body {
  padding: 24px;
}

.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card .blog-meta i {
  color: var(--accent);
  margin-right: 4px;
}

.blog-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.blog-card h4 a {
  color: var(--text-heading);
  transition: var(--transition);
}

.blog-card h4 a:hover {
  color: var(--accent);
}

.blog-card .blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  background: var(--bg-section-alt);
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section .cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 32px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid var(--border-subtle);
  padding-top: 80px;
}

.footer-brand {
  margin-bottom: 20px;
}

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo .brand-icon {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1d24;
  font-size: 1rem;
}

.footer-brand .footer-logo span {
  color: var(--accent);
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(var(--accent-rgb), 0.1);
  border-color: rgba(var(--accent-rgb), 0.2);
  color: var(--accent);
}

.footer h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-heading);
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-contact li i {
  color: var(--accent);
  font-size: 0.9rem;
  margin-top: 4px;
}

.footer-contact li span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.footer-bottom {
  background: var(--bg-footer-bottom);
  padding: 20px 0;
  margin-top: 60px;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- FORMS ---- */
.form-dark .form-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 6px;
}

.form-dark .form-control,
.form-dark .form-select {
  background: var(--bg-input);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.form-dark .form-control:focus,
.form-dark .form-select:focus {
  background: var(--bg-input);
  border-color: rgba(var(--accent-rgb), 0.4);
  color: var(--text-primary);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.08);
}

.form-dark .form-control::placeholder {
  color: var(--text-muted);
}

.form-dark textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

/* ---- INNER HERO (Page Headers) ---- */
.inner-hero {
  padding: 120px 0 80px;
  background: var(--bg-section-alt);
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.inner-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
}

/* ---- BREADCRUMB ---- */
.breadcrumb-dark {
  background: none;
  padding: 0;
  margin-bottom: 16px;
}

.breadcrumb-dark .breadcrumb-item {
  font-size: 0.82rem;
}

.breadcrumb-dark .breadcrumb-item a {
  color: var(--text-muted);
}

.breadcrumb-dark .breadcrumb-item a:hover {
  color: var(--accent);
}

.breadcrumb-dark .breadcrumb-item.active {
  color: var(--accent);
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  color: var(--text-muted);
  content: "›";
}

/* ---- INFO BOX / SIDEBAR ---- */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.info-box h5 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-subtle);
}

.info-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-box ul li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-box ul li i {
  color: var(--accent);
  font-size: 0.75rem;
}

/* ---- FIXED BUTTONS ---- */
.fixed-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.fixed-whatsapp:hover {
  transform: scale(1.1);
  color: #fff;
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.45);
}

.fixed-phone {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1d24;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(var(--accent-rgb), 0.35);
  transition: var(--transition);
  text-decoration: none;
}

.fixed-phone:hover {
  transform: scale(1.1);
  color: #1a1d24;
  box-shadow: 0 6px 30px rgba(var(--accent-rgb), 0.45);
}

/* ---- MOBILE BOTTOM BAR ---- */
.mobile-bottom-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-header);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-subtle);
  padding: 8px 0;
}

.mobile-bottom-bar .bar-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.mobile-bottom-bar .bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--text-muted);
  font-size: 0.7rem;
  text-decoration: none;
  padding: 6px 12px;
  transition: var(--transition);
}

.mobile-bottom-bar .bar-item i {
  font-size: 1.15rem;
}

.mobile-bottom-bar .bar-item:hover,
.mobile-bottom-bar .bar-item.active {
  color: var(--accent);
}

.mobile-bottom-bar .bar-item.bar-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a1d24;
  border-radius: var(--radius);
  padding: 8px 20px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .mobile-bottom-bar {
    display: block;
  }
  .fixed-whatsapp,
  .fixed-phone {
    bottom: 80px;
  }
  .fixed-phone {
    bottom: 80px;
    right: 24px;
  }
  .fixed-whatsapp {
    bottom: 146px;
  }
  body {
    padding-bottom: 70px;
  }
}

/* ---- LIGHTBOX ---- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12, 14, 18, 0.95);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: var(--text-light);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---- BLOG DETAIL ---- */
.blog-detail-header {
  padding: 140px 0 60px;
  background: var(--bg-section-alt);
}

.blog-detail-content {
  font-size: 1rem;
  line-height: 2;
  color: var(--text-light);
}

.blog-detail-content h2,
.blog-detail-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-detail-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.blog-detail-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.blog-detail-content blockquote {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-light);
}

.blog-meta-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-meta-detail i {
  color: var(--accent);
  margin-right: 6px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.blog-tags .tag {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  transition: var(--transition);
}

.blog-tags .tag:hover {
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.2);
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 44px;
  height: 44px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  background: rgba(var(--accent-rgb), 0.1);
  color: var(--accent);
  border-color: rgba(var(--accent-rgb), 0.2);
}

/* ---- MAP ---- */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  filter: brightness(0.7) contrast(1.1) saturate(0.5);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1200px) {
  :root {
    --section-py: 80px;
  }
}

@media (max-width: 991px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .hero h1 { font-size: 2.6rem; }
  .section-title h2 { font-size: 2rem; }
  .inner-hero h1 { font-size: 2.2rem; }
  .cta-section h2 { font-size: 2rem; }
  .top-bar { display: none; }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.1rem; }
  .section-title h2 { font-size: 1.75rem; }
  .section-title { margin-bottom: 40px; }
  .premium-card { padding: 28px; }
  .hero-trust { gap: 16px; }
  .hero-form { padding: 24px; }
  .inner-hero { padding: 100px 0 60px; }
  .inner-hero h1 { font-size: 1.9rem; }
  .process-step .step-line { display: none; }
  .footer { padding-top: 60px; }
  .footer-bottom { margin-top: 40px; }
}

@media (max-width: 576px) {
  .hero h1 { font-size: 1.8rem; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-accent,
  .hero-buttons .btn-outline-accent { width: 100%; justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .gallery-item { height: 200px; }
  .stat-card .stat-number { font-size: 2rem; }
}

/* ---- UTILITY ---- */
.text-accent { color: var(--accent) !important; }
.bg-accent-soft { background: rgba(var(--accent-rgb), 0.08); }
.border-accent { border-color: rgba(var(--accent-rgb), 0.2) !important; }
.gap-section { gap: 30px; }

.img-placeholder {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-surface) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2rem;
}

/* ---- CONTACT PAGE ---- */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.contact-card:hover {
  border-color: rgba(var(--accent-rgb), 0.15);
}

.contact-card .contact-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.2rem;
}

.contact-card h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.contact-card h5::after {
  display: none;
}

.contact-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.contact-card a {
  color: var(--text-light);
  font-weight: 500;
}

.contact-card a:hover {
  color: var(--accent);
}

/* ---- ABOUT PAGE ---- */
.about-image-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.about-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-box .experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #1a1d24;
  padding: 16px 24px;
  border-radius: var(--radius);
  text-align: center;
}

.about-image-box .experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-box .experience-badge span {
  font-size: 0.8rem;
  font-weight: 600;
}

/* Mission Vision */
.mv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  height: 100%;
}

.mv-card h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mv-card h4 i {
  color: var(--accent);
}

/* ---- TEKLIF FORM PAGE ---- */
.quote-features {
  list-style: none;
  padding: 0;
}

.quote-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 0.92rem;
  color: var(--text-light);
  border-bottom: 1px solid var(--border-subtle);
}

.quote-features li:last-child {
  border-bottom: none;
}

.quote-features li i {
  color: var(--accent);
  font-size: 0.85rem;
}

/* ---- VEHICLE DETAIL ---- */
.vehicle-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.vehicle-detail-card:hover {
  border-color: var(--border-light);
}

.vehicle-detail-card .vehicle-img-lg {
  height: 280px;
  overflow: hidden;
}

.vehicle-detail-card .vehicle-img-lg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vehicle-detail-card .vehicle-info {
  padding: 28px;
}

.vehicle-detail-card .spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.vehicle-detail-card .spec-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.vehicle-detail-card .spec-item i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* ---- SERVICE DETAIL ---- */
.service-advantage {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.service-advantage:last-child {
  border-bottom: none;
}

.service-advantage .adv-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(var(--accent-rgb), 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
}

.service-advantage h6 {
  margin-bottom: 2px;
  font-size: 0.92rem;
}

.service-advantage p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Service Gallery */
.service-gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  height: 180px;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-gallery-item:hover img {
  transform: scale(1.06);
}
