/* ==========================================================================
   KASIMLAR TURİZM - MODERN DESIGN SYSTEM & STYLES
   Colors: Deep Navy (#080E1E), Midnight (#0E172A), Gold Accent (#D4AF37 / #E6B800)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary: #0A1128;
  --primary-light: #121F42;
  --secondary: #D4AF37;
  --secondary-hover: #E5C158;
  --accent: #E0A96D;
  --accent-glow: rgba(212, 175, 55, 0.35);
  
  --bg-dark: #070B19;
  --bg-surface: #0E162F;
  --bg-card: rgba(18, 28, 58, 0.75);
  --bg-card-hover: rgba(26, 40, 80, 0.9);
  
  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-dim: #64748B;
  
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(212, 175, 55, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.25);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  
  --container-width: 1240px;
  --header-height: 86px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   TOP NOTIFICATION & CONTACT BAR
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, #050814 0%, #0c1530 50%, #050814 100%);
  border-bottom: 1px solid var(--border);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.top-link:hover {
  color: var(--secondary);
}

.top-link svg {
  width: 14px;
  height: 14px;
  color: var(--secondary);
}

.top-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icon-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-main);
  transition: all 0.25s ease;
}

.social-icon-sm:hover {
  background: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ==========================================================================
   MAIN HEADER & NAVIGATION (GLASSMORPHIC STICKY)
   ========================================================================== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 11, 25, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(7, 11, 25, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-bottom-color: rgba(212, 175, 55, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Brand Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
}

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary) 0%, #b28a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
  color: #070B19;
  font-weight: 900;
  font-size: 22px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-subtitle {
  font-size: 11px;
  font-weight: 600;
  color: var(--secondary);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 8px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #B89228 100%);
  color: #070B19;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-hover) 0%, var(--secondary) 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height) - 40px);
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s infinite alternate ease-in-out;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(7, 11, 25, 0.95) 0%,
    rgba(7, 11, 25, 0.85) 50%,
    rgba(7, 11, 25, 0.65) 100%
  );
}

.hero-content {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-title span {
  background: linear-gradient(135deg, #FFFFFF 30%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-features-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
}

.hero-feature-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}

.hero-feature-text p {
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   QUICK BOOKING / QUOTE BAR
   ========================================================================== */
.quick-bar-wrapper {
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.quick-bar {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.quick-bar-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary);
}

.quick-form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}

.form-control {
  width: 100%;
  background: rgba(7, 11, 25, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.25s ease;
}

.form-control:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

/* ==========================================================================
   SECTION COMMON STYLES
   ========================================================================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: var(--secondary);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   SERVICES CARDS
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
}

.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

.service-badge-cat {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(7, 11, 25, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--secondary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.service-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.service-desc {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 24px;
  flex: 1;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #cbd5e1;
}

.service-point svg {
  color: var(--secondary);
  flex-shrink: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--secondary);
  font-size: 14px;
}

.service-link:hover {
  gap: 12px;
  color: #ffffff;
}

/* ==========================================================================
   STAT COUNTER SECTION
   ========================================================================== */
.stats-section {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #0d1633 50%, var(--bg-dark) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 70px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-card {
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-dim);
}

/* ==========================================================================
   WHY CHOOSE US / ADVANTAGES
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--secondary);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  background: var(--bg-card-hover);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-4px);
}

.feature-box:hover::before {
  transform: scaleY(1);
}

.feature-icon-lg {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  margin-bottom: 20px;
}

.feature-box h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.feature-box p {
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ==========================================================================
   FLEET SHOWCASE CARDS
   ========================================================================== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.fleet-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-lg);
}

.fleet-img-wrap {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.fleet-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-capacity-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(7, 11, 25, 0.85);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.fleet-details {
  padding: 24px;
}

.fleet-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.fleet-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.fleet-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  color: var(--text-muted);
}

/* ==========================================================================
   INSTAGRAM FEED / SHOWCASE
   ========================================================================== */
.ig-section {
  background: #090F24;
  border-top: 1px solid var(--border);
}

