/* Site overrides — brand colors sampled from top-logo.png */
:root {
  --brand-primary: #0E9AD6;
  --brand-primary-dark: #2160AC;
  --brand-primary-mid: #1587C8;
  --brand-primary-light: #07ACE4;
  --brand-accent: #F79126;
  --brand-accent-light: #FBB025;
  --brand-grey: #616264;
  --brand-grey-dark: #474648;
  --brand-bg-tint: #EAF6FD;
  --brand-primary-rgb: 14, 154, 214;
  --brand-primary-dark-rgb: 33, 96, 172;

  --cg-title-color: #2160AC;
  --cg-pr-c1: #2160AC;
  --cg-pr-c2: #0E9AD6;
  --cg-pr-c3: #F79126;
  --cg-pr-c4: #07ACE4;
}

.elementor-kit-9 {
  --e-global-color-primary: #0E9AD6;
  --e-global-color-secondary: #616264;
  --e-global-color-text: #616264;
  --e-global-color-accent: #F79126;
}

/* Logo-matched theme surfaces */
.header_style_one .main-navigation li:hover a,
.header_style_one .main-navigation li.active a,
.header_style_one .main-navigation li.current-menu-item a {
  color: var(--brand-primary-dark);
}

.header_style_one .main-navigation li a:after {
  background-color: var(--brand-primary);
}

.cg-footer1-sec.ver_2 .cg-footer-cta,
.cg-footer1-sec.ver_2 .cg-footer-cta-wrap {
  border-color: rgba(var(--brand-primary-dark-rgb), 0.14);
}

.elementor-853 .elementor-element.elementor-element-f4f33ec .elementor-button {
  background-color: var(--brand-primary);
}

.elementor-853 .elementor-element.elementor-element-f4f33ec .elementor-button:hover,
.elementor-853 .elementor-element.elementor-element-f4f33ec .elementor-button:focus {
  background-color: var(--brand-primary-dark);
}

.elementor-853 .elementor-element.elementor-element-7cdb895 .elementor-heading-title {
  color: var(--brand-primary-dark);
}

.cg-footer1-sec.ver_2 .cg-circle-btn a {
  background-color: var(--brand-primary-dark);
}

.cg-footer1-sec.ver_2 .cg-circle-btn a:hover {
  background-color: var(--brand-primary);
}
.offcanvas-trigger button {
  display: none;
}

.cg-header-section {
  margin-top: 20px;
}

.cg-up {
  display: none;
}

#menu-item-1900 > ul.sub-menu,
#menu-item-1900 > ul.dropdown-menu {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding: 20px;
  min-width: 1000px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  position: absolute !important;
  left: 0;
  right: 0;
  margin: auto;
}

#menu-item-1900 > ul.sub-menu::-webkit-scrollbar {
  width: 6px;
}

#menu-item-1900 > ul.sub-menu::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}

.cg-ser1-tab-btn {
  display: none;
}

.header-btn {
  display: none;
}

.video_box {
  display: none;
}

.faq1-list-item {
  display: none;
}

/* Nav search */
#nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 20px;
  height: 60px;
}

#nav-search-wrap input {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  border: none;
  outline: none;
  padding: 0 55px 0 20px;
  font-size: 15px;
  transition: all 0.5s ease;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 248, 255, 0.95));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  color: #111;
  font-weight: 500;
}

#nav-search-wrap input:hover,
#nav-search-wrap input:focus {
  width: 320px;
  border-radius: 35px;
  background: linear-gradient(135deg, #ffffff, var(--brand-bg-tint));
  box-shadow: 0 0 25px rgba(var(--brand-primary-rgb), 0.25);
}

#nav-search-wrap::after {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 18px;
  font-size: 16px;
  color: var(--brand-primary);
  pointer-events: none;
}

#nav-search-results,
#mobile-search-results {
  position: absolute;
  top: 65px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: none;
  z-index: 999;
}

