/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #f18a06;
  --orange-light: #f9a840;
  --orange-dark: #d07800;
  --blue: #214695;
  --blue-light: #2d5ab8;
  --blue-dark: #1a3670;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0,0,0,0.25);
  --radius: 12px;
  --radius-lg: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--blue);
  color: var(--white);
  font-size: 13px;
  position: relative;
  z-index: 1001;
}

.top-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact a {
  color: var(--white);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
}

.top-contact a:hover { color: var(--orange); }

.top-divider {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

.top-social {
  display: flex;
  gap: 12px;
}

.top-social a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* ===== HEADER ===== */
.main-header {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: var(--transition);
}

.inner-page .main-header {
  position: relative;
  top: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}

.main-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}

/* Logo - PNG Image */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.home-page .main-header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

/* Footer Logo */
.footer-logo {
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* Navigation */
.main-nav { display: flex; align-items: center; }

.nav-list {
  display: flex;
  list-style: none;
  gap: 0;
  align-items: center;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--blue);
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.home-page .main-header:not(.scrolled) .nav-link {
  color: var(--white);
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  background: rgba(241, 138, 6, 0.08);
}

.home-page .main-header:not(.scrolled) .nav-link:hover {
  background: rgba(255,255,255,0.12);
  color: var(--orange-light);
}

.nav-link .fa-chevron-down {
  font-size: 10px;
  transition: transform 0.3s ease;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--gray-100);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-dropdown:hover .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray-700);
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
  background: var(--gray-50);
  color: var(--orange);
  border-left-color: var(--orange);
  padding-left: 24px;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1002;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--blue);
  border-radius: 2px;
  transition: var(--transition);
}

.home-page .main-header:not(.scrolled) .mobile-toggle span {
  background: var(--white);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO GALLERY ===== */
.hero-gallery {
  position: relative;
  height: 100vh;
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
}

.gallery-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 1;
}

/* Slide background image (replacing CSS background-image for lazy loading) */
.slide-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(33, 70, 149, 0.75) 0%,
    rgba(33, 70, 149, 0.4) 40%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.slide-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  z-index: 3;
  color: var(--white);
  max-width: 650px;
}

.slide-content h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.slide-content h1 span {
  color: var(--orange);
}

.slide-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.5s forwards;
  color: rgba(255,255,255,0.9);
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241, 138, 6, 0.4);
}

.hero-btn .fa-arrow-right {
  transition: transform 0.3s ease;
}

.hero-btn:hover .fa-arrow-right {
  transform: translateX(4px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  right: 8%;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.08);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
}

.gallery-video-indicator {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== MISSION SECTION ===== */
.mission-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(241,138,6,0.1), rgba(241,138,6,0.05));
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(241,138,6,0.15);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title span {
  color: var(--orange);
}

.section-desc {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 550px;
  margin: -8px auto 50px;
  line-height: 1.7;
}

/* Stats */
.mission-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.stat-item {
  padding: 30px 20px;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-number::after {
  content: '+';
  font-size: 28px;
}

.stat-label {
  font-size: 14px;
  color: var(--gray-500);
  font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0 80px;
  background: var(--gray-50);
}

.services-section .section-title {
  text-align: center;
}

.services-carousel-wrapper {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.services-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 4px 20px;
}

.services-carousel::-webkit-scrollbar { display: none; }

.service-card {
  flex: 0 0 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(241,138,6,0.1), rgba(33,70,149,0.08));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  line-height: 1.4;
}

.service-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 600;
}

.service-link .fa-arrow-right {
  font-size: 11px;
  transition: transform 0.3s ease;
}

.service-link:hover .fa-arrow-right { transform: translateX(4px); }

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--blue);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  z-index: 5;
}

.carousel-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 100px 0;
  background: var(--blue);
  text-align: center;
  overflow: hidden;
}

/* CTA background image (replacing inline background-image for lazy loading) */
.cta-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33,70,149,0.92), rgba(33,70,149,0.8));
}

.cta-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.cta-primary {
  background: var(--orange);
  color: var(--white);
}

.cta-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,138,6,0.4);
}

.cta-secondary {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}

/* ===== PAGE HERO (Inner Pages) ===== */
.page-hero {
  position: relative;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(241,138,6,0.08);
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><defs><pattern id="p" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect fill="url(%23p)" width="100" height="100"/></svg>');
}

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

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}