.ig-banner {
  background: linear-gradient(135deg, rgba(225, 48, 108, 0.15) 0%, rgba(212, 175, 55, 0.15) 100%);
  border: 1px solid rgba(225, 48, 108, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 36px;
}

.ig-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ig-icon-gradient {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.ig-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.ig-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 25, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
}

.ig-item:hover .ig-overlay {
  opacity: 1;
}

.ig-item:hover .ig-img {
  transform: scale(1.08);
}

/* ==========================================================================
   CALL TO ACTION STRIP
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #101B3D 0%, #0A1128 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
  padding: 80px 0;
  position: relative;
}

.cta-box {
  max-width: 720px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.cta-desc {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #040711;
  border-top: 1px solid var(--border);
  padding: 80px 0 30px;
  color: var(--text-muted);
  font-size: 14.5px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand p {
  margin: 18px 0 24px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item svg {
  color: var(--secondary);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

/* ==========================================================================
   FLOATING ACTION BUTTONS (WHATSAPP & PHONE)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.wa {
  background: #25D366;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

.floating-btn.phone {
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.floating-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  background: #0A1128;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.2s ease;
  border: 1px solid var(--border-gold);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
/* Existing media queries moved to unified responsive section at bottom */

/* ==========================================================================
   OFM382 DEMO INSPIRED COMPONENTS & ENHANCEMENTS
   ========================================================================== */

/* Brand Logo Image */
.header-logo-img {
  height: 58px;
  width: auto;
  display: block;
  transition: transform 0.25s ease;
}

.brand:hover .header-logo-img {
  transform: scale(1.03);
}

/* Header Box: Floating Customer Support */
.header-box-wrap {
  position: absolute;
  right: 24px;
  top: 10px;
  z-index: 1010;
}

.header-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #131E3D 0%, #0A122A 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 10px 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.5);
}

.header-box__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--secondary);
  color: #070B19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.header-box__content {
  display: flex;
  flex-direction: column;
}

.header-box__title {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--secondary);
  font-weight: 700;
}

.header-box__number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.02em;
}

.header-box__number:hover {
  color: var(--secondary);
}

/* Dropdown Navigation */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a::after {
  content: ' ▾';
  font-size: 11px;
  margin-left: 4px;
  color: var(--secondary);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  background: #0B142F;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}

.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.sub-menu li a:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--secondary);
  padding-left: 24px;
}

/* Interactive Hero Slider */
.vs-hero-wrapper {
  position: relative;
  overflow: hidden;
  background: #070B19;
  min-height: 600px;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transform: scale(1.04);
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 11, 25, 0.95) 0%, rgba(7, 11, 25, 0.82) 50%, rgba(7, 11, 25, 0.6) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  padding: 40px 0;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--secondary);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  color: var(--secondary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.slide-title span {
  color: var(--secondary);
}

.slide-desc {
  font-size: 17.5px;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* Slider Controls */
.slider-arrows {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-arrow-btn:hover {
  background: var(--secondary);
  color: #070B19;
  border-color: var(--secondary);
  transform: scale(1.08);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: var(--secondary);
  width: 32px;
  border-radius: 6px;
}

/* 3 Features Strip (Under Slider) */
.features-strip-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: -50px;
  position: relative;
  z-index: 20;
}

.feature-strip-item {
  background: linear-gradient(135deg, #0F1A3A 0%, #080E24 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-strip-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
  border-color: var(--secondary);
}

.feature-strip-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15);
}

.feature-strip-text h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.feature-strip-text p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

/* About Box 2 & About Call Box */
.about-box2 {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-box2-media {
  position: relative;
}

.about-box2-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-gold);
  position: relative;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--secondary) 0%, #b28a2a 100%);
  color: #070B19;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-exp-badge .number {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
}

.about-exp-badge .text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-call {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  margin-top: 30px;
}

.about-call__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--secondary);
  color: #070B19;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.about-call__title {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.about-call__number {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.about-call__number:hover {
  color: var(--secondary);
}

