/*

Tooplate 2133 Moso Interior

https://www.tooplate.com/view/2133-moso-interior

*/

/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  /* Base Colors */
  --white-color: #ffffff;
  --dark-color: #000000;

  /* Primary Colors (Yellow/Orange Theme) */
  --primary-color: #ffd74f;
  --primary-color-rgb: 255, 215, 79;
  --primary-dark: #e6c24a;
  --primary-light: #ffe066;
  --menu-active-color: #f9e79f;

  --secondary-color: #f65129;
  --secondary-dark: #dd4824;
  --secondary-light: #ff6b42;

  /* Success Colors (Green) */
  --success-color: #00a05d;
  --success-dark: #008d4f;
  --success-light: #00b866;
  --custom-btn-bg-color: #00a05d;

  /* Neutral Colors */
  --heading-color: #2c3e50;
  --text-primary: #495057;
  --text-secondary: #6c757d;
  --text-light: #adb5bd;
  --p-color: #717275;

  /* Background Colors */
  --bg-light: #f8f9fa;
  --bg-section: #f9f9f9;
  --section-bg-color: #f9f9f9;
  --site-footer-bg-color: #36363e;

  /* UI Colors */
  --border-color: #e9eaeb;
  --border-light: #e9eaeb;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-dark: rgba(0, 0, 0, 0.15);

  /* Button Variants */
  --btn-primary-bg: var(--primary-color);
  --btn-primary-hover: var(--secondary-color);
  --btn-success-bg: var(--success-color);
  --btn-success-hover: var(--success-dark);
  --btn-outline-text: var(--success-color);
  --btn-outline-border: var(--success-color);
  --btn-outline-hover-text: var(--white-color);
  --btn-outline-hover-bg: var(--success-color);

  /* Social Media Colors */
  --twitter-color: #1da1f2;
  --facebook-color: #1877f2;
  --instagram-color: #c13584;
  --pinterest-color: #e60023;
  --whatsapp-color: #25d366;
  --nextdoor-color: #00d900;

  /* Map Control Positioning */
  --map-control-spacing: 10px;
  --map-button-size: 40px;
  --map-button-gap: 6px;
  --map-button-zindex: 1000;

  --body-font-family: "League Spartan", sans-serif;

  --h1-font-size: 62px;
  --h2-font-size: 48px;
  --h3-font-size: 36px;
  --h4-font-size: 32px;
  --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;

  /* Spacing Variables */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  --spacing-xxxl: 100px;

  /* Emergency Service Component */
  --emergency-transition-duration: 0.3s;
  --emergency-max-height-open: 100px;
  --emergency-max-height-closed: 0;
  --emergency-opacity-open: 1;
  --emergency-opacity-closed: 0;
  --emergency-mobile-breakpoint: 992px;
  --emergency-icon-rotation-open: 180deg;
  --emergency-icon-rotation-closed: 0deg;

  /* Header & Toolbar Heights for Calculations */
  --header-toolbar-combined-height: 116px; /* navbar 71px + toolbar ~45px */

  /* Logo Dimensions */
  --logo-width-mobile: 40px;
  --logo-height-mobile: 40px;
  --logo-width-desktop: 50px;
  --logo-height-desktop: 50px;
  --logo-toolbar-width: var(--toolbar-logo-width, 100px);
  --logo-toolbar-height: var(--toolbar-logo-height, 35px);

  /* Component Padding */
  --section-padding-vertical: var(--spacing-xxxl);
  --custom-block-padding: 30px 50px;
  --border-thick: 20px;

  /* Navigation Heights */
  --navbar-height-desktop: 71px;
  --navbar-height-tablet: 65px;
  --navbar-height-mobile: 50px;
  --current-navbar-height: var(--navbar-height-desktop);

  /* Responsive Breakpoints */
  --breakpoint-mobile: 768px;
  --breakpoint-tablet: 992px;

  --font-weight-thin: 100;
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Emergency Services Colors */
  --emergency-call-text-color: #c0392b;
  --emergency-call-text-hover: #a93226;
  --emergency-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  --emergency-text-shadow-hover: 1px 1px 3px rgba(0, 0, 0, 0.4);

  /* Hero Form Button Sizing */
  --hero-btn-max-width-lg: 220px; /* Tablet (up to 991px) */
  --hero-btn-max-width-md: 200px; /* Mobile (up to 575px) */
  --hero-btn-max-width-sm: 180px; /* Small mobile (up to 420px) */
  --hero-btn-max-width-xs: 160px; /* Tiny mobile (up to 350px) */
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  padding-top: 116px; /* navbar 71px + toolbar ~45px */
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: 4px;
  z-index: 10000;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 6px;
}

.visually-hidden-focusable {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.visually-hidden-focusable:focus {
  position: static !important;
  width: auto !important;
  height: auto !important;
  padding: inherit !important;
  margin: inherit !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-semibold);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
}

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);
  line-height: normal;
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}

a,
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  color: var(--p-color);
  text-decoration: none;
}

a:hover {
  color: var(--secondary-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}

.tooplate-red {
  color: var(--secondary-color);
}
.tooplate-green {
  color: var(--custom-btn-bg-color);
}
.tooplate-black {
  color: #000000;
}
.tooplate-orange {
  color: #ff6b35;
  text-shadow: -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff, 1px 1px 0 #fff;
}

/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: var(--section-padding-vertical);
  padding-bottom: var(--section-padding-vertical);
}

.section-bg {
  background: var(--section-bg-color);
}

.section-small-title {
  color: var(--custom-btn-bg-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  display: block;
}

.section-overlay {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

.custom-block {
  background: var(--white-color);
  border-radius: 10px;
  box-shadow: 0 4px 12px var(--shadow-light);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-height: 200px;
  position: relative;
  margin-bottom: 40px;
}

/* Image container wrapper for consistent sizing */
.custom-block .img-wrapper {
  width: 100%;
  height: 150px;
  overflow: hidden;
  flex-shrink: 0;
  background-color: var(--bg-light);
}

.custom-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.custom-block .d-flex {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 130px;
}

.custom-block h3 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  padding-right: 70px;
  max-width: calc(100% - 70px);
}

.custom-block p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 35px;
  flex-grow: 1;
  min-height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  padding-right: 10px;
}

