@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #f1f5f9;
  background-color: #0a0a0f;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #f1f5f9;
}

h1 {
  font-size: 3.5rem;
  font-weight: 800;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2.8rem;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 576px) {
  h1 {
    font-size: 1.9rem;
  }
}

h2 {
  font-size: 2.5rem;
}
@media (max-width: 992px) {
  h2 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.75rem;
  }
}
@media (max-width: 576px) {
  h2 {
    font-size: 1.5rem;
  }
}

h3 {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  h3 {
    font-size: 1.25rem;
  }
}

p {
  margin-bottom: 1.5rem;
  color: #94a3b8;
}

a {
  color: #7c3aed;
  text-decoration: none;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(170.611627907, 128.0953488372, 243.4046511628);
}

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

ul, ol {
  list-style-position: inside;
  margin-bottom: 1.5rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }
}
.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.9rem;
  margin-bottom: 1rem;
}
.section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  border-radius: 3px;
}
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: #94a3b8;
  font-size: 1.05rem;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in {
  animation: fadeIn 1s ease forwards;
}

.slide-up {
  animation: slideUp 0.8s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 0.8s ease forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease forwards;
}

.pulse {
  animation: pulse 2s infinite;
}

.bounce {
  animation: bounce 2s infinite;
}

.rotate {
  animation: rotate 2s linear infinite;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

.delay-4 {
  animation-delay: 0.8s;
}

.delay-5 {
  animation-delay: 1s;
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.header {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: #0a0a0f;
}
@media (max-width: 768px) {
  .header {
    height: auto;
    min-height: 100vh;
  }
}

.navbar {
  height: 68px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  position: fixed;
  top: 40px;
  left: 0;
  z-index: 1030;
  transition: all 0.3s ease;
  background: transparent;
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 1rem;
  }
}
.navbar.scrolled {
  height: 60px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.logo {
  text-decoration: none;
  color: #f1f5f9;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
  padding-bottom: 2px;
}
.logo:hover {
  color: white;
}
.logo .logo-name {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f1f5f9;
  max-width: 200px;
  line-height: 1.25;
}
@media (max-width: 576px) {
  .logo .logo-name {
    font-size: 0.8rem;
    max-width: 150px;
  }
}
.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
}
@media (max-width: 576px) {
  .logo img {
    width: 32px;
    height: 32px;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  gap: 0.25rem;
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: calc(40px + 68px);
    left: 0;
    width: 100%;
    height: 0;
    flex-direction: column;
    background: rgba(17, 17, 24, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    transition: height 0.5s ease;
  }
  .nav-links.active {
    height: 50vh;
    padding: 2rem 0;
  }
}
@media (max-width: 768px) {
  .nav-links li {
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
}
.nav-links li a {
  text-decoration: none;
  color: #94a3b8;
  transition: color 0.3s ease;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 8px;
  transition: all 0.15s ease;
}
.nav-links li a:hover {
  color: rgb(184.7887640449, 194.6314606742, 208.4112359551);
}
.nav-links li a:hover {
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.06);
}
@media (max-width: 768px) {
  .nav-links li a {
    display: block;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
    text-align: center;
  }
}

.hero-section {
  height: calc(100vh - 68px);
  margin-top: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  display: block;
  position: absolute;
  top: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-section::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 992px) {
  .hero-section {
    padding: 0 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-section {
    height: auto;
    flex-direction: column;
    padding: 3rem 1.5rem;
    gap: 3rem;
  }
}
@media (max-width: 576px) {
  .hero-section {
    padding: 2rem 1rem;
    gap: 2rem;
  }
}

.hero-text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-text {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
.hero-text .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: 20px;
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
}
.hero-text .hero-eyebrow i {
  font-size: 0.9rem;
}
.hero-text h1 {
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-text h1 span {
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}
.hero-text p {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 2rem;
  max-width: 460px;
  line-height: 1.75;
}
@media (max-width: 576px) {
  .hero-text p {
    font-size: 1rem;
  }
}
.hero-text .hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-text .hero-cta-group {
    justify-content: center;
  }
}

.hero-image {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hero-image {
    width: 100%;
  }
}
.hero-image::before {
  content: "";
  display: block;
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(244, 114, 182, 0.6));
  border-radius: 20px;
  filter: blur(40px);
  opacity: 0.4;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  max-width: 520px;
  height: 420px;
  object-fit: cover;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
@media (max-width: 768px) {
  .hero-image img {
    max-width: 100%;
    height: 280px;
  }
}

#about {
  background-color: #111118;
  position: relative;
  overflow: hidden;
}
#about::before {
  content: "";
  display: block;
  position: absolute;
  top: -120px;
  right: -120px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
#about .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #about .container {
    flex-direction: column;
  }
}

