/*

Tooplate 2132 Clean Work

https://www.tooplate.com/view/2132-clean-work

*/



/*---------------------------------------
  CUSTOM PROPERTIES ( VARIABLES )             
-----------------------------------------*/
:root {
  /* Modern Color Palette */
  --white-color:                  #ffffff;
  --primary-color:                #2563eb;
  --primary-light:                #3b82f6;
  --primary-dark:                 #1d4ed8;
  --secondary-color:              #0ea5e9;
  --accent-color:                 #06b6d4;
  --section-bg-color:             #f8fafc;
  --custom-btn-bg-color:          #2563eb;
  --custom-btn-bg-hover-color:    #1d4ed8;
  --dark-color:                   #0f172a;
  --p-color:                      #475569;
  --p-light-color:                #64748b;
  --border-color:                 #e2e8f0;
  --link-hover-color:             #1d4ed8;
  --success-color:                #10b981;
  --warning-color:                #f59e0b;

  /* Typography */
  --body-font-family:             'Poppins', sans-serif;

  --h1-font-size:                 48px;
  --h2-font-size:                 40px;
  --h3-font-size:                 32px;
  --h4-font-size:                 24px;
  --h5-font-size:                 20px;
  --h6-font-size:                 18px;
  --p-font-size:                  16px;
  --p-small-font-size:            14px;
  --btn-font-size:                15px;
  --copyright-font-size:          13px;

  /* Border Radius - Modern rounded corners */
  --border-radius-large:          12px;
  --border-radius-medium:         10px;
  --border-radius-small:          8px;
  --border-radius-pill:           100px;

  /* Spacing */
  --spacing-xs:                   0.5rem;
  --spacing-sm:                   1rem;
  --spacing-md:                   1.5rem;
  --spacing-lg:                   2rem;
  --spacing-xl:                   3rem;

  /* Shadows */
  --shadow-sm:                    0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md:                    0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:                    0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl:                    0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  /* Font Weights */
  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;

  /* Transitions */
  --transition-fast:              150ms ease;
  --transition-normal:            250ms ease;
  --transition-slow:              350ms ease;
}

body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
  color: var(--p-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}

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


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h1, h2, h3, h4, h5, h6 {
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.03em;
}

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

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);
}

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.7;
  margin-bottom: var(--spacing-sm);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
  line-height: 1.7;
}

a, 
button {
  touch-action: manipulation;
  transition: all var(--transition-normal);
}

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-semibold);
}

.page-404-title {
  color: var(--secondary-color);
  font-size: 10rem;
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.section-overlay {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.92;
}

.testimonial-section .section-overlay {
  opacity: 0.92;
}

.location-section .section-overlay {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-color) 100%);
  opacity: 0.9;
}

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


/*---------------------------------------
  ANIMATED HEADLINE               
-----------------------------------------*/
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  color: var(--accent-color);
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-weight: var(--font-weight-bold);
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

.cd-headline.rotate-1 .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.rotate-1 b {
  opacity: 0;
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.cd-headline.rotate-1 b.is-visible {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  -moz-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-animation: cd-rotate-1-in 1.2s;
  -moz-animation: cd-rotate-1-in 1.2s;
  animation: cd-rotate-1-in 1.2s;
}

.cd-headline.rotate-1 b.is-hidden {
  -webkit-transform: rotateX(180deg);
  -moz-transform: rotateX(180deg);
  -ms-transform: rotateX(180deg);
  -o-transform: rotateX(180deg);
  transform: rotateX(180deg);
  -webkit-animation: cd-rotate-1-out 1.2s;
  -moz-animation: cd-rotate-1-out 1.2s;
  animation: cd-rotate-1-out 1.2s;
}

@-webkit-keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    opacity: 1;
  }
}

@-moz-keyframes cd-rotate-1-in {
  0% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -moz-transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(360deg);
    opacity: 1;
  }
}

@keyframes cd-rotate-1-in {
  0% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
  35% {
    -webkit-transform: rotateX(120deg);
    -moz-transform: rotateX(120deg);
    -ms-transform: rotateX(120deg);
    -o-transform: rotateX(120deg);
    transform: rotateX(120deg);
    opacity: 0;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(360deg);
    -moz-transform: rotateX(360deg);
    -ms-transform: rotateX(360deg);
    -o-transform: rotateX(360deg);
    transform: rotateX(360deg);
    opacity: 1;
  }
}

@-webkit-keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    opacity: 0;
  }
}

@-moz-keyframes cd-rotate-1-out {
  0% {
    -moz-transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -moz-transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -moz-transform: rotateX(180deg);
    opacity: 0;
  }
}

@keyframes cd-rotate-1-out {
  0% {
    -webkit-transform: rotateX(0deg);
    -moz-transform: rotateX(0deg);
    -ms-transform: rotateX(0deg);
    -o-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
  35% {
    -webkit-transform: rotateX(-40deg);
    -moz-transform: rotateX(-40deg);
    -ms-transform: rotateX(-40deg);
    -o-transform: rotateX(-40deg);
    transform: rotateX(-40deg);
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(180deg);
    -moz-transform: rotateX(180deg);
    -ms-transform: rotateX(180deg);
    -o-transform: rotateX(180deg);
    transform: rotateX(180deg);
    opacity: 0;
  }
}


/*---------------------------------------
  CUSTOM LINK               
-----------------------------------------*/
.link {
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}

.link::before,
.link::after {
  position: absolute;
  width: 100%;
  height: 1px;
  background: currentColor;
  top: 100%;
  left: 0;
  pointer-events: none;
}

.link::before {
  content: '';
}

.link--herse::before {
  display: none;
}

.link__graphic {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  fill: none;
  stroke: var(--dark-color);
  stroke-width: 1px;
}

.link__graphic--stroke path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}

.link:hover .link__graphic--stroke path {
  stroke-dashoffset: 0;
}

.link__graphic--arc {
  top: 73%;
  left: -23%;
}