.custom-block .custom-btn {
  background-color: var(--btn-success-bg);
  color: var(--white-color);
  border: none;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: absolute;
  bottom: 15px;
  left: 15px;
  width: auto;
  min-width: 90px;
}

.custom-block .custom-btn:hover {
  background-color: var(--btn-success-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 141, 79, 0.3);
}

.custom-block-image {
  width: 100%;
  height: 150px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
  border: none;
}

.custom-block:hover .custom-block-image {
  transform: scale(1.05);
}

.badge-float {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(246, 81, 41, 0.3);
  z-index: 2;
}

/* Service cards vertical spacing */
.services-section .row > .col-lg-4 {
  margin-bottom: 30px;
}

/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.custom-link {
  color: var(--p-color);
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: inline-block;
  vertical-align: middle;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding-bottom: 2px;
}

.custom-link::after {
  content: "";
  width: 0;
  height: 2px;
  bottom: 0;
  position: absolute;
  left: auto;
  right: 0;
  z-index: -1;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) 0s;
  background: currentColor;
}

.custom-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

.custom-link:hover {
  color: var(--primary-color);
}

.custom-link:hover::after {
  background: var(--custom-btn-bg-color);
}

/*---------------------------------------
  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-semibold);
  line-height: normal;
  padding: 15px 20px;
}

.custom-btn:hover {
  background: transparent;
  border-color: var(--custom-btn-bg-color);
  color: var(--custom-btn-bg-color);
}

/*---------------------------------------
  NAVIGATION
------------------------------------------*/
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  transition: all 0.3s ease;
  background: linear-gradient(
    to right,
    rgba(180, 195, 210, 0.92) 0%,
    rgba(140, 160, 180, 0.9) 15%,
    rgba(100, 130, 150, 0.88) 30%,
    rgba(70, 95, 120, 0.9) 50%,
    rgba(44, 62, 80, 0.92) 100%
  );
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  height: 71px;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  border-bottom: none;
  will-change: backdrop-filter;
  transform: translateZ(0);
}

.navbar-brand {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
}

.navbar-brand,
.navbar-brand:hover {
  color: #ffffff;
}

/* Logo size classes using CSS custom properties */
.logo-desktop {
  width: var(--logo-width-desktop);
  height: var(--logo-height-desktop);
}

.logo-toolbar-desktop,
.logo-toolbar-medium {
  width: var(--logo-toolbar-width);
  height: var(--logo-toolbar-height);
  object-fit: contain;
}


.navbar-expand-lg .navbar-nav .nav-link {
  margin-right: 0;
  margin-left: 0;
  padding: 20px 35px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.show {
  background: rgba(255, 215, 79, 0.15);
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.dropdown-menu {
  border-radius: 0;
  border: 0;
  padding: 0;
}

.dropdown-item {
  border-bottom: 1px solid var(--border-color);
  display: inline-block;
  color: var(--p-bg-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-menu li:last-child .dropdown-item {
  border-bottom: 0;
}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--copyright-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -0.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  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;
  width: 30px;
  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: 30px;
  height: 2px;
  content: "";
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}

/*======================================
  MOBILE SLIDE-IN MENU
  Enhanced mobile navigation with slide animation
======================================*/

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  width: 30px;
  height: 24px;
  cursor: pointer;
  position: relative;
  z-index: 10001; /* Above everything else */
  padding: 0;
  margin: 0;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white-color);
  margin: 5px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  transform-origin: center;
}

/* Hamburger Animation States */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Container */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  z-index: 10000; /* Above the overlay (9998) and toggle button (10001) */
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

/* Mobile Menu Content */
.mobile-menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  background: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  overflow-x: hidden;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

/* Mobile Menu Header */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 10;
}

.mobile-menu-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 5px;
  border-radius: 5px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.mobile-menu-close:hover {
  background: var(--bg-light);
  color: var(--dark-color);
}

/* Mobile Menu Body */
.mobile-menu-body {
  padding: 20px 0;
}

/* Mobile Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-item:last-child {
  border-bottom: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.2s ease;
  border: none;
  background: transparent;
  width: 100%;
  text-align: left;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.mobile-nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Mobile Dropdown Menu */
.mobile-nav-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
}

.mobile-dropdown-toggle i:first-child {
  flex-shrink: 0; /* Prevent icon from shrinking */
  margin-right: 12px; /* Add space between icon and text */
}

.mobile-dropdown-toggle span {
  flex: 1; /* Take remaining space */
  text-align: left;
}

.mobile-dropdown-arrow {
  flex-shrink: 0; /* Prevent arrow from shrinking */
  margin-left: auto; /* Push to the right */
}

.mobile-dropdown-toggle:hover,
.mobile-dropdown-toggle:focus {
  background: var(--bg-light);
  color: var(--primary-color);
  padding-left: 25px;
}