.about-1 {
  width: 50%;
}
@media (max-width: 768px) {
  .about-1 {
    width: 100%;
    order: 2;
  }
}
.about-1--box {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 3rem;
}
.about-1--box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}
@media (max-width: 768px) {
  .about-1--box {
    padding: 2rem;
  }
}
@media (max-width: 576px) {
  .about-1--box {
    padding: 1.5rem;
  }
}
.about-1--text {
  margin-bottom: 1.5rem;
}
.about-1--text .eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 20px;
  padding: 0.2rem 0.8rem;
  margin-bottom: 1rem;
}
.about-1--text h2 {
  position: relative;
  display: inline-block;
}
.about-1--text h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 48px;
  height: 3px;
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  border-radius: 3px;
}
.about-1--info {
  color: #94a3b8;
  line-height: 1.85;
  font-size: 0.97rem;
}
.about-1--info span {
  font-weight: 700;
  color: #7c3aed;
}

.about-2 {
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (max-width: 768px) {
  .about-2 {
    width: 100%;
    order: 1;
  }
}
.about-2::before {
  content: "";
  display: block;
  position: absolute;
  inset: -16px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.6), rgba(244, 114, 182, 0.6));
  border-radius: 28px;
  filter: blur(36px);
  opacity: 0.3;
  z-index: 0;
}
.about-2--img {
  width: 100%;
  max-width: 440px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}
.about-2--img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .about-2--img {
    max-width: 85%;
  }
}
@media (max-width: 576px) {
  .about-2--img {
    max-width: 100%;
  }
}

#services {
  background-color: #0a0a0f;
  position: relative;
  overflow: hidden;
}
#services::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.14) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  text-align: center;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}
@media (max-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}
.service-card .service-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #7c3aed);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}
.service-card .service-icon i {
  font-size: 1.85rem;
  color: #f8f9fa;
}
.service-card .service-icon i::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.service-card .service-icon-delivery::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z'/%3E%3C/svg%3E");
}
.service-card .service-icon-warehouse::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 11H5m14 0a2 2 0 012 2v6a2 2 0 01-2 2H5a2 2 0 01-2-2v-6a2 2 0 012-2m14 0V9a2 2 0 00-2-2M5 11V9a2 2 0 012-2m0 0V5a2 2 0 012-2h6a2 2 0 012 2v2M7 7h10'/%3E%3C/svg%3E");
}
.service-card .service-icon-driver::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M12 6V4m0 2a2 2 0 100 4m0-4a2 2 0 110 4m-6 8a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4m6 6v10m6-2a2 2 0 100-4m0 4a2 2 0 110-4m0 4v2m0-6V4'/%3E%3C/svg%3E");
}
.service-card h3 {
  margin: 0 0 1rem;
  color: #f1f5f9;
  font-size: 1.2rem;
}
.service-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  flex: 1;
}

#testimonials {
  background-color: #f3f4f6;
  position: relative;
  overflow: hidden;
}
#testimonials::before {
  content: "";
  display: block;
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #06b6d4, #7c3aed);
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.2;
  z-index: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 2rem;
  padding: 2rem;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}
.testimonial-card::before {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239d4edd' viewBox='0 0 24 24'%3E%3Cpath d='M14.017 21v-7.391c0-5.704 3.731-9.57 8.983-10.609l.995 2.151c-2.432.917-3.995 3.638-3.995 5.849h4v10h-9.983zm-14.017 0v-7.391c0-5.704 3.748-9.57 9-10.609l.996 2.151c-2.433.917-3.996 3.638-3.996 5.849h3.983v10h-9.983z'/%3E%3C/svg%3E");
  opacity: 0.2;
}

.testimonial-content {
  margin-bottom: 1.5rem;
}
.testimonial-content p {
  font-style: italic;
  color: #475569;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  align-items: center;
}
.testimonial-author .testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid #7c3aed;
}
.testimonial-author .testimonial-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}
.testimonial-author .testimonial-info p {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #94a3b8;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hiring-banner {
  position: sticky;
  top: 0;
  z-index: 1040;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  color: #fff;
  height: 40px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.hiring-banner.hidden {
  display: none;
}

.hiring-banner__track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 92%, transparent 100%);
}

.hiring-banner__content {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  animation: ticker-scroll 28s linear infinite;
  padding-left: 1rem;
}
.hiring-banner__content:hover {
  animation-play-state: paused;
}