.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--orange); }

.breadcrumb .fa-chevron-right {
  font-size: 10px;
  opacity: 0.5;
}

.breadcrumb span {
  color: var(--orange);
  font-weight: 500;
}

.page-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
}

.page-hero h1 i {
  color: var(--orange);
  font-size: 30px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 50px 0 80px;
  background: var(--gray-50);
  min-height: 400px;
}

/* ===== PAGE LAYOUT WITH SIDEBAR ===== */
.page-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 30px;
  align-items: start;
}

/* Sidebar */
.sidebar {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  position: sticky;
  top: 100px;
}

.sidebar-header {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  padding: 20px 24px;
}

.sidebar-header h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sidebar-header h3 i {
  color: var(--orange);
}

.sidebar-nav ul {
  list-style: none;
  padding: 8px 0;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
  position: relative;
}

.sidebar-link i:first-child {
  font-size: 15px;
  width: 20px;
  text-align: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.sidebar-link span {
  flex: 1;
}

.sidebar-arrow {
  font-size: 10px;
  color: var(--gray-300);
  transition: var(--transition);
}

.sidebar-link:hover {
  background: var(--gray-50);
  color: var(--orange);
  border-left-color: var(--orange);
}

.sidebar-link:hover i:first-child {
  color: var(--orange);
}

.sidebar-link:hover .sidebar-arrow {
  color: var(--orange);
  transform: translateX(3px);
}

.sidebar-link.active {
  background: linear-gradient(90deg, rgba(241,138,6,0.08), rgba(241,138,6,0.02));
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 600;
}

.sidebar-link.active i:first-child {
  color: var(--orange);
}

.sidebar-link.active .sidebar-arrow {
  color: var(--orange);
}

/* Page Main Content */
.page-main {
  min-width: 0;
}

.content-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
}

/* ===== CONTENT STYLES (Kurumsal Pages) ===== */
.content-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--orange);
  display: inline-block;
}

.content-body p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.85;
  margin-bottom: 20px;
}

.content-body p strong {
  color: var(--blue);
  font-weight: 600;
}

/* Content Subtitle */
.content-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.content-subtitle:first-of-type {
  margin-top: 0;
}

.content-subtitle::before {
  content: '';
  width: 4px;
  height: 24px;
  background: var(--orange);
  border-radius: 2px;
  flex-shrink: 0;
}

/* Content Divider */
.content-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--gray-200), transparent);
  margin: 36px 0;
  border: none;
}

/* Highlight Quote */
.highlight-quote {
  background: linear-gradient(135deg, rgba(241,138,6,0.06), rgba(33,70,149,0.04));
  border-left: 4px solid var(--orange);
  padding: 24px 28px;
  margin: 30px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.7;
  font-style: italic;
  position: relative;
}

.highlight-quote::before {
  content: '\201C';
  font-size: 48px;
  color: var(--orange);
  opacity: 0.3;
  line-height: 1;
  float: left;
  margin-right: 10px;
  margin-top: -8px;
  font-family: Georgia, serif;
}

/* Content Features */
.content-features {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  border-left: 4px solid var(--orange);
}

.feature-item:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}

.feature-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 6px;
}

.feature-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}

/* Policy List */
.policy-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-item {
  display: flex;
  gap: 18px;
  padding: 22px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--blue);
  align-items: flex-start;
  transition: var(--transition);
}

.policy-item:hover {
  border-color: var(--orange);
  transform: translateX(4px);
}

.policy-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}

.policy-item p {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* Education Grid */
.education-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.edu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.edu-item:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.edu-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: linear-gradient(135deg, rgba(241,138,6,0.12), rgba(241,138,6,0.06));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 17px;
}

.edu-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.4;
}

/* Satisfaction Visual */
.satisfaction-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.satisfaction-item {
  text-align: center;
}

.satisfaction-circle {
  width: 110px;
  height: 110px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(241,138,6,0.25);
}

.satisfaction-percent {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
}

.satisfaction-item p {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

/* Empty Content */
.empty-content {
  text-align: center;
  padding: 40px 20px;
}

.empty-icon {
  font-size: 64px;
  color: var(--gray-200);
  margin-bottom: 24px;
  display: block;
}

.empty-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 12px;
}