.mobile-dropdown-toggle i:first-child {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mobile-dropdown-arrow {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.mobile-nav-dropdown.active .mobile-dropdown-arrow {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--bg-light);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown-header {
  padding: 12px 20px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--bg-section);
}

.mobile-dropdown-item {
  border-bottom: 1px solid var(--border-light);
}

.mobile-dropdown-item:last-child {
  border-bottom: none;
}

.mobile-dropdown-link {
  display: flex;
  align-items: center;
  padding: 12px 20px 12px 40px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.mobile-dropdown-link:hover,
.mobile-dropdown-link:focus {
  background: var(--bg-section);
  color: var(--primary-color);
  padding-left: 45px;
}

.mobile-dropdown-link i {
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

/* Mobile CTA Section */
.mobile-menu-cta {
  padding: 20px;
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  margin-top: 20px;
}

.mobile-cta-divider {
  height: 1px;
  background: var(--border-light);
  margin-bottom: 15px;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 20px;
  margin-bottom: 10px;
  border-radius: var(--border-radius-medium);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  text-align: center;
}

.mobile-cta-btn:last-child {
  margin-bottom: 0;
}

.mobile-cta-call {
  background: var(--success-color);
  color: white;
}

.mobile-cta-call:hover,
.mobile-cta-call:focus {
  background: var(--success-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 160, 93, 0.3);
}

.mobile-cta-whatsapp {
  background: var(--whatsapp-color);
  color: white;
}

.mobile-cta-whatsapp:hover,
.mobile-cta-whatsapp:focus {
  background: #128c7e;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75); /* Increased opacity for darker overlay */
  z-index: 9998; /* Below the mobile menu content (10000) */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  backdrop-filter: blur(2px); /* Add subtle blur effect for better focus */
  pointer-events: none; /* Disabled when hidden */
}

.mobile-menu.active .mobile-menu-overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* Enable clicks when visible */
}

/* Mobile Menu Responsive Breakpoints */
@media screen and (max-width: 991.98px) {
  .mobile-menu-toggle {
    display: block;
  }

  .desktop-nav {
    display: none !important;
  }
}

/* Ensure desktop navigation is visible on larger screens */
@media screen and (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Menu Accessibility Focus States */
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.mobile-nav-link:focus,
.mobile-dropdown-toggle:focus,
.mobile-dropdown-link:focus,
.mobile-cta-btn:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Prevent body scroll when menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Darken main content when mobile menu is open */
body.mobile-menu-open > :not(.mobile-menu):not(.mobile-menu-overlay) {
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

/* Ensure menu content remains bright */
.mobile-menu-content {
  filter: brightness(1) !important;
}

/* Ensure overlay maintains its darkness */
.mobile-menu-overlay {
  filter: brightness(1) !important;
}

/* Enhanced animations for menu items */
.mobile-menu.active .mobile-nav-item {
  animation: slideInRight 0.3s ease forwards;
}

.mobile-menu.active .mobile-nav-item:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu.active .mobile-nav-item:nth-child(2) {
  animation-delay: 0.15s;
}
.mobile-menu.active .mobile-nav-item:nth-child(3) {
  animation-delay: 0.2s;
}
.mobile-menu.active .mobile-nav-item:nth-child(4) {
  animation-delay: 0.25s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*---------------------------------------
  SITE HEADER
-----------------------------------------*/
.site-header {
  background-image: url("../images/empty-living-room-with-blue-sofa-plants-table-empty-white-wall-background-3d-rendering.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-top: 80px;
  padding-bottom: 150px;
}

/*---------------------------------------
  CTA TOOLBAR
-----------------------------------------*/
.toolbar-section {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(252, 253, 254, 0.96) 25%,
    rgba(248, 250, 252, 0.98) 50%,
    rgba(245, 248, 251, 0.96) 75%,
    rgba(242, 246, 250, 0.98) 100%
  );
  backdrop-filter: blur(2px) saturate(100%);
  -webkit-backdrop-filter: blur(2px) saturate(100%);
  padding: 6px 0;
  position: fixed;
  top: 71px;
  left: 0;
  right: 0;
  z-index: 1025;
  border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow-x: hidden;
  transition: all 0.3s ease;
  will-change: backdrop-filter, transform;
  transform: translateZ(0);
}

/* Scrolled state for toolbar */
.toolbar-section.scrolled {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.52) 0%,
    rgba(250, 252, 254, 0.48) 25%,
    rgba(245, 248, 251, 0.5) 50%,
    rgba(240, 245, 250, 0.48) 75%,
    rgba(235, 242, 248, 0.52) 100%
  );
  backdrop-filter: blur(6px) saturate(110%);
  -webkit-backdrop-filter: blur(6px) saturate(110%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Reduced motion support for accessibility */
@media (prefers-reduced-motion: reduce) {
  .navbar,
  .navbar-nav .nav-link,
  .toolbar-section {
    transition: none !important;
    animation: none !important;
  }

  .navbar,
  .toolbar-section {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .navbar {
    background: linear-gradient(
      to right,
      rgba(180, 195, 210, 0.98) 0%,
      rgba(140, 160, 180, 0.96) 15%,
      rgba(100, 130, 150, 0.94) 30%,
      rgba(70, 95, 120, 0.96) 50%,
      rgba(44, 62, 80, 0.98) 100%
    ) !important;
  }

  .toolbar-section {
    background: rgba(255, 255, 255, 0.95) !important;
  }

  .toolbar-section.scrolled {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* Base button styles */
.toolbar-btn {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.025em;
}


/* Toolbar compact container for logo + stars */
.toolbar-compact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  min-height: 50px;
}


/* Stars overlay positioning for compact mode */
.toolbar-compact-container .toolbar-stars {
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* ================================================
   TOOLBAR STARS - RATING DISPLAY SYSTEM
   Responsive 5-star rating with accessibility support
   - Large screens (1201px+): Under service text
   - Medium screens (992-1200px): Overlay on logo
   - Small screens (991px-): Under emergency text
   ================================================ */

/* Override for compact mode overlay */
.toolbar-compact-container .toolbar-stars {
  display: flex !important;
  gap: 2px !important;
  align-items: center !important;
  font-size: 9px !important;
  justify-content: center !important;
  width: auto !important;
  line-height: 1 !important;
}

.toolbar-stars .bi-star-fill {
  color: #ffca28 !important;
  opacity: 1;
  transition: all 0.2s ease;
  width: 8px;
  height: 8px;
  font-size: 8px;
}

/* Smaller stars for overlay */
.toolbar-compact-container .toolbar-stars .bi-star-fill {
  width: 9px;
  height: 9px;
  font-size: 9px;
}

.toolbar-stars .bi-star-fill:hover {
  opacity: 1;
  transform: scale(1.2);
}

/* Add transition to all child elements for smooth color changes */
.toolbar-btn *,
.toolbar-btn span,
.toolbar-btn .bi,
.toolbar-btn .text-primary,
.toolbar-btn .text-success {
  transition: color 0.3s ease;
}

/* Modern button hover state */
.toolbar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Active state */
.toolbar-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Base outline style for all CTA buttons */
.toolbar-btn.btn-outline-cta {
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid #dee2e6;
  color: #495057;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Hover overlay for all buttons */
.toolbar-btn.btn-outline-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.toolbar-btn.btn-outline-cta:hover {
  background: transparent;
  color: white !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Ensure icons and all text turn white on hover */
.toolbar-btn.btn-outline-cta:hover .bi,
.toolbar-btn.btn-outline-cta:hover span,
.toolbar-btn.btn-outline-cta:hover .text-primary,
.toolbar-btn.btn-outline-cta:hover .text-success {
  color: white !important;
}

.toolbar-btn.btn-outline-cta:hover::before {
  opacity: 1;
}

/* Get Quote button - Green theme */
#toolbar-quote-btn {
  border-color: rgba(0, 160, 93, 0.5);
  background: rgba(0, 160, 93, 0.08);
  color: var(--success-color);
  font-weight: 700;
  padding: 12px 24px;
}

#toolbar-quote-btn .bi {
  color: var(--success-color);
}

#toolbar-quote-btn::before {
  background: linear-gradient(
    135deg,
    var(--success-color),
    var(--success-dark)
  );
}

/* Call Now button - Green theme */
#toolbar-call-btn {
  border-color: rgba(25, 135, 84, 0.5);
  background: rgba(25, 135, 84, 0.08);
  color: #198754;
}

#toolbar-call-btn .bi {
  color: #198754;
}

#toolbar-call-btn::before {
  background: linear-gradient(135deg, #198754, #157347);
}

/* Call button - compact width to match WhatsApp and Book buttons */
#toolbar-call-btn {
  width: 95px;
  text-align: center;
  white-space: nowrap;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

#toolbar-call-btn .bi {
  font-size: 14px;
}

/* Book Consultation button - Green theme */
#toolbar-consultation-btn {
  border-color: rgba(25, 135, 84, 0.5);
  background: rgba(25, 135, 84, 0.08);
  color: #198754;
}

#toolbar-consultation-btn .bi {
  color: #198754;
}

#toolbar-consultation-btn::before {
  background: linear-gradient(135deg, #198754, #146c43);
}

/* WhatsApp button - Match Book Consultation button exactly */
#toolbar-whatsapp-btn {
  border-color: rgba(25, 135, 84, 0.5);
  background: rgba(25, 135, 84, 0.08);
  color: #198754;
}

#toolbar-whatsapp-btn .bi {
  color: #198754;
}