.link__graphic--arc path {
  transition: stroke-dashoffset 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.link:hover .link__graphic--arc path {
  transition-timing-function: cubic-bezier(0.8, 1, 0.7, 1);
  transition-duration: 0.3s;
}

.button {
  display: inline-block;
  position: relative;
}

.button::before,
.button::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button--atlas > span {
  display: inline-block;
}

.button--atlas:hover > span {
  opacity: 0;
}

.marquee {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  pointer-events: none;
}

.marquee__inner {
  width: fit-content;
  display: flex;
  position: relative;
  --offset: 1rem;
  --move-initial: calc(-25% + var(--offset));
  --move-final: calc(-50% + var(--offset));
  transform: translate3d(var(--move-initial), 0, 0);
  animation: marquee 1s linear infinite;
  animation-play-state: paused;
  opacity: 0;
}

.button--atlas:hover .marquee__inner {
  animation-play-state: running;
  opacity: 1;
  transition-duration: 0.4s;
}

.marquee span {
  text-align: center;
  white-space: nowrap;
  font-style: italic;
  padding: 15px;
}

@keyframes marquee {
  0% {
    transform: translate3d(var(--move-initial), 0, 0);
  }

  100% {
    transform: translate3d(var(--move-final), 0, 0);
  }
}

.button--pan {
  overflow: hidden;
}

.button--pan span {
  position: relative;
}

.button--pan::before {
  content: '';
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button--pan:hover::before {
  background: transparent;
  transform: translate3d(0,-100%,0);
}


/*---------------------------------------
  CUSTOM BLOCK               
-----------------------------------------*/
.custom-block-wrap {
  position: relative;
}

.custom-block-wrap .custom-block {
  position: absolute;
  bottom: 0;
  right: 0;
}

.custom-block {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-medium);
  padding: 28px;
  box-shadow: var(--shadow-xl);
}

.custom-block .custom-icon,
.custom-block a {
  color: var(--white-color);
}

.custom-block h6 {
  color: var(--white-color);
  font-weight: var(--font-weight-semibold);
}


/*---------------------------------------
  CUSTOM ICON COLOR               
-----------------------------------------*/
.custom-icon {
  color: var(--secondary-color);
}

.bi-star-fill {
  color: var(--warning-color);
}

.reviews-icons {
  display: flex;
  gap: 2px;
}

.reviews-icons .bi-star-fill {
  font-size: 14px;
}


/*---------------------------------------
  AVATAR IMAGE - TESTIMONIAL               
-----------------------------------------*/
.avatar-image {
  border-radius: var(--border-radius-medium);
  width: 56px;
  height: 56px;
  object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2);
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  transition: all var(--transition-normal);
  padding: 12px 24px;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn {
  margin-top: 8px;
  margin-right: 0;
  padding: 10px 22px;
  min-height: 44px;
  border-radius: var(--border-radius-small);
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.custom-btn:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

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

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

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  border-color: transparent;
  color: var(--white-color);
}

.custom-btn-bg-white {
  border-color: rgba(255, 255, 255, 0.9);
  color: var(--white-color);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
}

.custom-btn-bg-white:hover {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
  box-shadow: var(--shadow-xl);
}

/* Primary solid button in hero */
.hero-buttons .custom-btn:not(.custom-border-btn) {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.hero-buttons .custom-btn:not(.custom-border-btn):hover {
  background: var(--section-bg-color);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Border button in hero - white border/text on blue background */
.hero-buttons .custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}

.hero-buttons .custom-border-btn:hover {
  background: var(--white-color);
  border-color: var(--white-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}


/*---------------------------------------
  NAVIGATION              
-----------------------------------------*/
.navbar {
  background: transparent;
  position: absolute;
  top: 49px;
  right: 0;
  left: 0;
  z-index: 9;
  padding-top: 16px;
  padding-bottom: 16px;
}

.navbar-brand,
.navbar-brand:hover {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-medium);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  width: 56px;
  height: 56px;
  padding: 10px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.logo:hover {
  transform: scale(1.05);
}

.navbar-expand-lg .navbar-nav .nav-link {
  margin: 0 8px;
  padding: 8px 16px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--p-small-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: var(--border-radius-small);
  transition: all var(--transition-normal);
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white-color);
}

.dropdown-menu {
  background: var(--white-color);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  display: inherit;
  opacity: 0;
  min-width: 10rem;
  margin-top: 20px;
  padding: 8px;
  transition: all var(--transition-normal);
  pointer-events: none;
}

.dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 20px;
}

.dropdown-item {
  display: block;
  color: var(--p-color);
  font-size: var(--p-small-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
  padding: 8px 12px;
  border-radius: var(--border-radius-small);
  transition: all var(--transition-fast);
}

.dropdown-item.active, 
.dropdown-item:active,
.dropdown-item:focus, 
.dropdown-item:hover {
  background: var(--section-bg-color);
  color: var(--primary-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: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}

@media screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    opacity: 1;
    margin-top: 0;
    pointer-events: auto;
  }
}

.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(--secondary-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 28px;
  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(--secondary-color);
  width: 28px;
  height: 2px;
  content: '';
}

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

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


/*---------------------------------------
  SITE HEADER              
-----------------------------------------*/
.site-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  z-index: 22;
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header p,
.site-header p a,
.site-header .social-icon-link {
  color: var(--white-color);
  font-size: var(--copyright-font-size);
}

.site-header a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.site-header .social-icon {
  text-align: right;
}

.site-header .social-icon-link {
  background: transparent;
  width: inherit;
  height: inherit;
  line-height: inherit;
  margin-right: 15px;
}

.site-header-icon {
  display: inline-block;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-section {
  position: relative;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 100px;
  min-height: 680px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-color) 100%);
}

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

.hero-section svg {
  position: absolute;
  bottom: -50px;
  right: 0;
  left: 0;
  pointer-events: none;
}

.hero-section h1 {
  margin-bottom: 1rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
}

.hero-section .text-white {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media screen and (min-width: 992px) {
  .hero-section-full-height {
    height: 85vh;
  }
}


/*---------------------------------------
  INTRO        
-----------------------------------------*/
.intro-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: var(--white-color);
}

.intro-section h2 {
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
}

.intro-section p {
  line-height: 1.8;
  color: var(--p-color);
}

.intro-section .col-lg-6 img {
  border-radius: var(--border-radius-medium);
  box-shadow: var(--shadow-xl);
}


/*---------------------------------------
  BANNER        
-----------------------------------------*/
.banner-section {
  background-image: url('../images/high-angle-woman-cleaning-floors.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding-top: 100px;
  padding-bottom: 50px;
}

.banner-section .breadcrumb {
  margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before,
.breadcrumb-item.active {
  color: var(--white-color);
}

/* Blog breadcrumb on light background */
.bg-light .breadcrumb-item a {
  color: var(--primary-color);
}

.bg-light .breadcrumb-item+.breadcrumb-item::before {
  color: #6c757d;
}

.bg-light .breadcrumb-item.active {
  color: #6c757d;
}


/*---------------------------------------
  COUNTDOWN              
-----------------------------------------*/
.countdown-section {
  position: relative;
}

.countdown-section-title {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.countdown {
  text-align: center;
  padding-left: 0;
}

.countdown-item {
  list-style: none;
  flex: 0 0 13%;
  margin: 15px;
}

.countdown-text {
  background: var(--section-bg-color);
  border-radius: 6px;
  color: var(--secondary-color);
  font-size: var(--p-font-size);
  position: relative;
  padding: 4px 8px;
}

.countdown-text::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-bottom: 5px solid var(--section-bg-color);
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  position: absolute;
  top: -5px;
  right: 0;
  left: 0;
}


/*---------------------------------------
  FEATURED              
-----------------------------------------*/
.featured-image {
  border-radius: var(--border-radius-medium);
}

.featured-block {
  padding: 20px;
  border-radius: var(--border-radius-medium);
}


/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-image,
.gallery-image {
  border-radius: var(--border-radius-medium);
}

.team-info {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  padding: 30px;
}

.team-info p {
  margin-bottom: 0;
}

.team-info::before {
  content: "";
  display: block;
  margin: auto;
  width: 0;
  height: 0;
  border-right: 20px solid var(--white-color);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
}

.gallery-image {
  transition: all 0.3s;
}

.gallery-image:hover {
  transform: scale(1.02);
}


/*---------------------------------------
  SERVICES              
-----------------------------------------*/
.services-thumb {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.services-thumb:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.services-detail-section .services-image {
  aspect-ratio: 0;
}

.services-image-wrap {
  border-radius: var(--border-radius-small);
  position: relative;
  overflow: hidden;
}

.services-image-wrap:hover .services-image-hover {
  opacity: 1;
}

.services-title-link {
  display: block;
  color: var(--dark-color);
  font-weight: var(--font-weight-semibold);
}

.services-title-link:hover {
  color: var(--primary-color);
}

.services-image,
.team-image {
  border-radius: var(--border-radius-small);
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.services-image-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
}

.services-icon-wrap {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white-color);
  font-size: var(--p-small-font-size);
  font-weight: var(--font-weight-medium);
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: opacity var(--transition-normal);
  padding: 10px 14px;
}

.services-icon-wrap .button--skoll {
  width: 100%;
  height: 100%;
}

.services-info p {
  font-size: var(--p-small-font-size);
  line-height: 1.6;
  color: var(--p-light-color);
}

.services-info .reviews-icons {
  margin-bottom: 0;
}

/*---------------------------------------
  SERVICE CARDS (NEW 6-CARD LAYOUT)              
-----------------------------------------*/
.service-card {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-color);
}

.service-card-image {
  position: relative;
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 12px;
}

.service-badge {
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 11px;
  font-weight: var(--font-weight-semibold);
  padding: 6px 12px;
  border-radius: var(--border-radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.emergency-overlay {
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.2) 0%, rgba(220, 38, 38, 0.8) 100%);
}

.emergency-badge {
  background: #dc2626;
  animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.05); }
}

