/* ================================================================= */
/* ================================================================= */
/*         CONTACT PAGE MASTER OVERRIDE STYLESHEET (v.2)             */
/* ================================================================= */
/* ================================================================= */
/*  NOTE: This version uses highly specific selectors to guarantee   */
/*  overrides and removes all incorrect global/footer styles.        */
/* ================================================================= */

/* ============================================================
   Contact page — video banner controls
   File: assets/css/contact-page.css
   Scope: Contact breadcrumb banner only
   ============================================================ */

/* 1) Master controls via CSS variables (edit these only) */
:root {
  /* Path to your video & optional poster; keep quotes for safety */
  --contact-banner-video-url: "assets/video/contact.webm";
  /* Optional (tiny webp/jpg for first paint). Leave empty to skip. */
  --contact-banner-poster: "";

  /* Sizing — pick ONE strategy:
     A) Fixed height (px) with object-fit cover (most common)
     B) Aspect-ratio based height that responds to width
  */
  /* A) Fixed height strategy */
  --contact-banner-height: 920px; /* desktop height */
  --contact-banner-height-mobile: 280px; /* mobile height */

  /* B) Aspect strategy (uncomment to use this instead)
  --contact-banner-aspect: 16 / 9;
  */

  /* Overlay darkness (if your text needs contrast) */
  --contact-banner-overlay: rgba(0, 0, 0, 0);
}

/* 2) Layering & sizing */
.breadcumd__banner.contact-banner {
  position: relative;
  overflow: hidden;
  /* Uses responsive --banner-height variable */
  height: var(--banner-height, 600px);
  min-height: var(--banner-height, 600px);
  background-color: #1a0b2e;
}

/* Mobile height - now uses responsive --banner-height variable */
@media (max-width: 991px) {
  .breadcumd__banner.contact-banner {
    height: var(--banner-height, 400px);
    min-height: var(--banner-height, 400px);
  }
}

/* If you prefer aspect-ratio instead of fixed heights, uncomment:
.breadcumd__banner.contact-banner {
  aspect-ratio: var(--contact-banner-aspect);
  height: auto;
}
*/

/* 3) The video fills the banner and stays behind content */
.breadcumd__banner.contact-banner .banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fill the frame without distortion */
  object-position: center;
  display: block;
  z-index: 1;
}

/* 4) Preserve your text/content layer above video */
.breadcumd__banner.contact-banner > .container,
.breadcumd__banner.contact-banner .breadcumd__wrapper {
  position: relative;
  z-index: 2;
  height: 100% !important;
}

.breadcumd__banner.contact-banner .breadcumd__wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 15px !important;
}

/* 5) Optional readability overlay (toggle opacity in the var) */
.breadcumd__banner.contact-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--contact-banner-overlay);
  z-index: 1; /* sits above video, below text */
}

/* 6) Safety: if video fails, keep background color fallback */
.breadcumd__banner.contact-banner {
  background-color: #000; /* neutral; your theme can override */
}

/* ================================================================= */
/* 1. Global Page Body & Typography                                  */
/* ================================================================= */
body {
  background-color: #ffffff !important; /* Sets the default background color for the entire page. */
}

/* ================================================================= */
/* 2. Top Header Bar                                                 */
/* ================================================================= */
.header__top {
  background-color: #ffffff !important;
}
/* FIX: Force Top Header Spacing for Contact Page Only (Matches about.html) */
.page-contact .header__top {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
  margin-top: 0 !important;
  min-height: 0 !important;
}
.header__top .header__wrapper .info li {
  color: #222222 !important; /* Sets the text color for the contact info (address, phone, email). */
  font-size: 16px !important; /* Sets the font size for the contact info. */
  font-weight: 500 !important; /* Sets the font weight for the contact info. */
}
.header__top .header__wrapper .info li i {
  color: #2e0c5e !important; /* Sets the color of the small icons next to the contact info. */
}
.header__top .header__wrapper .social__icon li a {
  background-color: transparent !important; /* Sets the background of the social media icon circles. */
  border-color: #2e0c5e !important; /* Sets the border color of the social media icon circles. */
}
.header__top .header__wrapper .social__icon li a:hover {
  background-color: #2e0c5e !important; /* Sets the background of the icon circles on mouse hover. */
}
.header__top .header__wrapper .social__icon li a i {
  color: #2e0c5e !important; /* Sets the color of the social media icons (F, Twitter, etc.). */
}
.header__top .header__wrapper .social__icon li a:hover i {
  color: #ffffff !important; /* Sets the color of the social media icons on mouse hover. */
}

