/* ============================================================
   AD LOGISTICS — HOMEPAGE STYLES
   Includes:
   → Hero Section
   → About Section
   ============================================================ */


/* ============================================================
   1. HERO SECTION
   ============================================================ */
.adlog-hero {
  background: radial-gradient(circle at 20% 30%, #061424 0%, #03101d 100%);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.adlog-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

/* --- Left Text --- */
.adlog-hero-content {
  flex: 1;
  min-width: 300px;
  animation: adlog-text-fade 1.2s ease-out both;
}

.adlog-hero-title {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 250%;
  animation:
    adlog-title-gradient 6s linear infinite,
    adlog-title-float 5s ease-in-out infinite alternate;
  margin: 0;
}

.adlog-hero-desc {
  font-size: 1rem;
  color: #cbd5df;
  margin-top: 1.5rem;
  max-width: 520px;
  line-height: 1.6;
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer across text */
.adlog-hero-desc::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  animation: adlog-shine 7s linear infinite;
}

/* --- Buttons --- */
.adlog-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.adlog-btn-primary,
.adlog-btn-outline {
  padding: 0.9rem 1.8rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Primary button */
.adlog-btn-primary {
  background: linear-gradient(90deg, #00e7e0, #0079ff);
  color: #fff;
  box-shadow: 0 0 12px rgba(0, 231, 224, 0.25);
  border: none;
}
.adlog-btn-primary:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 231, 224, 0.4);
}

/* Outline button */
.adlog-btn-outline {
  border: 1px solid #00e7e0;
  color: #00e7e0;
  background: transparent;
}
.adlog-btn-outline:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 231, 224, 0.4);
  transform: translateY(-3px);
}

/* --- Right Image --- */
.adlog-hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.adlog-hero-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 231, 224, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: adlog-img-float 6s ease-in-out infinite alternate;
}

.adlog-hero-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(0, 231, 224, 0.35);
}


/* ============================================================
   2. ABOUT AD LOGISTICS SECTION
   ============================================================ */
.adlog-about-section {
  background: radial-gradient(circle at 80% 20%, #04101c 0%, #01070f 100%);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.adlog-about-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

/* --- Image --- */
.adlog-about-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: adlog-about-img-fade 1.2s ease-out both;
}

.adlog-about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 231, 224, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: adlog-about-img-float 7s ease-in-out infinite alternate;
}

.adlog-about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 55px rgba(249,178,52,0.35);
}

/* --- Text --- */
.adlog-about-content {
  flex: 1;
  min-width: 300px;
  animation: adlog-about-text-fade 1.3s ease-out both;
}

.adlog-about-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  background: linear-gradient(90deg,#00e7e0,#f9b234,#00e7e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-about-title-gradient 6s linear infinite;
}

