/* ====================================================
   ZEAL INTERNATIONAL - VISUAL ENHANCEMENTS
   Modern Image Sections, Better Typography, Animations
   ==================================================== */

/* ---- FONT UPGRADE: Import additional premium fonts ---- */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Syne:wght@400;500;600;700;800&display=swap");

/* ---- ROOT OVERRIDES ---- */
:root {
  --font-display: "Syne", "Cormorant Garamond", Georgia, serif;
  --font-heading: "Plus Jakarta Sans", "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", "DM Sans", system-ui, sans-serif;
  --navy-glow: rgba(27, 42, 74, 0.35);
  --orange-glow: rgba(232, 101, 10, 0.35);
  --gold-glow: rgba(200, 155, 42, 0.35);
}

/* ====================================================
   GLOBAL BODY / TEXT UPGRADES
   ==================================================== */
body {
  font-family: var(--font-body);
  letter-spacing: -0.01em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.025em;
}

/* ====================================================
   HERO SECTION - IMAGE BACKGROUND UPGRADE
   ==================================================== */

/* Split Hero with real image on right */
.hero-image-panel {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.hero-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.05);
  transition: transform 8s ease;
  animation: heroImgZoom 12s ease-in-out infinite alternate;
}

@keyframes heroImgZoom {
  0% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1.12);
  }
}

.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 14, 30, 0.7) 0%,
    rgba(8, 14, 30, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero-image-panel .hero-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(8, 14, 30, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 101, 10, 0.3);
  border-radius: 14px;
  padding: 12px 18px;
  color: white;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-image-panel .hero-img-badge i {
  color: var(--orange);
  font-size: 1rem;
}

/* ====================================================
   ABOUT SECTION - REAL IMAGE REDESIGN
   ==================================================== */
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.about-main-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-main-image {
  transform: scale(1.03);
}

.about-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    to top,
    rgba(15, 29, 54, 0.6) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.about-img-floating-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(8, 14, 30, 0.88);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-img-floating-card .afc-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: white;
  flex-shrink: 0;
}

.about-img-floating-card .afc-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.about-img-floating-card .afc-text span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Experience badge floating top-right */
.about-exp-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 3;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  border-radius: 20px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(232, 101, 10, 0.5);
}

.about-exp-badge .exp-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  display: block;
}

.about-exp-badge .exp-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

/* ====================================================
   PRODUCT SECTION - IMAGE CARD UPGRADE
   ==================================================== */

/* Background image behind product section */
.product-cat-section {
  background: linear-gradient(180deg, #f4f6fb 0%, #eef1f8 100%);
  position: relative;
}

.product-img-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 280px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-lg);
}

.product-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-img-card:hover img {
  transform: scale(1.06);
}

.product-img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 42, 0.85) 0%,
    rgba(10, 18, 42, 0.2) 60%,
    transparent 100%
  );
  pointer-events: none;
}

.product-img-card .pic-label {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
}

.product-img-card .pic-count {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(232, 101, 10, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-heading);
  letter-spacing: 0.06em;
}

/* ====================================================
   SERVICES SECTION - DARK BG WITH IMAGE STRIP
   ==================================================== */

/* Image strip banner above services */
.services-img-banner {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 60px;
}

.services-img-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: heroImgZoom 15s ease-in-out infinite alternate;
}

.services-img-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 13, 30, 0.82) 0%,
    rgba(27, 42, 74, 0.5) 100%
  );
  z-index: 1;
}

.services-img-banner .sib-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 40px 50px;
}

.services-img-banner .sib-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  color: white;
  margin: 0;
  letter-spacing: -0.03em;
}

.services-img-banner .sib-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin: 10px 0 0;
  max-width: 500px;
}

/* ====================================================
   WHY US SECTION - ENHANCED WITH VISUAL
   ==================================================== */
.why-us-image-strip {
  position: relative;
  height: 220px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 50px;
}