/* ================================================================= */
/* 3. Main Header & Navigation Menu                                  */
/* ================================================================= */
header.header-section.header__one {
  background-color: #2e0c5e !important; /* Sets the background color of the main navigation bar. */
}
.header-section .main-menu > li > a {
  color: #ffffff !important; /* Sets the text color for the main menu links (Home, About Us, etc.). */
  font-size: 18px !important; /* Sets the font size for the main menu links. */
  font-weight: 600 !important; /* Sets the font weight for the main menu links. */
}
.header-section .main-menu > li > a:hover {
  color: #facc15 !important; /* Sets the text color for main menu links on mouse hover. */
}
.header-section .main-menu > li > a i {
  color: #ffffff !important; /* Sets the color of the dropdown chevron arrow in the menu. */
}

/* ================================================================= */
/* 4. Breadcrumb Banner (Page Title Section)                         */
/* ================================================================= */
section.breadcumd__banner {
  background-color: #f0f0f0 !important; /* Sets the background color for the page title banner. */
}
section.breadcumd__banner .breadcumd__wrapper h2.left__content {
  color: #ffffff !important; /* Sets the color of the main page title (e.g., "Contact Us"). */
  font-size: 48px !important; /* Sets the font size of the main page title. */
  font-weight: 700 !important; /* Sets the font weight of the main page title. */
}
section.breadcumd__banner .breadcumd__wrapper ul.right__content li,
section.breadcumd__banner .breadcumd__wrapper ul.right__content li a {
  color: #facc15 !important; /* Sets the text color of the breadcrumb navigation (e.g., "Home / Contact Us"). */
  font-size: 16px !important; /* Sets the font size of the breadcrumb navigation. */
}
section.breadcumd__banner .breadcumd__wrapper ul.right__content li a:hover {
  color: #facc15 !important; /* Sets the text color of breadcrumb links on mouse hover. */
}
section.breadcumd__banner .breadcumd__wrapper ul.right__content li i {
  color: #2e0c5e !important; /* Sets the color of the icons (house, chevron) within the breadcrumb navigation. */
}

/* ================================================================= */
/* 5. Contact Info Boxes Section                                     */
/* ================================================================= */
section.contact__info {
  background-color: #fbf8f8 !important; /* Sets the background color for the entire contact info section. */
}
section.contact__info .info__items {
  background-color: #ffffff !important; /* Sets the background color of the individual white info boxes. */
}
section.contact__info .info__items .info__icon {
  background-color: #ffffff !important; /* Sets the background of the circle behind the main icon. */
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1) !important; /* Sets the drop shadow for the icon circle. */
}
section.contact__info .info__items .info__icon i {
  color: #2e0c5e !important; /* Sets the color of the main icons (map marker, envelope, phone). */
  font-size: 28px !important; /* Sets the font size of the main icons. */
}
section.contact__info .info__items h4 {
  color: #ffd000 !important; /* Sets the color of the title in each box ("Service Location", etc.). */
  font-size: 24px !important; /* Sets the font size of the title. */
  font-weight: 600 !important; /* Sets the font weight of the title. */
}
section.contact__info .info__items p,
section.contact__info .info__items p a {
  color: #2e0c5e !important; /* Sets the text color of the content (address, email, phone). */
  font-size: 16px !important; /* Sets the font size of the content. */
}
section.contact__info .info__items p a:hover {
  color: #facc15 !important; /* Sets the text color of content links on mouse hover. */
}