#toolbar-whatsapp-btn::before {
  background: linear-gradient(135deg, #198754, #146c43);
}

/* Consultation button - compact width - MATCH WHATSAPP */
#toolbar-consultation-btn {
  width: 95px;
  text-align: center;
  white-space: nowrap;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* WhatsApp button - compact width with icon and text */
#toolbar-whatsapp-btn {
  width: 95px;
  text-align: center;
  white-space: nowrap;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

#toolbar-whatsapp-btn .bi {
  font-size: 14px;
}

/* Sticky call button styles */
#sticky-call-btn {
  position: fixed;
  bottom: var(--sticky-btn-bottom-desktop, 25px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1020;
  background: linear-gradient(135deg, #198754, #157347);
  color: white;
  padding: 22px 40px;
  font-size: var(--sticky-btn-font-size-desktop, 20px);
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  border-radius: 60px;
  box-shadow: 0 6px 25px rgba(25, 135, 84, 0.4), 0 2px 10px rgba(0, 0, 0, 0.1);
  min-width: 280px;
  text-align: center;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: inherit;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
}

#sticky-call-btn .bi {
  color: white;
  font-size: 24px;
  margin-right: 12px;
  animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

#sticky-call-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #157347, #146c43);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
  border-radius: 60px;
}

#sticky-call-btn::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, #198754, #157347, #146c43);
  border-radius: 65px;
  z-index: -2;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#sticky-call-btn:hover {
  transform: translateY(-3px) scale(1.02) !important;
  box-shadow: 0 12px 35px rgba(25, 135, 84, 0.5), 0 4px 15px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

#sticky-call-btn:hover::before {
  opacity: 1;
}

#sticky-call-btn:hover::after {
  opacity: 0.6;
  transform: scale(1.05);
}

#sticky-call-btn:active {
  transform: translateY(-1px) scale(1.01) !important;
  box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
}

/* Sticky call button visible state */
#sticky-call-btn.visible {
  opacity: 1;
  visibility: visible;
}

/* Pulse animation for phone icon */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/*---------------------------------------
  HERO
-----------------------------------------*/
.hero-section {
  position: relative;
  padding-top: 20px;
  padding-bottom: 150px;
  min-height: calc(100vh - var(--header-toolbar-combined-height));
}

.hero-section-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

/* Target the backstretch image directly with higher specificity */
.backstretch {
  height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  max-height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  min-height: calc(100vh - var(--header-toolbar-combined-height)) !important;
}

.backstretch img {
  filter: brightness(1) contrast(1.1) !important;
  -webkit-filter: brightness(1) contrast(1.1) !important;
  height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  max-height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  min-height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  width: 100vw !important;
  max-width: 100vw !important;
  object-fit: cover !important;
  object-position: center center !important;
  top: 0 !important;
  left: 0 !important;
}

/* Override any inline styles from jQuery backstretch */
.backstretch[style],
.backstretch[style] img {
  height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  max-height: calc(100vh - var(--header-toolbar-combined-height)) !important;
  min-height: calc(100vh - var(--header-toolbar-combined-height)) !important;
}

/*---------------------------------------
  EMERGENCY PHONE LINK STYLES
-----------------------------------------*/
.emergency-phone-link {
  color: var(--white-color) !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 5px 15px;
  border-radius: 25px;
  border: 2px solid transparent;
}

.emergency-phone-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(255, 215, 79, 0.4);
}

.emergency-phone-link i {
  transition: transform 0.3s ease;
}

.emergency-phone-link:hover i {
  transform: scale(1.2) rotate(15deg);
}

/* Emergency phone display styling - Professional */
.emergency-phone-display {
  color: #1a1a1a !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: linear-gradient(135deg, #ffd74f 0%, #ffed4e 50%, #ffd74f 100%);
  border: none;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 30px rgba(255, 215, 79, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}

.emergency-phone-display::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: left 0.6s ease;
}

.emergency-phone-display:hover::before {
  left: 100%;
}

