@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ===== CSS RESET & VARIABLES ===== */
:root {
  --bg-primary: #1a2332;
  --bg-secondary: #243044;
  --bg-dark: #141c28;
  --bg-card: #1e2d42;
  --accent: #e8531e;
  --accent-hover: #ff6b3a;
  --accent-glow: rgba(232, 83, 30, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #b0bec9;
  --text-muted: #6b7d94;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius: 14px;
  --radius-sm: 10px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

/* ===== TOP BAR (Logo) ===== */
.top-bar {
  background: var(--bg-dark);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--accent);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.navbar::-webkit-scrollbar {
  display: none;
}

.nav-list {
  display: flex;
  justify-content: center;
  min-width: max-content;
  padding: 0;
}

.nav-list li {
  flex-shrink: 0;
}

.nav-list li a {
  display: block;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  position: relative;
}

.nav-list li a:hover,
.nav-list li a.active {
  color: var(--accent);
  background: rgba(232, 83, 30, 0.08);
  border-bottom-color: var(--accent);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at 30% 50%, rgba(232, 83, 30, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(232, 83, 30, 0.06) 0%, transparent 50%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 550px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(232, 83, 30, 0.12);
  border: 1px solid rgba(232, 83, 30, 0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 7vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px var(--accent-glow);
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px var(--accent-glow);
}

/* Floating shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: var(--accent);
}

.shape-1 {
  width: 250px;
  height: 250px;
  top: -80px;
  right: -60px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 180px;
  height: 180px;
  bottom: 10%;
  left: -50px;
  animation: float 10s ease-in-out infinite reverse;
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 50px 20px;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(232, 83, 30, 0.1);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 5.5vw, 32px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}

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

.section-desc {
  font-size: 14px;
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 83, 30, 0.2);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: rgba(232, 83, 30, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about-content {
  max-width: 500px;
  margin: 0 auto;
}

.about-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: var(--transition);
}

.value-card:hover {
  border-color: rgba(232, 83, 30, 0.2);
  transform: translateY(-2px);
}

.value-icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.value-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
}

.value-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 500px;
  margin: 0 auto;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(232, 83, 30, 0.2);
  transform: translateY(-2px);
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ===== SERVICES ===== */
.services-list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: var(--transition);
}

.service-item:hover {
  border-color: rgba(232, 83, 30, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(232, 83, 30, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.service-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.service-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== FLEET ===== */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.fleet-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
  transition: var(--transition);
}

.fleet-card:hover {
  border-color: rgba(232, 83, 30, 0.2);
  transform: translateY(-2px);
}

.fleet-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

.fleet-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
}

/* ===== VALIDATION FORM ===== */
.validation-page {
  min-height: calc(100vh - 120px);
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.form-container {
  width: 100%;
  max-width: 420px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  animation: fadeInUp 0.6s ease-out;
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

.form-header-icon {
  width: 56px;
  height: 56px;
  background: rgba(232, 83, 30, 0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 14px;
}

.form-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
}

.form-header p {
  font-size: 13px;
  color: var(--text-secondary);
}

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input {
  width: 100%;
  padding: 13px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.btn-confirm {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 25px var(--accent-glow);
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 35px var(--accent-glow);
}

.btn-confirm:active {
  transform: translateY(0);
}

/* Success Modal */
.success-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.success-overlay.show {
  display: flex;
}

.success-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  max-width: 340px;
  width: 100%;
  animation: scaleIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(76, 175, 80, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 16px;
  animation: successPulse 1s ease-in-out infinite;
}

.success-modal h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #4CAF50;
}

.success-modal p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 40px 20px 30px;
  text-align: center;
  position: relative;
  background: linear-gradient(180deg, rgba(232, 83, 30, 0.06) 0%, transparent 100%);
}

.page-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.page-breadcrumb a {
  color: var(--accent);
  transition: var(--transition);
}

.page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 5.5vw, 30px);
  font-weight: 700;
}

/* ===== POLICIES ===== */
.policies-list {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.policy-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.policy-link:hover {
  border-color: rgba(232, 83, 30, 0.2);
  color: var(--accent);
  transform: translateX(4px);
}

.policy-link .policy-icon {
  font-size: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 36px 20px 24px;
}

.footer-addresses {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 24px;
}

.address-card {
  padding: 18px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.address-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.address-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-copy {
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes successPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-8px); }
  50% { transform: translateX(8px); }
  75% { transform: translateX(-4px); }
}

.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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