/* FAQ Accordion */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question svg {
  color: var(--secondary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding: 0 24px 20px;
}




/* Base Overflow & Layout Guards */
html, body {
  overflow-x: hidden !important;
  max-width: 100vw;
  width: 100%;
}

body.menu-locked {
  overflow: hidden !important;
  height: 100vh;
}

.mobile-drawer-cta {
  display: none !important;
}

/* ==========================================================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --header-height: 76px;
  }

  .header-box, .header-box-wrap {
    display: none !important;
  }

  .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-sm);
    color: var(--secondary);
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .mobile-toggle:hover, .mobile-toggle.active {
    background: rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
  }

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100dvh - var(--header-height));
    background: rgba(7, 11, 25, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px 18px 40px;
    gap: 8px;
    border-bottom: 2px solid var(--border-gold);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    font-size: 16px;
    font-weight: 600;
    color: #f1f5f9;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
  }

  .nav-link.active, .nav-link:hover {
    color: var(--secondary);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--border-gold);
  }

  .nav-link::after {
    display: none;
  }

  /* Submenu on mobile (Accordion style) */
  .menu-item-has-children {
    position: relative;
    width: 100%;
  }

  .menu-item-has-children > a::after {
    content: '▾';
    font-size: 15px;
    margin-left: auto;
    transition: transform 0.3s ease;
  }

  .menu-item-has-children.submenu-active > a::after {
    transform: rotate(180deg);
  }

  .sub-menu {
    position: static;
    width: 100%;
    min-width: 0;
    background: rgba(11, 20, 47, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-sm);
    margin-top: 6px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    transition: max-height 0.35s ease, padding 0.35s ease;
  }

  .menu-item-has-children.submenu-active .sub-menu {
    max-height: 400px;
    padding: 8px 0;
  }

  .sub-menu li a {
    padding: 10px 18px 10px 24px;
    font-size: 14.5px;
    color: var(--text-muted);
    display: block;
  }

  .sub-menu li a:hover {
    color: var(--secondary);
    background: rgba(212, 175, 55, 0.08);
  }

  .mobile-drawer-cta {
    display: flex !important;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
  }

  .features-strip-3 {
    grid-template-columns: 1fr;
    margin-top: 24px !important;
    gap: 16px;
  }

  .about-box2 {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-exp-badge {
    position: static !important;
    margin-top: 16px;
    display: inline-flex !important;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .quick-form {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .top-bar {
    display: none !important;
  }

  .header-inner {
    height: 68px;
  }

  .header-logo-img {
    height: 46px;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 9.5px;
  }

  #headerQuoteBtn {
    display: none !important;
  }

  .container {
    padding: 0 16px;
  }

  /* Hero Slider Mobile */
  .vs-hero-wrapper, .hero-slider {
    min-height: 520px;
    height: auto;
  }

  .hero-slide {
    padding: 40px 0 60px;
    align-items: center;
  }

  .slide-content {
    padding: 20px 0 50px;
    max-width: 100%;
  }

  .slide-tag {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .slide-title {
    font-size: clamp(23px, 6.5vw, 34px);
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .slide-desc {
    font-size: 14.5px;
    line-height: 1.55;
    margin-bottom: 22px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    height: 46px;
    font-size: 14.5px;
  }

  .slider-arrows {
    display: none;
  }

  .slider-dots {
    bottom: 14px;
  }

  /* 3 Feature Strip */
  .feature-strip-item {
    padding: 20px 18px;
    gap: 16px;
    border-radius: var(--radius-md);
  }

  .feature-strip-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .feature-strip-text h3 {
    font-size: 17px;
  }

  .feature-strip-text p {
    font-size: 13.5px;
  }

  /* Section Spacing */
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: clamp(24px, 5.5vw, 32px);
  }

  .section-desc {
    font-size: 14.5px;
    margin-bottom: 28px;
  }

  /* Grids */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .service-card {
    padding: 22px 18px;
  }

  .fleet-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  .fleet-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px;
  }

  .stat-item {
    padding: 22px 14px;
  }

  .stat-number {
    font-size: 30px;
  }

  .stat-label {
    font-size: 12.5px;
  }

  .quick-form {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .quick-form .form-control, .quick-form .btn {
    height: 48px;
    font-size: 14.5px;
    width: 100%;
  }

  .about-call {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .about-call__number {
    font-size: 18px;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 0 18px;
  }

  .faq-item.active .faq-answer {
    padding: 0 18px 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
    gap: 10px;
  }

  .floating-btn {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 64px;
  }

  .header-inner {
    height: 64px;
  }

  .header-logo-img {
    height: 40px;
  }

  .brand-title {
    font-size: 16px;
  }

  .brand-subtitle {
    font-size: 8.5px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px;
  }

  .stat-item {
    padding: 18px 10px;
  }

  .stat-number {
    font-size: 26px;
  }

  .slide-title {
    font-size: 23px;
  }

  .hero-slide {
    min-height: 480px;
  }

  .vs-hero-wrapper, .hero-slider {
    min-height: 480px;
  }
}