.emergency-phone-display:hover {
  color: #1a1a1a !important;
  background: linear-gradient(135deg, #ffed4e 0%, #ffd74f 50%, #ffcc00 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 215, 79, 0.5),
    0 8px 25px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.emergency-phone-display:active {
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 8px 25px rgba(255, 215, 79, 0.4), 0 4px 15px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.emergency-phone-display i {
  background: #1a1a1a;
  color: #ffd74f;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.emergency-phone-display:hover i {
  transform: rotate(-15deg) scale(1.1);
  background: #2a2a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Call Now text styling - Enhanced caption */
.emergency-phone-display .call-now-text {
  color: var(--emergency-call-text-color);
  font-weight: var(--font-weight-bold);
  text-shadow: var(--emergency-text-shadow);
  margin-right: 2px;
}

.emergency-phone-display:hover .call-now-text {
  color: var(--emergency-call-text-hover);
  text-shadow: var(--emergency-text-shadow-hover);
}

/* Emergency description styling - Enhanced visibility */
.emergency-description {
  font-size: var(--font-size-base, 1rem);
  line-height: var(--line-height-base, 1.6);
  font-weight: var(--font-weight-medium, 500);
  text-shadow: var(--emergency-text-shadow);
  margin-bottom: 0.5rem;
}

/* Enhanced readability for larger screens */
@media screen and (min-width: 768px) {
  .emergency-description {
    font-size: 1.1rem; /* Slightly larger for tablet and desktop */
  }
}

@media screen and (min-width: 1200px) {
  .emergency-description {
    font-size: 1.15rem; /* Even larger for desktop */
  }
}

/* Utility classes for transition duration */
.transition-all-duration-300 {
  transition: all 300ms ease;
}

/* Emergency container padding */
.emergency-container-padding-compact {
  padding: var(--emergency-padding-compact, 1rem 0.75rem);
}

.hero-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  padding-bottom: 16px;
  box-shadow: 0 10px 30px var(--shadow-light);
  border: 1px solid var(--border-light);
}

.hero-icon,
.contact-icon {
  color: var(--secondary-color);
}

.hero-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 60px auto;
}

.hero-btn-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--h4-font-size);
  width: 64px;
  height: 64px;
  line-height: 68px;
  text-align: center;
}

.hero-btn-link:hover {
  background: var(--secondary-color);
  color: var(--white-color);
}

/*---------------------------------------
  PROCESS SECTION
-----------------------------------------*/
.process-section {
  padding-top: var(--section-padding-vertical);
  padding-bottom: var(--section-padding-vertical);
  background-color: var(--bg-section);
  position: relative;
}

/* Process cards horizontal scroll wrapper */
.process-scroll-wrapper {
  position: relative;
  padding: 0 60px; /* Space for navigation buttons */
  overflow: hidden;
}

/* Scroll indicators */
.process-scroll-indicator {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-color);
  font-size: 14px;
  z-index: 5;
  opacity: 0.8;
  transition: all 0.3s ease;
  pointer-events: none;
  animation: pulse-scroll 2s infinite;
}

@keyframes pulse-scroll {
  0%, 100% {
    opacity: 0.6;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
  }
}

.process-scroll-indicator-left {
  left: 15px;
}

.process-scroll-indicator-right {
  right: 15px;
}

.process-scroll-indicator.hidden {
  display: none !important;
}

/* Show indicators when scroll is available on all screen sizes */
.process-scroll-indicator {
  display: none; /* Hidden by default, shown by JavaScript when scroll is needed */
  opacity: 0.6;
  transition: all 0.3s ease;
}

.process-scroll-indicator:hover {
  opacity: 1;
}

