/* GeeGoTech Trucking - Static Site Styles */
:root {
  --primary: hsl(221, 75%, 39%);
  --primary-foreground: #fff;
  --accent: hsl(25, 95%, 53%);
  --accent-hover: hsl(25, 95%, 48%);
  --gray-50: #f9fafb;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 0.5rem;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

.hidden {
  display: none !important;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-900);
  background: #fff;
  overflow-x: clip;
  line-height: 1.6;
}

/* Layout */
.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}

.header.scrolled {
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.header-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .header-inner { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .header-inner { padding: 0 2rem; }
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--gray-900);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-box {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}

.nav-desktop a,
.nav-desktop button {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  transition: color 0.2s;
}

.nav-desktop a:hover,
.nav-desktop button:hover {
  color: var(--primary);
}

.header-contact {
  display: none;
}

@media (min-width: 1024px) {
  .header-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.header-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.header-contact a:hover {
  color: var(--primary);
}

.icon-svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Mobile menu button */
.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .menu-toggle { display: none; }
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--gray-700);
}

/* Mobile menu */
.mobile-menu {
  display: block;
  background: #fff;
  border-top: 1px solid var(--gray-200);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu-inner {
  padding: 1rem 1.5rem 1.5rem;
}

.mobile-menu-inner a,
.mobile-menu-inner button {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s;
}

.mobile-menu-inner a:hover,
.mobile-menu-inner button:hover {
  color: var(--primary);
}

.mobile-menu-contact {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

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

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Fallback if video is missing or fails to load */
.hero {
  background-color: var(--gray-900);
}

@media (min-width: 1024px) {
  .hero { padding: 0 1rem; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 10;
}

.hero-content {
  position: relative;
  z-index: 20;
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  width: 100%;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero h1 { font-size: 3.75rem; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 4.5rem; }
}

.hero p {
  font-size: 1.25rem;
  color: var(--gray-200);
  margin-bottom: 2.5rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

@media (min-width: 768px) {
  .hero p { font-size: 1.5rem; }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  width: 100%;
}

@media (min-width: 640px) {
  .btn { width: auto; }
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-lg);
}

.btn-accent:hover {
  background: var(--accent-hover);
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid #fff;
  color: #fff;
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--gray-900);
  transform: scale(1.02);
}

/* Sections */
.section {
  padding: 4rem 1rem;
}

@media (min-width: 640px) {
  .section { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .section { padding-left: 2rem; padding-right: 2rem; }
}

.section-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.section-inner-narrow {
  max-width: 56rem;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.25rem;
  color: var(--gray-600);
  max-width: 42rem;
  margin: 0 auto;
}

.bg-gray-50 { background: var(--gray-50); }
.bg-white { background: #fff; }
.bg-primary { background: var(--primary); }
.bg-gray-900 { background: var(--gray-900); }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: all 0.3s;
}

.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: scale(1.02);
}

.service-card .icon-wrap {
  width: 3rem;
  height: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--gray-600);
  font-size: 0.9375rem;
}

/* About section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.about-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
}

/* Why choose us (primary bg) */
.why-section .section-header h2,
.why-section .section-header p {
  color: #fff;
}

.why-section .section-header p {
  color: rgba(229, 231, 235, 1);
}

.benefit-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: background 0.3s;
}

.benefit-card:hover {
  background: rgba(255,255,255,0.2);
}

.benefit-card .icon-wrap {
  width: 2rem;
  height: 2rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--gray-200);
  font-size: 0.9375rem;
}

/* CTA section */
.cta-section {
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 2rem;
}

/* Contact form */
.form-card {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-lg);
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: inherit;
  background: #fff;
  color: var(--gray-900);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.2);
}

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

.btn-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--accent-hover);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 1rem;
}

@media (min-width: 640px) {
  .footer { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .footer { padding-left: 2rem; padding-right: 2rem; }
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.footer-brand .logo-box {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
}

.footer-brand span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.footer p.footer-desc {
  font-size: 0.875rem;
  color: var(--gray-400);
}

.footer h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
}

.footer ul button,
.footer ul a {
  background: none;
  border: none;
  color: var(--gray-300);
  text-decoration: none;
  font-size: 0.9375rem;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s;
}

.footer ul button:hover,
.footer ul a:hover {
  color: #fff;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: #fff;
  text-decoration: none;
}

.footer-contact a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  border-top: 1px solid var(--gray-800);
  padding-top: 2rem;
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-400);
}

/* Spacer for fixed header */
.hero { padding-top: 5rem; }

@media (min-width: 1024px) {
  .hero { padding-top: 0; }
}

/* Legal pages (Privacy Policy, Terms and Conditions) */
.legal-page main {
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .legal-content { padding: 0 1.5rem; }
}

.legal-content h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.legal-content ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
}

.legal-content ul li {
  margin-bottom: 0.5rem;
}

.legal-content a {
  color: var(--primary);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-content .updated {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}