.nav-result-item {
  padding: 12px 18px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: background 0.3s ease;
}

.nav-result-item:hover {
  background: rgba(var(--brand-primary-rgb), 0.07);
}

/* FAQ accordion */
.anz-home-faq {
  padding: 60px 16px 20px;
  background: #ffffff;
}

.faq-section {
  max-width: 800px;
  margin: 40px auto;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 20px;
}

.faq-item {
  background: var(--brand-primary);
  color: #fff;
  margin: 10px 0;
  padding: 15px 20px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}

.faq-item:hover {
  background: var(--brand-primary-dark);
}

.faq-item::after {
  content: "›";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active::after {
  transform: rotate(90deg);
}

.faq-answer {
  display: none;
  background: #f9f9f9;
  color: #333;
  padding: 15px 20px;
  border-radius: 0 0 8px 8px;
  margin-top: -10px;
  font-size: 15px;
}

.faq-item.active + .faq-answer {
  display: block;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 99999;
  display: block;
  line-height: 0;
  transition: transform 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
}

/* Elementor responsive visibility (backup) */
@media (max-width: 767px) {
  .elementor-hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .elementor-hidden-tablet {
    display: none !important;
  }
}

@media (min-width: 1025px) {
  .elementor-hidden-desktop {
    display: none !important;
  }
}

/* ========== TOP BANNER / HERO ========== */

html,
body.elementor-page-853 {
  overflow-x: hidden;
}

.body-bg-1,
.body-bg-1 .elementor-853 {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

/* Break out of Elementor boxed container (1140px) → full viewport width */
.elementor-853 .anz-hero-desktop {
  --container-max-width: 100% !important;
  --content-width: 100% !important;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  left: 0;
  right: 0;
}

.elementor-853 .anz-hero-desktop > .e-con-inner {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Hero: full-width background image + centered white text */
.elementor-853 .elementor-element.elementor-element-0d87636 {
  position: relative;
  overflow: hidden;
  min-height: 778px;
  width: 100vw !important;
}

.elementor-853 .anz-hero-image .anz-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.elementor-853 .anz-hero-image .anz-hero-bg__img {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
}

.elementor-853 .anz-hero-image .anz-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 35%) 0%, rgb(0 38 84 / 58%) 100%);
}

.elementor-853 .elementor-element.elementor-element-0d87636 > .e-con-inner {
  position: relative;
  min-height: 778px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.elementor-853 .elementor-element.elementor-element-41ee640 {
  position: relative;
  z-index: 2;
  width: 75% !important;
  max-width: 960px;
  margin-top: 0 !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  pointer-events: auto;
}

.elementor-853 .elementor-element.elementor-element-094c7a6 .elementor-heading-title,
.elementor-853 .elementor-element.elementor-element-14390c7 {
  color: #ffffff !important;
}

.elementor-853 .elementor-element.elementor-element-094c7a6 .elementor-heading-title {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 600;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.52);
  line-height: 1.15;
}

.elementor-853 .elementor-element.elementor-element-14390c7 {
  font-size: clamp(14px, 2vw, 18px);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.71);
  max-width: 820px;
  margin: 16px auto 0;
}

.anz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.anz-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--cg-heading);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.anz-hero-btn--primary {
  background-color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
  color: #ffffff;
}