.adlog-about-text {
  font-size: 1rem;
  color: #cbd5df;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

/* --- Highlights --- */
.adlog-about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.adlog-about-point {
  font-weight: 600;
  color: #00e7e0;
  text-shadow: 0 0 8px rgba(0,231,224,0.4);
}

/* --- Button --- */
.adlog-about-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.adlog-about-btn:hover {
  background: linear-gradient(90deg,#00e7e0,#f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}


/* ============================================================
   ANIMATIONS (shared across sections)
   ============================================================ */

/* Text fade-in */
@keyframes adlog-text-fade {
  0% { opacity: 0; transform: translateX(-25px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* Heading gradient movement */
@keyframes adlog-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* Heading float motion */
@keyframes adlog-title-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}

/* Text shimmer */
@keyframes adlog-shine {
  0% { left: -100%; }
  50% { left: 100%; }
  100% { left: 100%; }
}

/* Hero image float */
@keyframes adlog-img-float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

/* About image & text fade */
@keyframes adlog-about-img-fade {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-about-text-fade {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* About image float */
@keyframes adlog-about-img-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

/* About heading gradient */
@keyframes adlog-about-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 900px) {
  /* Hero */
  .adlog-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }
  .adlog-hero-title { font-size: 2.2rem; }
  .adlog-hero-desc {
    margin: 1rem auto;
    max-width: 90%;
  }
  .adlog-hero-buttons { justify-content: center; }
  .adlog-hero-image img { max-width: 360px; }

  /* About */
  .adlog-about-inner {
    flex-direction: column;
    text-align: center;
  }
  .adlog-about-title { font-size: 2rem; }
  .adlog-about-text { margin: 1rem auto; }
  .adlog-about-highlights { align-items: center; }
  .adlog-about-image img { max-width: 340px; }
}



/* ============================================================
   3. CORE SERVICES SECTION — 3D HOVER VERSION
   ============================================================ */

.adlog-service-section {
  background: linear-gradient(180deg, #01070f 0%, #061424 100%);
  padding: 5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.adlog-service-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.adlog-service-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-service-title-gradient 6s linear infinite;
  margin-bottom: 1rem;
}

.adlog-service-subtext {
  color: #cbd5df;
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto 3rem auto;
  line-height: 1.6;
}

/* ===== SERVICE GRID ===== */
.adlog-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

/* ===== SERVICE CARD ===== */
.adlog-service-card {
  position: relative;
  background: rgba(8, 14, 24, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,231,224,0.05);
  transition: all 0.3s ease;
  animation: adlog-service-fade-up 1.2s ease both;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
  will-change: transform;
}

/* Card Lighting / Depth */
.adlog-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,231,224,0.06), transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.adlog-service-card:hover::after {
  opacity: 1;
}

/* Reset when cursor leaves */
.adlog-service-card.reset {
  transition: transform 0.6s ease;
  transform: rotateX(0deg) rotateY(0deg) scale(1);
}

/* Hover Lift + Depth Shadow */
.adlog-service-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 35px rgba(0,231,224,0.15);
}

/* ===== CONTENT INSIDE CARD ===== */
.adlog-service-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 0 6px rgba(0,231,224,0.4));
}

.adlog-service-card:hover img {
  transform: translateZ(20px) scale(1.05);
}

.adlog-service-card h3 {
  color: #00e7e0;
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-family: "Orbitron", sans-serif;
  transition: transform 0.3s ease;
}

.adlog-service-card p {
  color: #cbd5df;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

/* ===== BUTTON ===== */
.adlog-service-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.adlog-service-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes adlog-service-fade-up {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes adlog-service-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .adlog-service-title {
    font-size: 2rem;
  }
  .adlog-service-grid {
    gap: 1.5rem;
  }
}




/* ============================================================
   4. WHY CHOOSE US SECTION (Image Left, Text Right)
   ============================================================ */

.adlog-why-section {
  background: linear-gradient(180deg, #01070f 0%, #04101c 100%);
  padding: 5rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.adlog-why-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1250px;
  width: 100%;
  gap: 3rem;
  flex-wrap: wrap;
}

/* ===== LEFT IMAGE ===== */
.adlog-why-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: adlog-why-img-fade 1.3s ease-out both;
}

.adlog-why-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 231, 224, 0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: adlog-why-img-float 7s ease-in-out infinite alternate;
}

.adlog-why-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 60px rgba(0, 231, 224, 0.35);
}

/* ===== RIGHT TEXT ===== */
.adlog-why-content {
  flex: 1;
  min-width: 300px;
  animation: adlog-why-text-fade 1.3s ease-out both;
}

.adlog-why-title {
  font-family: "Orbitron", sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0 0 1rem 0;
  background: linear-gradient(90deg, #00e7e0, #f9b234, #00e7e0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200%;
  animation: adlog-why-title-gradient 6s linear infinite;
}

.adlog-why-text {
  font-size: 1rem;
  color: #cbd5df;
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 2rem;
}

/* ===== POINTS ===== */
.adlog-why-points {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.adlog-why-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(8, 14, 24, 0.6);
  padding: 1rem 1.2rem;
  border-radius: 12px;
  border: 1px solid rgba(0, 231, 224, 0.1);
  box-shadow: 0 0 10px rgba(0,231,224,0.05);
  transition: all 0.3s ease;
}

.adlog-why-point:hover {
  transform: translateX(5px);
  box-shadow: 0 0 20px rgba(0,231,224,0.2);
}

.adlog-why-icon {
  font-size: 1.6rem;
  color: #00e7e0;
  text-shadow: 0 0 8px rgba(0,231,224,0.4);
}

.adlog-why-point h3 {
  color: #00e7e0;
  font-family: "Orbitron", sans-serif;
  font-size: 1.1rem;
  margin: 0 0 0.2rem 0;
}

.adlog-why-point p {
  color: #cbd5df;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
}

/* ===== BUTTON ===== */
.adlog-why-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  border: 1px solid #00e7e0;
  color: #00e7e0;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.adlog-why-btn:hover {
  background: linear-gradient(90deg, #00e7e0, #f9b234);
  color: #000;
  box-shadow: 0 0 20px rgba(0,231,224,0.4);
  transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes adlog-why-title-gradient {
  0% { background-position: 0% center; }
  100% { background-position: 100% center; }
}
@keyframes adlog-why-img-float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
@keyframes adlog-why-text-fade {
  0% { opacity: 0; transform: translateX(30px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes adlog-why-img-fade {
  0% { opacity: 0; transform: translateX(-30px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .adlog-why-inner {
    flex-direction: column;
    text-align: center;
  }
  .adlog-why-title {
    font-size: 2rem;
  }
  .adlog-why-points {
    align-items: center;
  }
  .adlog-why-image img {
    max-width: 340px;
  }
}
