/* ===================================
   Aqvenza Industry — Brand Overrides
   Primary: #E8550A (orange from logo)
   Dark:    #1a1a2e  (deep slate)
   =================================== */

:root {
  --aq-orange: #E8550A;
  --aq-orange-dark: #c44508;
  --aq-dark: #1a1a2e;
}

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 58px;
  height: 58px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  font-size: 28px;
  color: #fff;
}

/* Logo sizing in header — max-height intentionally unset here; controlled by specific selectors below */
.logo img {
  width: auto !important;
}

/* Offcanvas logo */
.offcanvas__logo img {
  max-height: 95px !important;
  width: auto !important;
}

/* Footer logo */
.widget-logo img {
  max-height: 70px !important;
  width: auto !important;
}

/* Stats counter section uses work-process layout */
.work-process-box-2 {
  text-align: center;
  padding: 40px 20px;
}

.work-process-box-2 h2.counter {
  font-size: 56px;
  font-weight: 700;
  color: var(--aq-orange);
}

/* Back to top */
.back-to-top {
  z-index: 9998;
}

/* Smooth scroll offset for sticky header */
html {
  scroll-padding-top: 90px;
}

/* Mobile WhatsApp button position adjustment */
@media (max-width: 576px) {
  .whatsapp-float {
    bottom: 20px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float i {
    font-size: 24px;
  }
}

/* Fix Why Choose Us icon items */
.choose-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.choose-icon {
  width: 52px;
  height: 52px;
  background: var(--aq-dark);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.choose-icon i {
  font-size: 20px;
  color: #fff;
}
.choose-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.choose-content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Fix testimonials grid layout */
.testimonial-box-items-2 {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* Work process mobile fix */
@media (max-width: 767px) {
  .work-process-box-items-2 {
    margin-bottom: 30px;
  }
  .work-process-box-items-2 .thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
  }
}

/* Services section title color fix */
.service-section-2 .section-title .sub-title,
.service-section-2 .section-title h2 {
  color: #ffffff !important;
}
/* Work Process — mobile layout */
.work-process-mobile-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.work-process-mobile-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.work-process-mobile-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--aq-orange, #E8550A);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.work-process-mobile-body img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 12px;
}
.work-process-mobile-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}
.work-process-mobile-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Remove old choose-item styles that conflict */
.choose-item { all: unset; }
.choose-icon { all: unset; }
.choose-content { all: unset; }

/* Why Choose Us — fixed image grid */
.aq-choose-images {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.aq-choose-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.aq-choose-top img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}
.aq-choose-bottom img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
}