/* ================================================================= */
/* 6. Contact Form Section                                           */
/* ================================================================= */
section.contact__us__section {
  background-color: #ffffff !important; /* Sets the background color for the contact form section. */
}
section.contact__us__section .section__title h6 {
  color: #0ace6c !important; /* Sets the color for the small subtitle ("Contact Us"). */
  font-size: 14px !important; /* Sets the font size for the subtitle. */
  font-weight: 600 !important; /* Sets the font weight for the subtitle. */
}
section.contact__us__section .section__title h2 {
  color: #facc15 !important; /* Sets the color for the main header ("Have Any Question?"). */
  font-size: 42px !important; /* Sets the font size for the main header. */
  font-weight: 700 !important; /* Sets the font weight for the main header. */
}
section.contact__us__section .section__title p {
  color: #070707 !important; /* Sets the color for the paragraph text below the header. */
  font-size: 16px !important; /* Sets the font size for the paragraph. */
}
section.contact__us__section .form__clt input,
section.contact__us__section .form__clt__big textarea {
  background-color: #b8b8b84c !important; /* Sets the background color of the input fields and textarea. */
  color: #000000 !important; /* Sets the color of the text that users type into the fields. */
  border: 1px solid #cccccc !important; /* Sets the border for the fields. */
  font-size: 16px !important; /* Sets the font size for the text that users type. */
}
section.contact__us__section .form__clt input::placeholder,
section.contact__us__section .form__clt__big textarea::placeholder {
  color: #050505 !important; /* Sets the color of the placeholder text ("Your Name..."). */
}
section.contact__us__section .cmn--btn {
  background-color: #facc15 !important; /* Sets the background color of the "Send Message" button. */
  border-color: #facc15 !important; /* Sets the border color of the button. */
}
section.contact__us__section .cmn--btn:hover {
  background-color: #2e0c5e !important; /* Sets the background color of the button on mouse hover. */
}
section.contact__us__section .cmn--btn span {
  color: #222222 !important; /* Sets the color of the text inside the button. */
  font-size: 16px !important; /* Sets the font size of the button text. */
  font-weight: 700 !important; /* Sets the font weight of the button text. */
}
section.contact__us__section .cmn--btn:hover span {
  color: #ffffff !important; /* Sets the color of the button text on mouse hover. */
}

/* ================================================================= */
/* 7. Map Section                                                    */
/* ================================================================= */
div.map__section {
  background-color: #e0e0e0 !important; /* Sets a fallback background color in case the map is slow to load. */
}
div.map__section .googpemap iframe {
  border: none !important; /* Removes the default border from the Google Maps iframe. */
}

/* ================================================================= */
/* RESPONSIVE OVERRIDE BLOCK (For screens < 1201px)                  */
/* ================================================================= */
@media (max-width: 1200px) {
  /* ================================================================= */
  /* RESPONSIVE: BREADCRUMB BANNER ADJUSTMENTS                         */
  /* ================================================================= */
  section.breadcumd__banner .breadcumd__wrapper ul.right__content {
    justify-content: center !important; /* Ensures the "Home / Contact" links are centered. */
  }

  /* ================================================================= */
  /* RESPONSIVE: CONTACT INFO BOXES ADJUSTMENTS                        */
  /* ================================================================= */
  section.contact__info .row {
    flex-direction: column !important; /* Stacks the three info boxes vertically. */
    align-items: center !important; /* Centers the stacked boxes horizontally. */
    gap: 1.5rem !important; /* Adds consistent spacing between the stacked boxes. */
  }
  section.contact__info .row > .col-lg-4 {
    width: 90% !important; /* Sets the width of each box to 90% of the screen. */
    max-width: 500px !important; /* Prevents the boxes from becoming too wide on larger tablets. */
    flex: none !important; /* Resets any flexbox growing/shrinking behavior. */
  }

  /* ================================================================= */
  /* RESPONSIVE: CONTACT FORM ADJUSTMENTS                              */
  /* ================================================================= */
  section.contact__us__section .row.g-4 {
    flex-direction: column !important; /* Stacks form elements vertically. */
    align-items: center !important; /* Centers the form elements. */
  }
  section.contact__us__section .row.g-4 > div {
    width: 100% !important; /* Ensures each form row takes the full width. */
    max-width: 100% !important; /* Overrides any max-width. */
    flex: none !important; /* Resets flexbox behavior. */
  }
}