/* Responsive sizing for indicators */
@media (max-width: 991px) {
  .process-scroll-indicator {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}

@media (min-width: 992px) {
  .process-scroll-indicator {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Desktop specific adjustments */
@media (min-width: 1200px) {
  .process-scroll-indicator-left {
    left: 20px;
  }

  .process-scroll-indicator-right {
    right: 20px;
  }
}

.process-scroll-container {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-light);
}

.process-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.process-scroll-container::-webkit-scrollbar-track {
  background: var(--bg-light);
  border-radius: 4px;
}

.process-scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.process-scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

.process-cards-container {
  display: flex;
  gap: 30px;
  padding: 20px 0;
  min-width: fit-content;
  justify-content: center;
}

.process-cards-container .process-card {
  flex: 0 0 auto;
  width: 280px;
  min-width: 280px;
}

.process-block {
  padding: 25px 20px;
  transition: transform 0.3s ease;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Process section horizontal spacing */
.process-section .full-width-content {
  padding-left: 40px;
  padding-right: 40px;
}

/* Services section horizontal spacing */
.services-section .full-width-content {
  padding-left: 40px;
  padding-right: 40px;
}

/* Footer section horizontal spacing */
.site-footer .full-width-content {
  padding-left: 40px;
  padding-right: 40px;
}

.process-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.process-icon {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  border-radius: 50%;
  margin: 0 auto;
}

.process-icon i {
  font-size: 32px;
  color: var(--dark-color);
  line-height: 80px;
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  background: var(--secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.process-block h5 {
  color: var(--dark-color);
  font-weight: 600;
  margin-top: 15px;
}

.process-block p {
  color: var(--p-color);
  font-size: 14px;
}

/* Process navigation buttons */
.process-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  font-size: 18px;
}

/* Hide navigation buttons on desktop by default */
@media (min-width: 992px) {
  .process-nav-btn {
    display: none !important;
  }
}

.process-nav-btn:hover {
  background: var(--primary-color);
  color: var(--white-color);
  transform: translateY(-50%) scale(1.1);
}

.process-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  transform: translateY(-50%);
}

.process-nav-btn:disabled:hover {
  transform: translateY(-50%);
}

.process-prev-btn {
  left: 10px;
}

.process-next-btn {
  right: 10px;
}

/* Helper class for hiding buttons */
.process-nav-btn.hidden {
  display: none !important;
}

/* Show navigation buttons on mobile */
@media (max-width: 991px) {
  .process-nav-btn {
    display: flex !important;
  }
}

/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background: var(--section-bg-color);
}

.reviews-carousel .owl-item img,
.avatar-image {
  border-radius: var(--border-radius-large);
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.reviews-carousel .owl-nav {
  position: absolute;
  top: -100px;
  right: 0;
}

.reviews-carousel .owl-nav button.owl-next,
.reviews-carousel .owl-nav button.owl-prev {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  width: 60px;
  height: 60px;
  margin: 5px;
  transition: all 0.5s;
}

.reviews-carousel .owl-nav button.owl-next:hover,
.reviews-carousel .owl-nav button.owl-prev:hover {
  background: var(--secondary-color);
}

.reviews-carousel .owl-prev:hover span::before,
.reviews-carousel .owl-next:hover span::before {
  color: var(--white-color);
}

.reviews-carousel .owl-prev span,
.reviews-carousel .owl-next span {
  display: block;
  color: transparent;
  width: 60px;
  height: 60px;
  line-height: 60px;
}

.reviews-carousel .owl-prev span::before,
.reviews-carousel .owl-next span::before {
  font-family: bootstrap-icons;
  display: block;
  font-size: var(--h4-font-size);
  color: var(--secondary-color);
}

.reviews-carousel .owl-prev span::before {
  content: "\f12f";
}

.reviews-carousel .owl-next span::before {
  content: "\f138";
}

.reviews-thumb {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-body {
  padding: 50px 40px;
}

.reviews-bottom {
  background: var(--secondary-color);
  background: linear-gradient(
    180deg,
    rgba(246, 81, 41, 1) 0%,
    rgba(255, 190, 140, 1) 100%
  );
  position: relative;
  padding: 10px 36px;
}

.reviews-bottom-up::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 22px solid var(--secondary-color);
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  position: absolute;
  top: -20px;
  left: 36px;
}

.bi-star-fill {
  color: var(--primary-color);
}

.reviews-section .custom-btn {
  background: var(--facebook-color);
}

.reviews-section .custom-btn:hover {
  background: transparent;
  border-color: var(--facebook-color);
  color: var(--facebook-color);
}

.reviews-bottom small {
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-normal);
}

/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 50px;
}

.contact-form label {
  font-weight: var(--font-weight-semibold);
}

.google-map {
  display: block;
  border-radius: var(--border-radius-medium);
}

/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .input-group {
  background-color: var(--white-color);
  border: 2px solid var(--border-color);
  border-radius: 0.25rem;
  margin-bottom: 24px;
  padding-left: 20px;
}

.custom-form .textarea-group label {
  margin-top: 13px;
}

.custom-form label {
  margin-right: 10px;
  margin-bottom: 0;
}

.custom-form .form-control {
  background-color: var(--white-color);
  box-shadow: none;
  border: 0;
  color: var(--p-color);
  padding-top: 12px;
  padding-bottom: 12px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

/* GET QUOTE BUTTON - Single source of truth */
.get-quote-btn,
.hero-section-text .custom-form .get-quote-btn {
  background: linear-gradient(
    135deg,
    rgba(25, 135, 84, 0.15) 0%,
    rgba(25, 135, 84, 0.25) 100%
  ) !important;
  border: 1px solid var(--success-color) !important;
  border-radius: 12px !important;
  font-weight: 600 !important;
  text-transform: capitalize !important;
  letter-spacing: 0.3px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
  color: var(--success-color) !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: hidden !important;
  font-size: 0.95rem !important;
  padding: 14px 24px !important;
  height: auto !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
  white-space: nowrap !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  box-shadow: 0 2px 8px rgba(25, 135, 84, 0.15) !important;
}

.get-quote-btn:hover,
.hero-section-text .custom-form .get-quote-btn:hover {
  background: linear-gradient(
    135deg,
    var(--success-color) 0%,
    rgba(25, 135, 84, 0.95) 100%
  ) !important;
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 6px 20px rgba(25, 135, 84, 0.3) !important;
  color: var(--white-color) !important;
  border-color: rgba(25, 135, 84, 0.8) !important;
}

.get-quote-btn:focus,
.hero-section-text .custom-form .get-quote-btn:focus {
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.2),
    0 2px 8px rgba(25, 135, 84, 0.15) !important;
  outline: none !important;
  transform: translateY(-1px) scale(1.01) !important;
}

/* ================================================
   HERO FORM LAYOUT - Simple & Clean
   ================================================ */

.custom-form button[type="submit"] {
  background: var(--secondary-color);
  border: none;
  color: var(--white-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--primary-color);
  border-color: transparent;
}

/*---------------------------------------
  FILTER FORM              
-----------------------------------------*/
.filter-form {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  padding: 30px;
}

.filter-form-small-title {
  display: block;
  margin-bottom: 10px;
}

.filter-form .form-select {
  border: 2px solid var(--border-color);
}

.filter-form .form-check-label {
  color: var(--p-color);
}

/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: var(--site-footer-bg-color);
  padding-top: 0;
}

.site-footer h3 {
  line-height: normal;
}

.site-footer h3 .custom-link,
.site-footer .social-icon-link:hover {
  color: var(--white-color);
}

.site-footer h3 .custom-link:hover {
  color: var(--primary-color);
}

.copyright-text {
  color: var(--section-bg-color);
  font-size: var(--copyright-font-size);
  margin-top: 10px;
}

.site-footer .social-icon-link {
  margin-top: 10px;
}

/*---------------------------------------
  SOCIAL ICONS
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  color: var(--p-color);
  font-size: var(--p-font-size);
  display: block;
  margin-right: 15px;
  text-align: center;
}

.social-icon-link:hover {
  color: var(--secondary-color);
}

.social-icon-twitter {
  color: var(--twitter-color);
}

.social-icon-facebook {
  color: var(--facebook-color);
}

.social-icon-nextdoor {
  color: var(--nextdoor-color);
}

.social-icon-pinterest {
  color: var(--pinterest-color);
}

.social-icon-whatsapp {
  color: var(--whatsapp-color);
}

/*---------------------------------------
  MEGA MENU STYLES
-----------------------------------------*/
.dropdown-menu-mega {
  min-width: 800px;
  max-width: 900px;
  padding: 0;
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: var(--border-radius-medium);
  margin-top: 0.5rem;
  left: 50%;
  right: auto;
  transform: translateX(-50%) !important;
  background: var(--white-color);
}

