/* About Page Styles */
.about__content--maintitle {
  font-size: 36px;
  font-weight: 700;
  color: #2c3e50;
}

.about__thumbnail--img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  .about__thumbnail {
    justify-content: center;
    margin-bottom: 30px;
  }

  .about__content {
    text-align: center;
  }

  .about__content--maintitle {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .about__content--maintitle {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .about__content--maintitle {
    font-size: 24px;
  }
}

/* Contact Page Styles */
.contact-page-content {
  --ion-background-color: #f8f9fa;
}

/* Breadcrumb Section */
.contact-breadcrumb-title {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb__section {
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
}

.breadcrumb__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

.breadcrumb__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.breadcrumb__content--menu {
  list-style: none;
  padding: 0;
  margin: 20px 0 0 0;
  justify-content: center;
}

.breadcrumb__content--menu__items {
  margin: 0 10px;
  color: #fff;
}

.breadcrumb__content--menu__items a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb__content--menu__items a:hover {
  color: #007bff;
}

/* Contact Section */
.contact__section {
  padding: 80px 0;
}

.contact-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
}

.contact__section--hrading__desc {
  text-align: center;
  color: #6c757d;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Contact Info Card */
.contact__info {
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  margin-bottom: 30px;
}

.contact__info--items {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e9ecef;
}

.contact__info--items:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.contact__info--content__title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}

.contact__info--items__inner {
  align-items: flex-start;
  gap: 15px;
}

.contact__info--icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact__info--icon ion-icon {
  font-size: 24px;
  color: white !important;
}

.contact__info--content__desc {
  margin: 0;
  line-height: 1.6;
}

.contact__info--content__desc a {
  color: #495057;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact__info--content__desc a:hover {
  color: #007bff;
}

/* Social Media */
.contact__info--social {
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 15px;
}

.contact__info--social__list {
  margin: 0;
}

.contact__info--social__icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact__info--social__icon:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

.contact__info--social__icon ion-icon {
  font-size: 20px;
  color: white;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form-header {
  font-size: 2rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 30px;
  text-align: center;
}

.contact-form-input-wrapper {
  margin-bottom: 20px;
}

.contact-form-input,
.contact-form-textarea {
  --border-radius: 10px;
  --border-color: #dee2e6;
  --color: #495057;
  --placeholder-color: #6c757d;
  font-size: 16px;
}

.contact-form-input:focus-within,
.contact-form-textarea:focus-within {
  --border-color: #007bff;
  --color: #2c3e50;
}

.contact-form-error {
  color: #dc3545;
  font-size: 14px;
  margin: 5px 0 0 0;
  font-weight: 500;
}

.contact-form-terms-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
  padding: 20px;
  background: #f8f9fa;
  white-space: nowrap;
  border-radius: 10px;
  /* border-left: 4px solid #007bff; */
}

.contact-form-terms-label {
  font-size: 14px;
  line-height: 1.5;
  color: #495057;
}

.contact-required-asterisk {
  color: #dc3545;
  font-weight: bold;
}

.contact-form-terms-error {
  color: #dc3545;
  font-size: 14px;
  margin: 5px 0 0 0;
  font-weight: 500;
  width: 100%;
}

.contact-form-submit-button {
  --background: linear-gradient(135deg, #007bff, #0056b3);
  --border-radius: 10px;
  --box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  --color: white;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  height: 50px;
  transition: all 0.3s ease;
}

.contact-form-submit-button:hover {
  --box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  transform: translateY(-2px);
}

/* Map Section */
.contact-map-area {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Page Mobile Responsive Enhancements */
@media (max-width: 991px) {
  .main__contact--area .row-md-reverse {
    flex-direction: column-reverse;
  }

  .contact__info {
    order: 2;
    margin-bottom: 0;
    margin-top: 30px;
  }

  .contact-form-container {
    order: 1;
  }
}

@media (max-width: 768px) {
  .contact__section {
    padding: 40px 0;
    margin-top: 20px !important;
  }

  .contact__section--hrading__desc br {
    display: none;
  }

  .contact__section--hrading__desc {
    padding: 0 20px;
    font-size: 16px;
  }

  .main__contact--area {
    gap: 20px !important;
  }

  .contact__info {
    padding: 25px 20px;
    margin-top: 20px;
  }

  .contact__info--items {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .contact__info--content__title {
    font-size: 1.1rem;
    margin-bottom: 12px;
  }

  .contact__info--items__inner {
    gap: 12px;
  }

  .contact__info--icon {
    width: 45px;
    height: 45px;
  }

  .contact__info--icon ion-icon {
    font-size: 20px;
  }

  .contact__info--social {
    justify-content: center;
    gap: 12px;
  }

  .contact__info--social__icon {
    width: 40px;
    height: 40px;
  }

  .contact-form-container {
    padding: 25px 20px;
  }

  .contact-form-header {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .contact-form-terms-wrapper {
    padding: 15px;
    margin: 20px 0;
  }

  .contact-map-area {
    height: 300px;
    margin: 0 15px;
  }
}

@media (max-width: 576px) {
  .contact__section {
    padding: 30px 0;
  }

  .contact-section-title {
    font-size: 1.8rem;
    padding: 0 15px;
  }

  .contact__section--hrading__desc {
    font-size: 14px;
    padding: 0 15px;
  }

  .contact__info {
    padding: 20px 15px;
    margin: 15px;
  }

  .contact__info--content__title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .contact__info--content__desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact__info--icon {
    width: 40px;
    height: 40px;
  }

  .contact__info--icon ion-icon {
    font-size: 18px;
  }

  .contact__info--social__icon {
    width: 35px;
    height: 35px;
  }

  .contact__info--social__icon ion-icon {
    font-size: 16px;
  }

  .contact-form-container {
    padding: 20px 15px;
    margin: 0 15px;
  }

  .contact-form-header {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }

  .contact-form-input,
  .contact-form-textarea {
    font-size: 16px;
  }

  .contact-form-terms-wrapper {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    white-space: normal;
  }

  .contact-form-terms-label {
    font-size: 13px;
    white-space: normal;
  }

  .contact-form-submit-button {
    height: 45px;
    font-size: 15px;
  }

  .contact-map-area {
    height: 250px;
    margin: 0 15px;
  }

  .section__heading {
    margin-bottom: 30px !important;
  }
}

/* Fix form column spacing on mobile */
@media (max-width: 768px) {
  .contact__form--inner ion-col[style*="left"] {
    left: 0 !important;
  }

  .contact__form--inner ion-row ion-col {
    padding: 0 8px;
  }
}

@media (max-width: 576px) {
  .contact__form--inner ion-row ion-col {
    padding: 0 4px;
  }
}

/* Utility Classes */
.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.ion-justify-content-center {
  justify-content: center;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pt-0 {
  padding-top: 0;
}

.section--padding {
  padding: 60px 0;
}

.border-radius-10 {
  border-radius: 10px;
}

.text-white {
  color: white;
}

.navigation_link_black {
  color: #2c3e50;
  font-weight: 500;
}

.navigation_link_black:hover {
  color: #007bff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================= HOME SLIDER MOBILE RESPONSIVE ================= */

/* Home Slider Mobile Styles */
@media (max-width: 991px) {
  .main-slider-wrapper {
    padding: 20px 0;
  }

  .main-slider-wrapper .row {
    flex-direction: column;
  }

  .main-slider-wrapper .col-lg-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .slider-main {
    height: 300px !important;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .content-info {
    width: 100%;
    padding: 0 20px;
  }

  .content-info .title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    opacity: 1 !important;
  }

  .swiper-meta-items {
    opacity: 1 !important;
  }

  .swiper-meta-items .price-name {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .content-btn {
    margin-bottom: 20px;
    opacity: 1 !important;
  }

  .slider-thumbs {
    justify-content: center;
    display: flex;
    align-items: center;
  }

  .current-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-media {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-media .img-preview {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .banner-media .img-preview img {
    max-width: 250px !important;
    height: 300px !important;
    margin: 0 auto;
    display: block;
  }

  .next-slide-preview {
    display: none !important;
  }

  .slider-nav-icon {
    right: 10px !important;
    bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .main-slider-wrapper {
    padding: 15px;
  }

  .slider-main {
    height: 250px !important;
  }

  .content-info {
    padding: 0 20px;
  }

  .content-info .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    opacity: 1 !important;
  }

  .swiper-meta-items {
    opacity: 1 !important;
  }

  .swiper-meta-items .price-name {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .content-btn {
    opacity: 1 !important;
  }

  .content-btn .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .banner-media .img-preview img {
    max-width: 200px !important;
    height: 250px !important;
  }

  .slider-nav-icon {
    width: 40px !important;
    height: 40px !important;
    right: 5px !important;
    bottom: 15px !important;
  }

  .slider-nav-icon i {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .main-slider-wrapper {
    padding: 10px;
  }

  .slider-main {
    height: 200px !important;
  }

  .content-info {
    padding: 0 15px;
  }

  .content-info .title {
    font-size: 1.3rem;
    margin-bottom: 8px;
    opacity: 1 !important;
  }

  .swiper-meta-items {
    opacity: 1 !important;
  }

  .swiper-meta-items .price-name {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .content-btn {
    opacity: 1 !important;
  }

  .content-btn .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .banner-media .img-preview img {
    max-width: 180px !important;
    height: 220px !important;
  }

  .slider-nav-icon {
    width: 35px !important;
    height: 35px !important;
    right: -10px !important;
    bottom: 90px !important;
  }

  .slider-nav-icon i {
    font-size: 12px !important;
  }
}

/* Force visibility for all slider elements on mobile */
@media (max-width: 991px) {

  .slick-slide.active .content-info .title,
  .slick-slide.active .swiper-meta-items,
  .slick-slide.active .content-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: none !important;
  }

  .slick-slide .content-info .title,
  .slick-slide .swiper-meta-items,
  .slick-slide .content-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
}

/* Bottom Content Mobile */
@media (max-width: 768px) {
  .bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .bottom-content svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .bottom-content .sub-title {
    font-size: 14px;
  }

  .bottom-content .title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .bottom-content {
    padding: 15px;
  }

  .bottom-content svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .bottom-content .sub-title {
    font-size: 12px;
  }

  .bottom-content .title {
    font-size: 1rem;
  }
}

/* Star Elements Mobile */
@media (max-width: 768px) {

  .star-1,
  .star-2 {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 576px) {

  .star-1,
  .star-2 {
    width: 30px !important;
    height: 30px !important;
  }
}

vigation_link_black {
  color: #2c3e50;
  font-weight: 500;
}

.navigation_link_black:hover {
  color: #007bff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ================= HOME SLIDER MOBILE RESPONSIVE ================= */

/* Home Slider Mobile Styles */
@media (max-width: 991px) {
  .main-slider-wrapper {
    padding: 20px 0;
  }

  .main-slider-wrapper .row {
    flex-direction: column;
  }

  .main-slider-wrapper .col-lg-6 {
    width: 100%;
    margin-bottom: 30px;
  }

  .slider-main {
    height: 300px !important;
    text-align: center;
  }

  .content-info .title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }

  .swiper-meta-items .price-name {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .content-btn {
    margin-bottom: 20px;
  }

  .slider-thumbs {
    justify-content: center;
  }

  .current-slide {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .banner-media .img-preview img {
    max-width: 250px !important;
    height: 300px !important;
  }

  .next-slide-preview {
    display: none !important;
  }

  .slider-nav-icon {
    right: 10px !important;
    bottom: 20px !important;
  }
}

@media (max-width: 768px) {
  .main-slider-wrapper {
    padding: 15px;
  }

  .slider-main {
    height: 250px !important;
  }

  .content-info {
    padding: 0 20px;
  }

  .content-info .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .swiper-meta-items .price-name {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
  }

  .content-btn .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .banner-media .img-preview img {
    max-width: 200px !important;
    height: 250px !important;
  }

  .slider-nav-icon {
    width: 40px !important;
    height: 40px !important;
    right: 5px !important;
    bottom: 15px !important;
  }

  .slider-nav-icon i {
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .main-slider-wrapper {
    padding: 10px;
  }

  .slider-main {
    height: 200px !important;
  }

  .content-info {
    padding: 0 15px;
  }

  .content-info .title {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .swiper-meta-items .price-name {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .content-btn .btn {
    padding: 8px 16px;
    font-size: 13px;
  }

  .banner-media .img-preview img {
    max-width: 180px !important;
    height: 220px !important;
  }

  .slider-nav-icon {
    width: 35px !important;
    height: 35px !important;
    right: -10px !important;
    bottom: 90px !important;
  }

  .slider-nav-icon i {
    font-size: 12px !important;
  }
}

/* Bottom Content Mobile */
@media (max-width: 768px) {
  .bottom-content {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .bottom-content svg {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .bottom-content .sub-title {
    font-size: 14px;
  }

  .bottom-content .title {
    font-size: 1.2rem;
    line-height: 1.3;
  }
}

@media (max-width: 576px) {
  .bottom-content {
    padding: 15px;
  }

  .bottom-content svg {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
  }

  .bottom-content .sub-title {
    font-size: 12px;
  }

  .bottom-content .title {
    font-size: 1rem;
  }
}

/* Star Elements Mobile */
@media (max-width: 768px) {

  .star-1,
  .star-2 {
    width: 40px !important;
    height: 40px !important;
  }
}

@media (max-width: 576px) {

  .star-1,
  .star-2 {
    width: 30px !important;
    height: 30px !important;
  }
}

/* Slider Animation Mobile Optimization */
@media (max-width: 768px) {
  .slick-slide {
    transition: all 0.4s ease-in-out !important;
  }

  .content-info {
    transition: transform 0.6s ease-out 0.1s !important;
  }

  .content-info .title,
  .swiper-meta-items,
  .content-btn {
    transition: opacity 0.4s ease-out !important;
  }
}

vigation_link_black {
  color: #2c3e50;
  font-weight: 500;
}

.navigation_link_black:hover {
  color: #007bff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.navigation_link_black {
  color: #000;
}

/* Enquiry Dialog Styles */
.enquiry-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.enquiry-dialog-content {
  background: white;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  position: relative;
  z-index: 10000;
  transform: scale(0.8) translateY(50px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.enquiry-dialog-content.open {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.enquiry-dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 30px 20px;
  border-bottom: 1px solid #e9ecef;
}

.enquiry-dialog-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 0;
}

.enquiry-dialog-close-btn {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  color: #6c757d;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.enquiry-dialog-close-btn:hover {
  background: #f8f9fa;
  color: #dc3545;
}

.enquiry-dialog-body {
  padding: 20px 30px;
  max-height: 60vh;
  overflow-y: auto;
}

.custom-scroll::-webkit-scrollbar {
  width: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #007bff;
  border-radius: 3px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #0056b3;
}

.enquiry-dialog-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.enquiry-form-group {
  display: flex;
  flex-direction: column;
}

.enquiry-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 8px;
}

.required {
  color: #dc3545;
  font-weight: bold;
}

.enquiry-form-input,
.enquiry-form-textarea {
  padding: 12px 15px;
  border: 2px solid #dee2e6;
  border-radius: 10px;
  font-size: 16px;
  color: #495057;
  background: white;
  transition: all 0.3s ease;
  font-family: inherit;
}

.enquiry-form-input:focus,
.enquiry-form-textarea:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.enquiry-form-input::placeholder,
.enquiry-form-textarea::placeholder {
  color: #6c757d;
}

.enquiry-form-input[readonly] {
  background: #f8f9fa;
  color: #6c757d;
}

.enquiry-form-textarea {
  resize: vertical;
  min-height: 100px;
}

.enquiry-dialog-footer {
  padding: 20px 30px 25px;
  border-top: 1px solid #e9ecef;
}

.enquiry-button-group {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}

.enquiry-submit-btn,
.enquiry-cancel-btn {
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 100px;
  justify-content: center;
}

.enquiry-submit-btn {
  background: linear-gradient(135deg, #007bff, #0056b3) !important;
  color: white;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.enquiry-submit-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.enquiry-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.enquiry-cancel-btn {
  background: #6c757d;
  color: white;
}

.enquiry-cancel-btn:hover:not(:disabled) {
  background: #5a6268;
  transform: translateY(-1px);
}

.enquiry-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: enquiry-spin 1s linear infinite;
}

@keyframes enquiry-spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .enquiry-dialog-overlay {
    padding: 10px;
  }

  .enquiry-dialog-content {
    max-height: 95vh;
  }

  .enquiry-dialog-header,
  .enquiry-dialog-body,
  .enquiry-dialog-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .enquiry-dialog-title {
    font-size: 1.3rem;
  }

  .enquiry-button-group {
    flex-direction: column;
  }

  .enquiry-submit-btn,
  .enquiry-cancel-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {

  .enquiry-dialog-header,
  .enquiry-dialog-body,
  .enquiry-dialog-footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .enquiry-form-input,
  .enquiry-form-textarea {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }
}

/* ================= HEADER FIX ================= */

.site-header {
  position: relative;
  z-index: 10000;
  background: #ffffff;
}

/* Ionic stacking context fix */
ion-router-outlet,
ion-page,
ion-content {
  z-index: 1;
}

/* Ensure menu visible */
.header-nav {
  position: relative;
  z-index: 10001;
}

/* Mega menu visibility */
.mega-menu {
  z-index: 10002;
}

/* Mobile menu */
.navbar-collapse.show {
  z-index: 10003;
  top: 25px;
  display: block !important;
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .navbar-collapse {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .navbar-collapse.show {
    display: block !important;
    opacity: 1;
    visibility: visible;
  }
}

/* Nav Menu List Styles */
.nav-menu-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 30px;
  top: 25px;
  margin-top: 25px;
}

.nav-menu-list li {
  position: relative;
}

.nav-menu-list li a {
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  transition: color 0.3s ease;
}

.nav-menu-list li a:hover {
  color: #007bff;
}

@media (max-width: 991px) {
  .nav-menu-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 20px 0;
    margin-top: 0;
  }

  .nav-menu-list::before {
    display: none;
  }

  .nav-menu-list li {
    width: 100%;
    border-bottom: 1px solid #e9ecef;
  }

  .nav-menu-list li:last-child {
    border-bottom: none;
  }

  .nav-menu-list li a {
    display: block;
    padding: 15px 20px;
    border-bottom: none;
    font-size: 16px;
  }

  .header__menu--link {
    padding: 15px 20px;
    font-size: 16px;
  }

  /* Mobile category dropdown */
  .header__menu--items {
    position: relative;
  }

  .header__menu--link {
    cursor: pointer;
    position: relative;
  }

  .menu__plus--icon {
    transition: transform 0.3s ease;
  }

  .header__menu--items.active .menu__plus--icon {
    transform: rotate(45deg);
  }

  .header__sub--menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .header__menu--items.active .header__sub--menu {
    max-height: 300px;
  }
}

/* Category Dropdown Styles */
.mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-title {
  margin-bottom: 15px;
}

.menu-title>a {
  font-weight: 600;
  color: #2c3e50;
  padding: 10px 0;
  border-bottom: 2px solid #007bff;
  display: block;
}

.menu__plus--icon {
  float: right;
  color: #007bff;
}

/* Sub Category Styles */
.demo-menu {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
}

.header__sub--menu__items {
  margin-bottom: 8px;
}

.header__sub--menu__link {
  display: block;
  padding: 8px 15px;
  color: #6c757d;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.header__sub--menu__link:hover {
  background: #f8f9fa;
  color: #007bff;
  transform: translateX(5px);
}

/* Updated Category Menu Styles */
.header__menu--items {
  position: relative;
}

.header__menu--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: #2c3e50;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.header__menu--link:hover {
  color: #007bff;
}

.menu__plus--icon {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.header__menu--items:hover .menu__plus--icon {
  transform: rotate(45deg);
}

/* Sub Menu Dropdown */
.header__sub--menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 15px 0;
  min-width: 250px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
  margin: 0;
}

.header__menu--items:hover .header__sub--menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__sub--menu__items {
  margin: 0;
}

.header__sub--menu__link {
  display: block;
  padding: 10px 20px;
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.header__sub--menu__link:hover {
  background: #f8f9fa;
  color: #007bff;
  border-left-color: #007bff;
  padding-left: 25px;
}

@media (max-width: 991px) {
  .header__sub--menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fa;
    margin-top: 10px;
    border-radius: 5px;
  }

  .header__sub--menu__link {
    padding: 8px 15px;
  }
}

/* ================= MOBILE RESPONSIVE STYLES ================= */

/* Header Mobile Styles */
@media (max-width: 991px) {
  .site-header .main-bar {
    padding: 10px 0;
  }

  .logo-header img {
    max-height: 40px;
  }

  .navbar-toggler {
    /* padding: 8px; */
    border: none;
    background: transparent;
    display: block;
  }

  .navbar-toggler span {
    display: block;
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 4px 0;
    transition: 0.3s;
  }

  .header-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 10004;
    padding: 0;
    display: none;
    overflow-y: auto;
  }

  .header-nav.show {
    display: block;
  }

  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
  }

  .mobile-menu-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #2c3e50;
    cursor: pointer;
    padding: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .dz-social-icon {
    margin-top: 30px;
    padding: 20px;
    border-top: 1px solid #e9ecef;
    justify-content: center;
  }

  .dz-social-icon ul {
    gap: 15px;
  }
}

/* Category Page Mobile Styles */
@media (max-width: 768px) {
  .breadcrumb__section {
    padding: 60px 0;
  }

  .breadcrumb-title {
    font-size: 2rem;
  }

  .content-inner-3 {
    padding: 20px 0;
  }

  .col-20 {
    display: none;
  }

  .col-80 {
    width: 100%;
  }

  .filter-wrapper {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
  }

  .filter-left-area,
  .filter-right-area {
    width: 100%;
  }

  .filter-tag {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tag-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
}

@media (max-width: 576px) {
  .logo-header img {
    max-height: 75px;
  }

  .breadcrumb-title {
    font-size: 1.5rem;
  }

  .container-fluid {
    padding: 0 15px;
  }

  .shop-card {
    margin-bottom: 20px;
  }

  .col-6 {
    width: 50%;
    padding: 5px;
  }

  .filter-wrapper {
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 15px;
  }

  .default-select {
    font-size: 14px;
  }
}

/* Mobile Filter Panel */
@media (max-width: 991px) {
  .shop-filter {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding: 20px;
  }

  .shop-filter.active {
    left: 0;
  }

  .panel-close-btn {
    display: block;
    position: absolute;
    top: 15px;
    right: 15px;
    background: #007bff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }

  .widget-container {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
  }

  .widget-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #2c3e50;
  }

  .category-item {
    padding: 10px 15px;
    margin-bottom: 8px;
    background: white;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
  }

  .category-item:hover,
  .category-item.active {
    background: #007bff;
    color: white;
    border-color: #007bff;
  }

  .product-count {
    float: right;
    font-size: 12px;
    opacity: 0.8;
  }
}

/* Product Grid Mobile */
@media (max-width: 576px) {
  .col-6.col-xl-4.col-lg-6.col-md-6.col-sm-6 {
    width: 50%;
    padding: 5px;
  }

  .shop-card .dz-media img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }

  .shop-card .dz-content {
    padding: 10px;
  }

  .shop-card .title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .shop-card .price {
    font-size: 16px;
    font-weight: 600;
  }

  .cart_empty {
    padding: 30px 15px;
  }

  .cart_empty h2 {
    font-size: 1.5rem;
  }
}

/* Mobile Menu Toggle Animation */
@media (max-width: 991px) {
  .navbar-toggler.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-toggler.open span:nth-child(2) {
    opacity: 0;
  }

  .navbar-toggler.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
}

/* Hide menu button on desktop */
@media (min-width: 992px) {
  .navbar-toggler {
    display: none !important;
  }
}

/* Show menu button only on mobile */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block !important;
  }
}

/* ================= PRODUCT DETAILS MOBILE RESPONSIVE ================= */

/* Product Details Mobile Styles */
@media (max-width: 768px) {
  .product-details-content {
    --ion-background-color: #f8f9fa;
  }

  .dz-product-detail {
    padding: 15px;
    margin-bottom: 20px;
  }

  .swiper-btn-center-lr {
    flex-direction: column;
  }

  .product-gallery-swiper2 {
    order: 1;
    margin-bottom: 15px;
  }

  .thumb-swiper-lg {
    order: 2;
    height: auto !important;
    direction: horizontal !important;
  }

  .thumb-swiper-lg .swiper-wrapper {
    flex-direction: row;
    top: 20px;
  }

  .thumb-swiper-lg .swiper-slide {
    height: 80px !important;
    width: 80px !important;
    margin-right: 10px;
  }

  .dz-product-detail.style-2 {
    padding: 15px;
  }

  .title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .price {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .btn-group.cart-btn {
    margin-top: 20px;
  }

  .btn-group.cart-btn .btn {
    padding: 12px 20px;
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .container-fluid {
    padding: 0 15px;
  }

  .col-xxl-6.col-xl-6.col-lg-6.col-md-6 {
    padding: 5px;
  }

  .dz-product-detail {
    padding: 10px;
  }

  .title {
    font-size: 1.3rem;
  }

  .para-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .meta-content {
    flex-direction: column;
    align-items: flex-start !important;
  }

  .dz-info ul {
    flex-wrap: wrap;
    margin-bottom: 10px;
  }

  .dz-info ul li {
    margin-right: 10px;
    margin-bottom: 5px;
  }

  .banner-social-media {
    margin-top: 15px;
  }

  .banner-social-media ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* Product Description Tabs Mobile */
@media (max-width: 768px) {
  .product-description {
    /* padding: 20px 15px; */
  }

  .nav-tabs {
    flex-direction: column;
    border-bottom: none;
  }

  .nav-tabs .nav-link {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: center;
  }

  .nav-tabs .nav-link.active {

    color: white;
    border-color: #007bff;
  }

  .tab-content {
    margin-top: 20px;
  }

  .detail-bx {
    text-align: left;
    padding: 15px;
  }

  .detail-bx .title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  .feature-detail {
    padding-left: 0;
  }

  .feature-detail li {
    margin-bottom: 10px;
    font-size: 14px;
  }
}

/* Related Products Mobile */
@media (max-width: 768px) {
  .related-product-area {
    padding: 40px 0;
  }

  .section__heading--maintitle {
    font-size: 24px !important;
    margin-bottom: 20px;
  }

  .related-products-swiper {
    padding: 0 15px;
  }

  .related-products-swiper .swiper-slide {
    padding: 5px;
  }
}

@media (max-width: 576px) {
  .related-product-area {
    padding: 30px 0;
  }

  .section__heading--maintitle {
    font-size: 20px !important;
  }

  .mb-75 {
    margin-bottom: 30px !important;
  }

  .pb-95 {
    padding-bottom: 40px !important;
  }
}

/* Breadcrumb Mobile */
@media (max-width: 768px) {
  .breadcrumb__section {
    padding: 40px 0;
  }

  .breadcrumb__content--title {
    font-size: 1.8rem;
  }

  .section--padding {
    padding: 40px 0;
  }

  .mb-95 {
    margin-bottom: 60px !important;
  }

  .breadcrumb__content--menu {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .breadcrumb__section {
    padding: 30px 0;
  }

  .breadcrumb__content--title {
    font-size: 1.5rem;
  }

  .mb-95 {
    margin-bottom: 40px !important;
  }
}


.main-slider-wrapper .slider-inner .title {
  font-size: 60px;
}

.main-slider-wrapper .slider-inner .swiper-meta-items {
  margin-bottom: 0px;
}