/* HAULY TOWING - Ultra-Premium UI/UX Design System */
@import url('css/google-fonts.css');

:root {
  --primary-amber: #F3A712;
  --primary-amber-hover: #D9930E;
  --amber-glow: rgba(243, 167, 18, 0.35);
  --dark-charcoal: #0E0E0E;
  --card-dark: #161616;
  --card-glass: rgba(22, 22, 22, 0.85);
  --clean-offwhite: #F4F4F4;
  --accent-red: #C8232A;
  --red-glow: rgba(200, 35, 42, 0.3);
  --pure-white: #FFFFFF;
}

body {
  background-color: var(--dark-charcoal) !important;
  color: var(--pure-white) !important;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Typography Utility Classes */
.font-manrope {
  font-family: 'Manrope', sans-serif;
}

.font-cabin {
  font-family: 'Cabin', sans-serif;
}

.font-instrument {
  font-family: 'Instrument Serif', serif;
}

.font-inter {
  font-family: 'Inter', sans-serif;
}

/* Custom Colors */
.bg-charcoal {
  background-color: var(--dark-charcoal) !important;
}

.bg-card-dark {
  background-color: var(--card-dark) !important;
}

.bg-amber-gold {
  background-color: var(--primary-amber);
}

.text-amber-gold {
  color: var(--primary-amber) !important;
}

.text-offwhite {
  color: var(--clean-offwhite) !important;
}

.border-accent-red {
  border-color: rgba(200, 35, 42, 0.35) !important;
}

/* Text Gradients */
.text-gradient-amber {
  background: linear-gradient(135deg, #FFF0BD 0%, #F3A712 50%, #E08C00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-charcoal);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-amber);
  border-radius: 4px;
}

/* Glassmorphism Navbar */
.navbar-custom {
  background: rgba(14, 14, 14, 0.85) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(243, 167, 18, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}

.nav-link-custom {
  color: var(--pure-white) !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 14px;
  margin: 0 8px;
  position: relative;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

/* Remove default Bootstrap caret arrow pseudo element */
.dropdown-toggle::after {
  display: none !important;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-amber);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  box-shadow: 0 0 8px var(--primary-amber);
}

.nav-link-custom:hover::after,
.nav-link-custom.active::after {
  width: 80%;
}

.nav-link-custom:hover {
  color: var(--primary-amber) !important;
}

/* Dropdown Menu & Trigger Styling */
.nav-item.dropdown .dropdown-chevron {
  transition: transform 0.3s ease;
}

.nav-item.dropdown:hover .dropdown-chevron,
.nav-link.dropdown-toggle.show .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  background-color: rgba(18, 18, 18, 0.95) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(243, 167, 18, 0.4) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.95), 0 0 25px rgba(243, 167, 18, 0.2) !important;
  margin-top: 10px !important;
}

.dropdown-item {
  color: var(--pure-white) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  border-radius: 12px !important;
}

.dropdown-item:hover {
  background-color: rgba(243, 167, 18, 0.18) !important;
  color: var(--primary-amber) !important;
  transform: translateX(6px);
}

/* Hero Section Styling */
.hero-wrapper {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.96;
  z-index: 0;
  filter: brightness(1.08) contrast(1.05);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 50% 35%, rgba(243, 167, 18, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, rgba(14, 14, 14, 0.18) 0%, rgba(14, 14, 14, 0.38) 55%, rgba(14, 14, 14, 0.75) 100%);
  z-index: 1;
}

.hero-content h1,
.hero-content p {
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 6px rgba(0, 0, 0, 1);
}

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

/* Tagline Pill */
.tagline-pill {
  background: rgba(22, 22, 22, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(243, 167, 18, 0.4);
  border-radius: 50px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(243, 167, 18, 0.1);
  transition: all 0.3s ease;
}

.tagline-pill:hover {
  border-color: var(--primary-amber);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(243, 167, 18, 0.25);
}

/* Buttons */
.btn-amber {
  background: linear-gradient(135deg, #F5B027 0%, #F3A712 50%, #D9930E 100%);
  color: var(--dark-charcoal) !important;
  font-family: 'Cabin', sans-serif;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(243, 167, 18, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: 0.5px;
}

.btn-amber:hover {
  background: linear-gradient(135deg, #FFC14D 0%, #F5B027 50%, #E08C00 100%);
  color: var(--dark-charcoal) !important;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(243, 167, 18, 0.6);
}

.btn-amber:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline-custom {
  background: rgba(22, 22, 22, 0.85);
  backdrop-filter: blur(12px);
  color: var(--clean-offwhite) !important;
  border: 1px solid rgba(243, 167, 18, 0.35);
  border-radius: 12px;
  padding: 14px 28px;
  font-family: 'Cabin', sans-serif;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-outline-custom:hover {
  background: rgba(40, 40, 40, 0.95);
  color: var(--pure-white) !important;
  border-color: var(--primary-amber);
  box-shadow: 0 6px 25px rgba(243, 167, 18, 0.25);
  transform: translateY(-3px);
}

/* Glass Cards */
.custom-card {
  background: var(--card-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

.custom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(243, 167, 18, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-card:hover {
  border-color: rgba(243, 167, 18, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(243, 167, 18, 0.15);
}

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

/* Icon Container Gradients */
.icon-badge {
  background: linear-gradient(135deg, rgba(243, 167, 18, 0.2) 0%, rgba(200, 35, 42, 0.15) 100%);
  border: 1px solid rgba(243, 167, 18, 0.4);
  color: var(--primary-amber);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.custom-card:hover .icon-badge {
  transform: scale(1.1) rotate(3deg);
  background: linear-gradient(135deg, rgba(243, 167, 18, 0.35) 0%, rgba(200, 35, 42, 0.25) 100%);
}

/* Form Styling */
.form-control-custom,
.form-select-custom {
  background-color: rgba(14, 14, 14, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: var(--pure-white) !important;
  padding: 12px 16px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-control-custom:focus,
.form-select-custom:focus {
  background-color: #121212;
  border-color: var(--primary-amber);
  box-shadow: 0 0 0 0.25rem rgba(243, 167, 18, 0.25);
  color: var(--pure-white) !important;
}

/* Floating Animations */
@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.animate-float {
  animation: floatSlow 5s ease-in-out infinite;
}

/* Mobile Fixed Call Bar */
.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(14, 14, 14, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(243, 167, 18, 0.3);
  padding: 12px 16px;
}