.empty-content p {
  color: var(--gray-500);
  font-size: 15px;
  margin-bottom: 30px;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition);
}

.back-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,138,6,0.3);
}

/* ===== CONTACT PAGE - Branch Selector ===== */
.branch-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.branch-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.branch-btn i {
  font-size: 16px;
  color: var(--gray-400);
  transition: var(--transition);
}

.branch-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.branch-btn:hover i {
  color: var(--orange);
}

.branch-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 15px rgba(241,138,6,0.3);
}

.branch-btn.active i {
  color: var(--white);
}

.branch-content {
  display: none;
  animation: fadeInBranch 0.4s ease;
}

.branch-content.active {
  display: block;
}

@keyframes fadeInBranch {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.branch-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
}

.branch-map {
  min-height: 350px;
}

.branch-map iframe {
  border-radius: 0 !important;
}

.branch-info {
  padding: 36px 32px;
}

.branch-info h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.branch-info h3 i {
  color: var(--orange);
}

.branch-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.branch-detail-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: flex-start;
}

.branch-detail-item:last-child {
  border-bottom: none;
}

.branch-detail-item i {
  color: var(--orange);
  font-size: 16px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.branch-detail-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 2px;
}

.branch-detail-item p {
  font-size: 14px;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.5;
}

/* Legacy contact grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.contact-form-card h3,
.contact-info-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-form-card h3 i,
.contact-info-card h3 i {
  color: var(--orange);
}

.form-group { margin-bottom: 20px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  color: var(--gray-800);
  transition: var(--transition);
  background: var(--gray-50);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(241,138,6,0.1);
}

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

.submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,138,6,0.3);
}

.contact-info-card .content-card { height: 100%; }

.contact-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--gray-100);
}

.contact-item:last-of-type { border-bottom: none; }

.contact-item i {
  color: var(--orange);
  font-size: 18px;
  margin-top: 3px;
  width: 20px;
  text-align: center;
}

.contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 4px;
}

.contact-item p {
  font-size: 14px;
  color: var(--gray-500);
  margin: 0;
}

/* ===== FOOTER ===== */
.main-footer {
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-top { padding: 60px 0 40px; }

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-400);
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.footer-contact li i {
  color: var(--orange);
  margin-top: 3px;
  font-size: 13px;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .page-layout {
    grid-template-columns: 260px 1fr;
    gap: 24px;
  }

  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .branch-layout {
    grid-template-columns: 1fr;
  }

  .branch-map {
    min-height: 280px;
  }

  .satisfaction-visual {
    grid-template-columns: repeat(2, 1fr);
  }

  .education-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-inner {
    flex-direction: column;
    gap: 6px;
    padding: 6px 16px;
  }

  .top-social { display: none; }

  .main-header { top: 52px; }

  .mobile-toggle { display: flex; }

  /* Desktop nav is hidden on mobile - using dedicated mobile menu instead */
  .main-nav {
    display: none !important;
  }

  /* Page layout - sidebar becomes horizontal */
  .page-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .sidebar {
    position: static;
  }

  .sidebar-nav ul {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 8px 12px;
    gap: 4px;
  }

  .sidebar-nav ul::-webkit-scrollbar { display: none; }

  .sidebar-nav ul li { flex-shrink: 0; }

  .sidebar-link {
    padding: 10px 16px;
    border-left: none;
    border-radius: 8px;
    font-size: 13px;
    gap: 8px;
    white-space: nowrap;
  }

  .sidebar-link.active {
    background: var(--orange);
    color: var(--white);
    border-left: none;
  }

  .sidebar-link.active i:first-child { color: var(--white); }
  .sidebar-link.active .sidebar-arrow { display: none; }
  .sidebar-arrow { display: none; }

  .hero-gallery {
    height: 80vh;
    min-height: 500px;
  }

  .slide-content {
    left: 5%;
    right: 5%;
    bottom: 15%;
  }

  .slide-content h1 { font-size: 30px; }
  .slide-content p { font-size: 15px; }

  .slider-controls {
    bottom: 24px;
    right: 5%;
  }

  .section-title { font-size: 28px; }
  .mission-section { padding: 60px 0; }

  .mission-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number { font-size: 32px; }
  .services-section { padding: 60px 0; }

  .services-carousel-wrapper { padding: 0 16px; }
  .carousel-btn { display: none; }
  .service-card { flex: 0 0 260px; }
  .cta-content h2 { font-size: 26px; }
  .page-hero h1 { font-size: 26px; }

  .content-card { padding: 28px 20px; }
  .content-title { font-size: 24px; }
  .form-row { grid-template-columns: 1fr; }

  .satisfaction-visual {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .satisfaction-circle {
    width: 90px;
    height: 90px;
  }

  .satisfaction-percent { font-size: 24px; }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-gallery {
    height: 70vh;
    min-height: 420px;
  }
  
  .slide-content h1 { font-size: 24px; }

  .top-contact {
    flex-direction: column;
    gap: 2px;
  }

  .top-divider { display: none; }

  .services-carousel { padding: 10px 2px 16px; }

  .service-card {
    flex: 0 0 240px;
    padding: 28px 20px;
  }

  .education-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== UTILITY ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Slide from left */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale in */
.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Mobile overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== DEDICATED MOBILE MENU ===== */
/* Hidden on desktop - only used on mobile ≤768px */
.mm-overlay,
.mm-drawer {
  display: none;
}

@media (max-width: 768px) {
  /* Overlay */
  .mm-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    -webkit-tap-highlight-color: transparent;
  }
  .mm-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Drawer */
  .mm-drawer {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    width: 85%;
    max-width: 340px;
    height: 100%;
    background: #fff;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    overflow: hidden;
  }
  .mm-drawer.open {
    transform: translateX(0);
  }

  /* Drawer header */
  .mm-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
  }
  .mm-logo {
    height: 36px;
    width: auto;
  }
  .mm-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--gray-700);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .mm-close:active {
    background: var(--gray-200);
  }

  /* Nav area - scrollable */
  .mm-nav {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
  }

  /* Direct link items */
  .mm-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    border-bottom: 1px solid var(--gray-100);
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    transition: background 0.15s ease;
  }
  .mm-link:active {
    background: var(--gray-50);
  }
  .mm-link i {
    width: 20px;
    text-align: center;
    color: var(--blue);
    font-size: 16px;
  }
  .mm-vip {
    color: var(--orange);
    font-weight: 600;
  }
  .mm-vip i {
    color: var(--orange);
  }

  /* Group (dropdown replacement) */
  .mm-group {
    border-bottom: 1px solid var(--gray-100);
  }
  .mm-group-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-800);
    background: none;
    border: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    text-align: left;
    font-family: inherit;
    transition: background 0.15s ease;
  }
  .mm-group-toggle:active {
    background: var(--gray-50);
  }
  .mm-group-toggle span {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .mm-group-toggle span i {
    width: 20px;
    text-align: center;
    color: var(--blue);
    font-size: 16px;
  }
  .mm-arrow {
    font-size: 12px;
    color: var(--gray-400);
    transition: transform 0.3s ease;
  }
  .mm-group.open .mm-arrow {
    transform: rotate(180deg);
  }

  /* Submenu */
  .mm-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--gray-50);
  }
  .mm-group.open .mm-submenu {
    max-height: 800px;
  }
  .mm-submenu a {
    display: block;
    padding: 12px 20px 12px 52px;
    font-size: 14px;
    color: var(--gray-600);
    text-decoration: none;
    border-bottom: 1px solid var(--gray-100);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .mm-submenu a:last-child {
    border-bottom: none;
  }
  .mm-submenu a:active {
    background: var(--gray-200);
    color: var(--orange);
  }

  /* Footer */
  .mm-footer {
    padding: 16px 20px;
    border-top: 1px solid var(--gray-200);
    flex-shrink: 0;
    background: var(--gray-50);
  }
  .mm-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
  }
  .mm-phone i {
    color: var(--orange);
  }
}

