/* Extracted from header.blade.php */

body.wc-inquiry-modal-open {
  overflow: hidden;
}

.custom-modal.wc-inquiry-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9990;
  padding: 20px;
  backdrop-filter: blur(8px);
}

.wc-inquiry-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(920px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #111;
  border: 1px solid rgba(237, 184, 49, 0.35);
  border-radius: 18px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5);
  color: #f3ead8;
}

.wc-inquiry-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(237, 184, 49, 0.35);
  border-radius: 50%;
  background: #1c1c1c;
  color: #edb831;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.wc-inquiry-modal__close:hover {
  background: #ff9d23;
  color: #111;
  border-color: #ff9d23;
}

.wc-inquiry-modal__aside {
  padding: 36px 32px;
  background:
    radial-gradient(ellipse at top left, rgba(237, 184, 49, 0.16), transparent 55%),
    #070707;
  border-right: 1px solid rgba(237, 184, 49, 0.22);
}

.wc-inquiry-modal__logo {
  height: 42px;
  width: auto;
  margin-bottom: 22px;
}

.wc-inquiry-modal__kicker {
  margin: 0 0 8px;
  color: #edb831;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wc-inquiry-modal__headline {
  margin: 0 0 12px;
  color: #f3efe8;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 700;
}

.wc-inquiry-modal__copy {
  margin: 0 0 20px;
  color: #d8cbb8;
  font-size: 15px;
  line-height: 1.6;
}

.wc-inquiry-modal__points {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.wc-inquiry-modal__points li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: #f3ead8;
  font-size: 14px;
  line-height: 1.45;
}

.wc-inquiry-modal__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff9d23;
}

.wc-inquiry-modal__contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wc-inquiry-modal__contacts a {
  color: #edb831 !important;
  font-size: 14px;
  text-decoration: none;
}

.wc-inquiry-modal__contacts a:hover {
  color: #ff9d23 !important;
}

.wc-inquiry-modal__contacts i {
  margin-right: 8px;
  width: 14px;
}

.wc-inquiry-modal__form-wrap {
  padding: 36px 32px;
  background: #1c1c1c;
}

.wc-inquiry-modal__title {
  margin: 0 0 4px;
  color: #f3efe8;
  font-size: 22px;
  font-weight: 700;
}

.wc-inquiry-modal__subtitle {
  margin: 0 0 18px;
  color: #9a9388;
  font-size: 14px;
}

.wc-inquiry-modal__form .custom-glass-input,
.wc-inquiry-modal__form .custom-textarea,
.wc-inquiry-modal__form .wc-phone-field__code,
.wc-inquiry-modal__form .wc-phone-field__number {
  width: 100%;
  height: 48px;
  margin: 0 0 12px;
  padding: 12px 14px;
  background: #111 !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: #f3ead8 !important;
  font-size: 14px;
}

.wc-inquiry-modal__form .custom-textarea {
  height: 96px;
  resize: vertical;
}

.wc-inquiry-modal__form select.custom-glass-input,
.wc-inquiry-modal__form .wc-phone-field__code {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23FF9D23' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.wc-inquiry-modal__form select option {
  background: #111;
  color: #f3ead8;
}

.wc-inquiry-modal__form .custom-glass-input::placeholder,
.wc-inquiry-modal__form .custom-textarea::placeholder {
  color: #9a9388;
}

.wc-inquiry-modal__form .custom-glass-input:focus,
.wc-inquiry-modal__form .custom-textarea:focus,
.wc-inquiry-modal__form .wc-phone-field__code:focus,
.wc-inquiry-modal__form .wc-phone-field__number:focus {
  outline: none;
  border-color: #ff9d23;
  box-shadow: 0 0 0 3px rgba(255, 157, 35, 0.18);
}

