/* ==========================================================
   ARGUS - ELEMENTOR RESPONSIVE OVERRIDES
   Appended to argus-main.css at the very bottom.
   Uses !important to beat Elementor inline styles.
   ========================================================== */

/* ----------------------------------------------------------
   GLOBAL MOBILE RESET - Prevent horizontal overflow
   ---------------------------------------------------------- */
html, body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}
.elementor-section,
.elementor-container,
.elementor-row,
.elementor-column,
.elementor-widget-wrap,
.elementor-widget-container {
  max-width: 100% !important;
  word-wrap: break-word !important;
  overflow-wrap: break-word !important;
}

/* ----------------------------------------------------------
   HAMBURGER BUTTON
   ---------------------------------------------------------- */
.argus-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(184,150,90,0.5);
  padding: 8px;
  flex-shrink: 0;
  transition: border-color 0.2s;
  z-index: 9998;
}
.argus-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: #1A1714;
  transition: all 0.3s ease;
  transform-origin: center;
}
.argus-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.argus-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.argus-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ----------------------------------------------------------
   MOBILE DRAWER NAV
   ---------------------------------------------------------- */
.argus-mobile-nav {
  display: block;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #FAF8F4;
  z-index: 99999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
  -webkit-overflow-scrolling: touch;
}
.argus-mobile-nav.is-open {
  transform: translateX(0);
}
.argus-mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 60px;
  border-bottom: 1px solid rgba(184,150,90,0.2);
  position: sticky;
  top: 0;
  background: #FAF8F4;
  z-index: 1;
}
.argus-mobile-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 5px;
  color: #1A1714;
}
.argus-mobile-close {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  background: none;
  border: 1px solid rgba(184,150,90,0.5);
  font-size: 20px;
  color: #1A1714;
  line-height: 1;
}
.argus-mobile-links { padding: 8px 0 100px; }
.argus-mobile-item { border-bottom: 1px solid rgba(184,150,90,0.2); }
.argus-mobile-item > a,
.argus-mobile-item > span {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #1A1714;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
}
.argus-mobile-chevron {
  font-size: 10px;
  color: #B8965A;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.argus-mobile-item.dd-open .argus-mobile-chevron {
  transform: rotate(180deg);
}
.argus-mobile-sub {
  display: none;
  background: rgba(184,150,90,0.04);
  border-top: 1px solid rgba(184,150,90,0.15);
}
.argus-mobile-item.dd-open .argus-mobile-sub { display: block; }
.argus-mobile-sub a {
  display: block !important;
  padding: 12px 24px 12px 36px;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #7A7268;
  text-decoration: none;
  font-family: 'Jost', sans-serif;
}
.argus-mobile-sub a:hover { color: #B8965A; }
.argus-mobile-sub-head {
  padding: 12px 24px 4px 24px;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B8965A;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
}
.argus-mobile-footer-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: #FAF8F4;
  border-top: 1px solid rgba(184,150,90,0.2);
  display: flex;
  gap: 10px;
  z-index: 100000;
}
.argus-mobile-footer-bar a {
  flex: 1;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 8px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
}
.argus-mobile-footer-bar a.argus-mf-wa {
  background: #1A1714;
  color: #fff !important;
}
.argus-mobile-footer-bar a.argus-mf-call {
  border: 1px solid rgba(184,150,90,0.5);
  color: #1A1714 !important;
}
body.argus-nav-locked { overflow: hidden !important; }

/* ----------------------------------------------------------
   TABLET 1024px
   ---------------------------------------------------------- */
