/* ============================================================
   GOLDEN TOUCH DELIVERY SERVICES — MAIN STYLES
   Color theme: Gold (#f5a623) + Black (#0a0a0a / #111)
   ============================================================ */

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

body {
  font-family: 'Inter', 'Poppins', sans-serif;
  background: #fff;
  color: #1a1a1a;
  overflow-x: hidden;
}

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

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f5a623, #e8860a);
  color: #000;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245, 166, 35, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover {
  border-color: #f5a623;
  background: rgba(245, 166, 35, 0.08);
}

.btn-outline--dark {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.4);
}
.btn-outline--dark:hover {
  background: rgba(245, 166, 35, 0.08);
}

.btn-outline--gold {
  color: #f5a623;
  border-color: rgba(245, 166, 35, 0.5);
}
.btn-outline--gold:hover {
  background: rgba(245, 166, 35, 0.08);
  border-color: #f5a623;
}

.btn-outline--rider {
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-outline--rider:hover {
  border-color: #f5a623;
  background: rgba(245,166,35,0.08);
}

/* ---- SECTION COMMON ---- */
.section-tag {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.4);
  color: #c47f00;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  color: #0a0a0a;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: #667085;
  margin-bottom: 56px;
  line-height: 1.7;
}

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-main {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.logo-tagline {
  font-size: 10px;
  font-weight: 400;
  color: #f5a623;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #aaa;
  padding: 8px 16px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover,
.nav-link--active {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.nav-link--cta {
  background: linear-gradient(135deg, #f5a623, #e8860a);
  color: #000 !important;
  font-weight: 700;
  border-radius: 50px;
  padding: 9px 22px;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(245, 166, 35, 0.3);
}
.nav-link--cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 166, 35, 0.45);
  background: linear-gradient(135deg, #f5a623, #e8860a) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 12px 20px 20px;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-link { padding: 12px 16px; font-size: 15px; }
.mobile-menu .nav-link--cta { margin-left: 0; margin-top: 8px; text-align: center; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1000 100%);
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 120px 120px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.08) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background: radial-gradient(ellipse 80% 80% at 70% 50%, rgba(245,166,35,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.45);
  color: #f5a623;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
  animation: badge-pulse 2.5s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { border-color: rgba(245, 166, 35, 0.45); }
  50%       { border-color: rgba(245, 166, 35, 0.9); box-shadow: 0 0 18px rgba(245,166,35,0.25); }
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 24px;
}

.hero-title-gold {
  background: linear-gradient(135deg, #f5a623, #ffd166);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: #999;
  line-height: 1.75;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image-wrap {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  width: 100%;
  max-width: 1220px; 
  height: auto; 
  border-radius: 24px; 
  object-fit: cover;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3); 
}

@media (max-width: 768px) {
  .hero-img {
    border-radius: 12px; 
  }
  
  .hero-badge-float {
    transform: scale(0.8); 
  }
}

.hero-badge-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 166, 35, 0.35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.hero-badge-float img {
  filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(1.1);
}

.hero-badge-float--1 { bottom: 24px; left: -20px; }
.hero-badge-float--2 { top: 24px;    right: -20px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: #fff;
}

.about-desc {
  font-size: 16px;
  color: #667085;
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 56px;
}

.about-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 40px;
}

.about-stat {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
}

.about-stat-num {
  font-family: 'Poppins', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: #f5a623;
  margin-bottom: 6px;
}

.about-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: #8d8d8d;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-stat-divider {
  width: 1px;
  height: 60px;
  background: #eaecf0;
  flex-shrink: 0;
}

/* ============================================================
   POSITIONS
   ============================================================ */
.positions {
  padding: 100px 0;
  background: #f9fafb;
}

.positions .section-title { margin-bottom: 12px; }
.positions .section-sub   { margin-bottom: 48px; }

.positions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.position-card {
  background: #fff;
  border: 1px solid #eaecf0;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.position-card--featured {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.12);
}

.position-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.position-icon { font-size: 36px; }

.position-badge {
  background: rgba(245, 166, 35, 0.12);
  color: #c47f00;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.position-title {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 12px;
}

.position-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: #8d8d8d;
  margin-bottom: 24px;
}

.position-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.position-meta img {
  filter: invert(55%) sepia(10%) saturate(300%) hue-rotate(0deg);
  display: inline;
}

.position-requirements {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

.position-requirements li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #364254;
  font-weight: 500;
}

.position-requirements img {
  filter: invert(35%) sepia(80%) saturate(400%) hue-rotate(5deg) brightness(0.9);
  flex-shrink: 0;
}

.position-btn {
  width: 100%;
  justify-content: center;
}

/* Offers card */
.position-offers {
  background: #0a0a0a;
  border-radius: 20px;
  padding: 36px;
  color: #fff;
}

.offers-header {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 20px;
  margin-bottom: 28px;
}

.offers-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.offer-item:last-child { border-bottom: none; }

.offer-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f5a623;
  margin-top: 5px;
  flex-shrink: 0;
}