/* ================================================================= */
/* RESPONSIVE OVERRIDE BLOCK (For screens < 768px)                   */
/* ================================================================= */
@media (max-width: 767px) {
  /* ================================================================= */
  /* RESPONSIVE: GLOBAL SECTION PADDING FOR MOBILE                     */
  /* ================================================================= */
  section.contact__info,
  section.contact__us__section {
    padding-top: 60px !important; /* Reduces the top space for these sections on mobile. */
    padding-bottom: 60px !important; /* Reduces the bottom space for these sections on mobile. */
  }

  /* ================================================================= */
  /* RESPONSIVE: BREADCRUMB BANNER FOR MOBILE                          */
  /* ================================================================= */
  section.breadcumd__banner .breadcumd__wrapper h2.left__content {
    font-size: 32px !important; /* Makes the main page title even smaller for mobile phones. */
  }

  /* ================================================================= */
  /* RESPONSIVE: CONTACT FORM SECTION FOR MOBILE                       */
  /* ================================================================= */
  section.contact__us__section .section__title h2 {
    font-size: 32px !important; /* Makes the "Have Any Question?" header smaller on mobile. */
  }

  /* ================================================================= */
  /* RESPONSIVE: MAP FOR MOBILE                                        */
  /* ================================================================= */
  div.map__section .googpemap iframe {
    height: 450px !important; /* Reduces the height of the map on mobile to save vertical space. */
  }
}

/* ====================================================================================== */
/* SECTION: Glass Container Effect for Contact Banner                                    */
/* PURPOSE: Clear glass effect (no blur) with text content and buttons                   */
/* ====================================================================================== */

/* The Glass Container */
.contact-glass-container {
  background-color: rgba(
    0,
    0,
    0,
    0.3
  ) !important; /* Semi-transparent black - CLEAR glass */
  padding: 35px 40px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important; /* Subtle white border */
  max-width: 700px !important;
  text-align: center !important;
  margin: 0 auto !important;
  /* NO backdrop-filter - keeps it CLEAR, not frosted */
}

