/* DELIVERY SOLUTIONS - Enhanced Beautiful Design */

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
}

body {
  font-family: 'apple-system-ui', 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #000;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  position: relative;
  top: 0;
}

/* Enhanced Hero Section */
.delivery-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px; /* Negative margin to account for fixed header */
  padding-top: 60px; /* Padding to push content below header */
  z-index: 1;
}

.delivery-hero-media {
  background-image: url('../images/deliverybackground.jpg');
  padding-top: 60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.delivery-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.delivery-hero::before {
  content: '';
  padding-top:60px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(255, 107, 53, 0.1) 100%);
  z-index: -1;
}

.delivery-hero-content {
  text-align: center;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
  animation: heroFadeIn 1.5s ease-out;
  transform: translateY(-250px);
}
/* Loading States */
body:not(.loaded) .delivery-hero-content {
  opacity: 0;
  transform: translateY(50px);
}

body.loaded .delivery-hero-content {
  opacity: 1;
  
  transition: all 1s ease-out;
}

@media (min-height: 320px) {/*small phone landscape*/
  .delivery-hero-content {
    transform: translateY(50px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 321px) {/*large phone landscape*/
  .delivery-hero-content {
    transform: translateY(50px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 375px) {/*medium phone landscape*/
  .delivery-hero-content {
    transform: translateY(80px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 568px) {/*small phone po*/
  .delivery-hero-content {
    transform: translateY(150px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 576px) {/*mlap*/
  .delivery-hero-content {
    transform: translateY(130px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 666px) {/*medium phone po*/
  .delivery-hero-content {
    transform: translateY(200px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 755px) {/*large phone po*/
  .delivery-hero-content {
    transform: translateY(250px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 768px) {/*tab phone la*/
  .delivery-hero-content {
    transform: translateY(200px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}

@media (min-height: 810px) {/*llap phone po*/
  .delivery-hero-content {
    transform: translateY(200px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}

@media (min-height: 1024px) {/*tab phone po*/
  .delivery-hero-content {
    transform: translateY(350px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 40px;
    transition: all 0.1s ease-out;
  }
}
@media (min-height: 1440px) {/*4k phone po*/
  .delivery-hero-content {
    transform: translateY(500px);
    transition: all 1s ease-out;
  }
  .delivery-hero-title {
    font-size: 60px;
    transition: all 0.1s ease-out;
  }
}
/* __________________________________________________________ */



.delivery-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.delivery-hero-subtitle {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.delivery-hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: linear-gradient(135deg, #ff6b35, #ff9500);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.delivery-hero-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.delivery-hero-cta:hover::before {
  left: 100%;
}

.delivery-hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
  background: linear-gradient(135deg, #ff9500, #ffb347);
}

/* Innovation Section */
.delivery-innovation-section {
  padding: 120px 0;
  /* background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%); */
  background: white;
  position: relative;
}

.delivery-innovation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.delivery-innovation-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.delivery-innovation-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.delivery-innovation-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.delivery-section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: black;
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.delivery-section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: black;
  margin-bottom: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.delivery-innovation-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: black;
}

.delivery-innovation-description span {
  color: black;
  font-weight: 600;
}

.delivery-innovation-image {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.delivery-innovation-image.animate {
  opacity: 1;
  transform: translateX(0);
}

.delivery-image-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.delivery-image-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.delivery-image-container img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.delivery-image-container:hover img {
  transform: scale(1.02);
}

.delivery-fullscreen-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  cursor: pointer;
}

.delivery-image-container:hover .delivery-fullscreen-icon {
  opacity: 1;
}

.delivery-click-hint {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.delivery-image-container:hover .delivery-click-hint {
  opacity: 1;
}

/* Performance Section */
.delivery-performance-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.delivery-performance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  pointer-events: none;
}

.delivery-performance-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.delivery-performance-text {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.delivery-performance-text.animate {
  opacity: 1;
  transform: translateX(0);
}

.delivery-section-description {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.8;
  color: black;
  margin-bottom: 3rem;
}

.delivery-performance-features {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.delivery-feature-item {
  padding: 1.5rem;
  background: rgba(0,0,0, 0.05);
  border-radius: 15px;
  border-left: 4px solid black;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.delivery-feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  transform: translateX(10px);
}

.delivery-feature-item h4 {
  font-size: 1.3rem;
  color: black;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.delivery-feature-item p {
  color: black;
  line-height: 1.6;
}

.delivery-performance-video {
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.delivery-performance-video.animate {
  opacity: 1;
  transform: translateX(0);
}

.delivery-video-container {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.delivery-video-container:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.delivery-video-container video {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.delivery-video-container:hover video {
  transform: scale(1.02);
}

/* Specifications Section */
.delivery-specs-section {
  padding: 120px 0 0 0;
  background: black;
  position: relative;
}


.delivery-specs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  pointer-events: none;
}

.delivery-specs-container {
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.delivery-specs-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.delivery-specs-title {
  text-align: center;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 4rem;
  color: white;
}

.delivery-specs-table {
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.delivery-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.3s ease;
}

.delivery-spec-row:last-child {
  border-bottom: none;
}

.delivery-spec-row:hover {
  background: rgba(255, 107, 53, 0.05);
}

.delivery-spec-label {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.delivery-spec-value {
  font-size: clamp(0.8rem, 3.5vw, 1rem);
  font-weight: 600;
  color: white;
  text-align: right;
}

/* Call to Action Section */
.delivery-cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.delivery-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.delivery-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.delivery-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.delivery-cta-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 3rem;
  line-height: 1.6;
}

.delivery-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.delivery-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #ff6b35;
  min-width: 180px;
  position: relative;
  overflow: hidden;
  background: transparent;
  color: #ff6b35;
}

.delivery-cta-secondary:hover {
  background: #ff6b35;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

/* Explore More Section */
.delivery-explore-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.delivery-explore-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.delivery-explore-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  background: black;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.delivery-explore-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.delivery-explore-card {
  background: black;
  border-radius: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 107, 53, 0.1);
  opacity: 0;
  transform: translateY(50px);
}

.delivery-explore-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.delivery-explore-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
}

.delivery-explore-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.delivery-explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.delivery-explore-card:hover .delivery-explore-image img {
  transform: scale(1.1);
}

.delivery-explore-content {
  padding: 2rem;
}

.delivery-explore-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

.delivery-explore-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.delivery-explore-link {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.delivery-explore-link:hover {
  color: white;
  transform: translateX(5px);
}

/* Animations */

@keyframes slideInRow {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Fullscreen Styles */
.delivery-image-container:fullscreen,
.delivery-video-container:fullscreen {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.delivery-image-container:fullscreen img,
.delivery-video-container:fullscreen video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .delivery-innovation-content,
  .delivery-performance-container {
    gap: 60px;
  }

  .delivery-specs-container {
    max-width: 1200px;
  }

  .delivery-explore-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .delivery-innovation-content,
  .delivery-performance-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .delivery-specs-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .delivery-explore-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .delivery-hero {
    margin-top: -80px;
    padding-top: 80px;
  }

  
  .delivery-performance-section,
  .delivery-cta-section,
  .delivery-explore-section {
    padding: 80px 0;
  }
}
.delivery-innovation-section,
.delivery-specs-section{
  padding: 80px 0 0 0;
}
@media (max-width: 480px) {
  .delivery-innovation-content,
  .delivery-performance-container {
    padding: 0 15px;
  }

  .delivery-specs-container,
  .delivery-cta-content,
  .delivery-explore-container {
    padding: 0 5px;
  }

  .delivery-spec-category {
    padding: 1.5rem;
  }

  .delivery-explore-content {
    padding: 1.5rem;
  }
}
@media(min-width:768px){
  .delivery-spec-row{
    justify-content: left;
  }
  .delivery-spec-label{
    min-width: 50%;
  }
}