.why-us-image-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-us-image-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(5, 13, 30, 0.85) 0%,
    rgba(27, 42, 74, 0.6) 100%
  );
  z-index: 1;
}

.why-us-image-strip .wuis-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

.why-us-image-strip .wuis-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 800;
  color: white;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
}

.why-us-image-strip .wuis-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  margin: 0;
}

/* ====================================================
   VAS SECTION - IMAGE PANEL
   ==================================================== */
.vas-image-panel {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
}

.vas-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.vas-image-panel:hover img {
  transform: scale(1.04);
}

.vas-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(5, 13, 30, 0.9) 40%,
    rgba(5, 13, 30, 0.4) 100%
  );
  z-index: 1;
}

.vas-image-panel .vip-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 40px 50px;
}

.vas-image-panel .vip-content .vip-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.vas-image-panel .vip-content .vip-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  margin: 0;
  max-width: 450px;
  line-height: 1.7;
}

/* ====================================================
   FLOATING IMAGE CARDS (for various sections)
   ==================================================== */
.floating-img-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.floating-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ====================================================
   SECTION LABEL UPGRADE
   ==================================================== */
.section-label {
  background: linear-gradient(
    135deg,
    rgba(232, 101, 10, 0.1),
    rgba(200, 155, 42, 0.05)
  );
  padding: 6px 16px 6px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(232, 101, 10, 0.2);
  gap: 8px;
}

.section-label::before {
  width: 18px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
}

/* ====================================================
   CARD HOVER ENHANCEMENTS - GLOW EFFECTS
   ==================================================== */
.service-card:hover,
.why-card:hover,
.product-cat-card:hover {
  box-shadow:
    0 24px 64px rgba(27, 42, 74, 0.16),
    0 0 0 1px rgba(232, 101, 10, 0.08);
}

/* ====================================================
   STATS / COUNTERS - ANIMATED NUMBERS
   ==================================================== */
.stat-number-animated {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

/* ====================================================
   GLASSMORPHISM CARDS
   ==================================================== */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
}

.glass-card-dark {
  background: rgba(8, 14, 30, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

/* ====================================================
   SECTION DIVIDERS - MODERN WAVY
   ==================================================== */
.section-wave-divider {
  display: block;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.section-wave-divider svg {
  width: 100%;
  height: 100%;
}

/* ====================================================
   IMAGE REVEAL ANIMATION (scroll-based via AOS)
   ==================================================== */
[data-aos="img-reveal"] {
  clip-path: inset(0 100% 0 0);
  transition-property: clip-path;
}

[data-aos="img-reveal"].aos-animate {
  clip-path: inset(0 0% 0 0);
}

/* ====================================================
   MARQUEE / LOGO TICKER (if used)
   ==================================================== */
.marquee-track {
  overflow: hidden;
  white-space: nowrap;
  padding: 20px 0;
}

.marquee-content {
  display: inline-block;
  animation: marqueeScroll 20s linear infinite;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ====================================================
   PRODUCT CATEGORY CARD - IMAGE VERSION
   ==================================================== */
.pcat-img-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
}

.pcat-img-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pcat-img-card .pcat-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pcat-img-card:hover .pcat-bg {
  transform: scale(1.06);
}

.pcat-img-card .pcat-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.pcat-img-card .pcat-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.pcat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 14px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.pcat-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
  margin: 0 0 6px;
  letter-spacing: -0.02em;
}

.pcat-count {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.pcat-items {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.pcat-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: white;
  font-family: var(--font-heading);
  transition: background 0.2s;
}

.pcat-img-card:hover .pcat-chip {
  background: rgba(255, 255, 255, 0.2);
}

.pcat-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(10px);
  width: fit-content;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
}

.pcat-img-card:hover .pcat-cta-link {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ====================================================
   NAV ENHANCED
   ==================================================== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px);
}

/* ====================================================
   TRUST BAR - COUNTER ANIMATION
   ==================================================== */
.tsi-num {
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  font-weight: 900;
}

/* ====================================================
   SECTION HEADING REFINEMENT
   ==================================================== */
.section-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.035em;
}