.anz-hero-btn--primary:hover {
  background-color: var(--brand-primary-dark);
  border-color: var(--brand-primary-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

.anz-hero-btn--secondary {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.anz-hero-btn--secondary:hover {
  background-color: #ffffff;
  border-color: #ffffff;
  color: var(--brand-primary-dark);
  transform: translateY(-2px);
}

@media (max-width: 767px) {
  .elementor-853 .elementor-element.elementor-element-0d87636,
  .elementor-853 .elementor-element.elementor-element-0d87636 > .e-con-inner {
    min-height: 520px;
  }

  .elementor-853 .elementor-element.elementor-element-0d87636 {
    margin-top: 60px;
  }

  .elementor-853 .elementor-element.elementor-element-41ee640 {
    width: 92% !important;
    padding: 0 12px;
  }

  .anz-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .anz-hero-btn {
    width: 100%;
    font-size: 14px;
    padding: 13px 20px;
  }
}

/* Marquee sections need overflow visible parent */
.marquee-left,
.marquee-right {
  overflow: hidden;
}

/* Mobile menu */
.mobile_menu_wrap.mobile_menu_on {
  visibility: visible;
  opacity: 1;
}

.mobile-search-bar {
  position: relative;
}

/* Sidebar panel */
.xs-sidebar-group.info-group.isActive {
  right: 0;
  visibility: visible;
  opacity: 1;
}

/* Scroll to top (theme JS uses fadeIn) */
.cg-scrollup {
  display: none;
}

/* Counter numbers */
.counter {
  display: inline-block;
}

/* Ordering Processing Steps */
.anz-order-steps {
  background-color: var(--brand-bg-tint);
  padding: 100px 0 60px;
}

.anz-order-steps__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.anz-order-steps__title {
  margin: 0 0 32px;
  font-family: "Roboto", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(28px, 4vw, 53px);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brand-primary-dark);
  text-align: left;
}

.anz-order-steps__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.anz-order-steps__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #ffffff;
  border-radius: 20px;
  padding: 24px 22px;
  min-height: 100%;
  box-sizing: border-box;
}

.anz-order-steps__num {
  margin: 0 0 12px;
  font-family: "Roboto", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 700;
  line-height: 1;
  color: var(--brand-primary-dark);
}

.anz-order-steps__heading {
  margin: 0 0 12px;
  font-family: "Roboto", "Plus Jakarta Sans", sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-primary-dark);
}

.anz-order-steps__text {
  margin: 0;
  font-family: "Roboto", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: #0f0f0f;
}

@media (max-width: 1024px) {
  .anz-order-steps__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .anz-order-steps {
    padding: 60px 0 40px;
  }

  .anz-order-steps__title {
    margin-bottom: 24px;
    font-size: 27px;
  }

  .anz-order-steps__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .anz-order-steps__card {
    padding: 20px 18px;
  }
}

/* Testimonials slider */
.anz-testimonials {
  background-color: var(--brand-bg-tint);
  padding: 72px 0 88px;
}

.anz-testimonials__inner {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 72px 0 56px;
  box-sizing: border-box;
}

.anz-testimonials__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.anz-testimonials__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: #4a5568;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.anz-testimonials__arrow:hover {
  color: var(--brand-primary-dark);
}

.anz-testimonials__slider {
  overflow: hidden;
  width: 100%;
}

.anz-testimonials__slide {
  margin: 0;
  padding: 0;
  text-align: center;
  border: none;
}

.anz-testimonials__quote {
  margin: 0 auto 28px;
  max-width: 780px;
  font-family: "Roboto", "Plus Jakarta Sans", Georgia, serif;
  font-size: clamp(16px, 2vw, 20px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: #6b7280;
}

.anz-testimonials__author {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.anz-testimonials__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8eef3;
}

.anz-testimonials__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
}

.anz-testimonials__name {
  font-family: "Roboto", "Plus Jakarta Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  color: #374151;
}

.anz-testimonials__role {
  font-family: "Roboto", "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--brand-primary);
}

