/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&family=Outfit:wght@400;700;900&display=swap'); */

:root {
  --primary-orange: #FF4D0A;
  --secondary-orange: #FF8A1F;
  --primary-gradient: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  --dark-bg: #111111;
  --dark-surface: #1f1f1f;
  --light-color: #f3f4f6;
  --body-text: #4b5563;
  --text-white: #FFFFFF;
  --text-gray: #A0A0A0;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.text-primary {
  color: var(--primary-orange) !important;
}

.text-secondary {
  color: var(--secondary-orange) !important;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--dark-color);
  font-weight: 700;
}

/* Navbar */
.navbar {
  /* background-color: rgba(13, 17, 23, 0.95); */
  background-color: #2B2B2B;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
  padding: 15px 0;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  filter: invert(1);
}

.navbar-brand {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--text-white) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--primary-orange);
}

.nav-link {
  font-weight: 600;
  color: var(--text-white) !important;
  opacity: 0.8;
  margin: 0 10px;
  position: relative;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  bottom: -5px;
  left: 0;
  background: var(--primary-gradient);
  transition: var(--transition);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--text-white) !important;
}

/* Hero Section */
.hero-title {
    font-family: 'Outfit', 'Inter', sans-serif;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(197deg, rgba(17, 17, 17, 0.95) 0%, rgb(134 134 134 / 60%) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 600px;
  color: #e5e7eb;
}

/* Buttons */
.btn-primary-custom {
  background: var(--primary-gradient);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(255, 77, 10, 0.3);
}

.btn-primary-custom:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 77, 10, 0.5);
}

.btn-whatsapp-custom {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.btn-whatsapp-custom:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.btn-outline-custom {
  border: 2px solid white;
  color: white;
  padding: 10px 28px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-outline-custom:hover {
  background-color: #FF8A1F;
  color: var(--primary-color);
}

/* Sections General */
.section-padding {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
}

.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Features/Services Cards */
.service-card {
  background: white;
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-bottom: 4px solid transparent;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  border-bottom: 4px solid transparent;
  border-image: var(--primary-gradient);
  border-image-slice: 1;
}

.service-icon {
  font-size: 3rem;
  color: var(--primary-orange);
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--secondary-orange);
}

.service-title-link {
  text-decoration: none;
  color: var(--dark-color);
  transition: var(--transition);
}

.service-title-link:hover {
  color: var(--primary-color);
}

.service-title-link h2 {
  transition: var(--transition);
}

.service-title-link:hover h2 {
  color: var(--primary-color);
}

/* Featured Jumbotron Minimalis */
.featured-jumbotron {
  padding: 60px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.featured-jumbotron::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 16px 16px 0 0;
}

.featured-jumbotron:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.featured-jumbotron .service-icon {
  font-size: 4rem;
  color: var(--primary-orange);
  background: linear-gradient(135deg, var(--primary-orange), var(--secondary-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 25px;
  display: inline-block;
}

.featured-jumbotron h3 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: var(--dark-bg);
  margin-bottom: 15px;
}

.featured-jumbotron p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Benefit Cards */
.benefit-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 25px;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
  height: 100%;
}

.benefit-card:hover {
  background-color: white;
  border-color: var(--secondary-color);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
}

/* About Section */
.about-img-wrap {
  position: relative;
  /* padding-right: 30px; */
  /* padding-bottom: 30px; */
}

.about-img-wrap::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 0;
  bottom: 0;
  border: 4px solid var(--secondary-color);
  z-index: -1;
  border-radius: 8px;
}

.about-img {
  border-radius: 8px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
}

