/* 845TRIP.com - Hudson Valley Airport Livery Service */
/* Colors inspired by the ad: deep navy, gold, sky blue, clean white */

:root {
  --navy: #0A1F4A;
  --navy-dark: #061532;
  --navy-light: #143A6E;
  --gold: #F4C430;
  --gold-dark: #E0B020;
  --gold-light: #FFD95A;
  --sky: #2E6DB4;
  --sky-light: #4A8FD4;
  --red-accent: #D94E2A;
  --cream: #FDF8F0;
  --white: #FFFFFF;
  --gray-100: #F5F7FA;
  --gray-200: #E8ECF1;
  --gray-600: #4A5568;
  --gray-800: #1A202C;
  --shadow: 0 10px 40px rgba(10, 31, 74, 0.15);
  --radius: 12px;
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Poppins', 'Inter', system-ui, sans-serif;
}

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

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

body {
  font-family: var(--font-main);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(244, 196, 48, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-phone {
  background: var(--navy);
  color: var(--gold);
  font-size: 1.15rem;
  padding: 1rem 2rem;
  letter-spacing: 0.5px;
}

.btn-phone:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 31, 74, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s ease;
}

.header.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
}

.logo span {
  color: var(--gold);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

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

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1.1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
}

.nav-phone:hover {
  background: var(--gold-light);
  color: var(--navy) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy) 0%, #0F2C5C 40%, #1A3F7A 100%);
  overflow: hidden;
  padding: 7rem 1.5rem 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(46, 109, 180, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(244, 196, 48, 0.12) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(244, 196, 48, 0.15);
  border: 1px solid rgba(244, 196, 48, 0.35);
  color: var(--gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 3.8rem);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hero h1 .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  font-family: var(--font-display);
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.15rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-image-wrap {
  position: relative;
  max-width: 380px;
  max-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  border: 3px solid rgba(244, 196, 48, 0.3);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--gold);
  padding: 0.6rem 1.3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  border: 1px solid rgba(244,196,48,0.3);
}

/* Sections common */
.section {
  padding: 5rem 1.5rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--navy);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.1rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Features / Why Us */
.features {
  background: var(--gray-100);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid rgba(10,31,74,0.05);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(10, 31, 74, 0.12);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--sky));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: white;
  padding: 1.5rem;
  text-align: center;
}

.service-card-header h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.service-card-header p {
  font-size: 0.9rem;
  opacity: 0.85;
}

.service-card-body {
  padding: 1.5rem;
}

.service-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-card-body li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.service-card-body li::before {
  content: '✓';
  color: var(--gold-dark);
  font-weight: 800;
  flex-shrink: 0;
}

/* Areas */
.areas {
  background: linear-gradient(180deg, var(--navy) 0%, #0F2C5C 100%);
  color: white;
}

.areas .section-header h2 {
  color: white;
}

.areas .section-header p {
  color: rgba(255,255,255,0.8);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.area-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: background 0.2s ease;
}

.area-card:hover {
  background: rgba(255,255,255,0.14);
}

.area-card h4 {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.area-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* About / Driver */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 4px solid var(--gold);
}

.about-content h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

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

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  color: var(--navy);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  background: rgba(244, 196, 48, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-weight: 700;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 3.5rem 1.5rem;
  text-align: center;
}

.cta-banner h2 {
  color: var(--navy);
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: rgba(10, 31, 74, 0.85);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(10, 31, 74, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-phone:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(10, 31, 74, 0.4);
}

/* Contact */
.contact {
  background: var(--gray-100);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  color: var(--navy);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-item h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.contact-item p, .contact-item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}

.contact-item a:hover {
  color: var(--sky);
}

.contact-form {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
  background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sky);
  background: white;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Footer */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.8);
  padding: 3.5rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo {
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer h4 {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.1rem;
  letter-spacing: 0.5px;
}

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

.footer ul a {
  font-size: 0.95rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

/* Mobile */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 1rem;
  }

  .hero-image-wrap {
    max-width: 300px;
    max-height: 480px;
  }

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }

  .cta-phone {
    font-size: 1.25rem;
    padding: 0.9rem 1.6rem;
  }
}

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

.mt-2 {
  margin-top: 0.5rem;
}
