/* =============================================
   SHIFT 365 — GLOBAL STYLESHEET
   Light Theme | Material Design | Google Sans
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800;900&display=swap');

:root {
  --navy:      #001F3F;
  --navy-mid:  #003366;
  --orange:    #F58220;
  --orange-lt: #FFF3E8;
  --white:     #FFFFFF;
  --grey-50:   #F8FAFC;
  --grey-100:  #F1F5F9;
  --grey-200:  #E2E8F0;
  --grey-400:  #94A3B8;
  --grey-700:  #334155;
  --text:      #1E293B;
  --text-lt:   #64748B;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(0,31,63,.08), 0 1px 2px rgba(0,31,63,.06);
  --shadow:    0 4px 16px rgba(0,31,63,.10);
  --shadow-lg: 0 12px 40px rgba(0,31,63,.14);
  --transition: all .25s cubic-bezier(.4,0,.2,1);
  --font: 'Nunito Sans', 'Google Sans', 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);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .3px;
  box-shadow: 0 4px 20px rgba(245,130,32,.35);
}
.btn-primary:hover {
  background: #e06d10;
  border-color: #e06d10;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,130,32,.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--navy);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-white:hover { background: var(--orange-lt); border-color: var(--orange-lt); }

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,.7);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.btn-track {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-lt);
  color: var(--orange);
  font-weight: 800;
  font-size: .85rem;
  padding: 9px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--orange);
  transition: var(--transition);
}
.btn-track:hover { background: var(--orange); color: var(--white); }

/* ─── SECTION LABELS ─────────────────── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-lt);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-lt);
  max-width: 580px;
  margin-bottom: 40px;
}

/* ─── HEADER ─────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

.logo { display: flex; align-items: center; }
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin-bottom: 14px;
  filter: brightness(1);
}
/* Legacy text logo fallback */
.logo-shift { color: var(--navy); }
.logo-365  { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: .92rem;
  font-weight: 700;
  color: var(--text);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: var(--grey-100);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 4px;
  transition: var(--transition);
}

/* ─── HERO ───────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF4FF 50%, #FFF8F0 100%);
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.shape {
  position: absolute;
  border-radius: 50%;
  opacity: .06;
}
.shape1 {
  width: 600px; height: 600px;
  background: var(--navy);
  top: -200px; right: -150px;
}
.shape2 {
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -100px; left: -100px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tagline {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.18;
  margin-bottom: 20px;
}
.hero-headline .highlight {
  color: var(--orange);
  position: relative;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-lt);
  max-width: 440px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust-row { display: flex; gap: 10px; flex-wrap: wrap; }
.trust-chip {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}

/* Hero visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.hero-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 16px 20px;
  width: 100%;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.hero-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hc-icon { font-size: 2rem; }
.hc-text { display: flex; flex-direction: column; }
.hc-text strong { font-size: .95rem; font-weight: 800; color: var(--navy); }
.hc-text span { font-size: .82rem; color: var(--text-lt); }
.hc2 { border-left: 3px solid var(--orange); }

/* Truck illustration */
.hero-img-wrap {
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}
.truck-illustration { display: flex; flex-direction: column; gap: 8px; align-items: center; }
.truck-body {
  display: flex;
  align-items: flex-end;
  gap: 0;
}
.truck-cab {
  width: 48px; height: 56px;
  background: var(--orange);
  border-radius: 10px 4px 4px 10px;
  position: relative;
}
.truck-cab::before {
  content: '';
  position: absolute;
  top: 8px; left: 8px;
  width: 20px; height: 16px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
}
.truck-cargo {
  width: 160px; height: 72px;
  background: var(--white);
  border-radius: 4px 8px 8px 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--navy);
}
.truck-cargo .orange { color: var(--orange); }
.truck-wheels { display: flex; gap: 120px; }
.wheel {
  width: 28px; height: 28px;
  background: var(--grey-700);
  border-radius: 50%;
  border: 5px solid var(--grey-400);
}