/* Heading inside glass container */
.contact-heading {
  color: #ffffff !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

/* Description text inside glass container */
.contact-description {
  color: #f0f0f0 !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
}

/* Button container */
.contact-buttons {
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
  justify-content: center !important;
}

/* Base button styles (matching index.html) */
.contact-btn {
  padding: 12px 28px !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  transition: all 0.3s ease !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
  text-transform: capitalize !important;
}

/* Primary button (purple with yellow border) */
.contact-btn-primary {
  background-color: rgba(99, 17, 222, 0.7) !important;
  color: #ffffff !important;
  border: 2px solid #facc15 !important;
}

.contact-btn-primary:hover {
  background-color: #facc15 !important;
  color: #2e0c5e !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Secondary button (transparent with white border) */
.contact-btn-secondary {
  background-color: transparent !important;
  color: #ffffff !important;
  border: 2px solid #ffffff !important;
}

.contact-btn-secondary:hover {
  background-color: #ffffff !important;
  color: #2e0c5e !important;
  border-color: #ffffff !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3) !important;
}

/* Responsive adjustments for glass container */
@media (max-width: 768px) {
  .contact-glass-container {
    padding: 25px 20px !important;
    max-width: 100% !important;
  }

  .contact-heading {
    font-size: 32px !important;
  }

  .contact-description {
    font-size: 16px !important;
  }

  .contact-buttons {
    justify-content: center !important;
  }
}

/* ====================================================================================== */
/* END OF FILE                                                                           */
/* ====================================================================================== */

/* ========================================================================== */
/* ---- 1) BUTTON SHAPE + BASE STATE ---------------------------------------- */
.header__top .social.social__icon li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: calc(18px + 10px * 2);
  height: calc(18px + 10px * 2);
  color: #facc15 !important;
  background: transparent !important;
  border: 2px solid #facc15 !important;
  border-radius: 9999px !important;
  line-height: 1;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  text-decoration: none !important;
}

.header__top .social.social__icon li a i {
  font-size: 18px !important;
  color: currentColor !important;
}

/* ---- 2) HOVER + FOCUS ----------------------------------------------------- */
.header__top .social.social__icon li a:hover,
.header__top .social.social__icon li a:focus-visible {
  transform: translateY(-2px);
  color: #ffffff !important;
  background: #2e0c5e !important;
  border-color: #2e0c5e !important;
  outline: none !important;
}

.header__top .social.social__icon li a:focus-visible {
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.35);
}

/* ---- 3) ALIGNABLE IMG - sized to match icons ------------------------------ */
.header__top .social.social__icon li a[aria-label="Alignable"] img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(84%) sepia(78%) saturate(508%)
    hue-rotate(357deg) brightness(103%) contrast(102%);
}

/* ========================================================================== */

/* ========================================================================== */
/* ========================================================================== */

/* ========================================================================== */
/* ---- 1) BUTTON SHAPE + BASE STATE ---------------------------------------- */
.header__top .social.social__icon li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px !important;
  height: 36px !important;
  color: #facc15 !important;
  background: transparent !important;
  border: 2px solid #facc15 !important;
  border-radius: 50% !important;
  line-height: 1;
  transition: all 0.2s ease;
  text-decoration: none !important;
}

.header__top .social.social__icon li a i {
  font-size: 16px !important;
  color: currentColor !important;
}

/* ---- 2) HOVER + FOCUS ----------------------------------------------------- */
.header__top .social.social__icon li a:hover,
.header__top .social.social__icon li a:focus-visible {
  transform: translateY(-2px);
  color: #ffffff !important;
  background: #2e0c5e !important;
  border-color: #2e0c5e !important;
}

/* ---- 3) ALIGNABLE IMG - sized to match icons ------------------------------ */
.header__top .social.social__icon li a[aria-label="Alignable"] img {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(84%) sepia(78%) saturate(508%)
    hue-rotate(357deg) brightness(103%) contrast(102%);
}

/* ========================================================================== */

.footer-widget .social-icons .alignable-custom-icon {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain;
}

/* ========================================================================== */

/* ========================================================================== */
/* SOCIAL ICONS SIZING FIX — Header + Footer (SIZE ONLY, NO COLOR CHANGES)   */
/* ========================================================================== */