@media screen and (max-width: 1024px) {
  .argus-mega-inner {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  .argus-mega-feat { display: none !important; }
  .argus-brand-div { display: none !important; }
  .argus-brands-row { justify-content: center !important; gap: 16px 28px !important; }
}

/* ----------------------------------------------------------
   MOBILE NAV SWITCH - 900px
   ---------------------------------------------------------- */
@media screen and (max-width: 900px) {
  /* Show hamburger */
  .argus-hamburger { display: flex !important; }

  /* Hide desktop navlinks bar entirely */
  .argus-navlinks-section {
    display: none !important;
    visibility: hidden !important;
  }

  /* Tighten top nav padding */
  .argus-nav-section > .elementor-container > .elementor-row > .elementor-column {
    padding: 0 !important;
  }
  .argus-nav-section .elementor-section-wrap,
  .argus-nav-section .e-con-inner {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Elementor sets section padding inline */
  .argus-nav-section.elementor-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hide call text */
  .argus-call-label,
  .argus-call-num,
  .argus-wa-text { display: none !important; }
  .argus-nav-wa { padding: 8px 10px !important; }
}

/* ----------------------------------------------------------
   MAIN RESPONSIVE - 768px
   All !important to beat Elementor inline styles
   ---------------------------------------------------------- */
@media screen and (max-width: 768px) {

  /* --- ELEMENTOR SECTION PADDING OVERRIDES --- */
  .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
  }

  /* All sections: reset horizontal padding to 18px */
  .elementor-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  /* Top/bottom padding for content sections */
  .argus-about-section.elementor-section,
  .argus-why-section.elementor-section,
  .argus-cta-section.elementor-section,
  .argus-footer-section.elementor-section {
    padding-top: 52px !important;
    padding-bottom: 52px !important;
  }

  .argus-brands-section.elementor-section,
  .argus-footer-bottom-section.elementor-section {
    padding-left: 18px !important;
    padding-right: 18px !important;
  }

  .argus-hero-section.elementor-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    height: auto !important;
    min-height: 85vh !important;
  }

  .argus-video-section.elementor-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    height: auto !important;
    min-height: unset !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .argus-categories-section.elementor-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-bottom: 48px !important;
  }

  /* --- FORCE COLUMNS TO STACK --- */
  /* Elementor sets column widths as inline style width:50% etc */
  .argus-about-section .elementor-column,
  .argus-why-section .elementor-column,
  .argus-cta-section .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Elementor flex row — allow wrapping */
  .argus-about-section .elementor-row,
  .argus-why-section .elementor-row,
  .argus-cta-section .elementor-row {
    flex-wrap: wrap !important;
    flex-direction: column !important;
  }

  /* Strip section — stack vertically */
  .argus-strip-section .elementor-row {
    flex-wrap: wrap !important;
    flex-direction: column !important;
  }
  .argus-strip-section .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    border-right: none !important;
    border-bottom: 1px solid rgba(184,150,90,0.25) !important;
  }
  .argus-strip-section .elementor-column:last-child {
    border-bottom: none !important;
  }

  /* Category cards — full width stack */
  .argus-categories-section .elementor-row {
    flex-wrap: wrap !important;
    flex-direction: column !important;
  }
  .argus-categories-section .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Footer columns — 2 per row */
  .argus-footer-section .elementor-row {
    flex-wrap: wrap !important;
  }
  .argus-footer-section .elementor-column {
    width: 50% !important;
    max-width: 50% !important;
    flex: 0 0 50% !important;
    margin-bottom: 28px !important;
  }
  .argus-footer-section .elementor-column:first-child {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* Footer bottom — stack */
  .argus-footer-bottom-section .elementor-row {
    flex-wrap: wrap !important;
    flex-direction: column !important;
  }
  .argus-footer-bottom-section .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
  .argus-footer-bottom-section p { text-align: center !important; }

  /* --- TYPOGRAPHY OVERRIDES --- */
  /* Hero title — Elementor injects font-size inline on .elementor-heading-title */
  .argus-hero-section .elementor-heading-title {
    font-size: clamp(30px, 8.5vw, 52px) !important;
    letter-spacing: 0.5px !important;
    line-height: 1.08 !important;
    word-break: break-word !important;
  }

  /* Video section title */
  .argus-video-section .elementor-heading-title {
    font-size: clamp(28px, 8vw, 50px) !important;
    letter-spacing: 0.5px !important;
    line-height: 1.1 !important;
    word-break: break-word !important;
  }

  /* About / Why headings */
  .argus-about-section .elementor-heading-title,
  .argus-why-section .elementor-heading-title {
    font-size: clamp(26px, 7.5vw, 38px) !important;
    line-height: 1.2 !important;
  }

  /* CTA heading */
  .argus-cta-section .elementor-heading-title {
    font-size: clamp(26px, 7.5vw, 40px) !important;
    line-height: 1.2 !important;
  }

  /* --- IMAGE HEIGHTS --- */
  .argus-about-img { height: 260px !important; }
  .argus-why-img { height: 260px !important; }

  /* --- CATEGORY CARDS --- */
  .argus-cat-card { height: 280px !important; }
  .argus-cat-text { transform: translateY(calc(100% - 68px)) !important; }

  /* --- STRIP --- */
  .argus-strip-name { font-size: 18px !important; }

  /* --- STATS --- */
  .argus-stat-num { font-size: 28px !important; }

  /* --- BRANDS --- */
  .argus-brands-row {
    justify-content: center !important;
    gap: 12px 18px !important;
  }
  .argus-brand { font-size: 12px !important; }

  /* --- WIDGET PADDING RESET --- */
  .elementor-widget-wrap {
    padding: 0 !important;
  }
  /* But keep strip/about/why internal padding */
  .argus-strip-section .elementor-widget-wrap,
  .argus-about-section .elementor-widget-wrap,
  .argus-why-section .elementor-widget-wrap,
  .argus-cta-section .elementor-widget-wrap,
  .argus-footer-section .elementor-widget-wrap {
    padding: 12px !important;
  }
  .argus-strip-section .elementor-widget-html .elementor-widget-container {
    padding: 24px 20px !important;
  }

  /* --- NAVLINKS NAV HIDDEN --- */
  .argus-navlinks-section {
    display: none !important;
  }

  /* Mega menu reposition on tablet */
  .argus-mega {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  .argus-mega-inner {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ----------------------------------------------------------
   SMALL PHONES - 480px
   ---------------------------------------------------------- */
@media screen and (max-width: 480px) {
  .elementor-section {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .argus-hero-section.elementor-section,
  .argus-video-section.elementor-section {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* Hero title even smaller */
  .argus-hero-section .elementor-heading-title {
    font-size: clamp(26px, 7.5vw, 40px) !important;
  }
  .argus-video-section .elementor-heading-title {
    font-size: clamp(24px, 7vw, 38px) !important;
  }
  .argus-about-section .elementor-heading-title,
  .argus-why-section .elementor-heading-title,
  .argus-cta-section .elementor-heading-title {
    font-size: clamp(22px, 7vw, 34px) !important;
  }

  /* Sections tighter */
  .argus-about-section.elementor-section,
  .argus-why-section.elementor-section,
  .argus-cta-section.elementor-section,
  .argus-footer-section.elementor-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  /* Category cards */
  .argus-cat-card { height: 240px !important; }
  .argus-cat-text { transform: translateY(calc(100% - 60px)) !important; }
  .argus-cat-name { font-size: 16px !important; }

  /* Stats */
  .argus-stat-num { font-size: 24px !important; }
  .argus-stat { padding: 14px !important; }

  /* Footer full stack */
  .argus-footer-section .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  /* CTA buttons full width */
  .argus-cta-section .elementor-button-wrapper {
    width: 100% !important;
  }
  .argus-cta-section .elementor-button {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* About/Why img smaller */
  .argus-about-img { height: 220px !important; }
  .argus-why-img { height: 220px !important; }

  /* Brands */
  .argus-brand { font-size: 11px !important; }

  /* Eyebrow lines shorter */
  .argus-eyebrow::before,
  .argus-eyebrow::after { width: 20px !important; }
}

/* ----------------------------------------------------------
   VERY SMALL - 360px
   ---------------------------------------------------------- */
@media screen and (max-width: 360px) {
  .argus-hero-section .elementor-heading-title {
    font-size: 24px !important;
  }
  .argus-video-section .elementor-heading-title {
    font-size: 22px !important;
  }
  .argus-stat-num { font-size: 20px !important; }
  .argus-strip-name { font-size: 16px !important; }

  .argus-mobile-item > a,
  .argus-mobile-item > span { padding: 14px 16px !important; }
}