.hiring-banner__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  padding: 0.1rem 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hiring-banner__pill i {
  font-size: 0.85rem;
}

.hiring-banner__dot {
  opacity: 0.45;
  font-size: 1.1rem;
}

.hiring-banner__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.9rem;
  border-radius: 20px;
  cursor: pointer;
  white-space: nowrap;
  margin-right: 0.5rem;
  transition: background 0.15s ease;
}
.hiring-banner__cta:hover {
  background: rgba(255, 255, 255, 0.35);
}
.hiring-banner__cta i {
  font-size: 0.85rem;
}

.hiring-banner__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-right: 0.35rem;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease, color 0.15s ease;
}
.hiring-banner__close:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.hiring-banner__close i {
  font-size: 1rem;
}

#contact {
  background-color: #111118;
  position: relative;
  overflow: hidden;
}
#contact::before {
  content: "";
  display: block;
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.contact-wrapper {
  display: flex;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

.contact-form {
  flex: 1;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 3rem;
}
.contact-form:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}
@media (max-width: 768px) {
  .contact-form {
    padding: 2rem;
  }
}
.contact-form form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 576px) {
  .contact-form form {
    grid-template-columns: 1fr;
  }
}
.contact-form form .form-group:nth-child(5),
.contact-form form .form-group:nth-child(6),
.contact-form form .form-group:nth-child(7),
.contact-form form .form-submit {
  grid-column: span 2;
}
@media (max-width: 576px) {
  .contact-form form .form-group:nth-child(5),
  .contact-form form .form-group:nth-child(6),
  .contact-form form .form-group:nth-child(7),
  .contact-form form .form-submit {
    grid-column: span 1;
  }
}

.contact-info {
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 992px) {
  .contact-info {
    flex: 1;
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 576px) {
  .contact-info {
    flex-direction: column;
  }
}

.contact-info-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}
.contact-info-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.3);
}
@media (max-width: 992px) {
  .contact-info-item {
    flex: 1 0 calc(50% - 1.5rem);
  }
}
@media (max-width: 576px) {
  .contact-info-item {
    flex: 1 0 100%;
  }
}
.contact-info-item .contact-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.contact-info-item .contact-icon i {
  color: #f8f9fa;
  font-size: 1.3rem;
}
.contact-info-item .contact-icon i::before {
  content: "";
  display: inline-block;
  position: relative;
  width: 22px;
  height: 22px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-info-item .contact-icon-location::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M17.657 16.657L13.414 20.9a1.998 1.998 0 01-2.827 0l-4.244-4.243a8 8 0 1111.314 0z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M15 11a3 3 0 11-6 0 3 3 0 016 0z'/%3E%3C/svg%3E");
}
.contact-info-item .contact-icon-phone::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
}
.contact-info-item .contact-icon-email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 8l7.89 5.26a2 2 0 002.22 0L21 8M5 19h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v10a2 2 0 002 2z'/%3E%3C/svg%3E");
}
.contact-info-item h4 {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  color: #f1f5f9;
}
.contact-info-item p {
  margin-bottom: 0.2rem;
  color: #94a3b8;
  font-size: 0.875rem;
}
.contact-info-item p:last-child {
  margin-bottom: 0;
}

.footer {
  background-color: #111118;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 5rem 0 2rem;
}
.footer .container {
  display: flex;
  flex-direction: column;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-content {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-logo {
  flex: 1.5;
}
.footer-logo .logo {
  font-size: 1rem;
  color: #f1f5f9;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (max-width: 576px) {
  .footer-logo .logo {
    justify-content: center;
    flex-direction: column;
  }
}
.footer-logo .logo img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.4);
}
.footer-logo .logo div {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}
.footer-logo p {
  color: #94a3b8;
  font-size: 0.875rem;
  max-width: 260px;
  margin-bottom: 0;
}
@media (max-width: 576px) {
  .footer-logo p {
    max-width: 100%;
  }
}

.footer-links {
  flex: 1;
}
.footer-links h4 {
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.6rem;
}
.footer-links ul li a {
  color: #94a3b8;
  font-size: 0.875rem;
  transition: color 0.15s ease;
}
.footer-links ul li a:hover {
  color: #f1f5f9;
}