/* Page Header */
.page-header {
  padding: 150px 0 80px;
  background-color: var(--primary-color);
  color: white;
  text-align: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(86, 85, 85, 0.85);
  z-index: 1;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-header h1 {
  color: white;
  font-size: 3.5rem;
  margin-bottom: 15px;
}

/* Facility Grid */
.facility-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.facility-item img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.facility-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 24, 39, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 25px;
  color: white;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.facility-overlay h4 {
  color: white;
  margin-bottom: 8px;
}

.facility-item:hover img {
  transform: scale(1.1);
}

.facility-item:hover .facility-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Technology & Security Collage */
.facility-collage-wrapper {
  position: relative;
  padding: 40px 20px 40px 0;
  height: 480px;
  display: flex;
  align-items: center;
}

.collage-main-img {
  width: 75%;
  position: relative;
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.collage-main-img:hover {
  transform: translateY(-5px);
}

.collage-main-img img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.collage-sub-img {
  width: 50%;
  position: absolute;
  right: 0;
  bottom: 30px;
  z-index: 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.collage-sub-img:hover {
  transform: translateY(-5px) scale(1.02);
}

.collage-sub-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.collage-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  backdrop-filter: blur(5px);
  z-index: 4;
}

.bg-primary-custom {
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
}

.bg-secondary-custom {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

@media (max-width: 991px) {
  .facility-collage-wrapper {
    height: 400px;
    margin-top: 40px;
  }
  .collage-main-img img {
    height: 280px;
  }
  .collage-sub-img {
    bottom: 20px;
  }
  .collage-sub-img img {
    height: 180px;
  }
}

/* Contact Form */
.contact-wrap {
  background: white;
  padding: 50px;
  border-radius: 8px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.form-control {
  padding: 15px 20px;
  border: 1px solid #e5e7eb;
  border-radius: 4px;
  background-color: #f9fafb;
}

.form-control:focus {
  box-shadow: none;
  border-color: var(--secondary-color);
  background-color: white;
}

.contact-info-item {
  display: flex;
  margin-bottom: 30px;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(13, 44, 84, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  margin-right: 20px;
}

/* Our Logistics Process */
.process-img-wrap {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.process-img-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.process-zoom-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 77, 10, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.process-img-wrap:hover .process-zoom-overlay {
  opacity: 1;
}

.process-zoom-overlay i {
  font-size: 2.5rem;
  margin-bottom: 10px;
  transform: scale(0.5);
  transition: var(--transition);
}

.process-img-wrap:hover .process-zoom-overlay i {
  transform: scale(1);
}

.process-zoom-overlay span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.process-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Our Clients Marquee */
.client-marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.client-marquee-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.client-marquee-track:hover {
  animation-play-state: paused;
}

.client-logo-wrap {
  flex: 0 0 250px;
  margin: 0 20px;
  padding: 30px 15px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  /* filter: grayscale(1); */
  opacity: 0.5;
  height: 120px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.client-logo-wrap:hover {
  filter: grayscale(0);
  opacity: 1;
  background-color: #f8fafc;
  transform: translateY(-5px);
  border-color: rgba(255, 77, 10, 0.1);
}

.client-placeholder {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark-bg);
  text-align: center;
}

.logo-polaris img {
    max-height: 100px;
}

.logo-custom img {
    max-height: 70px;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(var(--scroll-distance, -4060px));
  }
}

/* Footer */
footer {
  /* background-color: rgba(13, 17, 23, 0.95); */
  background-color: #2B2B2B;
  /* background: rgba(20,20,20,.92);
  backdrop-filter: blur(10px); */
  color: #9ca3af;
  padding: 80px 0 30px;
}

.footer-brand {
  font-family: 'Outfit', sans-serif;
  color: white;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  display: inline-block;
  text-decoration: none;
}

.footer-brand span {
  color: var(--primary-orange);
}

.footer-title {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .section-padding {
    padding: 60px 0;
  }
  .about-img-wrap {
    margin-bottom: 40px;
  }
}

/* Gradient text utility */
.text-gradient-orange {
  background: linear-gradient(135deg, #ff6a00 0%, #ee0979 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
  color: white;
  backdrop-filter: blur(4px);
}

.loading-overlay .spinner-border {
  width: 3rem;
  height: 3rem;
  border-width: 4px;
  color: var(--primary-orange) !important;
}

.loading-overlay p {
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  letter-spacing: 0.5px;
}

/* Preview Modal (logistics process image) */
.preview-modal .modal-dialog {
  max-width: 90vw;
}

.preview-modal .modal-content {
  background: transparent;
  border: none;
  box-shadow: none;
}

.preview-modal .btn-close-white {
  background-color: rgba(255,255,255,0.15);
  border-radius: 50%;
  padding: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.preview-modal .btn-close-white:hover {
  background-color: rgba(255,255,255,0.3);
}

/* Footer social media links */
footer .d-flex a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  transition: var(--transition);
  text-decoration: none;
}

footer .d-flex a:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 77, 10, 0.35);
}