@media (max-width: 767px) {
  .anz-testimonials {
    padding: 48px 0 56px;
  }

  .anz-testimonials__inner {
    padding: 0 20px 0 44px;
  }

  .anz-testimonials__arrows {
    left: 4px;
  }

  .anz-testimonials__arrow {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .anz-testimonials__quote {
    margin-bottom: 22px;
    font-size: 15px;
  }

  .anz-testimonials__avatar {
    width: 48px;
    height: 48px;
  }
}

/* Footer bottom logo (replaces large watermark text) */
.cg-footer-bottom .cg-footer-bottom-logo {
  display: inline-block;
  padding: 32px 16px 8px;
}

.cg-footer-bottom .cg-footer-bottom-logo img {
  display: block;
  max-width: min(480px, 88vw);
  height: auto;
  margin: 0 auto;
}

/* Get in Touch modal */
.wd-get-in-touch-modal .modal-content {
  border: none;
  border-radius: 16px;
  overflow: hidden;
}

.wd-get-in-touch-modal .modal-header {
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 0;
  border: none;
}

.wd-get-in-touch-modal .modal-title {
  font-size: 28px;
  font-weight: 700;
  color: #1f2937;
}

.wd-get-in-touch-modal__sub {
  margin-top: 8px;
  color: #6b7280;
  font-size: 15px;
}

.wd-get-in-touch-modal .modal-body {
  padding: 20px 28px 28px;
}

.wd-get-in-touch-modal__form.log-team-contact-form {
  padding: 24px;
  background-color: var(--brand-bg-tint);
}

.wd-get-in-touch-modal__form .row {
  margin-top: 0;
}

.wd-get-in-touch-modal__form .submit-btn {
  margin-top: 4px;
}

.wd-get-in-touch-modal__form .submit-btn button {
  background-color: var(--brand-primary-dark);
}

.wd-get-in-touch-modal__form .submit-btn button:hover {
  background-color: var(--brand-primary);
}

@media (max-width: 767px) {
  .wd-get-in-touch-modal .modal-header,
  .wd-get-in-touch-modal .modal-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wd-get-in-touch-modal__form.log-team-contact-form {
    padding: 20px 16px;
  }
}

/* Thank you page */
.thank-you-page .wd-thank-you-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 280px);
  padding: 100px 0 80px;
  background: linear-gradient(180deg, var(--brand-bg-tint) 0%, #ffffff 100%);
}

.thank-you-page .wd-thank-you-card {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 40px;
  text-align: center;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(var(--brand-primary-dark-rgb), 0.12);
  border: 1px solid rgba(var(--brand-primary-rgb), 0.15);
}

.wd-thank-you-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-bg-tint);
  color: var(--brand-primary-dark);
  font-size: 36px;
}

.wd-thank-you-card__title {
  margin: 0 0 16px;
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.3;
  color: #1f2937;
}

.wd-thank-you-card__text {
  margin: 0 auto 28px;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.65;
  color: #6b7280;
}

.wd-thank-you-card__text a {
  color: var(--brand-primary-dark);
  text-decoration: none;
  font-weight: 600;
}

.wd-thank-you-card__text a:hover {
  color: var(--brand-primary);
  text-decoration: underline;
}

.wd-thank-you-card__btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 100px;
  background-color: var(--brand-primary-dark);
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.wd-thank-you-card__btn:hover {
  background-color: var(--brand-primary);
  color: #ffffff;
}

.wd-thank-you-footer {
  background: #ffffff;
  border-top: 1px solid rgba(var(--brand-primary-rgb), 0.12);
}

.wd-thank-you-footer .cg-footer-bottom {
  padding: 40px 16px 32px;
}

.wd-thank-you-footer .cg-footer-bottom p {
  color: #6b7280;
}

.cg-ftr1-widget .cta-widget .item-text > p {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.cg-footer1-sec.ver_2 .cg-ftr1-widget .cta-widget .item-text > p {
  color: var(--cg-pr-c1);
}

@media (max-width: 767px) {
  .thank-you-page .wd-thank-you-page {
    min-height: auto;
    padding: 72px 0 48px;
  }

  .thank-you-page .wd-thank-you-card {
    padding: 36px 24px;
  }
}

/* Transport & Logistics CTA — video replaced with image */
.cg-video-cta-content .cg-video-cta-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