/* ===== VIP SECTION ===== */
.vip-section {
  background: #000000;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.vip-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.vip-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.vip-content {
  color: var(--white);
}

.vip-logo-area {
  margin-bottom: 24px;
}

.vip-logo-img {
  height: 60px;
  width: auto;
}

.vip-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.4;
  margin-bottom: 20px;
}

.vip-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.85;
  margin-bottom: 30px;
}

.vip-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
}

.vip-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,138,6,0.4);
}

/* ===== VEHICLE FLEET ===== */
.fleet-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  background: var(--white);
  color: var(--gray-600);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.filter-btn.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.vehicle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vehicle-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.vehicle-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.vehicle-card.hidden { display: none; }

.vehicle-image-wrapper {
  position: relative;
  height: 200px;
  background: var(--gray-100);
  overflow: hidden;
}

.vehicle-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--gray-300);
}

.vehicle-placeholder i { font-size: 48px; margin-bottom: 8px; }
.vehicle-placeholder span { font-size: 13px; }

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

.vehicle-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}

/* Video slides */
.slide-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide[data-type="video"] {
  background: #000;
}

/* Gallery items */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

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

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

.vehicle-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.vehicle-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: var(--orange);
  color: var(--white);
}

.vehicle-info {
  padding: 20px;
}