/* ─── EMOTIONAL SECTION ─────────────── */
.emotional-section {
  padding: 80px 0;
  background: var(--white);
}
.emotion-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.emotion-card {
  background: var(--grey-50);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
}
.emotion-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.ec-icon { font-size: 2.5rem; margin-bottom: 12px; }
.emotion-card h3 {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.emotion-card p { font-size: .88rem; color: var(--text-lt); }

/* ─── SERVICES ───────────────────────── */
.services-section {
  padding: 80px 0;
  background: var(--grey-50);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.svc-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  display: block;
  color: inherit;
}
.svc-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.svc-card.svc-highlight {
  background: var(--navy);
  border-color: var(--navy);
}
.svc-card.svc-highlight h3,
.svc-card.svc-highlight p { color: var(--white); }
.svc-card.svc-highlight p { opacity: .8; }
.svc-icon { font-size: 2.4rem; margin-bottom: 16px; }
.svc-card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.svc-card p { font-size: .88rem; color: var(--text-lt); line-height: 1.6; }
.svc-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--orange);
  color: var(--white);
  font-size: .7rem;
  font-weight: 900;
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 1px;
}

/* ─── TRUST BAR ──────────────────────── */
.trust-section {
  padding: 60px 0;
  background: var(--navy);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item { padding: 20px; }
.ti-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.ti-label {
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* ─── READY-TO-LIVE ──────────────────── */
.rtl-section {
  padding: 80px 0;
  background: var(--white);
}
.rtl-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rtl-list {
  list-style: none;
  margin: 20px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rtl-list li {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text);
  padding: 10px 14px;
  background: var(--grey-50);
  border-radius: 8px;
  border-left: 3px solid var(--orange);
}
.rtl-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rtl-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-lg);
  font-weight: 800;
  font-size: 1.05rem;
  transition: var(--transition);
}
.rtl-card:hover { transform: translateX(6px); }
.rc1 { background: var(--navy); color: var(--white); }
.rc2 { background: var(--orange); color: var(--white); }
.rc3 { background: #E8F5E9; color: #2E7D32; border: 1.5px solid #A5D6A7; }
.rc-icon { font-size: 1.8rem; }

/* ─── TESTIMONIALS ───────────────────── */
.testimonials-section {
  padding: 80px 0;
  background: var(--grey-50);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.testi-card:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.stars { font-size: 1.1rem; color: #F59E0B; margin-bottom: 14px; }
.testi-card p {
  font-size: .9rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--grey-200);
}
.avatar {
  width: 40px; height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  font-weight: 800;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: .9rem; color: var(--navy); font-weight: 800; }
.testi-author span { font-size: .78rem; color: var(--text-lt); }

/* ─── CTA BAND ───────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-inner h2 { font-size: 1.9rem; font-weight: 900; color: var(--white); margin-bottom: 8px; }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,.75); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* ─── FOOTER ─────────────────────────── */
.footer {
  background: #020C1B;
  color: rgba(255,255,255,.75);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-col h4 {
  font-size: .85rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col p { font-size: .88rem; margin-bottom: 6px; line-height: 1.7; }
.footer-col a {
  display: block;
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  margin-bottom: 8px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-logo { margin-bottom: 14px; }
.social-row { display: flex; gap: 10px; margin-top: 16px; font-size: 1.3rem; }
.social-row a { font-size: 1.3rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  padding: 20px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

/* ─── WHATSAPP FLOAT ─────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  background: #25D366;
  border-radius: 50%;
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 32px rgba(37,211,102,.6);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,.75), 0 0 0 10px rgba(37,211,102,.12); }
}

/* ─── FORM STYLES ────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-group label {
  font-size: .85rem;
  font-weight: 700;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--grey-200);
  border-radius: 10px;
  padding: 12px 16px;
  outline: none;
  transition: var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(245,130,32,.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ─── PAGE HERO (inner pages) ────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 0 60px;
  text-align: center;
  color: var(--white);
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: .8;
  max-width: 540px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .emotion-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero { padding: 100px 0 60px; }
  .hero-headline { font-size: 2rem; }

  .nav-links {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px 28px;
    border-bottom: 1px solid var(--grey-200);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 12px 16px; border-radius: 10px; }
  .btn-track { margin-top: 8px; justify-content: center; }

  .hamburger { display: flex; }

  .emotion-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .rtl-inner { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; }
}