.offer-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-text strong {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.offer-text span {
  font-size: 13px;
  color: #8d8d8d;
}

/* ============================================================
   REQUIREMENTS (Ship Pool style grid)
   ============================================================ */
.requirements {
  padding: 100px 0;
  background: #fff;
}

.requirements .section-title { margin-bottom: 52px; }

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.req-card {
  background: #f9fafb;
  border: 1px solid #eaecf0;
  border-radius: 16px;
  padding: 32px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-align: center;
}

.req-card:hover {
  border-color: rgba(245, 166, 35, 0.4);
  box-shadow: 0 8px 28px rgba(232, 145, 3, 0.1);
}

.req-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(1);
}
.req-iconUEA {
  width: 52px;
  height: 52px;
  margin: 0 auto 20px;
  filter: invert(70%) sepia(80%) saturate(270%) hue-rotate(5deg) brightness(2);
}
.req-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.req-card p {
  font-size: 13px;
  color: #667085;
  line-height: 1.65;
}

/* ============================================================
   HOW TO APPLY (Book Consignment style)
   ============================================================ */
.how-to-apply {
  padding: 100px 0;
  background: #0a0a0a;
}

.how-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.how-text {
  flex: 1;
}

.how-to-apply .section-tag {
  background: rgba(245, 166, 35, 0.12);
  border-color: rgba(245, 166, 35, 0.4);
  color: #f5a623;
}

.how-to-apply .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.how-desc {
  font-size: 15px;
  color: #8d8d8d;
  line-height: 1.75;
  margin-bottom: 40px;
}

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
}

.how-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.how-step:last-child { border-bottom: none; }

.how-step-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: rgba(245, 166, 35, 0.2);
  line-height: 1;
  min-width: 48px;
  flex-shrink: 0;
}

.how-step-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 4px;
}

.how-step-info strong {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.how-step-info span {
  font-size: 14px;
  color: #8d8d8d;
}

.how-step-info a {
  color: #f5a623;
  font-weight: 600;
}

.how-image-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.how-img {
  width: 100%;
  max-width: 440px;
  border-radius: 20px;
  object-fit: cover;
  opacity: 0.92;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 100px 0;
  background: #f9fafb;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact .section-title { color: #0a0a0a; }

.contact-desc {
  font-size: 15px;
  color: #667085;
  line-height: 1.8;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 500;
  color: #364254;
}

.contact-item img {
  filter: invert(70%) sepia(80%) saturate(500%) hue-rotate(5deg) brightness(1);
  flex-shrink: 0;
}

.contact-item a {
  color: #f5a623;
  font-weight: 600;
}

.contact-cta-card {
  background: #0a0a0a;
  border-radius: 24px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid rgba(245, 166, 35, 0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.contact-cta-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.contact-cta-card p {
  font-size: 14px;
  color: #8d8d8d;
  margin-bottom: 28px;
  line-height: 1.65;
}

.contact-cta-card .btn-primary {
  width: 100%;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: #555;
  font-size: 12px;
}
.contact-divider::before,
.contact-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.contact-cta-card .btn-outline {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 0 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-nav {
  display: flex;
  gap: 32px;
}

.footer-nav a {
  font-size: 14px;
  color: #8d8d8d;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #f5a623; }

.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin-bottom: 28px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: #555;
}

.footer-hashtags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-hashtags span {
  font-size: 12px;
  color: #444;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero {
    padding: 120px 60px 80px;
    gap: 40px;
  }

  .hero-title { font-size: 46px; }

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

  .how-inner { gap: 48px; }

  .contact-inner { gap: 40px; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links  { display: none; }

  .navbar-inner { padding: 0 20px; }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    gap: 48px;
    text-align: center;
  }

  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }

  .hero-image-wrap { width: 100%; }
  .hero-img { max-width: 100%; border-radius: 16px; }

  .hero-badge-float--1 { left: 8px;  bottom: 16px; font-size: 12px; padding: 8px 14px; }
  .hero-badge-float--2 { right: 8px; top: 16px;    font-size: 12px; padding: 8px 14px; }

  .section-inner { padding: 0 24px; }

  .about { padding: 72px 0; }
  .about-stats { flex-wrap: wrap; border: none; gap: 0; }
  .about-stat { min-width: 50%; border: 1px solid #eaecf0; padding: 24px 16px; }
  .about-stat-divider { display: none; }

  .positions { padding: 72px 0; }
  .positions-grid { grid-template-columns: 1fr; }

  .requirements { padding: 72px 0; }
  .req-grid { grid-template-columns: 1fr 1fr; }

  .how-to-apply { padding: 72px 0; }
  .how-inner { flex-direction: column; gap: 40px; padding: 0 24px; }
  .how-image-wrap { display: none; }

  .contact { padding: 72px 0; }
  .contact-inner { grid-template-columns: 1fr; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-nav { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-inner { padding: 0 24px; }
  .section-title { font-size: 30px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 15px; }
  .btn-primary, .btn-outline { font-size: 14px; padding: 12px 24px; }

  .req-grid { grid-template-columns: 1fr; }
  .req-card { text-align: left; display: flex; flex-direction: column; align-items: flex-start; }

  .contact-cta-card { padding: 32px 24px; }

  .about-stat { min-width: 50%; }
}



.rider-avatar {
  max-width: 100%; 
  height: auto;   
}

.sidebar-icon img.inverted-white {
  filter: brightness(0) invert(1);
}


html {
  scroll-behavior: smooth;
}