/* Header top bar: Increase circle size and center icons */
.header__top .social.social__icon li a {
  width: 36px !important;
  height: 36px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Header icons: Font Awesome icon size */
.header__top .social.social__icon li a i {
  font-size: 16px !important;
}

/* Header Alignable img: Match other icon sizes */
.header__top .social.social__icon li a img {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain !important;
}

/* Footer Alignable img: Match other footer icon sizes */
.footer-widget .social-icons .alignable-custom-icon {
  width: 20px !important;
  height: 20px !important;
  object-fit: contain !important;
}

/* ============================================================ */
/* RESPONSIVE BANNER HEIGHT - 26 Breakpoints (320px to 8192px+) */
/* Full image visibility with background-size: contain          */
/* ============================================================ */

/* Base/Default - Extra small screens */
:root {
  --banner-height: 180px;
}

/* 320px+ - Small phones */
@media (min-width: 320px) {
  :root { --banner-height: 200px; }
}

/* 360px+ - Small phones */
@media (min-width: 360px) {
  :root { --banner-height: 220px; }
}

/* 375px+ - iPhone SE/8 */
@media (min-width: 375px) {
  :root { --banner-height: 230px; }
}

/* 400px+ - Medium phones */
@media (min-width: 400px) {
  :root { --banner-height: 240px; }
}

/* 414px+ - iPhone Plus/Max */
@media (min-width: 414px) {
  :root { --banner-height: 260px; }
}

/* 480px+ - Large phones */
@media (min-width: 480px) {
  :root { --banner-height: 280px; }
}

/* 576px+ - Phablets */
@media (min-width: 576px) {
  :root { --banner-height: 350px; }
}

/* 768px+ - Tablets portrait */
@media (min-width: 768px) {
  :root { --banner-height: 450px; }
}

/* 800px+ - Small tablets */
@media (min-width: 800px) {
  :root { --banner-height: 480px; }
}

/* 992px+ - Tablets landscape */
@media (min-width: 992px) {
  :root { --banner-height: 520px; }
}

/* 1024px+ - iPad/small laptops */
@media (min-width: 1024px) {
  :root { --banner-height: 550px; }
}

/* 1200px+ - Laptops */
@media (min-width: 1200px) {
  :root { --banner-height: 600px; }
}

/* 1280px+ - HD laptops */
@media (min-width: 1280px) {
  :root { --banner-height: 650px; }
}

/* 1366px+ - Common laptops */
@media (min-width: 1366px) {
  :root { --banner-height: 700px; }
}

/* 1440px+ - Large laptops */
@media (min-width: 1440px) {
  :root { --banner-height: 750px; }
}

/* 1600px+ - Desktop monitors */
@media (min-width: 1600px) {
  :root { --banner-height: 800px; }
}

/* 1920px+ - Full HD (1080p) */
@media (min-width: 1920px) {
  :root { --banner-height: 850px; }
}

/* 2048px+ - 2K cinema */
@media (min-width: 2048px) {
  :root { --banner-height: 900px; }
}

/* 2560px+ - QHD (1440p) */
@media (min-width: 2560px) {
  :root { --banner-height: 950px; }
}

/* 3440px+ - Ultrawide */
@media (min-width: 3440px) {
  :root { --banner-height: 1000px; }
}

/* 3840px+ - 4K UHD */
@media (min-width: 3840px) {
  :root { --banner-height: 1100px; }
}

/* 4096px+ - 4K cinema */
@media (min-width: 4096px) {
  :root { --banner-height: 1150px; }
}

/* 5120px+ - 5K */
@media (min-width: 5120px) {
  :root { --banner-height: 1200px; }
}

/* 7680px+ - 8K */
@media (min-width: 7680px) {
  :root { --banner-height: 1300px; }
}

/* 8192px+ - 8K cinema extreme */
@media (min-width: 8192px) {
  :root { --banner-height: 1400px; }
}

/* ================================================================= */
/* MOBILE VISIBILITY SAFEGUARD                                       */
/* Ensures content isn't hidden by "overflow" or "height" issues     */
/* ================================================================= */

@media (max-width: 991px) {
    /* 1. Force Banner to fit content */
    section.banner__section-override {
        height: auto !important;
        min-height: 600px !important;
        overflow: visible !important; /* Prevents cutting off text */
    }

    /* 2. Force Glass Container Visibility */
    .shop__details, 
    .banner__content-override,
    .service__items,
    .blog__items {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important; /* Ensures it renders in flow */
    }
}


/* ============================================================ */
/* RESPONSIVE BANNER HEIGHT - 26 Breakpoints (320px to 8192px+) */
/* Full image visibility with background-size: contain          */
/* ============================================================ */

/* Base/Default - Extra small screens */
:root {
  --banner-height: 180px;
}

/* 320px+ - Small phones */
@media (min-width: 320px) {
  :root { --banner-height: 200px; }
}

/* 360px+ - Small phones */
@media (min-width: 360px) {
  :root { --banner-height: 220px; }
}

/* 375px+ - iPhone SE/8 */
@media (min-width: 375px) {
  :root { --banner-height: 230px; }
}

/* 400px+ - Medium phones */
@media (min-width: 400px) {
  :root { --banner-height: 240px; }
}

/* 414px+ - iPhone Plus/Max */
@media (min-width: 414px) {
  :root { --banner-height: 260px; }
}

/* 480px+ - Large phones */
@media (min-width: 480px) {
  :root { --banner-height: 280px; }
}

/* 576px+ - Phablets */
@media (min-width: 576px) {
  :root { --banner-height: 350px; }
}

/* 768px+ - Tablets portrait */
@media (min-width: 768px) {
  :root { --banner-height: 450px; }
}

/* 800px+ - Small tablets */
@media (min-width: 800px) {
  :root { --banner-height: 480px; }
}

/* 992px+ - Tablets landscape */
@media (min-width: 992px) {
  :root { --banner-height: 520px; }
}

/* 1024px+ - iPad/small laptops */
@media (min-width: 1024px) {
  :root { --banner-height: 550px; }
}

/* 1200px+ - Laptops */
@media (min-width: 1200px) {
  :root { --banner-height: 600px; }
}

/* 1280px+ - HD laptops */
@media (min-width: 1280px) {
  :root { --banner-height: 650px; }
}

/* 1366px+ - Common laptops */
@media (min-width: 1366px) {
  :root { --banner-height: 700px; }
}

/* 1440px+ - Large laptops */
@media (min-width: 1440px) {
  :root { --banner-height: 750px; }
}

/* 1600px+ - Desktop monitors */
@media (min-width: 1600px) {
  :root { --banner-height: 800px; }
}

/* 1920px+ - Full HD (1080p) */
@media (min-width: 1920px) {
  :root { --banner-height: 850px; }
}

/* 2048px+ - 2K cinema */
@media (min-width: 2048px) {
  :root { --banner-height: 900px; }
}

/* 2560px+ - QHD (1440p) */
@media (min-width: 2560px) {
  :root { --banner-height: 950px; }
}

/* 3440px+ - Ultrawide */
@media (min-width: 3440px) {
  :root { --banner-height: 1000px; }
}

/* 3840px+ - 4K UHD */
@media (min-width: 3840px) {
  :root { --banner-height: 1100px; }
}

/* 4096px+ - 4K cinema */
@media (min-width: 4096px) {
  :root { --banner-height: 1150px; }
}

/* 5120px+ - 5K */
@media (min-width: 5120px) {
  :root { --banner-height: 1200px; }
}

/* 7680px+ - 8K */
@media (min-width: 7680px) {
  :root { --banner-height: 1300px; }
}

/* 8192px+ - 8K cinema extreme */
@media (min-width: 8192px) {
  :root { --banner-height: 1400px; }
}

/* ============================================================ */
/* SERVICE GLASS CONTAINER (SYNCED)                            */
/* Source: assets/css/secondary-towing-relocation.css          */
/* ============================================================ */

/* ================================================================= */
/* MOBILE VISIBILITY SAFEGUARD                                       */
/* Ensures content is not hidden by overflow or height issues        */
/* ================================================================= */

@media (max-width: 991px) {
    /* 1. Force Banner to fit content */
    section.banner__section-override {
        height: auto !important;
        min-height: 600px !important;
        overflow: visible !important;
    }

    /* 2. Force Glass Container Visibility */
    .shop__details, 
    .banner__content-override,
    .service__items,
    .blog__items {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
}

/* ====================================================================================== */
/* ====================================================================================== */
/*          UNIVERSAL MASTER FIX - VISUALS + LAYOUT + RESPONSIVENESS                     */
/* ====================================================================================== */
/* ====================================================================================== */

/* ====================================================================================== */
/* 1. GLASS CONTAINER VISUALS (Applies to all screens)                                    */
/* ====================================================================================== */
.service-glass-container {
  background-color: rgba(0, 0, 0, 0.3) !important;
  padding: 35px 40px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  max-width: 800px !important;
  position: relative !important;
  z-index: 10 !important;
}

.service-heading {
  color: #ffffff !important;
  font-size: 48px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  margin-bottom: 20px !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important;
}

.service-description {
  color: #f0f0f0 !important;
  font-size: 17px !important;
  line-height: 1.6 !important;
  margin-bottom: 25px !important;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4) !important;
}

.service-buttons {
  display: flex !important;
  gap: 15px !important;
  flex-wrap: wrap !important;
  margin-top: 20px !important;
}

.service-btn, .cmn--btn {
  white-space: nowrap !important;
  padding: 12px 28px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
}

.service-btn-primary {
  background-color: #facc15 !important;
  color: #222222 !important;
  border: 2px solid #facc15 !important;
}

.service-btn-secondary {
  background-color: transparent !important;
  border: 2px solid #ffffff !important;
  color: #ffffff !important;
}

/* ====================================================================================== */
/* 2. DESKTOP LAYOUT (Screens larger than 991px)                                          */
/* ====================================================================================== */
@media (min-width: 992px) {
  .service-glass-container {
    left: -300px !important;
    margin-left: 0 !important;
    text-align: left !important;
  }
  
  .service-heading {
    text-align: left !important;
  }

  .service-description {
    text-align: left !important;
  }
  
  .service-buttons {
    justify-content: flex-start !important;
  }

  .left-content {
    margin-left: -50px !important;
  }
}

/* ====================================================================================== */
/* 3. MOBILE/TABLET LAYOUT FIX (Screens smaller than 991px)                               */
/* ====================================================================================== */
@media (max-width: 991px) {
    
    .service-glass-container {
        left: 0 !important;
        margin: 20px auto !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 20px !important;
        transform: none !important;
        background-color: rgba(0, 0, 0, 0.6) !important;
        text-align: center !important;
    }

    .service-heading { 
        font-size: 32px !important; 
        text-align: center !important;
    }
    
    .service-description { 
        font-size: 16px !important; 
        text-align: center !important;
    }
    
    .service-buttons { 
        justify-content: center !important; 
    }
    
    .left-content { 
        margin-left: 0 !important; 
    }

    .header-wrapper {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 90px !important;
        padding: 0 15px !important;
        position: relative !important;
    }

    .header-wrapper .main__logo {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        bottom: auto !important;
        z-index: 20 !important;
        width: auto !important;
    }
    
    .header-wrapper .main__logo .logo img {
        height: 50px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .header-wrapper .menu__components {
        position: absolute !important;
        right: 15px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 25 !important;
        display: flex !important;
        gap: 15px !important;
    }

    .header-wrapper .logo__menuadjust nav, .straddle-logo {
        display: none !important;
    }

    section.banner__section,
    section.banner__section-override {
        display: block !important;
        height: auto !important;
        min-height: 800px !important;
        padding-bottom: 60px !important;
        overflow: visible !important;
        margin-bottom: 0 !important;
    }

    .banner__image, 
    .banner__section .swiper-slide .banner__image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        height: 100% !important;
        width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
    }

    .banner__content,
    .banner__content-override {
        position: relative !important;
        margin-top: 80px !important;
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 10 !important;
    }
    
    section.banner__section + section,
    section.banner__section-override + section,
    .feature__section {
        margin-top: 0 !important;
        padding-top: 50px !important;
        background: #fff !important;
        position: relative !important;
        z-index: 5 !important;
    }
}

