/* ============================================
   MihramVip - Premium Landing Page Styles
   Design System: Dark Luxury + Gold Accents
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --color-black: #0a0a0a;
  --color-anthracite: #1a1a1a;
  --color-anthracite-light: #242424;
  --color-charcoal: #2d2d2d;
  --color-dark-surface: #161616;
  
  /* Gold Palette */
  --color-gold: #c9a84c;
  --color-gold-light: #dfc06f;
  --color-gold-dark: #a8873a;
  --color-gold-muted: rgba(201, 168, 76, 0.15);
  --color-gold-glow: rgba(201, 168, 76, 0.3);
  
  /* Neutrals */
  --color-white: #f5f5f5;
  --color-white-pure: #ffffff;
  --color-gray-100: #e0e0e0;
  --color-gray-200: #c0c0c0;
  --color-gray-300: #a0a0a0;
  --color-gray-400: #808080;
  --color-gray-500: #606060;
  --color-gray-600: #404040;
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;
  
  /* Borders & Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  /* Shadows */
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 16px 48px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.2);
  --shadow-gold-hover: 0 8px 36px rgba(201, 168, 76, 0.35);
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--color-gold);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white-pure);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-gray-300);
  max-width: 600px;
  line-height: 1.8;
}

.gold-text {
  color: var(--color-gold);
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
  margin: 24px 0;
}

.gold-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Scroll Animation Classes ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }
.reveal-delay-7 { transition-delay: 0.7s; }
.reveal-delay-8 { transition-delay: 0.8s; }

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.navbar__logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 2px;
}

.navbar__logo-text span {
  color: var(--color-white-pure);
  font-weight: 400;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-gray-200);
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width var(--transition-smooth);
}

.navbar__links a:hover {
  color: var(--color-gold);
}

.navbar__links a:hover::after {
  width: 100%;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.navbar__cta:hover {
  background: var(--color-gold);
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.navbar__cta svg {
  width: 16px;
  height: 16px;
}

/* Mobile menu toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
  transition: all var(--transition-fast);
  border-radius: 2px;
}

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

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

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

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.8);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.6) 0%,
    rgba(10, 10, 10, 0.3) 40%,
    rgba(10, 10, 10, 0.5) 70%,
    rgba(10, 10, 10, 0.95) 100%
  );
  z-index: 1;
}

/* Subtle gold light effect */
.hero__glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}

.hero__logo {
  width: 140px;
  height: 140px;
  margin: 0 auto 32px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15);
  animation: logoPulse 4s ease-in-out infinite;
  object-fit: cover;
}

@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(201, 168, 76, 0.15); }
  50% { box-shadow: 0 0 80px rgba(201, 168, 76, 0.25); }
}

.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s 0.3s ease forwards;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeInUp 1s 0.5s ease forwards;
}

.hero__title .accent {
  color: var(--color-gold);
  font-style: italic;
}

.hero__description {
  font-size: 1.1rem;
  color: var(--color-gray-200);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 1s 0.7s ease forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 1s 0.9s ease forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-black);
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-hover);
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn--outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-2px);
}

.btn svg {
  width: 18px;
  height: 18px;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeInUp 1s 1.2s ease forwards;
}

.hero__scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gray-400);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--color-anthracite);
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
  padding: 48px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats-bar__item {
  position: relative;
}

.stats-bar__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background: rgba(201, 168, 76, 0.15);
}

.stats-bar__number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-bar__text {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-300);
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-padding);
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

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

.about__images {
  position: relative;
}

.about__img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.about__img-float {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 55%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 2px solid rgba(201, 168, 76, 0.2);
}

.about__badge {
  position: absolute;
  top: -20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: var(--color-black);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about__badge-number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.about__badge-text {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.about__content {
  padding-right: 20px;
}

.about__text {
  font-size: 1.05rem;
  color: var(--color-gray-200);
  line-height: 1.9;
  margin-bottom: 32px;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--color-anthracite);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-smooth);
}

.about__feature:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateX(4px);
}

.about__feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about__feature-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
}

.about__feature-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-gray-100);
}

