/* ============================================================
   NASEEB TRANSPORTATION — style.css
   Palette: #CC3300 (red), #1a1a1a (near-black), #f5f5f5 (off-white), #888 (grey)
   Fonts: Oswald (headings/display), Open Sans (body)
   ============================================================ */

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

:root {
  --red:      #CC3300;
  --red-dark: #a82800;
  --black:    #1a1a1a;
  --charcoal: #2e2e2e;
  --grey:     #888888;
  --light:    #f5f5f5;
  --white:    #ffffff;
  --border:   #e0e0e0;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --container: 1140px;
  --section-pad: 72px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--black); background: var(--white); line-height: 1.65; font-size: 16px; }

/* ---- CONTAINER ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============================================================ HEADER */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--black);
  border-bottom: 3px solid var(--red);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; padding-bottom: 14px;
}
.logo-wrap { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo-img { height: 48px; width: auto; display: block; }
.logo-text-fallback {
  display: none;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 2px;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* fallback: show text logo if img fails */
.logo-img[style*="display:none"] + .logo-text-fallback { display: flex; }

.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-link {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ccc;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-btn {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--red-dark); }

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  padding: 16px 24px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white); text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a:last-child { border-bottom: none; }

/* ============================================================ HERO */
.hero {
  position: relative;
  background: var(--black);
  background-image: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #2a1010 100%);
  min-height: 560px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(204,51,0,0.03) 40px,
    rgba(204,51,0,0.03) 80px
  );
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); }
.hero-content { position: relative; z-index: 2; padding-top: 64px; padding-bottom: 64px; max-width: 680px; }
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #bbb;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-ghost {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
  padding: 12px 30px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); }

/* ============================================================ TRUST BAR */
.trust-bar {
  background: var(--red);
  padding: 16px 0;
}
.trust-inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.trust-icon { font-size: 1rem; }
.trust-divider { width: 1px; height: 20px; background: rgba(255,255,255,0.35); }

/* ============================================================ SECTION COMMONS */
.section { padding: var(--section-pad) 0; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}
.section-label.light { color: #ff7a5c; }
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.section-heading.light { color: var(--white); }
.section-sub {
  font-size: 1rem;
  color: var(--grey);
  max-width: 600px;
  margin-bottom: 48px;
}
.section-sub.light { color: #ccc; }

/* ============================================================ SERVICES */
.services { background: var(--light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); }
.service-icon-wrap { margin-bottom: 18px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.service-card p { font-size: 0.92rem; color: #666; line-height: 1.6; }

/* ============================================================ WHY US */
.why-us { background: var(--white); }
.why-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}
.why-body { font-size: 0.98rem; color: #555; margin-bottom: 28px; }
.why-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.95rem; color: #444; }
.why-bullet {
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 5px;
}
.why-stat-col { display: flex; flex-direction: column; gap: 20px; }
.stat-card {
  background: var(--black);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  border-left: 4px solid var(--red);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1;
}
.stat-pct { font-size: 1.4rem; }
.stat-label { font-size: 0.82rem; color: #aaa; font-weight: 500; line-height: 1.4; }

/* ============================================================ QUOTE FORM */
.quote-section {
  background: var(--charcoal);
  background-image: linear-gradient(135deg, #1a1a1a 0%, #2e2e2e 100%);
}
.quote-form {
  background: var(--white);
  padding: 40px 40px;
  max-width: 820px;
  margin: 0 auto;
  border-top: 4px solid var(--red);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 0; }
.form-group.full-width { margin-top: 4px; margin-bottom: 20px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--charcoal);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--light);
  border: 1.5px solid var(--border);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: var(--white); }
.form-group textarea { resize: vertical; }
.btn-submit {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--red);
  border: none;
  padding: 15px 40px;
  cursor: pointer;
  transition: background 0.2s;
  display: block;
  width: 100%;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--red-dark); }

/* ============================================================ INSTAGRAM */
.instagram-section { background: var(--light); }
.insta-embed-note {
  background: var(--white);
  border: 1.5px dashed #ccc;
  border-radius: 0;
  padding: 24px 28px;
  margin-bottom: 32px;
  max-width: 600px;
  font-size: 0.93rem;
  color: #555;
  line-height: 1.6;
}
.insta-embed-note a { color: var(--red); font-weight: 600; }
.social-links-row { display: flex; gap: 16px; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 24px;
  transition: opacity 0.2s;
}
.social-btn:hover { opacity: 0.85; }
.social-btn.instagram { background: #E1306C; color: var(--white); }
.social-btn.facebook  { background: #1877F2; color: var(--white); }

/* ============================================================ FOOTER */
.site-footer { background: #111; padding: 56px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .footer-logo { display: flex; }
.footer-tagline { font-size: 0.85rem; color: #777; margin-top: 10px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: 0.88rem; color: #888; margin-bottom: 8px; line-height: 1.5; }
.footer-hours { font-size: 0.82rem !important; color: #666 !important; }
.footer-bottom {
  padding: 18px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: #555; }

/* ============================================================ PAGE HERO (Contact) */
.page-hero {
  background: var(--black);
  padding: 64px 0 56px;
  border-bottom: 3px solid var(--red);
}
.page-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.page-hero-sub { font-size: 1rem; color: #aaa; max-width: 520px; }

/* ============================================================ CONTACT PAGE */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-col-heading {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: 0.5px;
}
.contact-block {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.contact-block:last-child { border-bottom: none; }
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-block h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.contact-block p { font-size: 0.92rem; color: #555; line-height: 1.6; }
.contact-link {
  display: block;
  font-size: 0.92rem;
  color: var(--red);
  text-decoration: none;
  margin-bottom: 4px;
  font-weight: 600;
}
.contact-link:hover { text-decoration: underline; }
.map-link { font-size: 0.85rem; color: var(--red); text-decoration: none; font-weight: 600; }
.map-link:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .form-group { margin-bottom: 0; }

.map-wrapper { width: 100%; line-height: 0; }
.map-wrapper iframe { display: block; filter: grayscale(20%); }

/* ============================================================ RESPONSIVE */
@media (max-width: 900px) {
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-stat-col { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1; min-width: 160px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .main-nav { display: none; }
  .hamburger { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .quote-form { padding: 28px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .trust-divider { display: none; }
  .trust-inner { gap: 10px; justify-content: flex-start; padding: 0 16px; }
  .hero { min-height: 420px; }
}