.vehicle-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 8px;
  line-height: 1.3;
}

.vehicle-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: var(--gray-500);
}

.vehicle-meta i { color: var(--orange); margin-right: 4px; }

.vehicle-detail-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: var(--transition);
}

.vehicle-detail-btn:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

/* Vehicle Detail Page */
.vehicle-detail-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-bottom: 30px;
  align-items: start;
}

.vehicle-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-200);
}

.vehicle-placeholder-large {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 400px;
  color: var(--gray-300);
  background: var(--gray-100);
}

.vehicle-placeholder-large i { font-size: 64px; margin-bottom: 12px; }
.vehicle-placeholder-large span { font-size: 15px; }

.vehicle-detail-info {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-200);
}

.vehicle-detail-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  margin-bottom: 16px;
}

.vehicle-detail-info h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  line-height: 1.3;
}

.vehicle-detail-capacity {
  font-size: 15px;
  color: var(--gray-600);
  margin-bottom: 16px;
  padding: 10px 16px;
  background: var(--gray-50);
  border-radius: 8px;
  display: inline-block;
}

.vehicle-detail-capacity i { color: var(--orange); margin-right: 6px; }
.vehicle-detail-capacity strong { color: var(--blue); }

.vehicle-detail-info p {
  font-size: 14.5px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.vehicle-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

.vehicle-contact-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,138,6,0.4);
}

/* Vehicle Specs */
.vehicle-specs-card { margin-bottom: 24px; }
.vehicle-specs-card h3,
.vehicle-gallery-card h3,
.vehicle-inquiry-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

.spec-item:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.spec-item i {
  font-size: 20px;
  color: var(--orange);
  width: 24px;
  text-align: center;
}

.spec-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}

/* Vehicle Gallery */
.vehicle-gallery-card { margin-bottom: 24px; }

.vehicle-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.gallery-placeholder {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 2px dashed var(--gray-200);
  color: var(--gray-300);
}

.gallery-placeholder i { font-size: 48px; margin-bottom: 12px; }
.gallery-placeholder span { font-size: 14px; color: var(--gray-400); }

/* Vehicle Inquiry */
.vehicle-inquiry-card { margin-bottom: 24px; }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .vehicle-grid { grid-template-columns: repeat(2, 1fr); }
  .specs-grid { grid-template-columns: repeat(3, 1fr); }
  .vehicle-detail-top { grid-template-columns: 1fr; }
  .vip-grid { grid-template-columns: 1fr; gap: 40px; }
  .vip-image img { height: 300px; }
}

@media (max-width: 768px) {
  .vehicle-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .vehicle-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-filters { gap: 6px; }
  .filter-btn { padding: 8px 16px; font-size: 13px; }
  .branch-selector { gap: 8px; }
  .branch-btn { padding: 10px 18px; font-size: 13px; }
  .branch-info { padding: 24px 20px; }
  .vip-image img { height: 240px; }
  .vip-content h2 { font-size: 22px; }
}

@media (max-width: 480px) {
  .specs-grid { grid-template-columns: 1fr; }
  .vehicle-gallery-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== VIP PAGE DARK THEME ===== */
.vip-page { background: #0a0a0a; }

/* VIP Nav Link */
.vip-nav-link {
  font-weight: 600 !important;
}

/* VIP Hero */
.vip-hero-gallery {
  max-height: 750px;
}

.vip-slide-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.4) 100%) !important;
}

.vip-hero-btn {
  background: var(--orange) !important;
  border: 2px solid var(--orange);
}
.vip-hero-btn:hover {
  background: transparent !important;
  border-color: var(--orange);
  color: var(--orange) !important;
}