/* ---------- Fleet Section ---------- */
.fleet {
  padding: var(--section-padding);
  background: var(--color-anthracite);
  position: relative;
}

.fleet__header {
  text-align: center;
  margin-bottom: 64px;
}

.fleet__header .section-label {
  justify-content: center;
}

.fleet__header .section-label::before {
  display: none;
}

.fleet__header .section-subtitle {
  margin: 0 auto;
}

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

.fleet__card {
  background: var(--color-dark-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--transition-smooth);
  position: relative;
}

.fleet__card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: var(--shadow-card-hover);
}

.fleet__card-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.fleet__card-img-wrapper {
  overflow: hidden;
  position: relative;
}

.fleet__card-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(transparent, var(--color-dark-surface));
  pointer-events: none;
}

.fleet__card-body {
  padding: 28px;
  position: relative;
}

.fleet__card-capacity {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--color-gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.fleet__card-capacity svg {
  width: 14px;
  height: 14px;
}

.fleet__card-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-white-pure);
  margin-bottom: 12px;
}

.fleet__card-desc {
  font-size: 0.9rem;
  color: var(--color-gray-300);
  line-height: 1.7;
  margin-bottom: 20px;
}

.fleet__card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fleet__card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  font-size: 0.75rem;
  color: var(--color-gray-200);
}

.fleet__card-tag svg {
  width: 12px;
  height: 12px;
  color: var(--color-gold);
}

/* Resimsiz kart özel stili */
.fleet__card--no-img {
  border-top: 3px solid var(--color-gold);
  background: linear-gradient(145deg, var(--color-dark-surface), rgba(201, 168, 76, 0.03));
}

.fleet__card--no-img .fleet__card-body {
  padding: 36px 32px 32px;
}

.fleet__card--no-img .fleet__card-icon-top {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--color-gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.fleet__card--no-img:hover .fleet__card-icon-top {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  box-shadow: var(--shadow-gold);
}

.fleet__card--no-img .fleet__card-icon-top svg {
  width: 34px;
  height: 34px;
  color: var(--color-gold);
  transition: color var(--transition-smooth);
}

.fleet__card--no-img:hover .fleet__card-icon-top svg {
  color: var(--color-black);
}

.fleet__card--no-img .fleet__card-title {
  text-align: center;
  font-size: 1.6rem;
}

.fleet__card--no-img .fleet__card-desc {
  text-align: center;
  margin-bottom: 28px;
}

.fleet__card--no-img .fleet__card-features {
  justify-content: center;
}

/* ---------- Services Section ---------- */
.services {
  padding: var(--section-padding);
  background: var(--color-black);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: 64px;
}

.services__header .section-label {
  justify-content: center;
}

.services__header .section-label::before {
  display: none;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

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

.service-card {
  background: var(--color-anthracite);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.15);
  box-shadow: var(--shadow-card);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--color-gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.service-card:hover .service-card__icon {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  box-shadow: var(--shadow-gold);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-gold);
  transition: color var(--transition-smooth);
}

.service-card:hover .service-card__icon svg {
  color: var(--color-black);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white-pure);
  margin-bottom: 12px;
}

.service-card__desc {
  font-size: 0.85rem;
  color: var(--color-gray-300);
  line-height: 1.7;
}

/* ---------- Gallery / Showcase ---------- */
.showcase {
  padding: 80px 0;
  background: var(--color-anthracite);
  overflow: hidden;
}

.showcase__header {
  text-align: center;
  margin-bottom: 48px;
}

.showcase__header .section-label {
  justify-content: center;
}

.showcase__header .section-label::before {
  display: none;
}

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

.showcase__item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.showcase__item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

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

.showcase__item:hover img {
  transform: scale(1.08);
}

.showcase__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 50%, rgba(10, 10, 10, 0.7));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.showcase__item:hover::after {
  opacity: 1;
}

/* ---------- TURSAB Badge Section ---------- */
.trust {
  padding: 80px 0;
  background: var(--color-black);
}

.trust__content {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px;
  background: var(--color-anthracite);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(201, 168, 76, 0.1);
}