.wc-inquiry-modal__form .wc-phone-field {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.wc-inquiry-modal__form .wc-phone-field input[type="hidden"] {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.wc-inquiry-modal__form .wc-phone-field__code {
  flex: 0 0 142px;
  width: 142px;
  margin: 0;
}

.wc-inquiry-modal__form .wc-phone-field__number {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.wc-inquiry-modal__form .custom-submit-btn {
  width: 100%;
  min-height: 50px;
  margin-top: 4px;
  border: 0;
  border-radius: 10px;
  background: #ff9d23 !important;
  color: #111 !important;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
}

.wc-inquiry-modal__form .custom-submit-btn:hover,
.wc-inquiry-modal__form .custom-submit-btn:disabled {
  background: #edb831 !important;
}

@media (max-width: 800px) {
  .wc-inquiry-modal__dialog {
    grid-template-columns: 1fr;
  }

  .wc-inquiry-modal__aside {
    display: none;
  }

  .wc-inquiry-modal__form-wrap {
    padding: 28px 20px 24px;
  }
}

/* --- style block --- */

/* Loading overlay styles */
#loading-overlay {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#loading-overlay .spinner {
    border: 5px solid #f3f3f3;
    border-top: 5px solid #FF9D23;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    z-index: 9999;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Custom Styling for SweetAlert2 */
  .custom-swal-popup {
    border-radius: 10px;
    /* Rounded corners */
    background-color: #222;
    /* Dark background */
    color: #fff;
    /* White text */
    font-family: 'Arial', sans-serif;
    /* Custom font */
  }

  .custom-swal-title {
    font-size: 22px;
    font-weight: bold;
    color: #FF9D23;
    /* Gold title */
  }

  .custom-swal-button {
    background-color: #FF9D23 !important;
    /* Gold button */
    color: #222 !important;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 20px;
  }


/* Modern sticky header — uses existing header classes */
.wc-header.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #070707;
  border-bottom: 1px solid rgba(237, 184, 49, 0.22);
}

.wc-header .header-top {
  background: #050505;
  border-bottom: 1px solid rgba(237, 184, 49, 0.16) !important;
}

.wc-header .header-top .inner-container.auto-container,
.wc-header .main-box.auto-container {
  max-width: var(--large-container-width, 1400px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 24px !important;
  padding-right: 24px !important;
  width: 100% !important;
}

.wc-header .header-top .inner-container {
  display: flex !important;
  align-items: center;
  justify-content: space-between !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.wc-header .header-top .list-style-one li,
.wc-header .header-top .list-style-one li a,
.wc-header .header-top .info-btn,
.wc-header .header-top .info-btn span {
  color: #d8cbb8 !important;
}

.wc-header .header-top .list-style-one li i,
.wc-header .header-top .info-btn i {
  color: #edb831 !important;
}

.wc-header .header-lower {
  background: rgba(7, 7, 7, 0.97);
  backdrop-filter: blur(14px);
}

.wc-header .mobile-nav-toggler {
  color: #edb831 !important;
}

.wc-header .header-lower .logo-box {
  flex: 0 0 auto;
  margin-top: 0 !important;
  height: auto !important;
  min-width: 0 !important;
  margin-right: 0 !important;
  padding: 8px 0;
}

.wc-header .header-lower .logo-box:before {
  display: none !important;
}

.wc-header .logo img,
.wc-header #main-logo {
  height: 46px !important;
  width: auto !important;
  max-width: 160px;
}

.wc-header .main-box {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

.wc-header .main-box .nav-outer {
  flex: 1 1 auto;
  width: auto !important;
  justify-content: center !important;
}

.wc-header .main-menu {
  width: 100%;
}

.wc-header .main-menu .navigation {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 42px;
  width: 100%;
  float: none;
}

.wc-header .header-lower .nav-outer .navigation > li,
.wc-header .main-menu .navigation > li {
  float: none !important;
  margin-right: 0 !important;
  padding: 18px 0 !important;
}

.wc-header .main-menu .navigation > li > a {
  color: #f3ead8 !important;
  font-weight: 600;
}

.wc-header .main-menu .navigation > li:hover > a,
.wc-header .main-menu .navigation > li.current > a {
  color: #edb831 !important;
}

.wc-header .btn-box {
  flex: 0 0 auto;
}

.wc-header .btn-box .theme-btn {
  min-width: 0 !important;
  height: auto !important;
  padding: 10px 22px !important;
  line-height: 1.3 !important;
  border-radius: 8px;
}

.wc-header.header-style-one.fixed-header .header-top,
.wc-header.fixed-header .header-top {
  display: none !important;
}

.wc-header.header-style-one.fixed-header .header-lower,
.wc-header.fixed-header .header-lower {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
}

.wc-header .sticky-header {
  display: none !important;
}

body.mobile-menu-visible .wc-header {
  z-index: 100000;
}

.wc-header .wc-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin-left: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fbce4c !important;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  z-index: 30;
}

.wc-header .wc-hamburger .icon,
.wc-header .wc-hamburger i {
  color: #fbce4c !important;
  font-size: 28px;
}

.wc-header .wc-hamburger .lnr-icon-bars {
  display: none;
}

.wc-header .header-lower .outer-box {
  display: none !important;
}

.wc-header .mobile-menu .wc-cloned-nav {
  display: none !important;
}

.wc-header .mobile-menu .menu-box {
  background: #070707;
}

.wc-header .mobile-menu .upper-box {
  border-bottom: 1px solid rgba(237, 184, 49, 0.22);
}

.wc-header .mobile-menu .close-btn {
  border: 0;
  background: transparent;
  color: #edb831;
  font-size: 20px;
  transform: none;
}

.wc-header .wc-mobile-nav {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wc-header .wc-mobile-nav li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wc-header .wc-mobile-nav li a {
  position: relative;
  display: block;
  padding: 12px 52px 12px 20px;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: capitalize;
}

.wc-header .wc-mobile-nav li a:hover,
.wc-header .wc-mobile-nav li.open > a {
  color: #edb831 !important;
}

.wc-header .wc-mobile-nav li.dropdown .dropdown-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 44px;
  height: 44px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
  z-index: 5;
}

.wc-header .wc-mobile-nav li.dropdown .dropdown-btn i {
  display: inline-block;
  transition: transform 0.2s ease;
}

.wc-header .wc-mobile-nav li.dropdown.open > .dropdown-btn i {
  transform: rotate(180deg);
}

.wc-header .wc-mobile-nav li > ul {
  display: none;
  background: rgba(255, 255, 255, 0.03);
}

.wc-header .wc-mobile-nav li.open > ul {
  display: block;
}

.wc-header .wc-mobile-nav li > ul > li > a {
  padding-left: 32px;
  font-size: 14px;
  color: #d8cbb8 !important;
}

.wc-header .wc-mobile-nav li > ul > li > ul > li > a {
  padding-left: 44px;
  font-size: 13px;
}

.wc-header .wc-mobile-cta {
  padding: 20px;
}

.wc-header .wc-mobile-cta__btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 0 !important;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.wc-header .mobile-menu .contact-list-one li .icon,
.wc-header .mobile-menu .contact-list-one li i {
  color: #edb831;
}

.wc-header .mobile-menu .social-links li a {
  color: #edb831 !important;
}

@media (max-width: 1199.98px) {
  .wc-header .header-top {
    display: none !important;
  }

  .wc-header .header-lower .nav-outer {
    display: none !important;
    width: 0 !important;
    flex: 0 0 0 !important;
  }

  .wc-header .main-menu {
    display: none !important;
  }

  .wc-header .wc-hamburger,
  .wc-header .mobile-nav-toggler.wc-hamburger {
    display: flex !important;
  }

  .wc-header .header-lower .logo-box,
  .wc-header.header-style-one .header-lower .logo-box {
    height: auto !important;
    min-width: 0 !important;
    width: auto !important;
    margin: 0 !important;
    padding: 6px 0;
    flex: 0 0 auto;
  }

  .wc-header .main-box,
  .wc-header.header-style-one .main-box {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 16px !important;
    overflow: visible !important;
  }

  .wc-header .logo img,
  .wc-header #main-logo {
    height: 40px !important;
    width: auto !important;
    max-width: 132px;
  }

  .wc-header .btn-box {
    margin-left: auto;
  }

  .wc-header .btn-box .theme-btn,
  .wc-header.header-style-one .btn-box .theme-btn {
    min-width: 0 !important;
    padding: 8px 14px !important;
  }

  .wc-header .header-top .inner-container.auto-container,
  .wc-header .main-box.auto-container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

@media (max-width: 575.98px) {
  .wc-header .btn-box {
    display: none !important;
  }
}

#banner1 .cta-button,
#banner1 .theme-btn.btn-style-one,
.marketing-content .cta-button,
.marketing-content .theme-btn.btn-style-one {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  min-width: 0 !important;
  padding: 12px 24px !important;
  background: #FF9D23 !important;
  border: none !important;
  border-radius: 8px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-decoration: none !important;
  white-space: nowrap;
}

#banner1 .cta-button .btn-title,
#banner1 .theme-btn.btn-style-one .btn-title,
.marketing-content .cta-button .btn-title {
  color: #fff !important;
}

#banner1 .cta-button:hover,
#banner1 .theme-btn.btn-style-one:hover,
.marketing-content .cta-button:hover,
.marketing-content .theme-btn.btn-style-one:hover {
  background: #111 !important;
  color: #fff !important;
}