.service-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-rating {
  display: flex;
  gap: 2px;
  margin-bottom: 10px;
}

.service-card-rating .bi-star-fill {
  color: var(--warning-color);
  font-size: 14px;
}

.service-card-title {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 10px;
  line-height: 1.3;
}

.service-card-title a {
  color: var(--dark-color);
  transition: color var(--transition-fast);
}

.service-card-title a:hover {
  color: var(--primary-color);
}

.service-card-description {
  font-size: var(--p-small-font-size);
  color: var(--p-color);
  line-height: 1.6;
  margin-bottom: 16px;
  flex-grow: 1;
}

.service-card-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.btn-service-link,
.btn-service-call,
.btn-service-book {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--border-radius-small);
  font-size: 13px;
  font-weight: var(--font-weight-medium);
  text-align: center;
  transition: all var(--transition-normal);
  text-decoration: none;
}

.btn-service-link {
  background: var(--section-bg-color);
  color: var(--primary-color);
  border: 1px solid var(--border-color);
}

.btn-service-link:hover {
  background: var(--primary-color);
  color: var(--white-color);
  border-color: var(--primary-color);
}

.btn-service-call {
  background: var(--primary-color);
  color: var(--white-color);
}

.btn-service-call:hover {
  background: var(--primary-dark);
  color: var(--white-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-service-call.btn-emergency {
  background: #dc2626;
}

.btn-service-call.btn-emergency:hover {
  background: #b91c1c;
}

.btn-service-book {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-service-book:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Emergency Card Special Styling */
.service-card-emergency {
  border-color: rgba(220, 38, 38, 0.3);
}

.service-card-emergency:hover {
  border-color: #dc2626;
  box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

/* Service Cards Responsive */
@media screen and (max-width: 991px) {
  .service-card-image img {
    height: 180px;
  }
  
  .service-card-title {
    font-size: 17px;
  }
}

@media screen and (max-width: 767px) {
  .service-card {
    max-width: 400px;
    margin: 0 auto;
  }
  
  .service-card-image img {
    height: 200px;
  }
  
  .service-card-body {
    padding: 18px;
  }
  
  .service-card-buttons {
    gap: 10px;
  }
  
  .btn-service-link,
  .btn-service-call,
  .btn-service-book {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .service-card {
    max-width: 100%;
  }
  
  .service-card-image img {
    height: 180px;
  }
  
  .service-card-title {
    font-size: 16px;
  }
  
  .service-card-description {
    font-size: 13px;
  }
}


/*---------------------------------------
  TESTIMONIAL              
-----------------------------------------*/
.testimonial-section {
  background-image: url('../images/coffe-shop-with-wooden-walls-unfocused.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

/* Testimonial Slider Wrapper */
.testimonial-slider-wrap {
  position: relative;
  padding: 0 50px;
}

/* Swiper Container */
.testimonialSwiper {
  overflow: hidden;
  padding-bottom: 50px;
}

/* Testimonial Card */
.testimonial-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-medium);
  padding: 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* Card Header - Avatar + Info */
.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

/* Avatar */
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--border-radius-small);
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

/* Info Block (Name + Stars) */
.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  color: var(--white-color);
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  margin: 0;
  line-height: 1.3;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
}

.testimonial-stars .bi-star-fill {
  color: var(--warning-color);
  font-size: 13px;
}

/* Review Text */
.testimonial-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--p-small-font-size);
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

/* Swiper Navigation Arrows */
.testimonial-prev,
.testimonial-next {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-small);
  transition: all var(--transition-normal);
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.testimonial-prev::after,
.testimonial-next::after {
  font-size: 18px;
  font-weight: bold;
  color: var(--white-color);
}

.testimonial-prev {
  left: 0;
}

.testimonial-next {
  right: 0;
}

/* Swiper Pagination */
.testimonial-pagination {
  bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all var(--transition-normal);
}

.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--white-color);
  width: 28px;
  border-radius: 5px;
}

/* Legacy featured-block styles (keep for other sections if used) */
.testimonial-section .featured-block {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-medium);
  margin-bottom: 20px;
  padding: 24px;
  height: calc(100% - 20px);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.testimonial-section .featured-block:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.testimonial-section .featured-block h4 {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 4px;
}

.testimonial-section .featured-block p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--p-small-font-size);
  line-height: 1.6;
}

.testimonial-section .featured-block p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.testimonial-section .reviews-icons {
  flex-shrink: 0;
}

.testimonial-section .reviews-icons .bi-star-fill {
  color: var(--warning-color);
}

/* Testimonial Slider Responsive */
@media screen and (max-width: 991px) {
  .testimonial-slider-wrap {
    padding: 0 40px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    width: 38px;
    height: 38px;
  }
  
  .testimonial-prev::after,
  .testimonial-next::after {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .testimonial-slider-wrap {
    padding: 0 15px;
  }
  
  .testimonial-prev,
  .testimonial-next {
    display: none;
  }
  
  .testimonial-card {
    padding: 20px;
  }
  
  .testimonial-avatar {
    width: 48px;
    height: 48px;
  }
  
  .testimonial-name {
    font-size: 15px;
  }
  
  .testimonial-text {
    font-size: 13px;
  }
  
  .testimonialSwiper {
    padding-bottom: 40px;
  }
}



/*---------------------------------------
  PARTNERS              
-----------------------------------------*/
.partners-section {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 50px;
  background: var(--white-color);
}

.partners-section-title {
  border-radius: var(--border-radius-small);
  display: inline-block;
  position: relative;
  bottom: 50px;
  margin-bottom: -50px;
  padding: 12px 24px;
  font-size: var(--p-small-font-size);
  font-weight: var(--font-weight-medium);
  color: var(--p-color);
}

.partners-image {
  display: block;
  width: 100px;
  max-width: 100%;
  height: auto;
  margin: 15px auto;
  transition: all var(--transition-normal);
  filter: grayscale(100%);
  opacity: 0.6;
}

.partners-image:hover {
  transform: scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
}


/*---------------------------------------
  COUNTER NUMBERS              
-----------------------------------------*/
.counter-thumb {
  margin: 20px;
  margin-top: 0;
}

.counter-number {
  color: var(--secondary-color);
  display: block;
}

.counter-number,
.counter-number-text {
  color: var(--secondary-color);
  font-size: var(--h1-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background: var(--white-color);
}

.contact-form {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 40px;
}

.contact-info {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  display: inline-block;
  margin-top: 20px;
  padding: 40px;
}

.team-info a,
.contact-info h5,
.contact-info h5 a {
  color: var(--p-color);
}

.team-info a:hover,
.contact-info h5 a:hover {
  color: var(--link-hover-color);
}

/* Contact Page Hero */
.contact-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
}

.contact-hero-section .section-overlay {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-color) 100%);
  opacity: 0.3;
}