/* Fix icon-items icon size */
.icon-items-area .icon-items .icon {
  min-width: 52px;
  width: 52px;
  height: 52px;
  background: var(--aq-dark, #1a1a2e);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.icon-items-area .icon-items .icon img,
.icon-items-area .icon-items .icon svg {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.icon-items-area .icon-items {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.icon-items-area .icon-items .content h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.icon-items-area .icon-items .content p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

/* Mobile fix */
@media (max-width: 767px) {
  .aq-choose-top img,
  .aq-choose-bottom img {
    height: 160px;
  }
}

/* Glass header blending with hero */
#header-sticky,
.header-1,
.header-1.header-new-2 {
  background: rgba(220, 215, 200, 0.55) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(180, 175, 160, 0.25) !important;
  box-shadow: none !important;
  transition: background 0.3s ease !important;
}

#header-sticky.sticky-menu,
.header-1.sticky-menu {
  background: rgba(220, 215, 200, 0.92) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08) !important;
}

/* Nav links dark on light hero */
#header-sticky .main-menu nav ul > li > a,
.header-1 .main-menu nav ul > li > a {
  color: #1a1a2e !important;
  font-weight: 500 !important;
}

#header-sticky .main-menu nav ul > li > a:hover,
.header-1 .main-menu nav ul > li > a:hover {
  color: #E8550A !important;
}

/* Logo size fix */
#header-sticky .logo img,
.header-1 .logo img,
.header-left .logo img {
  height: 90px !important;
  width: auto !important;
  max-width: 240px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Hamburger icon dark */
#header-sticky .sidebar__toggle i,
.header-1 .sidebar__toggle i {
  color: #1a1a2e !important;
}

/* Get a quote button styling on glass header */
#header-sticky .theme-btn,
.header-1 .theme-btn {
  background: #E8550A !important;
  color: #fff !important;
  border: none !important;
}

/* Mobile marquee responsive */
@media (max-width: 768px) {
  .marquee-card {
    width: 140px !important;
    height: 180px !important;
  }
}

/* Responsive hero padding fix */
@media (max-width: 1400px) {
  .marquee-hero-content {
    padding-top: 130px !important;
  }
}

@media (max-width: 991px) {
  #header-sticky .logo img,
  .header-1 .logo img,
  .header-left .logo img {
    height: 70px !important;
  }
}

@media (max-width: 576px) {
  #header-sticky .logo img,
  .header-1 .logo img,
  .header-left .logo img {
    height: 60px !important;
  }
}

/* Reduce header padding so hero badge is visible */
.header-1 .container,
#header-sticky .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.header-1 .header-main,
#header-sticky .header-main {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  min-height: 72px !important;
  max-height: 72px !important;
}

/* Ensure hero starts below header */
section.marquee-hero-section {
  padding-top: 80px !important;
}

/* Global orange override — replace all yellow */
:root {
  --theme-color: #E8550A !important;
  --primary-color: #E8550A !important;
  --accent-color: #E8550A !important;
}

/* Catch all remaining yellow elements */
.theme-btn,
.sub-title::before,
.sub-title .line-1,
.link-btn i,
.accordion-button::after,
.service-text span,
.star i {
  color: #E8550A !important;
  border-color: #E8550A !important;
}

/* Cursor orange */
.cursor-inner, .mouseCursor.cursor-inner {
  background-color: #E8550A !important;
}
.cursor-outer, .mouseCursor.cursor-outer {
  border-color: #E8550A !important;
}

/* Remove any top margin/padding above header */
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#header-sticky,
.header-1 {
  top: 0 !important;
  margin-top: 0 !important;
}

/* Match hero bg on initial load */
html, body {
  background-color: #E8E4DC !important;
}

/* Fix header height compact */
.header-1 .header-main,
#header-sticky .header-main {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
  min-height: 70px !important;
  max-height: 70px !important;
  align-items: center !important;
}

/* Fix all button text visibility across whole website */
.theme-btn,
.theme-btn.theme-two,
.theme-btn.header-bg,
a.theme-btn,
button.theme-btn {
  color: #ffffff !important;
  background: #E8550A !important;
  border: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.theme-btn:hover,
a.theme-btn:hover {
  color: #ffffff !important;
  background: #c44508 !important;
}

/* Fix the white/transparent button variant */
.theme-btn.header-bg,
.theme-btn.theme-two {
  background: #E8550A !important;
  color: #ffffff !important;
}

/* Fix about section CTA button */
.about-btn-area .theme-btn,
.about-right-content-2 .theme-btn {
  color: #ffffff !important;
  background: #E8550A !important;
  padding: 14px 32px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  text-decoration: none !important;
}

/* Fix all link-btn */
.link-btn,
a.link-btn {
  color: #1a1a2e !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Fix products section button */
.project-button-area .theme-btn {
  color: #ffffff !important;
  background: #E8550A !important;
}

/* Fix header Get A Quote button */
.header-right .theme-btn,
.header-right a.theme-btn {
  color: #ffffff !important;
  background: #E8550A !important;
  border-radius: 50px !important;
  padding: 12px 28px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* =============================================
   Mobile navbar responsive fixes
   ============================================= */

/* Hide desktop nav menu below xl (1200px) — React drawer handles mobile */
@media (max-width: 1199px) {
  .mean__menu-wrapper {
    display: none !important;
  }
}

/* Shrink header height + logo on tablet/mobile */
@media (max-width: 1199px) {
  .header-1 .header-main,
  #header-sticky .header-main {
    min-height: 64px !important;
    max-height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #header-sticky .logo img,
  .header-1 .logo img,
  .header-left .logo img {
    height: 54px !important;
  }
}

/* Hide "Get A Quote" button in navbar on mobile — drawer has its own CTA */
@media (max-width: 1199px) {
  .header-right a.aq-nav-quote-btn,
  .header-right .aq-nav-quote-btn {
    display: none !important;
  }
}

/* Small mobile logo + height tweak */
@media (max-width: 480px) {
  #header-sticky .logo img,
  .header-1 .logo img,
  .header-left .logo img {
    height: 46px !important;
  }

  .header-1 .header-main,
  #header-sticky .header-main {
    min-height: 60px !important;
    max-height: 60px !important;
  }
}