.dropdown-menu-mega .container {
  padding: 1.5rem;
}

.dropdown-menu-mega .row > div {
  padding: 0.5rem 1rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.dropdown-menu-mega .dropdown-header {
  color: var(--secondary-color);
  font-size: 1.1rem;
  font-weight: var(--font-weight-semibold);
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.dropdown-menu-mega .dropdown-item {
  padding: 0.5rem 0.75rem;
  color: var(--p-color);
  transition: all 0.3s ease;
  border-radius: var(--border-radius-small);
  white-space: normal;
  line-height: 1.3;
  font-size: 0.95rem;
  border-bottom: 1px solid transparent;
}

.dropdown-menu-mega .dropdown-item:hover {
  background-color: var(--section-bg-color);
  color: var(--secondary-color);
  padding-left: 1rem;
  overflow: visible;
  white-space: normal;
  z-index: 10;
  position: relative;
}

.dropdown-menu-mega .dropdown-divider {
  margin: 1rem 0;
  border-color: var(--border-color);
}

/* Responsive mega menu */
@media (min-width: 992px) {
  .dropdown-menu-mega {
    position: absolute;
  }
}

@media (max-width: 991px) {
  .dropdown-menu-mega {
    min-width: auto;
    max-width: none;
    width: 100%;
    border-radius: 0;
    margin-top: 0;
    left: 0 !important;
    right: auto !important;
  }

  .dropdown-menu-mega .container {
    padding: 1rem;
  }

  .dropdown-menu-mega .row > div {
    margin-bottom: 1rem;
    min-height: auto;
  }

  .dropdown-menu-mega .dropdown-header {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .dropdown-menu-mega .col-4 {
    width: 100%;
    margin-bottom: 1rem;
  }
}

/* Process section responsive adjustments */
@media (max-width: 768px) {
  .process-scroll-wrapper {
    padding: 0 50px;
  }

  .process-cards-container .process-card {
    width: 260px;
    min-width: 260px;
  }

  .process-block {
    min-height: 300px;
    padding: 20px 15px;
  }

  .process-nav-btn {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .process-prev-btn {
    left: 5px;
  }

  .process-next-btn {
    right: 5px;
  }
}

@media (max-width: 576px) {
  .process-scroll-wrapper {
    padding: 0 45px;
  }

  .process-cards-container {
    gap: 20px;
    padding: 15px 0;
  }

  .process-cards-container .process-card {
    width: 240px;
    min-width: 240px;
  }

  .process-block {
    min-height: 280px;
    padding: 15px 12px;
  }

  .process-icon {
    width: 60px;
    height: 60px;
  }

  .process-icon i {
    font-size: 24px;
    line-height: 60px;
  }

  .step-number {
    width: 25px;
    height: 25px;
    font-size: 14px;
    top: -8px;
    right: -8px;
  }

  .process-block h5 {
    font-size: 1rem;
    margin-top: 12px;
  }

  .process-block p {
    font-size: 13px;
  }

  .process-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .process-prev-btn {
    left: 5px;
  }

  .process-next-btn {
    right: 5px;
  }
}

/*---------------------------------------
  CONTACT MODAL STYLES
-----------------------------------------*/

/* Contact Modal - Theme-specific styling */
#contact-modal-container .modal-content {
  border: 3px solid var(--primary-color); /* Yellow border like site elements */
  border-radius: var(--border-radius-medium);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  max-height: 90vh; /* Maximum 90% of viewport height */
  display: flex;
  flex-direction: column;
}

#contact-modal-container .modal-dialog {
  max-height: 90vh;
  margin: 1rem auto; /* Better centering with smaller margins */
}

#contact-modal-container .modal-header {
  background: var(--heading-color); /* Dark blue-gray like site sections */
  border-bottom: 2px solid var(--primary-color); /* Yellow accent border */
  padding: 1rem 1.5rem; /* Reduced padding */
  flex-shrink: 0; /* Prevent header from shrinking */
}

#contact-modal-container .modal-title {
  color: var(--primary-color); /* Yellow text like site headings */
  font-weight: 700;
  font-size: var(--h5-font-size);
  margin: 0;
}

#contact-modal-container .btn-close {
  filter: brightness(0) invert(1); /* White close button on dark header */
  opacity: 0.9;
  transition: all 0.3s ease;
}

#contact-modal-container .btn-close:hover {
  opacity: 1;
  filter: brightness(0) invert(1) brightness(1.2);
}

#contact-modal-container .modal-body {
  padding: 1.5rem;
  background: var(--white-color);
  overflow-y: auto; /* Enable scrolling only for body content if needed */
  flex: 1; /* Allow body to expand and contract */
  min-height: 0; /* Necessary for flex item to shrink below content size */
}

#contact-modal-container .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0.5rem;
}

#contact-modal-container .form-control {
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-small);
  padding: 0.75rem 1rem;
  font-size: var(--p-font-size);
  transition: all 0.3s ease;
  background: var(--white-color);
}

#contact-modal-container .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 79, 0.25);
  outline: none;
}

#contact-modal-container .form-text {
  color: var(--text-secondary);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

#contact-modal-container .modal-footer {
  background: var(--site-footer-bg-color); /* Dark footer like site */
  border-top: 2px solid var(--primary-color); /* Yellow accent border */
  padding: 1rem 1.5rem; /* Reduced padding */
  flex-shrink: 0; /* Prevent footer from shrinking */
}

#contact-modal-container .btn-primary {
  background: var(--primary-color); /* Yellow like site CTA buttons */
  border: 2px solid var(--primary-color);
  color: var(--heading-color); /* Dark text like site buttons */
  font-weight: 700;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#contact-modal-container .btn-primary:hover {
  background: var(--secondary-color); /* Orange on hover like site */
  border-color: var(--secondary-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(246, 81, 41, 0.4);
}

#contact-modal-container .btn-secondary {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color); /* Yellow text */
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-small);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#contact-modal-container .btn-secondary:hover {
  background: var(--primary-color);
  color: var(--heading-color); /* Dark text on yellow background */
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 215, 79, 0.3);
}