.footer-social {
  flex: 1;
}
.footer-social h4 {
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  text-align: center;
}
.footer-bottom p {
  color: #475569;
  font-size: 0.8rem;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 50px;
  padding: 0.7rem 1.75rem;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  outline: none;
  margin: 0.5rem 0.5rem 0.5rem 0;
}
.btn span {
  position: relative;
  display: inline-block;
}
.btn--primary {
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  color: #f8f9fa;
  border: none;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  padding: 0.7rem 1.75rem;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
  color: #f8f9fa;
}
.btn--primary:active {
  transform: translateY(0);
}
.btn--secondary {
  background: transparent;
  color: #f1f5f9;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 58, 237, 0.45);
  color: #f1f5f9;
  transform: translateY(-2px);
}
.btn--secondary:active {
  transform: translateY(0);
}
@media (max-width: 576px) {
  .btn {
    padding: 0.6rem 1.4rem;
    font-size: 0.88rem;
  }
}

.btn--primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 50px;
  padding: 0.7rem 1.75rem;
  font-weight: 600;
  font-size: 0.93rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: none;
  outline: none;
  background: linear-gradient(135deg, #7c3aed, #f472b6);
  color: #f8f9fa;
  border: none;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
  padding: 0.8rem 2rem;
}
.btn--primary span {
  position: relative;
  display: inline-block;
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.5);
  color: #f8f9fa;
}

.form-group {
  margin-bottom: 0;
}
.form-group label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.form-group label .required {
  color: #f472b6;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  color: #f1f5f9;
  font-size: 0.93rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}
.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #475569;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(124, 58, 237, 0.05);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
}
.form-group select option {
  background: #1a1a24;
  color: #f1f5f9;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.form-checkbox input[type=checkbox] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 3px;
  accent-color: #7c3aed;
  cursor: pointer;
}
.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (max-width: 576px) {
  .form-submit {
    grid-column: span 1;
  }
}
.form-submit .submit-button {
  min-width: 200px;
  position: relative;
}
.form-submit .submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}
.form-submit .submit-button.loading {
  color: transparent;
  pointer-events: none;
}
.form-submit .submit-button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rotate 0.7s linear infinite;
}
.form-submit .form-status {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  display: none;
}
.form-submit .form-status.success {
  display: block;
  background: rgba(52, 211, 153, 0.1);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.25);
}
.form-submit .form-status.error {
  display: block;
  background: rgba(244, 114, 182, 0.1);
  color: #f472b6;
  border: 1px solid rgba(244, 114, 182, 0.25);
}

.card {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}
.card__header {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
.card__header h3 {
  margin-bottom: 0;
}
.card__body {
  padding: 2rem;
}
@media (max-width: 576px) {
  .card__body {
    padding: 1.5rem;
  }
}
.card__footer {
  padding: 1.5rem;
  border-top: 1px solid #f3f4f6;
  background-color: #f3f4f6;
}
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-icon-delivery, .service-icon-warehouse, .service-icon-housekeeping {
  display: inline-block;
  width: 36px;
  height: 36px;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: #94a3b8;
  transition: all 0.3s ease;
}
.social-icon i {
  font-size: 1.1rem;
  color: #94a3b8;
  background: none;
  padding: 0;
  border-radius: 0;
  transition: color 0.15s ease;
}
.social-icon:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 58, 237, 0.5);
  background: rgba(124, 58, 237, 0.12);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.2);
}
.social-icon:hover i {
  color: #f1f5f9;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1031;
}
@media (max-width: 768px) {
  .hamburger-menu {
    display: block;
  }
}
.hamburger-menu .line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #f1f5f9;
  margin: 5px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger-menu .line:nth-child(1) {
  margin-top: 0;
}
.hamburger-menu .line:nth-child(3) {
  margin-bottom: 0;
}
.hamburger-menu.active .line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .line:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active .line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1070;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  max-width: 420px;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.07);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
@media (max-width: 576px) {
  .toast {
    right: 1rem;
    left: 1rem;
    min-width: unset;
    max-width: unset;
    bottom: 1.25rem;
  }
}
.toast--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.toast--success {
  background: rgba(5, 46, 22, 0.92);
  border-color: rgba(52, 211, 153, 0.3);
}
.toast--success .toast__msg {
  color: #6ee7b7;
}
.toast--error {
  background: rgba(45, 10, 10, 0.92);
  border-color: rgba(244, 114, 182, 0.3);
}
.toast--error .toast__msg {
  color: #fca5a5;
}
.toast__msg {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}
.toast__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #94a3b8;
  transition: background 0.15s ease;
}
.toast__close:hover {
  background: rgba(255, 255, 255, 0.15);
}
.toast__close i {
  font-size: 0.95rem;
}

/*# sourceMappingURL=main.css.map */