.section-heading .highlight {
  background: linear-gradient(
    135deg,
    var(--orange) 0%,
    #f5900a 50%,
    var(--gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ====================================================
   PAGE HERO - INNER PAGES ENHANCED
   ==================================================== */
.page-hero {
  min-height: 360px;
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ====================================================
   FOOTER - ENHANCED
   ==================================================== */
.site-footer {
  position: relative;
  overflow: hidden;
}

/* ====================================================
   WHATSAPP - PULSING RING
   ==================================================== */
.whatsapp-float {
  animation: waFloat 3s ease-in-out infinite;
}

@keyframes waFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* ====================================================
   SECTION TRANSITION OVERLAPS
   ==================================================== */

/* Hero -> Trust bar */
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, #0a1628);
  pointer-events: none;
  z-index: 1;
}

/* ====================================================
   SCROLL-TRIGGERED COUNTER
   ==================================================== */
.count-up-triggered {
  animation: countPulse 0.3s ease;
}

@keyframes countPulse {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* ====================================================
   RESPONSIVE TWEAKS
   ==================================================== */
@media (max-width: 992px) {
  .about-main-image {
    height: 360px;
  }
  .services-img-banner {
    height: 220px;
  }
  .services-img-banner .sib-content {
    padding: 30px;
  }
  .vas-image-panel {
    height: 260px;
  }
  .vas-image-panel .vip-content {
    padding: 30px;
  }
  .pcat-img-card {
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .about-main-image {
    height: 280px;
  }
  .about-exp-badge {
    display: none;
  }
  .services-img-banner {
    height: 180px;
    border-radius: 14px;
  }
  .services-img-banner .sib-content {
    padding: 20px;
  }
  .services-img-banner .sib-content h2 {
    font-size: 1.4rem;
  }
  .vas-image-panel {
    height: 220px;
    border-radius: 14px;
  }
  .vas-image-panel .vip-content {
    padding: 20px;
  }
  .pcat-img-card {
    min-height: 260px;
  }
  .hero-image-panel {
    display: none;
  }
}

/* ====================================================
   ADDITIONAL POLISH - HOVER & MICRO-ANIMATIONS
   ==================================================== */

/* Section label pill upgrade on dark backgrounds */
.vas-image-panel .section-label {
  background: rgba(232, 101, 10, 0.2);
  border-color: rgba(232, 101, 10, 0.4);
  color: var(--orange-light);
  display: inline-flex;
  margin-bottom: 16px;
}
.vip-content h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: white;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  font-family: var(--font-heading);
}

/* Heading improvements */
.section-heading {
  font-weight: 800;
}
.hero-headline {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-weight: 800;
}

/* Icon micro-animations */
.why-icon-wrap {
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-card:hover .why-icon-wrap {
  transform: rotate(-8deg) scale(1.1);
}

.service-icon-wrap {
  transition:
    background 0.35s ease,
    transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover .service-icon-wrap {
  transform: rotate(-6deg) scale(1.1);
}

/* Trust bar hover */
.trust-stat-item:hover .tsi-num {
  color: var(--orange-light);
}

/* Footer logo hover */
.footer-logo-img {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.footer-logo-link:hover .footer-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

/* Product image card glow on hover */
.pcat-img-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(
    135deg,
    rgba(232, 101, 10, 0.1),
    rgba(200, 155, 42, 0.05)
  );
  border-radius: var(--radius-card);
  pointer-events: none;
}
.pcat-img-card:hover::after {
  opacity: 1;
}

/* Mobile */
@media (max-width: 576px) {
  .pcat-img-card {
    min-height: 240px;
  }
  .about-main-image {
    height: 240px;
  }
  .vas-image-panel {
    height: 200px;
  }
  .services-img-banner {
    height: 160px;
  }
}