/* Dark mode adjustments for footer buttons */
#contact-modal-container .modal-footer .btn-primary {
  color: var(--heading-color);
}

#contact-modal-container .modal-footer .btn-secondary {
  color: var(--primary-color);
}

/* Contact Modal Validation Error */
#contact-modal-validation-error {
  margin-top: 1rem;
  border-radius: var(--border-radius-small);
  background: rgba(246, 81, 41, 0.15); /* Using secondary color */
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Modal Responsive Design */
@media (max-width: 576px) {
  #contact-modal-container .modal-dialog {
    margin: 0.5rem;
    max-height: 95vh; /* Slightly larger on mobile */
  }

  #contact-modal-container .modal-content {
    max-height: 95vh;
  }

  #contact-modal-container .modal-header {
    padding: 0.75rem 1rem;
  }

  #contact-modal-container .modal-body {
    padding: 1rem;
  }

  #contact-modal-container .modal-footer {
    padding: 0.75rem 1rem;
  }

  #contact-modal-container .modal-title {
    font-size: 1.1rem;
  }

  #contact-modal-container .form-control {
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
  }

  #contact-modal-container .form-label {
    font-size: 0.9rem;
  }

  #contact-modal-container .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Additional optimization for very small screens */
@media (max-height: 600px) {
  #contact-modal-container .modal-dialog {
    max-height: 98vh;
    margin: 0.25rem auto;
  }

  #contact-modal-container .modal-content {
    max-height: 98vh;
  }

  #contact-modal-container .modal-header {
    padding: 0.5rem 1rem;
  }

  #contact-modal-container .modal-body {
    padding: 0.75rem 1rem;
  }

  #contact-modal-container .modal-footer {
    padding: 0.5rem 1rem;
  }
}

/*---------------------------------------
  ENHANCED FOOTER STYLES
-----------------------------------------*/

/* Footer Main Row - Ensure equal height columns */
.site-footer .row.g-4 > div {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Footer Brand & Description */
.footer-title {
  margin-bottom: 1rem;
  font-size: var(--h2-font-size);
  font-weight: 700;
  color: var(--white-color);
}

.footer-title .custom-link:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-description {
  color: var(--text-light);
  font-size: var(--p-font-size);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Footer Section Titles */
.footer-section-title {
  color: var(--primary-color);
  font-size: var(--h4-font-size);
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

/* Ensure all footer sections start at the same height */
.site-footer .row > div > *:first-child {
  margin-top: 0;
}

/* Make footer content containers consistent */
.footer-brand,
.footer-services-container,
.footer-coverage-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Footer Contact Info */
.footer-contact-info {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: var(--border-radius-medium);
  border-left: 4px solid var(--primary-color);
  backdrop-filter: blur(5px);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  color: var(--white-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  transform: translateX(5px);
}

.footer-contact-item i {
  font-size: 1.1rem;
  min-width: 20px;
}

.footer-contact-item a {
  color: var(--white-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-item a:hover {
  color: var(--primary-color);
}

/* Footer Services List */
.footer-services-list .footer-service-item {
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-services-list .footer-service-item:hover {
  transform: translateX(5px);
}

.footer-services-list .footer-service-item a {
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  line-height: 1.4;
}

.footer-services-list .footer-service-item a:hover {
  color: var(--primary-color);
}

.footer-services-list .footer-service-item i {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer Links List */
.footer-links-list .footer-link-item a,
.footer-coverage-list .footer-coverage-item {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
  display: block;
  text-decoration: none;
}

.footer-links-list .footer-link-item a:hover {
  color: var(--primary-color);
  transform: translateX(3px);
  padding-left: 5px;
}

.footer-coverage-list .footer-coverage-item {
  padding: 0.1rem 0;
  position: relative;
  padding-left: 12px;
}

.footer-coverage-list .footer-coverage-item::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 0.8rem;
}

/* Footer Bottom Section */
.footer-bottom-border {
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.footer-bottom-left .copyright-text {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-rating .text-white {
  font-size: 0.9rem;
  font-weight: 600;
}

.rating-stars i {
  font-size: 0.9rem;
}

.footer-credit {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

.footer-credit a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Footer Social Links */
.footer-social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-social-links .text-white {
  font-size: 0.9rem;
  font-weight: 600;
  margin-right: 0.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  border: 2px solid transparent;
}

.footer-social-link:hover {
  background: var(--primary-color);
  color: var(--heading-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 215, 79, 0.4);
}

/* Footer Certifications */
.footer-certifications {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-certifications .badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-small);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.footer-certifications .badge:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Footer Responsive Design */

/* Tablet and below */
@media (max-width: 991px) {
  .footer-contact-info {
    padding: 1rem;
    margin-top: 1rem;
  }

  .footer-section-title {
    font-size: var(--h5-font-size);
    margin-bottom: 0.75rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }
}

/* Mobile devices */
@media (max-width: 767px) {
  .footer-contact-info {
    padding: 1rem;
    text-align: center;
  }

  .footer-contact-item {
    justify-content: center;
    margin-bottom: 0.75rem !important;
  }

  .footer-section-title {
    font-size: 1rem;
    text-align: center;
    width: 100%;
  }

  .footer-bottom-left,
  .footer-bottom-right {
    text-align: center !important;
  }

  .footer-social-links {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-certifications {
    justify-content: center;
  }

  .footer-rating {
    justify-content: center;
  }

  .footer-brand {
    text-align: center;
  }

  .footer-title {
    font-size: var(--h3-font-size);
  }
}

/* Small mobile devices */
@media (max-width: 576px) {
  .site-footer .full-width-content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-contact-info {
    padding: 0.75rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .footer-contact-item i {
    font-size: 1rem;
  }

  .footer-services-list .footer-service-item a,
  .footer-links-list .footer-link-item a,
  .footer-coverage-list .footer-coverage-item {
    font-size: 0.85rem;
  }

  .footer-social-link {
    width: 32px;
    height: 32px;
    font-size: 0.9rem;
  }

  .footer-certifications .badge {
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .footer-section-title {
    font-size: 0.95rem;
  }
}

/*---------------------------------------
  LONDON MAP SECTION
-----------------------------------------*/