/* VIP Mission Section */
.vip-mission-section {
  background: #0a0a0a;
  padding: 100px 0;
  text-align: center;
}

.vip-mission-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,138,6,0.1);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(241,138,6,0.2);
}

.vip-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.vip-section-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* VIP Services Section */
.vip-services-section {
  background: #111111;
  padding: 100px 0 80px;
}

.vip-carousel-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
}

.vip-service-card {
  background: #1a1a1a !important;
  border: 1px solid #2a2a2a !important;
}
.vip-service-card:hover {
  background: #1f1f1f !important;
  border-color: var(--orange) !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4) !important;
}
.vip-service-card::before {
  background: linear-gradient(90deg, var(--orange), #f5a623) !important;
}
.vip-service-card h3 { color: #fff !important; }
.vip-service-card p { color: rgba(255,255,255,0.5) !important; }

.vip-service-icon {
  background: rgba(241,138,6,0.12) !important;
  color: var(--orange) !important;
}
.vip-service-card:hover .vip-service-icon {
  background: linear-gradient(135deg, var(--orange), #f5a623) !important;
  color: #fff !important;
}

.vip-carousel-btn {
  background: #1a1a1a !important;
  border-color: #333 !important;
  color: #fff !important;
}
.vip-carousel-btn:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
}

/* VIP Privileges Section */
.vip-privileges-section {
  background: #0a0a0a;
  padding: 100px 0;
}

.vip-privileges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.vip-privilege-card {
  background: #151515;
  border: 1px solid #252525;
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.vip-privilege-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(241,138,6,0.12);
}

.vip-privilege-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: rgba(241,138,6,0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--orange);
  transition: var(--transition);
}
.vip-privilege-card:hover .vip-privilege-icon {
  background: var(--orange);
  color: #fff;
}

.vip-privilege-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}
.vip-privilege-card p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* VIP Fleet Section */
.vip-fleet-section {
  background: #111111;
  padding: 100px 0;
}

.vip-fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vip-fleet-card {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.vip-fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(241,138,6,0.15);
}

.vip-fleet-image {
  height: 220px;
  background: #0f0f0f;
  overflow: hidden;
}
.vip-fleet-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.vip-fleet-card:hover .vip-fleet-image img {
  transform: scale(1.05);
}

.vip-fleet-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #333;
  font-size: 48px;
}

.vip-fleet-info {
  padding: 20px;
}
.vip-fleet-info h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}

/* VIP CTA Section */
.vip-cta-section {
  background: #0a0a0a;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid #1a1a1a;
}
.vip-cta-content h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
}
.vip-cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.vip-cta-primary {
  background: var(--orange) !important;
  color: #fff !important;
}
.vip-cta-primary:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(241,138,6,0.4);
}
.vip-cta-secondary {
  background: transparent !important;
  color: #fff !important;
  border: 2px solid rgba(255,255,255,0.2) !important;
}
.vip-cta-secondary:hover {
  background: #fff !important;
  color: #0a0a0a !important;
  border-color: #fff !important;
}

/* VIP Page Footer override */
.vip-page .main-footer {
  background: #050505;
  border-top: 1px solid #1a1a1a;
}

/* VIP Page Header override on scroll */
.vip-page .main-header.scrolled {
  background: rgba(10,10,10,0.97) !important;
  backdrop-filter: blur(20px);
}
.vip-page .main-header.scrolled .nav-link {
  color: #fff;
}
.vip-page .main-header.scrolled .nav-link:hover {
  color: var(--orange);
}
.vip-page .main-header.scrolled .mobile-toggle span {
  background: #fff;
}

/* VIP Page Responsive */
@media (max-width: 1024px) {
  .vip-privileges-grid { grid-template-columns: repeat(2, 1fr); }
  .vip-fleet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .vip-section-title { font-size: 26px; }
  .vip-mission-section { padding: 60px 0; }
  .vip-services-section { padding: 60px 0; }
  .vip-privileges-section { padding: 60px 0; }
  .vip-fleet-section { padding: 60px 0; }
  .vip-privileges-grid { grid-template-columns: 1fr; }
  .vip-fleet-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .vip-carousel-wrapper { padding: 0 16px; }
  .vip-cta-content h2 { font-size: 26px; }
}