.contact-hero-section h1 {
  font-size: 48px;
  font-weight: var(--font-weight-bold);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.contact-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Contact Form Wrap */
.contact-form-wrap {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.contact-form-wrap h2 {
  font-size: var(--h4-font-size);
  color: var(--dark-color);
}

.contact-form .form-label {
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
  font-size: var(--p-small-font-size);
  margin-bottom: 6px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-small);
  padding: 12px 16px;
  font-size: var(--p-font-size);
  transition: all var(--transition-normal);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form .form-control::placeholder {
  color: var(--p-light-color);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Contact Info Wrap */
.contact-info-wrap h2 {
  font-size: var(--h4-font-size);
  color: var(--dark-color);
}

/* Contact Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  transition: all var(--transition-normal);
}

.contact-info-card:hover {
  background: var(--white-color);
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-small);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  color: var(--white-color);
  font-size: 20px;
}

.contact-info-content h5 {
  font-size: 16px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 4px;
}

.contact-info-content a {
  color: var(--primary-color);
  font-weight: var(--font-weight-medium);
  word-break: break-word;
}

.contact-info-content a:hover {
  color: var(--primary-dark);
}

.contact-info-content p {
  margin-bottom: 0;
  color: var(--p-color);
}

/* Quick Contact CTA */
.quick-contact-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-medium);
  padding: 24px;
  text-align: center;
}

.quick-contact-cta h5 {
  color: var(--white-color);
  font-size: 18px;
  margin-bottom: 8px;
}

.quick-contact-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  font-size: var(--p-small-font-size);
}

.quick-contact-cta .custom-btn {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.quick-contact-cta .custom-btn:hover {
  background: var(--section-bg-color);
  color: var(--primary-dark);
}

/* Map Section */
.map-section {
  padding: 60px 0;
  background: var(--white-color);
}

.map-section h2 {
  font-size: var(--h3-font-size);
}

.contact-map {
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-map iframe {
  display: block;
}

/* Service Areas Section */
.service-areas-section {
  background: var(--section-bg-color);
}

.service-areas-section h2 {
  font-size: var(--h3-font-size);
}

.service-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.service-area-item {
  background: var(--white-color);
  border-radius: var(--border-radius-small);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.service-area-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-area-item i {
  color: var(--primary-color);
  font-size: 20px;
}

.service-area-item span {
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
}

/* Contact Page Responsive */
@media screen and (max-width: 991px) {
  .contact-hero-section {
    padding: 160px 0 50px !important;
    margin-top: 0 !important;
  }
  
  .contact-hero-section h1 {
    font-size: 36px;
  }
  
  .contact-form-wrap {
    padding: 30px;
  }
  
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .contact-hero-section {
    padding: 150px 0 40px !important;
    margin-top: 0 !important;
  }
  
  .contact-hero-section h1 {
    font-size: 30px;
  }
  
  .contact-hero-subtitle {
    font-size: 1rem;
  }
  
  .contact-form-wrap {
    padding: 24px;
  }
  
  .contact-info-card {
    padding: 16px;
  }
  
  .contact-info-icon {
    width: 42px;
    height: 42px;
  }
  
  .quick-contact-cta {
    padding: 20px;
  }
  
  .map-section {
    padding: 40px 0;
  }
  
  .contact-map iframe {
    height: 300px;
  }
  
  .service-areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .service-area-item {
    padding: 16px;
  }
}

@media screen and (max-width: 480px) {
  .contact-form-wrap {
    padding: 20px;
  }
  
  .service-areas-grid {
    grid-template-columns: 1fr;
  }
}


/*---------------------------------------
  SERVICE PAGES               
-----------------------------------------*/

/* Service Hero Section */
.service-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  padding: 140px 0 80px;
  text-align: center;
}

.service-hero-section .section-overlay {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--dark-color) 100%);
  opacity: 0.4;
}

.service-hero-section h1 {
  font-size: 42px;
  font-weight: var(--font-weight-bold);
  position: relative;
  z-index: 2;
}

.service-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Service Content Section */
.service-content-section {
  background: var(--white-color);
}

.service-main-content h2 {
  font-size: var(--h3-font-size);
  color: var(--dark-color);
  margin-bottom: var(--spacing-md);
}

.service-main-content h3 {
  font-size: var(--h5-font-size);
  color: var(--dark-color);
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.service-main-content .lead {
  font-size: 1.1rem;
  color: var(--p-color);
  line-height: 1.8;
}

.service-main-content img {
  box-shadow: var(--shadow-lg);
}

/* Service List */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

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

.service-list li i {
  font-size: 18px;
  flex-shrink: 0;
}

/* Feature Cards */
.feature-card {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 24px;
  height: 100%;
  transition: all var(--transition-normal);
}

.feature-card:hover {
  background: var(--white-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.feature-card i {
  font-size: 32px;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: block;
}

.feature-card h4 {
  font-size: 18px;
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: var(--p-small-font-size);
  color: var(--p-color);
  margin-bottom: 0;
}

/* Spring Type Card */
.spring-type-card {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 24px;
  height: 100%;
}

.spring-type-card h4 {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.spring-type-card p {
  font-size: var(--p-small-font-size);
  margin-bottom: 0;
}

/* Warning Box */
.warning-box {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-left: 4px solid var(--warning-color);
  border-radius: var(--border-radius-small);
  padding: 20px 24px;
  margin: var(--spacing-lg) 0;
}

.warning-box h4 {
  font-size: 18px;
  color: #92400e;
  margin-bottom: 8px;
}

.warning-box p {
  color: #78350f;
  margin-bottom: 0;
  font-size: var(--p-small-font-size);
}

/* Brand Grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.brand-item {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-small);
  padding: 16px;
  text-align: center;
  font-weight: var(--font-weight-medium);
  color: var(--dark-color);
  transition: all var(--transition-normal);
}

.brand-item:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: var(--border-radius-medium);
  padding: 28px;
  margin-bottom: 24px;
  text-align: center;
}

.sidebar-cta-box h4 {
  color: var(--white-color);
  font-size: 20px;
  margin-bottom: 8px;
}

.sidebar-cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--p-small-font-size);
  margin-bottom: 20px;
}

.sidebar-cta-box .custom-btn {
  background: var(--white-color);
  color: var(--primary-color);
  border-color: var(--white-color);
}

.sidebar-cta-box .custom-btn:hover {
  background: var(--section-bg-color);
}

.sidebar-cta-box .custom-border-btn {
  background: transparent;
  border-color: var(--white-color);
  color: var(--white-color);
}

.sidebar-cta-box .custom-border-btn:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

/* Sidebar Services */
.sidebar-services,
.sidebar-areas {
  background: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  padding: 24px;
  margin-bottom: 24px;
}

.sidebar-services h4,
.sidebar-areas h4 {
  font-size: 18px;
  color: var(--dark-color);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-color);
}

.sidebar-services ul,
.sidebar-areas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-services ul li {
  margin-bottom: 8px;
}

.sidebar-services ul li a {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  transition: all var(--transition-normal);
  font-size: var(--p-small-font-size);
}

.sidebar-services ul li a:hover,
.sidebar-services ul li a.active {
  background: var(--white-color);
  color: var(--primary-color);
  box-shadow: var(--shadow-sm);
}

.sidebar-services ul li a i {
  margin-right: 8px;
  font-size: 12px;
}

.sidebar-areas ul li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: var(--p-color);
  font-size: var(--p-small-font-size);
}

.sidebar-areas ul li i {
  color: var(--primary-color);
  margin-right: 10px;
}

/* Service CTA Section */
.service-cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  position: relative;
  padding: 60px 0;
}

.service-cta-section .section-overlay {
  background: var(--dark-color);
  opacity: 0.3;
}

.service-cta-section h2,
.service-cta-section p {
  position: relative;
  z-index: 2;
}

/* Emergency Page Specific */
.emergency-hero {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.emergency-hero .section-overlay {
  background: linear-gradient(135deg, #991b1b 0%, #450a0a 100%);
}

.emergency-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white-color);
  padding: 8px 20px;
  border-radius: var(--border-radius-pill);
  font-size: var(--p-small-font-size);
  font-weight: var(--font-weight-semibold);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.emergency-btn {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
}

.emergency-btn:hover {
  background: #b91c1c !important;
  border-color: #b91c1c !important;
}

.emergency-cta {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%) !important;
}

.emergency-cta .emergency-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.emergency-cta .emergency-icon i {
  font-size: 28px;
  color: var(--white-color);
}

.emergency-info-box {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--border-radius-medium);
  padding: 24px;
  margin: var(--spacing-lg) 0;
}

