/* Profile Icon Styles */
#user-profile-container .btn-link {
  color: var(--white-color) !important;
  transition: all 0.3s ease;
  background-color: var(--primary-color);
  width: 55px;
  height: 55px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

#user-profile-container .btn-link:hover {
  background-color: var(--secondary-color);
  color: var(--white-color) !important;
}

#user-profile-container .dropdown-menu {
  background-color: var(--white-color);
  border: none;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
}

:root {
  --white-color: #ffffff;
  --primary-color: #0d6efd;
  --secondary-color: #0a58ca;
  --section-bg-color: #f0f2f5;
  --custom-btn-bg-color: #0d6efd;
  /* przyciskiu */
  --custom-btn-bg-hover-color: #0b5ed7;
  --dark-color: #000000;
  --p-color: #717275;
  --border-color: #0d6efd;
  --link-hover-color: #0a58ca;

  --body-font-family: 'Unbounded', cursive;


  --h1-font-size: 74px;
  --h2-font-size: 46px;
  --h3-font-size: 32px;
  --h4-font-size: 28px;
  --h5-font-size: 24px;
  --h6-font-size: 22px;
  --p-font-size: 20px;
  --btn-font-size: 16px;
  --copyright-font-size: 14px;

  --border-radius-large: 100px;
  --border-radius-medium: 20px;
  --border-radius-small: 10px;

  --font-weight-thin: 200;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-normal: 400;
  --font-weight-bold: 700;

  /* Modern UI Variables */
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 20px 50px -10px rgba(0, 0, 0, 0.15);
  --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.text-primary {
  color: var(--primary-color) !important;
}

/* Fix overlapping popups z-index globally */
.swal2-container {
  z-index: 100000 !important;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
}



h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
  line-height: 1.8;
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
  line-height: 1.8;
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding: 100px 50px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.section-overlay+.container {
  position: relative;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  CUSTOM BLOCK BACKGROUND OVERLAY               
-----------------------------------------*/
.custom-block-bg-overlay-wrap:hover {
  background: var(--primary-color);
  transform: scale(1.05);
}

.custom-block-bg-overlay-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  /* Add padding to look nice */
}

.custom-block-bg-overlay-image {
  border-radius: var(--border-radius-medium);
  display: block;
  max-width: 100%;
  height: auto;
  /* Allow natural height */
  transform: rotate(8deg);
}

.custom-block-bg-overlay-wrap:hover .team-info {
  bottom: 10px;
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.5px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(193, 40, 40, 0.4);
}

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.sidebar {
  background: var(--primary-color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  padding: 50px 0 0;
}

.sidebar-sticky {
  height: calc(100vh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  text-align: center;
  position: relative;
}

.navbar {
  background: transparent;
  z-index: 9;
}

.logo-image {
  width: 154px;
  height: auto;
  margin-bottom: 70px;
}

#sidebarMenu .nav-link {
  color: var(--dark-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  position: relative;
}

#sidebarMenu .nav-link.active,
#sidebarMenu .nav-link:hover {
  color: var(--white-color);
}

.navbar-toggler {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 222;
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 25px;
  width: 55px;
  height: 55px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  margin: auto;
  width: 25px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 25px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  /* background-image: url('../images/mit.jpg'); REMOVED as per request */
  background-color: var(--dark-color);
  /* Fallback color */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 50px;
  padding-bottom: 0;
  min-height: 665px;
  border-bottom: 15px solid var(--primary-color);
}

/* Hero Button Overrides for better visibility */

.hero-section h1,
.hero-section .text-white,
.hero-section p,
.hero-section h1.text-white,
.hero-section h2.text-white,
.hero-section h3.text-white,
.hero-section h4.text-white,
.hero-section h5.text-white,
.hero-section h6.text-white {
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.5);
  /* Delicate black outline/shadow */
}

.hero-section .custom-btn.custom-border-btn {
  border-color: var(--white-color) !important;
  color: var(--white-color) !important;
  background: transparent !important;
}

.hero-section .custom-btn.custom-border-btn:hover {
  background: var(--white-color) !important;
  color: var(--primary-color) !important;
}

.hero-section .custom-btn:not(.custom-border-btn):not(.custom-btn-italic) {
  background: var(--white-color) !important;
  color: var(--primary-color) !important;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero-section .custom-btn:not(.custom-border-btn):not(.custom-btn-italic):hover {
  background: var(--secondary-color) !important;
  color: var(--white-color) !important;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 991px) {
  .hero-section {
    height: calc(100vh - 0px);
  }
}

.hero-section::after {
  content: "";
  background: linear-gradient(90deg, var(--primary-color) 0%, #0dcaf0 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.custom-block {
  border: 10px solid var(--primary-color);
  border-radius: 100%;
  box-shadow: var(--shadow-soft);
  position: absolute;
  z-index: 2;
  bottom: -60px;
  right: -60px;
  padding: 50px 90px 50px 50px;
  width: 360px;
  height: 360px;
}

.custom-block .custom-btn {
  background: var(--primary-color);
}

.custom-block .custom-btn:hover {
  background: var(--secondary-color);
}

.custom-block-image {
  border: 10px solid var(--primary-color);
  border-radius: 100%;
  position: absolute;
  top: -60px;
  right: 20px;
  left: 0;
  width: 120px;
  height: 120px;
  margin: auto;
  object-fit: cover;
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section h6 {
  color: var(--secondary-color);
}

.about-section .custom-block-bg-overlay-image {
  width: 100%;
  max-height: 250px;
}

.about-section .custom-block-bg-overlay-wrap {
  position: relative;
}

.team-info {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 10px 40px;
  padding: 10px 17px 10px 20px;
  transition: all 0.3s ease;
}


/*---------------------------------------
  FEATURED               
-----------------------------------------*/
.featured-section {
  /* background-image: url('../images/mit.jpg'); REMOVED as per request */
  background-color: var(--dark-color);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  position: relative;
  text-align: center;
}

.featured-section h2 {
  color: var(--secondary-color);
}

.featured-section p {
  color: var(--white-color);
}

.featured-section .section-overlay {
  background: linear-gradient(90deg, var(--primary-color) 0%, #0dcaf0 100%);
  opacity: 1;
}

.featured-section strong {
  background: var(--white-color);
  color: var(--primary-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
}


/*---------------------------------------
  SERVICES             
-----------------------------------------*/
/*---------------------------------------
  SERVICES             
-----------------------------------------*/
.services-thumb {
  border-radius: 15px;
  /* More rounded */
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  /* Subtle base shadow */
  background: #000;
  /* Dark background backing */
}

.services-thumb:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
  transform: translateY(-8px);
  /* slightly more lift */
}

.services-thumb:hover .services-info {
  opacity: 1 !important;
  transform: translateY(0);
}

.services-thumb:hover .services-image {
  transform: scale(1.05);
  /* subtler zoom */
  opacity: 0.4;
  /* dim image on hover to make text pop */
}

.services-image {
  border-radius: 15px;
  display: block;
  margin: auto;
  transition: all 0.5s ease;
  width: 100%;
  height: 300px;
  /* Fixed height for consistency */
  object-fit: cover;
  /* Ensure image covers area */
}

.services-info {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
  /* Gradient overlay */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 25px;
  transition: all 0.4s ease;
  /* Always visible overlay content? Or hover only? */
  /* Current design seems to hide it unless hovered, or overlay it. */
  /* Let's make it more modern: Text visible at bottom, expanded on hover? */
  /* Reverting to previous logic but cleaner: */
  /* If original logic was opacity 0, keep it or change to persistent label? */
  /* User requested "Revamp". Let's make text always visible at bottom with gradient. */
}

.services-info h4 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.services-thumb-price {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}



.services-thumb-price {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  font-size: var(--copyright-font-size);
  margin-left: auto;
  padding: 5px 10px;
}

.services-info {
  border-radius: 0 0 var(--border-radius-medium) var(--border-radius-medium);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0;
  padding: 20px;
  transform: translateY(20px);
  opacity: 0 !important;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  /* Prevent interaction when hidden */
}

.services-info h4 {
  color: var(--white-color);
}


/*---------------------------------------
  PRICE LIST             
-----------------------------------------*/
.price-list-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.price-list-thumb-wrap {
  padding-right: 50px;
}

.price-list-thumb {
  margin-bottom: 10px;
}

.price-list-thumb:last-child {
  margin-bottom: 0;
}

.price-list-thumb h6 strong {
  color: var(--primary-color);
}

.price-list-thumb h6 {
  align-items: flex-end;
}

.price-list-thumb-divider {
  border-bottom: 2px dotted #000000;
  background: transparent;
  flex-grow: 1;
  height: 0;
  margin: 0 15px 5px;
  min-width: 30px;
}

.price-list-section .custom-block-bg-overlay-wrap {
  padding: 0;
}


/*---------------------------------------
  BOOKING               
-----------------------------------------*/
.booking-section {
  background: var(--white-color);
  position: relative;
}

.booking-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
  box-shadow: var(--shadow-soft);
}

.booking-form .form-label {
  font-weight: var(--font-weight-bold);
  color: var(--dark-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  min-height: 48px;
  /* Ensures alignment even if text wraps */
}

.booking-form .form-label i {
  margin-right: 10px;
  color: var(--primary-color);
  font-size: 1.2rem;
  flex-shrink: 0;
  /* Prevents icon from shrinking */
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.google-map {
  border-radius: var(--border-radius-medium);
  filter: hue-rotate(45deg);
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--white-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  position: relative;
  padding: 80px 50px;
  padding-top: 0;
}

.site-footer::after {
  content: "";
  background: linear-gradient(90deg, var(--primary-color) 0%, #0dcaf0 100%);
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
}

.site-footer-links {
  padding-left: 0;
}

.site-footer-link-item {
  list-style: none;
  display: inline-block;
  margin-right: 15px;
}

.site-footer strong {
  display: block;
  color: var(--secondary-color);
}

.copyright-text {
  font-size: var(--copyright-font-size);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin: 0 3px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 36px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.social-icon-link span {
  display: block;
}


/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding,
  .hero-section {
    padding: 50px 25px;
  }

  .custom-block {
    display: none;
  }

  .navbar {
    background-color: var(--dark-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 30px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
  }

  .booking-form {
    padding: 45px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .services-info h4 {
    font-size: 20px;
  }

  .booking-form {
    padding: 35px;
  }
}

/* Custom Selected Date in Calendar */
.fc-day.custom-selected-day {
  background-color: var(--primary-color) !important;
  transition: background-color 0.3s;
}

.fc-day.custom-selected-day .fc-daygrid-day-number {
  color: var(--dark-color) !important;
  font-weight: bold;
}

/*---------------------------------------
  CUSTOM MODAL               
-----------------------------------------*/
.custom-modal .modal-content {
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.custom-modal .modal-header {
  /* No background, clean look */
  padding: 25px 30px 10px;
}

.custom-modal .modal-title {
  color: var(--dark-color);
  font-size: 1.5rem;
}

.custom-modal .modal-title i {
  color: var(--primary-color);
}

.custom-modal .modal-body {
  padding: 20px 30px;
}

.custom-modal .form-control {
  border-radius: 12px;
  padding: 15px;
}

.custom-modal .form-control:focus {
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.15);
  background-color: var(--white-color);
}

.custom-modal .modal-footer {
  padding: 10px 30px 30px;
}

.custom-modal .btn {
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s;
}

.custom-modal .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Discount Box Pulse Animation */
@keyframes pulse-custom {
  0% {
    transform: scale(1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  50% {
    transform: scale(1.02);
    box-shadow: 0 0.5rem 1.5rem rgba(13, 110, 253, 0.4);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }
}

.discount-box {
  animation: pulse-custom 2s infinite ease-in-out;
  border-left: 5px solid var(--primary-color);
  background-color: var(--white-color);
  border-radius: var(--border-radius-small);
}

.discount-box i {
  font-size: 2rem;
  color: var(--primary-color);
}

/* Mobile Optimizations */
@media screen and (max-width: 767px) {

  /* Prevent iOS zoom on inputs */
  input[type="text"],
  input[type="number"],
  input[type="email"],
  input[type="tel"],
  select,
  textarea {
    font-size: 16px !important;
  }

  /* Responsive Images */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Discount Box Mobile Stack */
  .discount-box {
    flex-direction: column;
    text-align: center;
    padding: 20px !important;
  }

  .discount-box .text-start {
    text-align: center !important;
  }

  .discount-box i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  /* Fix Image Clipping */
  .custom-block-bg-overlay-image,
  .contact-block,
  .custom-block-bg-overlay-wrap {
    transform: none !important;
    /* Remove rotation on mobile */
    margin: 0 !important;
    padding: 30px 20px !important;
  }

  .contact-block strong {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 5px;
  }

  .contact-block h6 {
    transform: none !important;
  }

  /* Fix Hero Background on Mobile - USE GRADIENT */
  .hero-section {
    background-image: none !important;
    background: linear-gradient(90deg, var(--primary-color) 0%, #0dcaf0 100%) !important;
    background-attachment: scroll;
    padding: 100px 20px 50px 20px !important;
    /* Top padding for fixed header/toggle */
    text-align: center;
    /* Center text on mobile for better balance */
    margin-left: 0 !important;
    width: 100% !important;
  }

  /* Ensure Sidebar interaction is clean */
  #sidebarMenu {
    z-index: 1050;
    /* Above everything */
  }

  /* Main Content Adjustments */
  #mainContent {
    margin-left: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    overflow-x: hidden;
  }

  /* Remove gradient overlay on mobile (since we use it as main bg) */
  .hero-section::after {
    display: none !important;
  }

  /* REDUCE H1 SIZE for clarity */
  h1 {
    font-size: 32px !important;
    /* Slightly larger than 28 for impact */
    line-height: 1.3;
    margin-top: 20px;
    word-wrap: break-word;
    /* Prevent overflow */
  }

  /* Fix the 'Yellow Circle' (Custom Block) on Mobile */
  .custom-block {
    display: flex !important;
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    /* Compact circle */
    height: 60px !important;
    padding: 0 !important;
    z-index: 9999 !important;
    border: 2px solid var(--primary-color) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
  }

  .custom-block-image {
    width: 30px !important;
    height: 30px !important;
    top: 0 !important;
    position: relative !important;
    margin: 0 !important;
  }

  /* Hide text in circle on mobile to save space */
  .custom-block h4,
  .custom-block p,
  .custom-block a {
    display: none !important;
  }

  /* Mobile Price List Fix - Grid Layout Professional */
  .price-list-thumb h6 {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: end !important;
    gap: 10px !important;
  }

  /* The Line */
  .price-list-thumb-divider {
    display: block !important;
    height: 1px !important;
    background: var(--primary-color) !important;
    /* Solid full line color */
    opacity: 0.5;
    /* Subtle look */
    border: none !important;
    margin-bottom: 6px !important;
    /* Align with text baseline visually */
    min-width: 20px !important;
    width: auto !important;
    flex-grow: 0 !important;
    /* Reset flex */
    flex-shrink: 0 !important;
  }

  .price-list-thumb h6 strong {
    white-space: nowrap !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
  }


  /* Make the circle clickable regardless */
  .custom-block::after {
    content: '📞';
    font-size: 24px;
  }

  /* Fix overflowing date in booking suggestion */
  #suggested-date-display {
    font-size: 22px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.2 !important;
    display: block !important;
  }
}

/* --- New CRO/UX Additions --- */

/* Mobile Floating Call Button */
.mobile-call-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: #fff !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse-border 2s infinite;
}

.mobile-call-float:active {
  transform: scale(0.95);
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

/* Emergency Strip */
.emergency-strip {
  background-color: var(--primary-color);
  padding: 1.5rem 0;
}

.emergency-strip h4,
.emergency-strip a,
.emergency-strip i {
  color: var(--white-color) !important;
}

.emergency-strip a:hover {
  text-decoration: underline !important;
  color: var(--white-color) !important;
}

/* Testimonials */
.custom-block-testimonial {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.custom-block-testimonial:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-block-testimonial .rating {
  font-size: 14px;
}