.trust__image {
  flex-shrink: 0;
  width: 200px;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust__text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white-pure);
  margin-bottom: 12px;
}

.trust__text p {
  font-size: 0.95rem;
  color: var(--color-gray-300);
  line-height: 1.8;
}

.trust__badges {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.trust__badge-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--color-gold-muted);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-gold);
}

.trust__badge-item svg {
  width: 16px;
  height: 16px;
}

/* ---------- Contact Section ---------- */
.contact {
  padding: var(--section-padding);
  background: var(--color-anthracite);
  position: relative;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.contact__info {
  padding-top: 20px;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  background: var(--color-dark-surface);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition-smooth);
}

.contact__item:hover {
  border-color: rgba(201, 168, 76, 0.15);
  transform: translateX(4px);
}

.contact__item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__item-icon svg {
  width: 20px;
  height: 20px;
  color: var(--color-gold);
}

.contact__item-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-gray-400);
  margin-bottom: 6px;
}

.contact__item-value {
  font-size: 1.05rem;
  color: var(--color-white-pure);
  font-weight: 500;
}

.contact__item-value a {
  color: var(--color-white-pure);
  transition: color var(--transition-fast);
}

.contact__item-value a:hover {
  color: var(--color-gold);
}

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.1);
  transition: filter var(--transition-smooth);
}

.contact__map:hover iframe {
  filter: grayscale(0.3) brightness(0.8) contrast(1);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__content {
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--color-white-pure);
  margin-bottom: 20px;
}

.cta-section__desc {
  font-size: 1.05rem;
  color: var(--color-gray-300);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--color-dark-surface);
  border-top: 1px solid rgba(201, 168, 76, 0.08);
  padding: 64px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand img {
  height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--color-gray-300);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__social a:hover {
  background: var(--color-gold);
  border-color: var(--color-gold);
}

.footer__social a svg {
  width: 18px;
  height: 18px;
  color: var(--color-gray-300);
  transition: color var(--transition-fast);
}

.footer__social a:hover svg {
  color: var(--color-black);
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-white-pure);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer__heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--color-gold);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--color-gray-300);
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__links a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
}

.footer__links a svg {
  width: 12px;
  height: 12px;
  color: var(--color-gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.footer__links a:hover svg {
  opacity: 1;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--color-gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer__contact-item p {
  font-size: 0.85rem;
  color: var(--color-gray-300);
  line-height: 1.6;
}

.footer__contact-item a {
  color: var(--color-gray-300);
}

.footer__contact-item a:hover {
  color: var(--color-gold);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

.footer__copyright a {
  color: var(--color-gold);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: var(--color-gray-500);
}

.footer__bottom-links a:hover {
  color: var(--color-gold);
}

/* ---------- WhatsApp Float Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-smooth);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 32px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.5); }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-smooth);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox__close:hover {
  background: var(--color-gold);
}

.lightbox__close svg {
  width: 24px;
  height: 24px;
  color: white;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .fleet__grid .fleet__card:last-child {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__content {
    padding-right: 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  
  .showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  .navbar__links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(16, 16, 16, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    transition: right var(--transition-smooth);
    border-left: 1px solid rgba(201, 168, 76, 0.1);
  }

  .navbar__links.open {
    right: 0;
  }

  .navbar__links .navbar__cta {
    margin-top: 16px;
  }

  .navbar__toggle {
    display: flex;
  }

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

  .stats-bar__item:nth-child(2)::after {
    display: none;
  }

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

  .fleet__grid {
    grid-template-columns: 1fr;
  }
  
  .fleet__grid .fleet__card:last-child {
    grid-column: span 1;
    max-width: none;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust__content {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

  .trust__image {
    width: 160px;
  }

  .trust__badges {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  
  .showcase__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .showcase__item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
  
  .about__img-float {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 16px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__logo {
    width: 100px;
    height: 100px;
  }
  
  .hero__actions {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .about__features {
    grid-template-columns: 1fr;
  }
  
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .showcase__grid {
    grid-template-columns: 1fr;
  }
  
  .showcase__item:first-child {
    grid-column: span 1;
  }
}