.emergency-info-box h3 {
  color: #991b1b;
  margin-top: 0;
}

.emergency-cta-section {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
}

.emergency-cta-section .section-overlay {
  background: #450a0a;
  opacity: 0.4;
}

/* Service Page Responsive */
@media screen and (max-width: 991px) {
  .service-hero-section {
    padding: 160px 0 50px !important;
    margin-top: 0 !important;
  }
  
  .service-hero-section h1 {
    font-size: 32px;
  }
  
  .service-sidebar {
    position: relative;
    top: 0;
    margin-top: 40px;
  }
  
  .brand-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 767px) {
  .service-hero-section {
    padding: 150px 0 40px !important;
    margin-top: 0 !important;
  }
  
  .service-hero-section h1 {
    font-size: 26px;
  }
  
  .service-hero-subtitle {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
  
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sidebar-cta-box,
  .sidebar-services,
  .sidebar-areas {
    padding: 20px;
  }
}

@media screen and (max-width: 480px) {
  .service-hero-section h1 {
    font-size: 24px;
  }
  
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .brand-item {
    padding: 12px;
    font-size: var(--p-small-font-size);
  }
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control,
.input-group-file {
  color: var(--p-color);
  margin-bottom: 24px;
  padding-top: 13px;
  padding-bottom: 13px;
  outline: none;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--secondary-color);
}

.custom-form label {
  margin-bottom: 10px;
}

.custom-form .form-check-group {
  margin-bottom: 20px;
}

.donate-form .form-check-group-donation-frequency {
  padding-right: 0;
}

.form-check-group-donation-frequency + .form-check-group-donation-frequency {
  padding-right: 12px;
  padding-left: 0;
}

.form-check-group-donation-frequency .form-check-label {
  font-weight: var(--font-weight-medium);
}

#DonationFrequencyOne {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#DonationFrequencyMonthly {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-form .form-check-radio {
  position: relative;
  height: 100%;
  padding-left: 0;
}

.custom-form .input-group-text {
  background: var(--secondary-color);
  border: 0;
  color: var(--white-color);
}

.custom-form .form-check-radio .form-check-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.form-check-radio .form-check-input[type=radio] {
  background-color: var(--section-bg-color);
  border-radius: .25rem;
  border: 0;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-top: 0;
  margin-left: 0;
  padding: 25px 50px;
  transition: all 0.3s;
}

.form-check-radio .form-check-input:checked[type=radio] {
  background-image: none;
}

.form-check-radio .form-check-input:checked[type=radio] + .form-check-label,
.form-check-radio .form-check-input:hover + .form-check-label,
.form-check-radio .form-check-input:checked + .form-check-label {
  color: var(--white-color);
}

.form-check-radio .form-check-input:hover,
.form-check-radio .form-check-input:checked {
  background-color: var(--secondary-color);
  border-color: var(--white-color);
}

.input-group-file {
  border-radius: .25rem;
  padding: 13px .75rem;
}

.input-group-file input[type=file] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  padding: 0;
}

.input-group-file .input-group-text {
  background: transparent;
  color: inherit;
  margin-bottom: 0;
  padding: 0;
}

.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;
}

.consulting-form {
  background: var(--white-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 45px;
}

.consulting-form-header .form-icon {
  font-size: var(--h2-font-size);
  color: var(--white-color);
}


/*---------------------------------------
  SITE FOOTER              
-----------------------------------------*/
.site-footer {
  background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
  padding-top: 50px;
}

.site-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  margin-top: 40px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-footer .logo {
  background-color: var(--white-color);
  border-radius: var(--border-radius-medium);
  width: 56px;
  height: 56px;
  object-fit: cover;
  padding: 10px;
  flex-shrink: 0;
}

.site-footer-title {
  color: var(--white-color);
  font-size: var(--h6-font-size);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--spacing-md);
}

.site-footer-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color var(--transition-fast);
}

.site-footer-link:hover {
  color: var(--white-color);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--copyright-font-size);
  margin-right: 0;
}

.site-footer .custom-btn {
  font-size: var(--p-small-font-size);
  padding: 10px 20px;
  background: var(--primary-color);
  border-radius: var(--border-radius-small);
}

.site-footer .custom-btn:hover {
  background: var(--primary-light);
}

.site-footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer-bottom a:hover {
  color: var(--white-color);
}


/*---------------------------------------
  FOOTER MENU               
-----------------------------------------*/
.footer-menu {
  column-count: 2;
  margin: 0;
  padding: 0;
}

.footer-menu-item {
  list-style: none;
  display: block;
}

.footer-menu-link {
  font-size: var(--p-small-font-size);
  color: rgba(255, 255, 255, 0.75);
  display: inline-block;
  vertical-align: middle;
  margin-right: 0;
  margin-bottom: 5px;
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-menu-link:hover {
  color: var(--white-color);
}


/*---------------------------------------
  SOCIAL ICON               
-----------------------------------------*/
.social-icon {
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
}

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

.social-icon-link {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  font-size: var(--p-small-font-size);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: all var(--transition-normal);
}

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

.button--skoll {
  overflow: hidden;
  border-radius: var(--border-radius-small);
  color: var(--white-color);
  width: 40px;
  height: 40px;
}

.button--skoll span {
  display: block;
  position: relative;
}

.button--skoll > span {
  overflow: hidden;
}

.button--skoll:hover > span > span {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}

.button--skoll::before {
  content: '';
  background: var(--primary-color);
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  border-radius: var(--border-radius-small);
  transform: translate3d(0,0,0);
  transition: transform var(--transition-normal);
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.button--skoll:hover::before {
  transform: translate3d(0,100%,0);
}


/*---------------------------------------
  NEW MOBILE-FIRST COMPONENTS               
-----------------------------------------*/

/* Site Header Content */
.site-header-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.site-header-item {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: var(--copyright-font-size);
  color: var(--white-color);
}

.site-header-text {
  white-space: nowrap;
}

.site-header-phone {
  font-weight: var(--font-weight-medium);
}

.site-header-phone a {
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.02em;
}

/* Navbar Brand Text */
.navbar-brand-text {
  margin-left: 0;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

/* Hero Description */
.hero-description {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.92;
  font-weight: var(--font-weight-normal);
}

/* Hero Buttons Container */
.hero-buttons {
  gap: 12px;
  margin-top: var(--spacing-sm);
}

.hero-buttons .custom-btn {
  min-width: 160px;
  text-align: center;
  font-weight: var(--font-weight-medium);
}

/* Map Container */
.map-container {
  width: 100%;
  border-radius: var(--border-radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.map-container iframe {
  display: block;
  width: 100%;
}

/* Location Section */
.location-section {
  background-image: url('../images/coffe-shop-with-wooden-walls-unfocused.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Footer Brand Wrap */
.footer-brand-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--spacing-lg);
}

.footer-nav-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Footer Areas List */
.footer-areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  column-count: 1;
}

.footer-areas-list li {
  margin-bottom: 10px;
}

.footer-areas-list a {
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--p-small-font-size);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}

.footer-areas-list a:hover {
  color: var(--white-color);
}

.footer-areas-list a i {
  color: var(--primary-light);
  font-size: 12px;
}

/* Footer Contact Info */
.footer-contact-info p {
  font-size: var(--p-small-font-size);
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-info p i {
  color: var(--primary-light);
}

.footer-email {
  word-break: break-word;
}

/* Footer Hours Block */
.footer-hours-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-medium);
  padding: 24px;
}

.footer-hours-time {
  font-size: 1.25rem;
  font-weight: var(--font-weight-semibold);
}

/*---------------------------------------
  RESPONSIVE STYLES               
-----------------------------------------*/
@media screen and (min-width: 1600px) {
  .intro-section {
    padding-top: 0;
  }
}

@media screen and (min-width: 992px) {
  .footer-areas-list {
    column-count: 2;
  }
  
  .navbar-brand-text {
    font-size: var(--h6-font-size);
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 18px;
  }

  h6 {
    font-size: 16px;
  }

  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .team-section {
    padding-bottom: 80px;
  }

  /*=============================================
    MOBILE HEADER FIX - FIXED POSITIONING
  =============================================*/
  
  /* Site Header (Phone Bar) - Fixed at very top */
  .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    padding-top: 10px;
    padding-bottom: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
  }

  /* Navbar (Logo Bar) - Fixed below phone bar */
  .navbar {
    position: fixed !important;
    top: 44px !important; /* Height of site-header: 10px + ~24px content + 10px = ~44px */
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background-color: var(--white-color) !important;
    padding-top: 12px;
    padding-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9998 !important;
  }

  .navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    color: var(--dark-color);
  }
  
  .navbar-brand-text {
    font-size: 0.9rem;
    color: var(--dark-color);
  }

  /* Hamburger menu styling */
  .navbar-toggler {
    border: none;
    padding: 8px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
  }
  
  /* Mobile menu dropdown when open */
  .navbar-collapse {
    background: var(--white-color);
    max-height: 70vh;
    overflow-y: auto;
  }

  /*=============================================
    MAIN CONTENT SPACER - Push content below fixed header
  =============================================*/
  
  /* Add spacer to body/main to account for fixed header */
  body {
    padding-top: 0 !important;
  }
  
  main {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .navbar-nav .nav-link {
    color: var(--p-color);
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    background: var(--section-bg-color);
    color: var(--primary-color);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
    padding-top: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    margin: 4px 0;
    padding: 10px 16px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn {
    background-color: var(--custom-btn-bg-color);
    color: var(--white-color);
    margin-left: 0;
    margin-top: 10px;
  }

  .navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover {
    background-color: var(--custom-btn-bg-hover-color);
  }

  .navbar-nav .dropdown-menu {
    position: relative;
    left: 0;
    opacity: 1;
    pointer-events: auto;
    max-width: 100%;
    margin-top: 10px;
    margin-bottom: 15px;
    box-shadow: none;
    border: 1px solid var(--border-color);
  }

  .custom-block-wrap .custom-block {
    right: 12px;
    padding: 20px;
  }

  /*=============================================
    HERO SECTION - Clear fixed header (44px + 68px = 112px)
  =============================================*/
  .hero-section,
  .hero,
  .top-hero,
  .hero-section-full-height {
    padding-top: 160px !important;
    padding-bottom: 60px;
    margin-top: 0 !important;
    top: auto !important;
    transform: none !important;
  }
  
  /* Remove vertical centering on mobile - let padding control position */
  .hero-section.d-flex {
    align-items: flex-start !important;
    min-height: auto !important;
  }

  .hero-section-full-height {
    min-height: 550px !important;
  }

  .hero-description {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .hero-buttons {
    padding: 0 1rem;
  }

  .hero-buttons .custom-btn {
    min-width: 140px;
    padding: 10px 20px;
  }

  .services-thumb {
    padding: 20px;
    margin-bottom: 16px;
  }

  .site-footer {
    padding-top: 40px;
  }

  .copyright-text-wrap {
    justify-content: center;
  }

  .site-footer-bottom {
    margin-top: 30px;
  }

  .footer-brand-wrap {
    justify-content: center;
    text-align: center;
    border-bottom: none;
    padding-bottom: var(--spacing-sm);
  }

  .footer-nav-menu {
    justify-content: center;
    width: 100%;
  }
}

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

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 18px;
  }

  h5 {
    font-size: 16px;
  }

  h6 {
    font-size: 15px;
  }

  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .custom-btn {
    font-size: 14px;
    padding: 11px 20px;
    min-height: 44px;
  }

  /*=============================================
    HERO SECTION - Clear fixed header on smaller mobile
  =============================================*/
  .hero-section,
  .hero,
  .top-hero,
  .hero-section-full-height {
    padding-top: 150px !important;
    padding-bottom: 50px;
    margin-top: 0 !important;
    top: auto !important;
    transform: none !important;
  }
  
  .hero-section.d-flex {
    align-items: flex-start !important;
  }

  .hero-section-full-height {
    min-height: 500px !important;
  }

  .hero-section svg {
    bottom: 0;
  }

  .hero-description {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .hero-buttons .custom-btn {
    width: 100%;
    max-width: 260px;
  }

  .cd-headline {
    font-size: 26px !important;
  }

  .intro-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .intro-section .col-lg-6:first-child {
    padding: 0 0.5rem;
  }

  .custom-block-wrap .custom-block {
    position: relative;
    margin-top: 20px;
    right: auto;
    width: 100%;
  }

  .services-thumb {
    padding: 18px;
  }

  .services-thumb .row {
    flex-direction: column;
  }

  .services-thumb .col-lg-5,
  .services-thumb .col-lg-7 {
    width: 100%;
  }

  .services-image-wrap {
    margin-bottom: 16px;
  }

  .services-info {
    text-align: center;
  }

  .services-info .d-flex {
    justify-content: center;
    flex-wrap: wrap;
  }

  .services-info .custom-btn {
    margin-top: 12px !important;
    margin-left: 0 !important;
    width: 100%;
  }

  .testimonial-section .featured-block {
    padding: 18px;
    margin-bottom: 12px;
  }

  .team-info::before {
    border-top: 0;
    border-bottom: 15px solid var(--white-color);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    top: -15px;
    bottom: auto;
    right: 0;
    left: 0;
  }

  .partners-section {
    padding-top: 20px;
    padding-bottom: 36px;
  }

  .partners-section-title {
    bottom: 30px;
    margin-bottom: -30px;
    font-size: 13px;
    padding: 8px 16px;
  }

  .partners-image {
    width: 80px;
    margin-bottom: 10px;
  }

  .map-container iframe {
    height: 280px;
  }

  .footer-brand-wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  .footer-nav-menu {
    justify-content: center;
  }

  .footer-hours-block {
    text-align: center;
    padding: 20px;
  }

  .site-footer-bottom {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .copyright-text {
    font-size: 12px;
    margin-right: 0;
  }

  .social-icon {
    justify-content: center;
  }
}

@media screen and (max-width: 575px) {
  .site-header-content {
    justify-content: center;
  }

  .site-header-phone {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }

  .navbar-brand {
    max-width: 75%;
  }

  .navbar-brand-text {
    font-size: 0.8rem;
    white-space: normal;
    line-height: 1.25;
  }

  .logo {
    width: 44px;
    height: 44px;
    padding: 8px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 22px;
  }

  .cd-headline {
    font-size: 22px !important;
  }

  .hero-section {
    min-height: 480px;
  }

  .hero-description {
    font-size: 0.875rem;
    line-height: 1.6;
  }

  .hero-buttons .custom-btn {
    padding: 10px 16px;
    font-size: 13px;
    min-height: 42px;
  }

  .custom-block {
    padding: 18px;
  }

  .featured-block {
    padding: 16px;
  }

  .avatar-image {
    width: 48px;
    height: 48px;
  }

  .featured-block h4 {
    font-size: 15px;
  }

  .featured-block p {
    font-size: 13px;
  }

  .footer-menu-link {
    font-size: 13px;
  }

  .site-footer .logo {
    width: 48px;
    height: 48px;
  }

  .footer-hours-time {
    font-size: 1.1rem;
  }

  .social-icon-link {
    width: 36px;
    height: 36px;
  }
}

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

  h2 {
    font-size: 20px;
  }

  .cd-headline {
    font-size: 20px !important;
  }

  .hero-buttons .custom-btn {
    min-width: 100%;
    font-size: 12px;
    padding: 10px 14px;
  }

  .custom-btn {
    font-size: 12px;
    padding: 10px 14px;
    min-height: 40px;
  }

  .navbar-brand-text {
    font-size: 0.7rem;
  }

  .partners-image {
    width: 70px;
  }

  .testimonial-section .featured-block {
    padding: 14px;
  }

  .services-thumb {
    padding: 14px;
  }
}
/* FIX NAVBAR OVERLAP ON MOBILE */
@media (max-width: 768px) {

    .navbar {
        top: 10px !important; /* במקום 49px */
    }

    header.site-header {
        padding-top: 4px !important;
        padding-bottom: 4px !important;
    }

    .hero-section {
        padding-top: 180px !important; /* נותן מרווח גדול כדי שלא ידרוך על הטקסט */
    }

    .navbar-brand .logo {
        width: 48px;
        height: 48px;
    }
}
/* MOBILE FIXED BOTTOM BUTTONS */
@media (max-width: 768px) {
  .mobile-fixed-buttons {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 10px;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
      z-index: 999999;
  }

  .mobile-fixed-buttons .mobile-btn {
      flex: 1;
      margin: 0 5px;
      text-align: center;
      padding: 12px 0;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 600;
      color: #fff;
      text-decoration: none;
  }

  .mobile-fixed-buttons .call-btn {
      background: #1e40af; /* כחול כהה */
  }

  .mobile-fixed-buttons .book-btn {
      background: #2563eb; /* כחול יותר בהיר */
  }
}

/* Hide in desktop */
@media (min-width: 769px) {
  .mobile-fixed-buttons {
      display: none;
  }
}

/*---------------------------------------
  BLOG SECTION STYLES               
-----------------------------------------*/

/* Blog Hero Section */
.blog-hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    position: relative;
}

.blog-hero-section .section-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.blog-hero-section h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

/* Blog Section */
.blog-section {
    background: var(--section-bg-color);
}

/* Blog Card */
.blog-card {
    background: var(--white-color);
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--p-light-color);
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--p-color);
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.blog-read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--primary-dark);
}

.blog-read-more:hover i {
    transform: translateX(5px);
}

/* Blog CTA Section */
.blog-cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    position: relative;
}

.blog-cta-section .section-overlay {
    background: rgba(0, 0, 0, 0.2);
}

/* Blog Post Single Page */
.blog-post-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0 60px;
}

.blog-post-content {
    padding: 50px 0;
}

.blog-post-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-post-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-widget {
    background: var(--white-color);
    border-radius: var(--border-radius-large);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.blog-sidebar-widget h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

/* Recent Posts Widget */
.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: var(--border-radius-small);
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-info h5 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info h5 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 12px;
    color: var(--p-light-color);
}

/* Responsive Blog */
@media (max-width: 992px) {
    .blog-hero-section h1 {
        font-size: 2rem;
    }
    
    .blog-card-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .blog-hero-section {
        padding: 60px 0;
    }
    
    .blog-hero-section h1 {
        font-size: 1.75rem;
    }
    
    .blog-card-image {
        height: 160px;
    }
    
    .blog-card-title {
        font-size: 1rem;
    }
}

/*===============================================
  ULTIMATE MOBILE OPTIMIZATION
  Best-in-class mobile experience
===============================================*/

/* Ensure all text is readable - no blue on blue */
.text-white, 
.hero-section .text-white,
.site-header .text-white,
.site-footer .text-white {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* High contrast for links on blue backgrounds */
.hero-section a,
.site-header a,
.cta-section a {
    color: #ffffff;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.hero-section a:hover,
.site-header a:hover {
    color: #f0f9ff;
    text-decoration: underline;
}

/* Mobile-First Touch Targets (44px minimum) */
@media (max-width: 992px) {
    /* Larger touch targets for all interactive elements */
    .nav-link,
    .dropdown-item,
    .btn,
    .custom-btn,
    a.site-footer-link {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Better button visibility */
    .custom-btn {
        padding: 14px 24px;
        font-size: 16px;
        font-weight: 600;
    }
    
    /* Cards more tappable */
    .services-thumb,
    .blog-card {
        cursor: pointer;
    }
}

@media (max-width: 768px) {
    /* === HEADER IMPROVEMENTS === */
    .site-header {
        padding: 8px 0;
    }
    
    .site-header-content {
        justify-content: space-between;
    }
    
    .site-header-phone {
        font-size: 15px;
        font-weight: 600;
    }
    
    .site-header-phone a {
        background: rgba(255,255,255,0.15);
        padding: 6px 12px;
        border-radius: 6px;
        text-decoration: none !important;
    }
    
    /* === NAVIGATION IMPROVEMENTS === */
    .navbar {
        padding: 10px 0;
    }
    
    .navbar-brand-text {
        font-size: 14px;
        max-width: 180px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .navbar-toggler {
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Mobile menu - full width dropdown */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        border-radius: 0 0 16px 16px;
        padding: 16px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-nav {
        gap: 4px;
    }
    
    .navbar-nav .nav-link {
        padding: 14px 16px;
        border-radius: 8px;
        font-size: 16px;
        color: var(--dark-color) !important;
        background: var(--section-bg-color);
        margin-bottom: 4px;
    }
    
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background: var(--primary-color);
        color: #ffffff !important;
    }
    
    .dropdown-menu {
        position: static !important;
        box-shadow: none;
        border: none;
        padding-left: 16px;
        background: transparent;
    }
    
    .dropdown-item {
        padding: 12px 16px;
        border-radius: 6px;
        font-size: 15px;
        background: #f1f5f9;
        margin-bottom: 4px;
    }
    
    /* === HERO SECTION MOBILE === */
    .hero-section {
        padding: 120px 16px 80px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-top: 24px;
    }
    
    .hero-buttons .btn,
    .hero-buttons .custom-btn {
        width: 100%;
        padding: 16px 24px;
        font-size: 17px;
        font-weight: 600;
    }
    
    /* === SECTIONS MOBILE === */
    .section-padding {
        padding: 50px 16px;
    }
    
    .section-padding h2 {
        font-size: 26px;
        margin-bottom: 16px;
    }
    
    /* === SERVICES CARDS MOBILE === */
    .services-thumb {
        padding: 24px 20px;
        margin-bottom: 16px;
        text-align: center;
    }
    
    .services-thumb img {
        max-height: 60px;
        margin-bottom: 16px;
    }
    
    .services-thumb h5 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .services-thumb p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* === TESTIMONIALS MOBILE === */
    .testimonial-item {
        padding: 24px 20px;
        margin: 0 8px;
    }
    
    .testimonial-text {
        font-size: 15px;
        line-height: 1.7;
    }
    
    /* === CONTACT SECTION MOBILE === */
    .contact-info {
        text-align: center;
    }
    
    .contact-info-item {
        padding: 20px;
        margin-bottom: 16px;
    }
    
    /* === FOOTER MOBILE === */
    .site-footer {
        padding: 40px 16px 100px; /* Extra bottom padding for fixed buttons */
        text-align: center;
    }
    
    .site-footer-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .footer-nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }
    
    .footer-menu-link {
        padding: 8px 12px;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
        font-size: 14px;
    }
    
    .footer-areas-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    
    .footer-areas-list li a {
        display: block;
        padding: 10px;
        background: rgba(255,255,255,0.05);
        border-radius: 6px;
        font-size: 13px;
    }
    
    .footer-contact-info {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-contact-info p {
        justify-content: center;
    }
    
    .footer-hours-block {
        background: rgba(255,255,255,0.05);
        padding: 24px;
        border-radius: 12px;
        margin-top: 20px;
    }
    
    .site-footer-bottom {
        padding: 20px 0 80px; /* Space for fixed buttons */
    }
    
    /* === IMPROVED MOBILE FIXED BUTTONS === */
    .mobile-fixed-buttons {
        padding: 12px 16px;
        padding-bottom: calc(12px + env(safe-area-inset-bottom));
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        gap: 10px;
    }
    
    .mobile-fixed-buttons .mobile-btn {
        flex: 1;
        padding: 14px 16px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    
    .mobile-fixed-buttons .mobile-btn:active {
        transform: scale(0.97);
    }
    
    .mobile-fixed-buttons .call-btn {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    }
    
    .mobile-fixed-buttons .book-btn {
        background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    }
    
    .mobile-fixed-buttons .mobile-btn i {
        font-size: 18px;
    }
    
    /* === BLOG PAGE MOBILE === */
    .blog-section {
        padding: 40px 16px;
    }
    
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-card-body {
        padding: 16px;
    }
    
    .blog-meta {
        font-size: 12px;
        gap: 12px;
    }
    
    .blog-card-excerpt {
        font-size: 13px;
        -webkit-line-clamp: 3;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* === EXTRA SMALL DEVICES (< 375px) === */
@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 24px;
    }
    
    .navbar-brand-text {
        font-size: 12px;
        max-width: 140px;
    }
    
    .services-thumb h5 {
        font-size: 16px;
    }
    
    .mobile-fixed-buttons .mobile-btn {
        padding: 12px 10px;
        font-size: 14px;
    }
}

/*===============================================
  ACCESSIBILITY & CONTRAST IMPROVEMENTS
===============================================*/

/* Focus states for keyboard navigation */
a:focus,
button:focus,
.btn:focus,
.custom-btn:focus,
.nav-link:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* Skip to main content link - Hidden by default, visible on focus for accessibility */
.skip-link {
    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;
    background: var(--dark-color);
    color: #ffffff;
    z-index: 100000;
    font-weight: 600;
    text-decoration: none;
}

.skip-link:focus {
    position: fixed !important;
    top: 16px !important;
    left: 16px !important;
    width: auto !important;
    height: auto !important;
    padding: 12px 20px !important;
    margin: 0 !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Ensure sufficient color contrast */
.text-muted {
    color: #64748b !important; /* WCAG AA compliant */
}

/* Better visibility for placeholder text */
::placeholder {
    color: #94a3b8;
    opacity: 1;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .custom-btn {
        border: 2px solid #ffffff;
    }
    
    .nav-link {
        text-decoration: underline;
    }
    
    .services-thumb {
        border: 2px solid var(--dark-color);
    }
}

/*===============================================
  PERFORMANCE OPTIMIZATIONS
===============================================*/

/* GPU acceleration for smooth animations */
.services-thumb,
.blog-card,
.custom-btn,
.navbar {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Optimize images */
img {
    content-visibility: auto;
}

/* Smooth scrolling only on desktop */
@media (min-width: 769px) {
    html {
        scroll-behavior: smooth;
    }
}

/*===============================================
  BLOG POST IMAGE CONTAINER
  Consistent sizing with SEO-friendly captions
===============================================*/

.blog-featured-image {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2rem;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    background: var(--section-bg-color);
}

.blog-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-featured-image:hover img {
    transform: scale(1.02);
}

.blog-image-caption {
    background: linear-gradient(135deg, var(--dark-color) 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 12px 20px;
    font-size: 14px;
    text-align: center;
    font-style: italic;
}

.blog-image-caption i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Responsive blog image */
@media (max-width: 768px) {
    .blog-featured-image img {
        height: 250px;
    }
    
    .blog-image-caption {
        padding: 10px 15px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .blog-featured-image img {
        height: 200px;
    }
}
/* ============================================
   FOOTER STYLES - NEW DESIGN
   ============================================ */

/* Footer CTA Banner */
.footer-cta-banner {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 25px 0;
    position: relative;
    overflow: hidden;
}

.footer-cta-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.footer-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin: 0;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #10b981;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
    background: #f0fdf4;
    color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Footer Main */
.footer-main {
    background: #0f172a;
    padding: 60px 0 40px;
}

.site-footer {
    background: #0f172a;
}

/* Footer Logo */
.footer-logo {
    width: 100px;
    height: 100px;
    border-radius: 16px;
    background: #fff;
    padding: 10px;
    object-fit: contain;
}

/* Footer About */
.footer-about-text {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Trust Badges */
.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e293b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.trust-badge i {
    font-size: 0.9rem;
}

/* Social Icons */
.social-icon {
    display: flex;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-icon-link:hover {
    background: #2563eb;
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Titles */
.site-footer-title {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

/* Footer Links */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links-list a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-links-list a i {
    font-size: 0.7rem;
    color: #2563eb;
}

.view-all-link {
    color: #10b981 !important;
    font-weight: 500;
}

/* Footer Contact */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-contact-list li i {
    color: #2563eb;
    font-size: 1rem;
}

.footer-contact-list a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-list a:hover {
    color: #fff;
}

/* Footer Hours */
.footer-hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.footer-hours-list .emergency-hours {
    color: #10b981;
    font-weight: 600;
    justify-content: flex-start;
    gap: 8px;
}

/* Footer Certifications */
.footer-certifications {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 30px;
}

.certifications-label {
    color: #64748b;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 15px;
}

.payment-icons {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons i {
    color: #64748b;
    font-size: 1.5rem;
}

.payment-text {
    color: #64748b;
    font-size: 0.8rem;
}

.certification-badges {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cert-badge {
    display: inline-block;
    background: #1e293b;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer Bottom */
.site-footer-bottom {
    background: #0a0f1a;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-bottom-links a {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

.footer-tagline {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

.footer-tagline i {
    color: #ef4444;
}

/* Mobile Fixed Buttons */
.mobile-fixed-buttons {
    display: none;
}

@media (max-width: 767px) {
    .mobile-fixed-buttons {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #fff;
        padding: 10px;
        gap: 10px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .mobile-btn {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 20px;
        border-radius: 10px;
        font-weight: 600;
        font-size: 0.95rem;
        text-decoration: none;
        min-height: 52px;
    }
    
    .call-btn {
        background: #2563eb;
        color: #fff;
    }
    
    .book-btn {
        background: #10b981;
        color: #fff;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .footer-cta-btn {
        width: 100%;
        margin-top: 15px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    .certification-badges {
        justify-content: flex-start;
        margin-top: 10px;
    }
}
