/* Moderne Stile für GebäudeService Pro */
:root {
  --primary-gradient: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  --secondary-gradient: linear-gradient(135deg, #243B55 0%, #141E30 100%);
  --accent-gradient: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  --accent-color: #00c6ff;
  --dark-blue: #141E30;
  --mid-blue: #1e3c72;
  --light-blue: #2a5298;
  --pure-white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --mid-gray: #6c757d;
  --dark-gray: #343a40;
  --black: #000000;
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
}

/* Allgemeine Stile */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%; /* 10px = 1rem */
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--dark-gray);
  background-color: var(--pure-white);
  overflow-x: hidden;
  font-size: 1.6rem;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

h1 {
  font-size: 5.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 4.2rem;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 3.2rem;
}

p {
  margin-bottom: 2rem;
  font-size: 1.6rem;
}

a {
  text-decoration: none;
  color: var(--mid-blue);
  transition: var(--transition);
}

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

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

.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .fullwidth-content .cleaning-benefits-showcase {
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
    max-width: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--pure-white);
  background: var(--accent-gradient);
  border: none;
  border-radius: 5rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 108, 255, 0.3);
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  width: 100%;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 108, 255, 0.4);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  color: var(--dark-blue);
  box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow: auto;
}

.modal.active {
  display: block;
}

.modal-content {
  background: var(--pure-white);
  margin: 5% auto;
  width: 90%;
  max-width: 600px;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.modal-header h3 {
  margin: 0;
  color: var(--dark-blue);
}

.modal-close {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--mid-gray);
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--dark-blue);
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 0 2rem 2rem;
}

.details-section {
  margin-bottom: 2.5rem;
}

.details-section:last-child {
  margin-bottom: 0;
}

.details-section h4 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--light-gray);
}

.message-box {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 1.5rem;
  max-height: 20rem;
  overflow-y: auto;
}

.details-meta {
  font-size: 1.4rem;
  color: var(--mid-gray);
}

.warning-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.warning-icon i {
  font-size: 5rem;
  color: var(--warning-color);
}

.delete-message {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 0;
}

/* Sidebar Navigation */
.side-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 8rem;
  height: 100vh;
  background: var(--secondary-gradient);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0 0.5rem 0;
  z-index: 1000;
  transition: var(--transition);
  overflow-y: auto;
}

.side-nav::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 11rem;
  background: rgba(255, 255, 255, 1);
  z-index: -1;
  pointer-events: none;
}

.side-nav:hover {
  width: 25rem;
}

/* Adjust hover tolerance - only expand when mouse is within 20px of the edge */
@media (min-width: 769px) {
  .side-nav {
    width: 8rem;
  }
  
  .side-nav:hover {
    width: 25rem;
  }
  
  .main-content {
    margin-left: 8rem;
  }
}

/* Removed duplicate logo styling */

.side-nav .logo {
  width: 8rem;
  height: 8rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 7rem;
  margin-top: 0;
  color: var(--pure-white);
  transition: var(--transition);
  padding: 0.3rem;
}

.side-nav:hover .logo {
  width: 22rem;
  padding: 0.5rem;
}

.side-nav-logo-svg {
  width: 85%;
  height: auto;
  opacity: 1;
  animation: fadeInLogo 0.8s forwards 0.3s;
  pointer-events: none; /* Prevent SVG from blocking clicks */
  object-fit: contain;
}

@keyframes fadeInLogo {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.side-nav-items {
  list-style: none;
  width: 100%;
  margin-top: 0;
}

.side-nav-item {
  width: 100%;
  margin-bottom: 1rem;
}

.side-nav-link {
  display: flex;
  align-items: center;
  padding: 1.5rem 2rem;
  color: var(--pure-white);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.side-nav-link i {
  font-size: 2.2rem;
  min-width: 4rem;
  text-align: center;
}

.side-nav-link span {
  opacity: 0;
  transform: translateX(20px);
  transition: var(--transition);
}

.side-nav:hover .side-nav-link span {
  opacity: 1;
  transform: translateX(0);
}

.side-nav-link.active, 
.side-nav-link:hover,
.side-nav-link.reservation-link {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-color);
}

.side-nav-link.reservation-link {
  background: var(--accent-gradient);
  margin: 1rem 0;
}

.side-nav-link.reservation-link span,
.side-nav-link.reservation-link i {
  color: var(--pure-white);
}

.side-nav-link.active:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--accent-color);
}

/* Hamburger Menu for Mobile */
.hamburger {
  display: none !important; /* Hide on all screens by default */
  cursor: pointer;
  position: fixed;
  top: 2rem;
  left: 2rem; /* Position on the left */
  z-index: 1001;
  width: 5.5rem; /* Increased from 4.5rem */
  height: 5.5rem; /* Increased from 4.5rem */
  background: var(--accent-gradient);
  border-radius: 50%;
  box-shadow: var(--box-shadow);
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

/* Hide hamburger when chat window is active */
.chat-window.active ~ .hamburger {
  z-index: 999;
  opacity: 0;
  visibility: hidden;
}

.hamburger i {
  font-size: 2.5rem; /* Increased from 2rem */
  color: var(--pure-white);
}

.bar {
  display: none; /* Hide the bars, we'll use an icon instead */
}

@media (max-width: 768px) {
  .hamburger {
    position: fixed; /* Keep it fixed in mobile view */
    display: flex !important; /* Always display in mobile view */
    top: 2rem;
    right: 2rem; /* Position on the right */
    z-index: 1002; /* Ensure it's above other elements */
  }
}

/* Main Content */
.main-content {
  margin-left: 8rem;
  transition: var(--transition);
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  overflow: hidden;
  background: var(--primary-gradient);
  color: var(--pure-white);
  display: flex;
  align-items: center;
}

.hero:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('https://cdn.pixabay.com/photo/2017/04/24/13/37/architecture-2256489_1280.jpg') no-repeat center/cover;
  opacity: 0.3;
  z-index: 0;
}

.hero:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 1));
  z-index: 1;
}

.hero-svg {
  position: absolute;
  top: 10%; /* Move higher */
  right: 5%;
  width: 35%;
  height: 70%;
  z-index: 3; /* Position above the header gradient (z-index: 1) */
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 2rem;
}

.hero-map-svg {
  width: 100%;
  height: auto;
  max-height: 80%;
  opacity: 0;
  filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.4));
  animation: fadeInSvg 1.5s ease forwards 0.5s;
  transform-origin: center;
}

@keyframes fadeInSvg {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 70rem;
  margin-left: 5rem;
  transform: translateY(-5rem);
  color: var(--dark-gray); /* Dark text for light mode */
}

.hero-title {
  font-size: 6.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  position: relative;
}

.hero-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 8rem;
  height: 0.6rem;
  background: var(--accent-color);
  border-radius: 3rem;
}

.hero-subtitle {
  font-size: 2rem;
  margin-bottom: 4rem;
  max-width: 60rem;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 2rem;
}

.scroll-down {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--dark-gray); /* Dark text to be visible on white background */
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  background: transparent; /* Removed gradient background */
  padding: 1rem 1.5rem;
  border-radius: 3rem;
  border: 1px solid var(--light-gray); /* Added subtle border */
  z-index: 3; /* Position above the header gradient (z-index: 1) and logos (z-index: 2) */
}

/* Dark mode version */
body.dark-mode .scroll-down {
  color: var(--pure-white);
  background: transparent; /* Removed gradient */
  border: 1px solid var(--dark-blue); /* Added border for dark mode */
}

.scroll-down i {
  font-size: 2rem;
  margin-top: 1rem;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-20px) translateX(-50%);}
  60% {transform: translateY(-10px) translateX(-50%);}
}

/* Services Section */
.services {
  padding: 12rem 0;
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  width: 40rem;
  height: 40rem;
  background: var(--accent-gradient);
  top: -20rem;
  right: -20rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.1;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 8rem;
  position: relative;
}

.section-title {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -1rem;
  width: 6rem;
  height: 0.4rem;
  background: var(--accent-gradient);
  transform: translateX(-50%);
  border-radius: 2rem;
}

.section-description {
  max-width: 60rem;
  margin: 0 auto;
  color: var(--mid-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(35rem, 1fr));
  gap: 3rem;
}

.service-card {
  position: relative;
  padding: 4rem 3rem;
  border-radius: 2rem;
  background: var(--pure-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
  overflow: hidden;
  isolation: isolate;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-gradient);
  z-index: -1;
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-15px);
  color: var(--pure-white);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-title,
.service-card:hover .service-description,
.service-card:hover .service-link {
  color: var(--pure-white);
}

.service-icon {
  width: 7rem;
  height: 7rem;
  border-radius: 1.5rem;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: rgba(255, 255, 255, 0.2);
}

.service-icon i {
  font-size: 3rem;
  color: var(--mid-blue);
  transition: var(--transition);
}

.service-card:hover .service-icon i {
  color: var(--pure-white);
}

.service-title {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.service-description {
  margin-bottom: 2.5rem;
  color: var(--mid-gray);
  transition: var(--transition);
}

.service-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  color: var(--mid-blue);
  transition: var(--transition);
}

.service-link i {
  margin-left: 0.8rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* About Section */
.about {
  padding: 12rem 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.about::after {
  content: "";
  position: absolute;
  width: 50rem;
  height: 50rem;
  background: var(--primary-gradient);
  bottom: -25rem;
  left: -25rem;
  border-radius: 50%;
  filter: blur(150px);
  opacity: 0.05;
  z-index: 0;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.about-image-container {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

.about-content {
  position: relative;
}

.about-title {
  margin-bottom: 3rem;
  position: relative;
}

.about-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 6rem;
  height: 0.4rem;
  background: var(--accent-gradient);
  border-radius: 2rem;
}

.about-text {
  margin-bottom: 3rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
}

.about-feature i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-right: 1.5rem;
  background: rgba(0, 198, 255, 0.1);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-text {
  font-weight: 500;
}

/* Contact Section */
.contact {
  padding: 12rem 0;
  position: relative;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  padding-right: 5rem;
}

.contact-title {
  margin-bottom: 3rem;
  position: relative;
}

.contact-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1.5rem;
  width: 6rem;
  height: 0.4rem;
  background: var(--accent-gradient);
  border-radius: 2rem;
}

.contact-text {
  margin-bottom: 4rem;
}

.contact-details {
  display: grid;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-item {
  display: flex;
  align-items: center;
}

.contact-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--dark-blue);
}

.contact-item-text h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
}

.contact-item-text p {
  margin-bottom: 0;
  color: var(--mid-gray);
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary-gradient);
}

.social-link i {
  font-size: 1.8rem;
  color: var(--dark-blue);
  transition: var(--transition);
}

.social-link:hover i {
  color: var(--pure-white);
}

.contact-form {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 5rem;
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: var(--primary-gradient);
  transform: rotate(45deg);
  z-index: -1;
  opacity: 0.05;
}

.form-group {
  margin-bottom: 2.5rem;
}

.form-control {
  width: 100%;
  padding: 1.5rem 2rem;
  border: 1px solid var(--light-gray);
  border-radius: 1rem;
  background: var(--pure-white);
  font-size: 1.6rem;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--mid-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 60, 114, 0.1);
}

.form-label {
  display: block;
  margin-bottom: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
}

textarea.form-control {
  min-height: 15rem;
  resize: vertical;
}

/* Footer */
.footer {
  background: var(--secondary-gradient);
  color: var(--pure-white);
  padding: 8rem 0 2rem;
  position: relative;
  overflow: hidden;
  margin-top: auto;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-logo {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--pure-white);
  display: inline-block;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 3rem;
}

.footer-heading {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--pure-white);
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 4rem;
  height: 0.3rem;
  background: var(--accent-color);
  border-radius: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-link {
  margin-bottom: 1.5rem;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-contact-icon {
  color: var(--accent-color);
  margin-right: 1.5rem;
  font-size: 1.8rem;
}

.footer-contact-text {
  color: rgba(255, 255, 255, 0.9);
}

.footer-contact-text a {
  color: var(--accent-color);
  font-weight: 500;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
}

.footer-social-link {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social-link:hover {
  background: var(--accent-color);
}

.footer-social-link i {
  color: var(--pure-white);
  font-size: 1.6rem;
}

.footer-bottom {
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.copyright {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
}

.copyright a {
  color: var(--accent-color);
  font-weight: 500;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  z-index: 0;
}

.floating-1 {
  width: 30rem;
  height: 30rem;
  background: rgba(0, 198, 255, 0.1);
  top: 10%;
  right: -15rem;
}

.floating-2 {
  width: 20rem;
  height: 20rem;
  background: rgba(30, 60, 114, 0.1);
  bottom: 10%;
  left: -10rem;
}

/* Service Detail Pages */
.page-header {
  height: 40vh;
  min-height: 40rem;
  background: var(--primary-gradient);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  text-align: center;
  padding: 0 2rem;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: 0;
}

.page-header-content {
  position: relative;
  z-index: 2;
  max-width: 80rem;
}

.page-title {
  font-size: 6rem;
  margin-bottom: 2rem;
  word-wrap: break-word;
  hyphens: auto;
}

.page-description {
  font-size: 2rem;
  max-width: 60rem;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  margin: 0 0.8rem;
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item a:hover {
  color: var(--pure-white);
}

.breadcrumb-separator {
  margin: 0 0.8rem;
}

.service-detail {
  padding: 10rem 0;
}

.service-detail-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 5rem;
}

.service-main-content {
  padding-right: 3rem;
}

/* Full-width content styling */
.fullwidth-content {
  margin-top: 5rem;
  width: 100%;
}

.service-main-image {
  width: 100%;
  border-radius: 2rem;
  margin-bottom: 4rem;
  box-shadow: var(--box-shadow);
}

.service-description-text {
  margin-bottom: 4rem;
}

.service-features-list {
  list-style: none;
  margin-bottom: 4rem;
}

.service-features-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
}

.service-features-item::before {
  content: '\f058';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--accent-color);
}

.service-sidebar {
  position: sticky;
  top: 10rem;
}

.sidebar-widget {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: var(--box-shadow);
}

.sidebar-title {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  position: relative;
}

.sidebar-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 4rem;
  height: 0.3rem;
  background: var(--accent-gradient);
  border-radius: 1.5rem;
}

.other-services-list {
  list-style: none;
}

.other-services-item {
  border-bottom: 1px solid var(--light-gray);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.other-services-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.other-services-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.other-services-link:hover {
  color: var(--accent-color);
}

.other-services-link i {
  font-size: 1.4rem;
  transition: var(--transition);
}

.other-services-link:hover i {
  transform: translateX(5px);
}

.cta-widget {
  background: var(--primary-gradient);
  color: var(--pure-white);
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 2rem;
}

.cta-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.cta-text {
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.cta-btn {
  background: var(--pure-white);
  color: var(--dark-blue);
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}

/* Booking Widget Styles */
.booking-widget {
  background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
  color: var(--pure-white);
  text-align: center;
  padding: 4rem 3rem;
  border-radius: 2rem;
  margin-top: 3rem;
}

.booking-widget .sidebar-title {
  color: var(--pure-white);
  margin-bottom: 1.5rem;
}

.booking-widget .sidebar-title::after {
  background: var(--pure-white);
}

.booking-widget p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
}

.booking-btn {
  background: var(--pure-white);
  color: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: var(--transition);
  width: 100%;
}

.booking-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.booking-btn i {
  font-size: 1.8rem;
}

/* Loading Animation */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--accent-color);
  animation: spin 1s linear infinite;
  position: relative;
}

.loader:before {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--mid-blue);
  animation: spin 2s linear infinite;
}

.loader:after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--light-blue);
  animation: spin 1.5s linear infinite;
}

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

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5.5rem;
  height: 5.5rem;
  background: var(--accent-gradient);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 108, 255, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top i {
  font-size: 2rem;
}

/* Dashboard Sidebar Collapsed State */
.dashboard-sidebar.collapsed {
  width: 8rem;
  overflow: hidden;
}

.dashboard-sidebar.collapsed .dashboard-user-info,
.dashboard-sidebar.collapsed .dashboard-menu-item span {
  display: none;
}

.dashboard-sidebar.collapsed .dashboard-menu-item i {
  margin-right: 0;
}

/* Adjust dashboard content when sidebar is collapsed */
.dashboard-sidebar.collapsed + .dashboard-content {
  width: calc(100% - 8rem);
  margin-left: 0;
  padding-left: 1rem;
  flex: 1;
}

/* Not needed anymore as we've simplified the structure */
/* .dashboard-container {
  display: flex;
  transition: var(--transition);
  width: 100%;
} */

/* This rule is replaced by the new dashboard-fullwidth rule */
/* .dashboard-content {
  flex: 1;
  transition: var(--transition);
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
} */

.current-datetime {
  font-size: 1.2rem;
  color: var(--mid-gray);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.admin-info {
  display: flex;
  align-items: center;
  margin: 2rem 0;
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
}

.admin-avatar {
  width: 5rem;
  height: 5rem;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.admin-avatar i {
  font-size: 2.5rem;
  color: var(--pure-white);
}

.admin-details h3 {
  margin-bottom: 0.5rem;
  color: var(--pure-white);
}

.admin-details p {
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-stats, .reservation-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.dashboard-table-container {
  overflow-x: auto;
  margin-bottom: 2rem;
  scroll-behavior: smooth;
}

.dashboard-fullwidth {
  width: 100%;
  padding: 0 20px;
}

.dashboard-content {
  flex: 1;
  width: 100%;
  transition: var(--transition);
}

/* Responsive Styles */
@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 50%;
  }
  
  h1 {
    font-size: 4.8rem;
  }
  
  h2 {
    font-size: 3.6rem;
  }
  
  .side-nav {
    width: 7rem;
  }
  
  .main-content {
    margin-left: 7rem;
  }
  
  .about-container,
  .contact-container,
  .service-detail-container {
    grid-template-columns: 1fr;
    gap: 5rem;
  }
  
  .about-image-container {
    margin: 0 auto;
    max-width: 60rem;
  }
  
  .hero-title {
    font-size: 6rem;
  }
}

@media (max-width: 768px) {
  .side-nav {
    transform: translateX(-100%);
    width: 25rem;
  }
  
  .side-nav.active {
    transform: translateX(0);
  }
  
  .side-nav .logo {
    border-radius: 2rem;
    width: 18rem;
  }
  
  .logo-text {
    display: block;
  }
  
  .side-nav-link span {
    opacity: 1;
    transform: translateX(0);
  }
  
  .main-content {
    margin-left: 0;
  }
  
  /* Mobile control buttons */
  .mobile-controls {
    position: fixed;
    top: 2rem;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 1001;
    padding: 0 2rem;
    pointer-events: none;
    gap: 1.5rem;
  }
  
  .mobile-controls > * {
    pointer-events: auto;
  }
  
  /* Hamburger button styling is now handled in the media query directly */
  
  /* Mobile hero logo styling */
  /* Mobile/Desktop specific elements */
  .mobile-only {
    display: none;
  }
  
  .desktop-only {
    display: block;
  }
  
  /* Mobile hero graphic */
  .hero-mobile-graphic {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .mobile-hero-svg {
    width: 15rem;
    height: auto;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(0, 198, 255, 0.5));
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    animation: fadeIn 0.8s ease forwards;
  }
  
  @media (max-width: 768px) {
    .mobile-hero-svg {
      width: 22.5rem; /* 50% bigger than 15rem */
    }
  }
  
  /* Show/hide elements based on screen size */
  @media (max-width: 768px) {
    .mobile-only {
      display: block;
    }
    
    .desktop-only {
      display: none;
    }
    
    .hero-mobile-graphic {
      display: block !important;
    }
  }

  .hero-content {
    margin-left: 0;
    text-align: center;
  }
  
  .hero-title::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fill, minmax(28rem, 1fr));
  }
  
  .contact-info {
    padding-right: 0;
  }
  
  .contact-form {
    padding: 4rem 3rem;
  }
  
  .service-main-content {
    padding-right: 0;
  }
  
  /* Mobile testimonial cards */
  .cleaning-testimonials {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 0 2rem;
    width: calc(100% + 4rem);
  }
  
  .cleaning-testimonials::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  
  .testimonial-card {
    scroll-snap-align: center;
    flex: 0 0 auto;
    min-width: 85%;
    width: 85%;
    padding: 2rem;
    margin-right: 1.5rem;
    box-sizing: border-box;
  }
  
  .testimonial-card:last-child {
    margin-right: 2rem;
  }
  
  .testimonial-text {
    font-size: 1.4rem;
  }
  
  /* Mobile benefits showcase */
  .cleaning-benefits-showcase {
    flex-direction: column;
  }
  
  .cleaning-benefits-image {
    width: 100%;
    margin-bottom: 2rem;
  }
  
  .cleaning-benefits-content {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .cleaning-benefits-feature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .cleaning-benefits-feature i {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  /* Mobile CTA with full-width image */
  .cleaning-cta {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .cleaning-cta-image {
    order: -1;
    height: 300px;
    width: calc(100% + 4rem);
    margin-left: -2rem;
    margin-right: -2rem;
    position: relative;
  }
  
  .cleaning-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
  }
  
  .cleaning-cta-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(30, 60, 114, 0.7), rgba(0, 198, 255, 0.3));
    z-index: 1;
  }
  
  .cleaning-cta-content {
    position: relative;
    z-index: 2;
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 45%;
  }
  
  .hero-title {
    font-size: 4.8rem;
  }
  
  .service-card {
    padding: 3rem 2rem;
  }
  
  .about-features {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .scroll-to-top {
    bottom: 2rem;
    right: 1.5rem;
    width: 6rem;
    height: 6rem;
  }
  
  .scroll-to-top i {
    font-size: 2.5rem;
  }
  
  .page-title {
    font-size: 4rem;
    line-height: 1.2;
    padding: 0 1rem;
  }
  
  .page-description {
    padding: 0 1rem;
  }
  
  /* Smaller screens benefit features */
  .cleaning-benefits-content {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    min-width: 90%;
    width: 90%;
  }
}

/* Animations and Effects */
/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
  animation-delay: 0.2s;
}

.fade-in-delay-2 {
  animation-delay: 0.4s;
}

.fade-in-delay-3 {
  animation-delay: 0.6s;
}

/* Parallax Effect */
.parallax {
  transform: translateY(var(--scroll-y));
  transition: transform 0.1s ease-out;
}

/* Blob Animation */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.5;
  animation: blobAnimation 15s infinite alternate;
}

@keyframes blobAnimation {
  0% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Cursor Effect */
.custom-cursor {
  position: fixed;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 198, 255, 0.5);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
}

.custom-cursor.grow {
  width: 5rem;
  height: 5rem;
  background: rgba(0, 198, 255, 0.3);
}

/* Highlight classes for contact mode */
.highlight-form {
  box-shadow: 0 0 15px rgba(0, 198, 255, 0.8);
  transition: box-shadow 0.5s ease;
}

.highlight-input {
  border-color: #00c6ff !important;
  box-shadow: 0 0 8px rgba(0, 198, 255, 0.6);
  transition: all 0.3s ease;
}

.highlight-section {
  box-shadow: 0 0 20px rgba(0, 198, 255, 0.4);
  transition: box-shadow 0.5s ease;
}

/* Theme Toggle */
.theme-toggle {
  position: fixed;
  top: 2rem;
  right: 2rem; /* Move more to the corner */
  width: 5.5rem;
  height: 5.5rem;
  background: var(--dark-blue);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 50;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

/* Hide theme toggle when chat window is active or side nav is active */
.chat-window.active ~ .theme-toggle,
.chat-window.active ~ .hamburger,
.side-nav.active ~ .theme-toggle,
.side-nav.active + .mobile-controls .theme-toggle {
  z-index: 999;
  opacity: 0 !important;
  visibility: hidden !important;
}

.theme-toggle i {
  font-size: 2.5rem;
}

.theme-toggle.visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .theme-toggle {
    position: fixed; /* Keep it fixed in mobile view */
    top: 2rem;
    left: 8.5rem; /* Position next to hamburger button */
    right: auto;
    z-index: 50; /* Lower z-index than side menu and chat window */
  }
  
  .side-nav.active ~ .theme-toggle {
    opacity: 0 !important;
    visibility: hidden !important;
  }
  
  .logout-button {
    right: 3rem;
  }
}

/* When logout button is visible, move theme toggle left */
.logout-button {
  position: fixed;
  top: 2rem;
  right: 3rem;
  width: 5.5rem;
  height: 5.5rem;
  background: var(--danger-color);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  transition: var(--transition);
  box-shadow: var(--box-shadow);
}

.logout-button i {
  font-size: 2.5rem;
}

.logout-button.visible ~ .theme-toggle.visible {
  right: 9.5rem; /* Position theme toggle to the left of logout button only when logout button exists */
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: #121212;
  color: #f8f9fa;
}

body.dark-mode .service-card,
body.dark-mode .contact-form,
body.dark-mode .sidebar-widget {
  background: #1f1f1f;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

body.dark-mode .service-title,
body.dark-mode .form-label,
body.dark-mode .sidebar-title {
  color: #f8f9fa;
}

body.dark-mode .service-description,
body.dark-mode .section-description,
body.dark-mode .about-text {
  color: #adb5bd;
}

body.dark-mode .form-control {
  background: #2d2d2d;
  border-color: #444;
  color: #f8f9fa;
}

body.dark-mode .service-icon,
body.dark-mode .contact-icon,
body.dark-mode .social-link {
  background: #2d2d2d;
}

body.dark-mode .about {
  background: #1a1a1a;
}

body.dark-mode .other-services-item {
  border-color: #444;
}

/* Hero gradient and logo switching in dark mode */
body.dark-mode .hero:after {
  background: linear-gradient(to right, rgba(43, 48, 53, 0.2), rgba(43, 48, 53, 0.98));
}

body.dark-mode .hero-content {
  color: var(--pure-white); /* White text for dark mode */
}

body.dark-mode .light-logo {
  display: none;
}

body.dark-mode .dark-logo {
  display: block !important;
}

/* Light mode specific logo */
body:not(.dark-mode) .light-logo {
  display: block;
}

body:not(.dark-mode) .dark-logo {
  display: none;
}

/* Service-specific Styles */
.service-header.gebaeudereinigung::before {
  background-image: url('https://cdn.pixabay.com/photo/2021/07/19/04/35/workers-6477163_1280.jpg');
}

.service-header.hausmeisterdienst::before {
  background-image: url('https://cdn.pixabay.com/photo/2017/08/28/04/52/window-washer-2688434_1280.jpg');
}

.service-header.gartenpflege::before {
  background-image: url('https://cdn.pixabay.com/photo/2017/03/27/14/34/garden-2179095_1280.jpg');
}

.service-header.kleinreparaturen::before {
  background-image: url('https://cdn.pixabay.com/photo/2015/07/11/14/53/plumbing-840835_1280.jpg');
}

.service-header.winterdienst::before {
  background-image: url('https://cdn.pixabay.com/photo/2021/01/06/18/28/snow-plough-5895336_1280.jpg');
}

/* Gartenpflege Page Styles */
.garden-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin: 4rem 0 6rem;
  perspective: 1000px;
}

.garden-service-card {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 198, 255, 0.05);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.garden-service-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 198, 255, 0.2);
}

.garden-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.03) 0%, rgba(30, 60, 114, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -2;
}

.garden-service-card:hover::before {
  opacity: 1;
}

.garden-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.garden-service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.garden-service-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.15) 0%, rgba(30, 60, 114, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transform: translateZ(20px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.garden-service-card:hover .garden-service-icon {
  transform: translateZ(30px) scale(1.1);
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.25) 0%, rgba(30, 60, 114, 0.3) 100%);
}

.garden-service-icon i {
  font-size: 3rem;
  color: var(--accent-color);
  transition: transform 0.5s ease, color 0.3s ease;
}

.garden-service-card:hover .garden-service-icon i {
  transform: scale(1.1);
  color: var(--mid-blue);
}

.garden-service-card h4 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  color: var(--dark-blue);
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateZ(10px);
}

.garden-service-card:hover h4 {
  color: var(--accent-color);
  transform: translateZ(15px);
}

.garden-service-card p {
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 0;
  transform: translateZ(5px);
  transition: transform 0.3s ease;
}

/* Cleaning Services Grid and Cards */
.cleaning-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
  margin: 4rem 0 6rem;
  perspective: 1000px;
}

.cleaning-service-card {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3.5rem 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(0, 198, 255, 0.05);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.cleaning-service-card:hover {
  transform: translateY(-15px) rotateX(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 198, 255, 0.2);
}

.cleaning-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.03) 0%, rgba(30, 60, 114, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -2;
}

.cleaning-service-card:hover::before {
  opacity: 1;
}

.cleaning-service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: -1;
}

.cleaning-service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cleaning-service-icon {
  width: 8rem;
  height: 8rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.15) 0%, rgba(30, 60, 114, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
  transform: translateZ(20px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
}

.cleaning-service-card:hover .cleaning-service-icon {
  transform: translateZ(30px) scale(1.1);
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.25) 0%, rgba(30, 60, 114, 0.3) 100%);
}

.cleaning-service-icon i {
  font-size: 3rem;
  color: var(--accent-color);
  transition: transform 0.5s ease, color 0.3s ease;
}

.cleaning-service-card:hover .cleaning-service-icon i {
  transform: scale(1.1);
  color: var(--mid-blue);
}

.cleaning-service-card h4 {
  font-size: 2.2rem;
  margin-bottom: 1.8rem;
  color: var(--dark-blue);
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  transform: translateZ(10px);
}

.cleaning-service-card:hover h4 {
  color: var(--accent-color);
  transform: translateZ(15px);
}

.cleaning-service-card p {
  color: var(--mid-gray);
  line-height: 1.7;
  margin-bottom: 0;
  transform: translateZ(5px);
  transition: transform 0.3s ease;
}

/* Garden Design Showcase */
.garden-design-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  margin: 5rem 0 7rem;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Cleaning Benefits Showcase - Similar to Garden Design Showcase */
.cleaning-benefits-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  margin: 5rem 0 7rem;
  align-items: center;
  position: relative;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .cleaning-benefits-showcase {
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
    margin: 3rem 0;
  }
}

.garden-design-image {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  height: 100%;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.cleaning-benefits-image {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  height: 100%;
  transform: perspective(1000px) rotateY(-5deg);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 768px) {
  .cleaning-benefits-image {
    width: 100vw;
    margin-left: -2rem;
    margin-right: -2rem;
    border-radius: 0;
    transform: none;
  }
}

.garden-design-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.2) 0%, rgba(30, 60, 114, 0.2) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease;
}

.garden-design-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.garden-design-image:hover::before {
  opacity: 1;
}

.garden-design-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  filter: saturate(1.1);
}

.garden-design-image:hover img {
  transform: scale(1.08);
}

.cleaning-benefits-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.2) 0%, rgba(30, 60, 114, 0.2) 100%);
  opacity: 0;
  z-index: 1;
  transition: opacity 0.7s ease;
}

.cleaning-benefits-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.02);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.cleaning-benefits-image:hover::before {
  opacity: 1;
}

.cleaning-benefits-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  display: block;
  filter: saturate(1.1);
}

/* Special handling for kleinreparaturen image */
.kleinreparaturen-benefits-img {
  object-position: 75% center; /* Show right-center portion on desktop */
}

@media (max-width: 768px) {
  .kleinreparaturen-benefits-img {
    object-position: center; /* Show full image on mobile */
  }
}

.cleaning-benefits-image:hover img {
  transform: scale(1.08);
}

.garden-design-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  color: var(--pure-white);
  transform: translateY(30%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.garden-design-image:hover .garden-design-overlay {
  transform: translateY(0);
}

.garden-design-overlay span {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cleaning-benefits-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
  color: var(--pure-white);
  transform: translateY(30%);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 2;
}

.cleaning-benefits-image:hover .cleaning-benefits-overlay {
  transform: translateY(0);
}

.cleaning-benefits-overlay span {
  font-size: 2rem;
  font-weight: 600;
  display: block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.garden-design-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.7s ease;
}

.garden-design-showcase:hover .garden-design-content {
  transform: perspective(1000px) rotateY(0deg);
}

.garden-design-feature {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  transition: transform 0.5s ease;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.garden-design-feature:hover {
  transform: translateX(10px);
  background: rgba(0, 198, 255, 0.03);
}

.garden-design-feature i {
  font-size: 2.5rem;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.15) 0%, rgba(30, 60, 114, 0.2) 100%);
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 15px rgba(0, 198, 255, 0.1);
  transition: all 0.5s ease;
}

.garden-design-feature:hover i {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.25) 0%, rgba(30, 60, 114, 0.3) 100%);
}

.garden-design-feature h4 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--dark-blue);
  transition: color 0.3s ease;
}

.garden-design-feature:hover h4 {
  color: var(--accent-color);
}

.garden-design-feature p {
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Cleaning Benefits Content and Features */
.cleaning-benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  position: relative;
  transform: perspective(1000px) rotateY(5deg);
  transition: transform 0.7s ease;
}

.cleaning-benefits-showcase:hover .cleaning-benefits-content {
  transform: perspective(1000px) rotateY(0deg);
}

.cleaning-benefits-feature {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  transition: transform 0.5s ease;
  padding: 1.5rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.cleaning-benefits-feature:hover {
  transform: translateX(10px);
  background: rgba(0, 198, 255, 0.03);
}

.cleaning-benefits-feature i {
  font-size: 2.5rem;
  color: var(--accent-color);
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.15) 0%, rgba(30, 60, 114, 0.2) 100%);
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 10px 15px rgba(0, 198, 255, 0.1);
  transition: all 0.5s ease;
}

.cleaning-benefits-feature:hover i {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.25) 0%, rgba(30, 60, 114, 0.3) 100%);
}

.cleaning-benefits-feature h4 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  color: var(--dark-blue);
  transition: color 0.3s ease;
}

.cleaning-benefits-feature:hover h4 {
  color: var(--accent-color);
}

.cleaning-benefits-feature p {
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Garden Process Timeline */
.garden-process {
  margin: 5rem 0 7rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.garden-process::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), rgba(0, 198, 255, 0.2));
  border-radius: 0.2rem;
  z-index: 0;
}

.garden-process-step {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.garden-process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.garden-process-step:last-child {
  margin-bottom: 0;
}

.garden-process-icon {
  width: 6.5rem;
  height: 6.5rem;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 2.4rem;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3), 0 0 0 10px rgba(0, 198, 255, 0.1);
  z-index: 2;
  transition: all 0.5s ease;
}

.garden-process-step:hover .garden-process-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0, 198, 255, 0.4), 0 0 0 15px rgba(0, 198, 255, 0.15);
}

.garden-process-icon i {
  transition: transform 0.5s ease;
}

.garden-process-step:hover .garden-process-icon i {
  transform: scale(1.2);
}

.garden-process-line {
  display: none;
}

/* Cleaning Process Timeline - Similar to Garden Process */
.cleaning-process {
  margin: 5rem 0 7rem;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cleaning-process::before {
  content: '';
  position: absolute;
  left: 3rem;
  top: 0;
  width: 0.4rem;
  height: 100%;
  background: linear-gradient(to bottom, var(--accent-color), rgba(0, 198, 255, 0.2));
  border-radius: 0.2rem;
  z-index: 0;
}

.cleaning-process-step {
  display: flex;
  gap: 4rem;
  margin-bottom: 5rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  z-index: 1;
}

.cleaning-process-step.animate {
  opacity: 1;
  transform: translateY(0);
}

.cleaning-process-step:last-child {
  margin-bottom: 0;
}

.cleaning-process-icon {
  width: 6.5rem;
  height: 6.5rem;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pure-white);
  font-size: 2.4rem;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 10px 20px rgba(0, 198, 255, 0.3), 0 0 0 10px rgba(0, 198, 255, 0.1);
  z-index: 2;
  transition: all 0.5s ease;
}

.cleaning-process-step:hover .cleaning-process-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 25px rgba(0, 198, 255, 0.4), 0 0 0 15px rgba(0, 198, 255, 0.15);
}

.cleaning-process-icon i {
  transition: transform 0.5s ease;
}

.cleaning-process-step:hover .cleaning-process-icon i {
  transform: scale(1.2);
}

.garden-process-content {
  flex: 1;
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-color);
  transition: all 0.5s ease;
  transform: perspective(1000px) rotateY(0deg);
}

.garden-process-step:hover .garden-process-content {
  transform: perspective(1000px) rotateY(2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Removed blue dots */

.cleaning-process-content {
  flex: 1;
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 4px solid var(--accent-color);
  transition: all 0.5s ease;
  transform: perspective(1000px) rotateY(0deg);
}

.cleaning-process-step:hover .cleaning-process-content {
  transform: perspective(1000px) rotateY(2deg);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.garden-process-content h4 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--dark-blue);
  transition: color 0.3s ease;
}

.garden-process-step:hover .garden-process-content h4 {
  color: var(--accent-color);
}

.garden-process-content p {
  color: var(--mid-gray);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Dark Mode Adjustments */
body.dark-mode .garden-service-card,
body.dark-mode .cleaning-service-card {
  background: #1f1f1f;
}

body.dark-mode .garden-service-card h4,
body.dark-mode .cleaning-service-card h4,
body.dark-mode .garden-design-feature h4,
body.dark-mode .garden-process-content h4 {
  color: var(--pure-white);
}

body.dark-mode .garden-service-card p,
body.dark-mode .cleaning-service-card p {
  color: #adb5bd;
}

body.dark-mode .garden-process-content,
body.dark-mode .cleaning-process-content {
  background: #1f1f1f;
}

body.dark-mode .cleaning-process-content h4 {
  color: var(--pure-white);
}

body.dark-mode .garden-service-icon,
body.dark-mode .cleaning-service-icon {
  background: rgba(0, 198, 255, 0.2);
}

/* Testimonials Section */
.garden-testimonials, .cleaning-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 4rem;
  margin: 5rem 0 2rem;
  perspective: 1000px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial Navigation Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto 7rem;
  max-width: 1400px;
}

.testimonial-dot {
  width: 1.2rem;
  height: 1.2rem;
  background-color: var(--light-gray);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 198, 255, 0.4);
}

.testimonial-dot:hover {
  background-color: var(--accent-color);
  transform: scale(1.2);
}

.testimonial-card {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 198, 255, 0.05);
  transform-style: preserve-3d;
}

.testimonial-card::before {
  content: '\f10d'; /* Quote mark icon */
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-size: 8rem;
  color: rgba(0, 198, 255, 0.05);
  line-height: 1;
  z-index: 0;
  transition: all 0.5s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 198, 255, 0.1);
}

.testimonial-card:hover::before {
  transform: scale(1.2);
  color: rgba(0, 198, 255, 0.08);
}

.testimonial-rating {
  margin-bottom: 2rem;
  color: #FFD700;
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.testimonial-rating i {
  margin-right: 0.3rem;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.2);
  transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating i {
  transform: scale(1.2);
  animation: starPulse 1.5s infinite alternate;
}

@keyframes starPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.testimonial-text {
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  position: relative;
  z-index: 1;
  font-size: 1.7rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(0, 198, 255, 0.1);
  padding-top: 2rem;
}

.testimonial-avatar {
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.1) 0%, rgba(30, 60, 114, 0.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 2.8rem;
  box-shadow: 0 5px 15px rgba(0, 198, 255, 0.1);
  transition: all 0.5s ease;
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 20px rgba(0, 198, 255, 0.2);
}

.testimonial-author h4 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--dark-blue);
  transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-author h4 {
  color: var(--accent-color);
}

.testimonial-author p {
  font-size: 1.5rem;
  color: var(--mid-gray);
  margin-bottom: 0;
}

/* Garden CTA Section */
.garden-cta, .cleaning-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 7rem auto;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.08) 0%, rgba(30, 60, 114, 0.12) 100%);
  border-radius: 3rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  transform: perspective(1000px);
  max-width: 1400px;
}

.garden-cta::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 40%;
  height: 40%;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.1) 0%, rgba(0, 198, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.garden-cta::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(30, 60, 114, 0.1) 0%, rgba(30, 60, 114, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.garden-cta-content, .cleaning-cta-content {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.garden-cta-content h3, .cleaning-cta-content h3 {
  font-size: 3.2rem;
  margin-bottom: 2.5rem;
  color: var(--dark-blue);
  position: relative;
  padding-bottom: 1.5rem;
}

.garden-cta-content h3::after, .cleaning-cta-content h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 0.4rem;
  background: var(--accent-gradient);
  border-radius: 2rem;
}

.garden-cta-content p {
  font-size: 1.8rem;
  line-height: 1.7;
  color: var(--mid-gray);
}

.garden-cta-features, .cleaning-cta-features {
  list-style: none;
  margin: 3rem 0 4rem;
}

.garden-cta-features li, .cleaning-cta-features li {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark-blue);
  transition: transform 0.3s ease;
}

.garden-cta-features li:hover, .cleaning-cta-features li:hover {
  transform: translateX(10px);
}

.garden-cta-features i, .cleaning-cta-features i {
  color: var(--accent-color);
  font-size: 1.8rem;
  background: rgba(0, 198, 255, 0.1);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 198, 255, 0.15);
  transition: all 0.3s ease;
}

.garden-cta-features li:hover i, .cleaning-cta-features li:hover i {
  transform: scale(1.2);
  background: rgba(0, 198, 255, 0.2);
}

.garden-cta-image, .cleaning-cta-image {
  position: relative;
  overflow: hidden;
  height: 100%;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
}

.garden-cta-image::before, .cleaning-cta-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.2) 0%, rgba(30, 60, 114, 0.2) 100%);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.garden-cta:hover .garden-cta-image::before, .cleaning-cta:hover .cleaning-cta-image::before {
  opacity: 1;
}

.garden-cta-image img, .cleaning-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
  filter: saturate(1.2);
}

/* Special handling for gartenpflege CTA image */
.gartenpflege-cta-img {
  object-position: left center; /* Show left half of the image */
}

.garden-cta:hover .garden-cta-image img, .cleaning-cta:hover .cleaning-cta-image img {
  transform: scale(1.1);
}

.garden-cta-btn, .cleaning-cta-btn {
  align-self: flex-start;
  padding: 1.8rem 3.5rem;
  font-size: 1.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--accent-gradient);
  border-radius: 5rem;
  color: var(--pure-white);
  box-shadow: 0 10px 20px rgba(0, 108, 255, 0.3);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.garden-cta-btn::before, .cleaning-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.5s ease;
  z-index: -1;
}

.garden-cta-btn:hover, .cleaning-cta-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 108, 255, 0.4);
}

.garden-cta-btn:hover::before, .cleaning-cta-btn:hover::before {
  width: 100%;
}

body.dark-mode .testimonial-card {
  background: #1f1f1f;
}

body.dark-mode .testimonial-author h4 {
  color: var(--pure-white);
}

body.dark-mode .garden-cta {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.2) 0%, rgba(42, 82, 152, 0.3) 100%);
}

body.dark-mode .garden-cta-content h3 {
  color: var(--pure-white);
}

@media (max-width: 992px) {
  .garden-design-showcase {
    grid-template-columns: 1fr;
  }
  
  .garden-design-image {
    height: 40rem;
  }
}

@media (max-width: 768px) {
  .garden-services-grid {
    grid-template-columns: 1fr;
  }
  
  .garden-process-step {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .garden-process-icon {
    margin: 0 auto;
  }
  
  .garden-process-line {
    left: 50%;
    top: 6rem;
    height: calc(100% - 3rem);
  }
}

/* Authentication Pages Styles */
.auth-header::before {
  background-image: url('https://cdn.pixabay.com/photo/2017/04/24/13/37/architecture-2256489_1280.jpg');
}

.dashboard-header::before {
  background-image: url('https://cdn.pixabay.com/photo/2015/07/17/22/43/student-849826_1280.jpg');
}

.auth-section {
  padding: 8rem 0;
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  background: var(--pure-white);
  border-radius: 2rem;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.auth-form-container {
  padding: 5rem;
}

.auth-info {
  background: var(--primary-gradient);
  padding: 5rem;
  color: var(--pure-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-info h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.auth-benefits {
  list-style: none;
}

.auth-benefits li {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.auth-benefits li i {
  font-size: 2.2rem;
  margin-right: 1.5rem;
  color: var(--accent-color);
  background: rgba(255, 255, 255, 0.1);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-form {
  width: 100%;
}

.auth-btn {
  width: 100%;
  margin-top: 2rem;
}

.auth-alternate {
  text-align: center;
  margin-top: 3rem;
}

.auth-links {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}

.auth-forgot-password {
  font-size: 1.4rem;
  color: var(--mid-gray);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.form-checkbox input {
  width: 2rem;
  height: 2rem;
}

.form-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 1.3rem;
  color: var(--mid-gray);
}

.error-message, .success-message, .status-message {
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  display: none;
}

.error-message:not(:empty), .status-message.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(220, 53, 69, 0.2);
}

.success-message:not(:empty), 
.error-message.success:not(:empty),
.status-message.success {
  display: block;
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(40, 167, 69, 0.2);
}

/* Notification */
.notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  padding: 1.5rem 2rem;
  border-radius: 1rem;
  background: var(--pure-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(calc(100% + 20px));
  transition: transform 0.3s ease-in-out;
  z-index: 9999;
  max-width: 350px;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.notification-icon {
  margin-right: 1.5rem;
  font-size: 2rem;
}

.notification-success .notification-icon {
  color: var(--success-color);
}

.notification-error .notification-icon {
  color: var(--danger-color);
}

.notification-info .notification-icon {
  color: var(--info-color);
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.notification-message {
  font-size: 1.4rem;
  color: var(--mid-gray);
  margin: 0;
}

.notification-close {
  margin-left: 1.5rem;
  cursor: pointer;
  color: var(--mid-gray);
  font-size: 1.8rem;
  transition: color 0.2s;
}

.notification-close:hover {
  color: var(--dark-gray);
}

.hidden {
  display: none !important;
}

/* Dashboard Styles */
.dashboard-section {
  padding: 8rem 0;
  background-color: var(--light-gray);
}

.dashboard-container {
  display: grid;
  grid-template-columns: 30rem 1fr;
  gap: 3rem;
  max-width: 100%;
  overflow-x: hidden;
}

.dashboard-sidebar {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  width: 30rem;
}

.dashboard-sidebar.collapsed {
  width: 8rem;
  padding: 3rem 1rem;
}

.dashboard-sidebar.collapsed .dashboard-user-info,
.dashboard-sidebar.collapsed .dashboard-menu-link span {
  display: none;
}

.dashboard-sidebar.collapsed .dashboard-menu-link {
  justify-content: center;
}

.dashboard-sidebar.collapsed .dashboard-menu-link i {
  margin-right: 0;
}

.dashboard-sidebar-toggle {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: none;
}

.dashboard-user {
  display: flex;
  align-items: center;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.dashboard-user-avatar {
  width: 6rem;
  height: 6rem;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
}

.dashboard-user-avatar i {
  font-size: 3rem;
  color: var(--mid-gray);
}

.dashboard-user-info h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.dashboard-user-info p {
  color: var(--mid-gray);
  margin-bottom: 0;
  font-size: 1.4rem;
}

/* Profile Settings Styles */
.dashboard-profile-container {
  background: var(--pure-white);
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dashboard-profile-section {
  margin-bottom: 4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.dashboard-profile-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.dashboard-section-title {
  font-size: 2rem;
  margin-bottom: 2.5rem;
  color: var(--dark-blue);
  position: relative;
}

.dashboard-section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1rem;
  width: 5rem;
  height: 0.3rem;
  background: var(--accent-gradient);
  border-radius: 1rem;
}

.dashboard-form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.dashboard-form-group {
  margin-bottom: 2rem;
}

.dashboard-form-group.full-width {
  grid-column: span 2;
}

.dashboard-form-label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 500;
  color: var(--dark-gray);
}

.dashboard-form-control {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.8rem;
  font-size: 1.5rem;
  transition: var(--transition);
}

.dashboard-form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(0, 198, 255, 0.1);
  outline: none;
}

.dashboard-form-control[readonly] {
  background-color: var(--light-gray);
  cursor: not-allowed;
}

.dashboard-form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.dashboard-form-check-input {
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 1rem;
  cursor: pointer;
}

.dashboard-form-check-label {
  font-size: 1.5rem;
  cursor: pointer;
}

.dashboard-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 3rem;
}

/* Documents Styles */
.dashboard-documents-container {
  background: var(--pure-white);
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.dashboard-documents-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.dashboard-documents-categories {
  display: flex;
  gap: 1rem;
}

.dashboard-tab-btn {
  padding: 0.8rem 1.5rem;
  background: none;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--mid-gray);
}

.dashboard-tab-btn.active {
  background: var(--accent-color);
  color: var(--pure-white);
}

.dashboard-documents-list {
  padding: 2rem;
  min-height: 30rem;
}

.document-card {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--off-white);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.document-card:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.document-icon {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-gray);
  border-radius: 1rem;
  margin-right: 1.5rem;
}

.document-icon i {
  font-size: 2.5rem;
  color: var(--mid-blue);
}

.document-info {
  flex: 1;
}

.document-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.document-meta {
  font-size: 1.3rem;
  color: var(--mid-gray);
  display: flex;
  gap: 1.5rem;
}

.document-actions {
  display: flex;
  gap: 1rem;
}

.document-btn {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--pure-white);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.document-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--pure-white);
}

/* Modal Styles */
.dashboard-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  overflow: auto;
}

.dashboard-modal-content {
  background: var(--pure-white);
  margin: 5% auto;
  width: 90%;
  max-width: 60rem;
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow);
  animation: modalFadeIn 0.3s ease;
}

.dashboard-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-bottom: 1px solid var(--light-gray);
}

.dashboard-modal-header h3 {
  margin: 0;
  font-size: 2rem;
}

.dashboard-modal-close {
  font-size: 2.8rem;
  cursor: pointer;
  color: var(--mid-gray);
  transition: var(--transition);
}

.dashboard-modal-close:hover {
  color: var(--dark-gray);
}

.dashboard-modal-body {
  padding: 2rem;
}

/* Orders History Styles */
.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
}

.status-badge.pending,
.status-badge.warning {
  background-color: rgba(255, 193, 7, 0.2);
  color: #ff9800;
}

.status-badge.confirmed,
.status-badge.success {
  background-color: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.status-badge.completed,
.status-badge.info {
  background-color: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

.status-badge.cancelled,
.status-badge.error {
  background-color: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

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

.mt-5 {
  margin-top: 5rem;
}

.dashboard-menu {
  list-style: none;
}

.dashboard-menu-item {
  margin-bottom: 1rem;
}

.dashboard-menu-link {
  display: flex;
  align-items: center;
  padding: 1.2rem 1.5rem;
  border-radius: 1rem;
  transition: var(--transition);
}

.dashboard-menu-link i {
  font-size: 1.8rem;
  margin-right: 1.5rem;
}

.dashboard-menu-item.active .dashboard-menu-link,
.dashboard-menu-link:hover {
  background: var(--primary-gradient);
  color: var(--pure-white);
}

@media (max-width: 768px) {
  .dashboard-menu {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    gap: 1rem;
  }
  
  .dashboard-menu-item {
    flex-shrink: 0;
    margin-bottom: 0;
    margin-right: 0.5rem;
  }
  
  .dashboard-menu-link {
    white-space: nowrap;
    padding: 1rem;
    min-width: auto;
    font-size: 1.4rem;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  
  .dashboard-menu-link i {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.dashboard-content {
  background: var(--pure-white);
  border-radius: 2rem;
  padding: 3rem;
  box-shadow: var(--box-shadow);
  width: 100%;
  overflow-x: hidden;
}

.dashboard-panel {
  display: none;
  width: 100%;
  overflow-x: hidden;
}

.dashboard-panel.active {
  display: block;
}

.dashboard-panel-title {
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--light-gray);
}

.panel-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-filters {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filter-input {
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

.contact-stats {
  background: var(--off-white);
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  font-weight: 500;
}

.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.items-per-page {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.items-per-page select {
  padding: 0.8rem 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.5rem;
  font-size: 1.4rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
}

.pagination-btn {
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
  border-radius: 0.5rem;
  background: var(--pure-white);
  cursor: pointer;
  transition: var(--transition);
}

.pagination-btn:hover {
  background: var(--light-gray);
}

.pagination-btn.active {
  background: var(--accent-gradient);
  color: var(--pure-white);
  border-color: transparent;
}

@media (max-width: 768px) {
  .panel-actions {
    justify-content: center;
    flex-direction: column;
  }
  
  .contact-filters {
    width: 100%;
    justify-content: center;
  }
  
  .pagination-container {
    flex-direction: column;
    align-items: center;
  }
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

/* Notification Styles */
.notification-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 3000;
  width: 35rem;
  max-width: 90%;
}

.notification {
  background: var(--pure-white);
  border-radius: 0.8rem;
  padding: 1.5rem 2rem;
  box-shadow: var(--box-shadow);
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  transform: translateX(120%);
  transition: transform 0.3s ease;
  overflow: hidden;
  position: relative;
}

.notification.show {
  transform: translateX(0);
}

.notification.success {
  border-left: 4px solid var(--success-color);
}

.notification.error {
  border-left: 4px solid var(--danger-color);
}

.notification.warning {
  border-left: 4px solid var(--warning-color);
}

.notification.info {
  border-left: 4px solid var(--info-color);
}

.notification-icon {
  margin-right: 1.5rem;
  font-size: 2rem;
}

.notification.success .notification-icon {
  color: var(--success-color);
}

.notification.error .notification-icon {
  color: var(--danger-color);
}

.notification.warning .notification-icon {
  color: var(--warning-color);
}

.notification.info .notification-icon {
  color: var(--info-color);
}

.notification-content {
  flex: 1;
}

.notification-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.notification-message {
  font-size: 1.4rem;
  color: var(--mid-gray);
  margin: 0;
}

.dashboard-stat-card {
  background: var(--off-white);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.dashboard-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.dashboard-stat-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 1.5rem;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
}

.dashboard-stat-icon i {
  font-size: 2.4rem;
  color: var(--pure-white);
}

.dashboard-stat-info h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--mid-gray);
}

.dashboard-stat-value {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 0;
  color: var(--dark-blue);
}

.dashboard-recent {
  margin-bottom: 4rem;
}

.dashboard-recent h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.dashboard-table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.dashboard-table {
  width: 100%;
  min-width: 700px; /* Slightly smaller min-width to better fit mobile screens */
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  padding: 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--light-gray);
}

.dashboard-table th {
  font-weight: 600;
  color: var(--dark-blue);
  background-color: var(--off-white);
  position: sticky;
  top: 0;
  z-index: 10;
}

.dashboard-table tbody tr:hover {
  background-color: var(--light-gray);
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 1.2rem;
  font-weight: 600;
}

.status-badge.confirmed {
  background-color: rgba(40, 167, 69, 0.1);
  color: var(--success-color);
}

.status-badge.pending {
  background-color: rgba(255, 193, 7, 0.1);
  color: var(--warning-color);
}

.status-badge.cancelled {
  background-color: rgba(220, 53, 69, 0.1);
  color: var(--danger-color);
}

.dashboard-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--pure-white);
  background: var(--accent-gradient);
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: var(--transition);
}

.dashboard-btn.small {
  padding: 0.6rem 1.2rem;
  font-size: 1.2rem;
}

.dashboard-btn.secondary {
  background: var(--light-gray);
  color: var(--dark-gray);
}

.dashboard-btn.danger {
  background: var(--danger-color);
}

.dashboard-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 108, 255, 0.2);
}

.dashboard-btn.secondary:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dashboard-btn.danger:hover {
  box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.dashboard-actions {
  margin-top: 4rem;
}

.dashboard-actions h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.dashboard-action-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 2rem;
}

.dashboard-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  background: var(--off-white);
  border-radius: 1.5rem;
  transition: var(--transition);
  text-align: center;
}

.dashboard-action-btn i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
}

.dashboard-action-btn span {
  font-weight: 600;
  color: var(--dark-blue);
}

.dashboard-action-btn:hover {
  background: var(--primary-gradient);
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

.dashboard-action-btn:hover i,
.dashboard-action-btn:hover span {
  color: var(--pure-white);
}

@media (max-width: 992px) {
  .dashboard-container {
    grid-template-columns: 1fr;
  }
  
  .dashboard-sidebar {
    margin-bottom: 3rem;
    width: 100% !important; /* Override collapsed styles */
  }
  
  .dashboard-sidebar.collapsed {
    width: 100% !important;
    padding: 3rem;
  }
  
  .dashboard-sidebar.collapsed .dashboard-user-info,
  .dashboard-sidebar.collapsed .dashboard-menu-link span {
    display: block !important;
  }
  
  .auth-container {
    grid-template-columns: 1fr;
  }
  
  .auth-info {
    display: none;
  }
  
  /* Responsive dashboard tables */
  .dashboard-table {
    font-size: 1.4rem;
  }
  
  .dashboard-table th,
  .dashboard-table td {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .dashboard-stats,
  .dashboard-action-buttons {
    grid-template-columns: 1fr;
  }
  
  /* Responsive dashboard form layout */
  .dashboard-form-row {
    grid-template-columns: 1fr;
  }
  
  .dashboard-form-group.full-width {
    grid-column: auto;
  }
  
  /* Responsive dashboard content for mobile */
  .dashboard-content {
    padding: 2rem 1.5rem;
    margin-top: 3rem;
  }
  
  /* Adjust profile actions */
  .dashboard-form-actions {
    justify-content: center;
  }
  
  /* Responsive document categories */
  .dashboard-documents-header {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .dashboard-documents-categories {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Improved mobile table experience */
  .dashboard-table-container {
    margin: 0 -1.5rem;
    width: calc(100% + 3rem);
    border-radius: 0;
    max-width: 100vw;
  }
  
  .dashboard-content {
    padding: 1.5rem;
    width: 100%;
    overflow-x: hidden;
  }
  
  .dashboard-panel {
    width: 100%;
    overflow-x: hidden;
  }
}

/* Logout Button */
.logout-button {
  position: fixed;
  top: 2rem;
  right: 3rem; /* Same distance as chatbot button */
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}

.logout-button.visible {
  opacity: 1;
  visibility: visible;
}

.logout-button i {
  font-size: 1.8rem;
}

.logout-button:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .logout-button {
    position: static; /* Reset positioning in mobile view */
    right: auto;
  }
}

/* Chatbot Button */
.chatbot-button {
  position: fixed;
  bottom: 3rem;
  right: 9rem;
  width: 5.5rem;
  height: 5.5rem;
  background: var(--accent-gradient);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 108, 255, 0.3);
  transition: var(--transition);
}

.chatbot-button i {
  font-size: 2.5rem;
}

@media (max-width: 768px) {
  .chatbot-button {
    bottom: 2rem;
    right: 2.5rem;
    width: 6rem;
    height: 6rem;
  }
}
.chatbot-button {
  position: fixed;
  bottom: 3rem;
  right: 3rem;
  width: 5rem;
  height: 5rem;
  background: var(--accent-gradient);
  color: var(--pure-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 108, 255, 0.3);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(0, 198, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 198, 255, 0);
  }
}

.chatbot-button.moved-up {
  bottom: 9rem;
}

/* Hide chatbot button when chat window is active or side nav is active */
.chat-window.active ~ .chatbot-button,
.side-nav.active ~ .chatbot-button {
  opacity: 0 !important;
  visibility: hidden !important;
}

.chatbot-button:hover {
  transform: scale(1.1);
}

.chatbot-button i {
  font-size: 2rem;
}

@media (max-width: 768px) {
  .chatbot-button i {
    font-size: 2.5rem;
  }
}

/* Chat Window */
.chat-window {
  position: fixed;
  bottom: 9rem;
  right: 3rem;
  width: 38rem;
  height: 55rem;
  background: var(--pure-white);
  border-radius: 1.5rem;
  box-shadow: var(--box-shadow);
  z-index: 100;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.chat-window.active {
  transform: scale(1);
}

/* Full screen chat on mobile */
@media (max-width: 768px) {
  .chat-window {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform-origin: center;
  }
}

.chat-header {
  background: var(--accent-gradient);
  color: var(--pure-white);
  padding: 2rem;
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
}

.chat-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}

.chat-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--pure-white);
  font-size: 2rem;
  cursor: pointer;
}

.chat-messages {
  flex: 1;
  padding: 2rem;
  overflow-y: auto;
}

/* Typing indicator animation */
.typing-indicator .message-content {
  display: flex;
  align-items: center;
}

.typing-indicator .message-content::after {
  content: '...';
  animation: typingDots 1.5s infinite;
  width: 2rem;
  text-align: left;
  display: inline-block;
}

@keyframes typingDots {
  0%, 20% { content: '.'; }
  40%, 60% { content: '..'; }
  80%, 100% { content: '...'; }
}

.chat-message {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}

.message-content {
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  max-width: 80%;
  position: relative;
}

/* Style for email links in chat messages */
.message-content a.email-link {
  color: #00c6ff;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.message-content a.email-link:hover {
  color: #0072ff;
  text-decoration: none;
}

.chat-action-container {
  display: flex;
  justify-content: center;
  margin: 1rem 0;
  padding: 0 2rem;
}

.chat-action-button {
  background: var(--accent-gradient);
  color: var(--pure-white);
  border: none;
  border-radius: 2rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 108, 255, 0.3);
}

.chat-action-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 108, 255, 0.4);
}

.message-bot {
  align-items: flex-start;
}

.message-bot .message-content {
  background: var(--light-gray);
  color: var(--dark-gray);
  border-bottom-left-radius: 0.3rem;
  max-width: 85%;
}

.message-user {
  align-items: flex-end;
}

.message-user .message-content {
  background: var(--accent-gradient);
  color: var(--pure-white);
  border-bottom-right-radius: 0.3rem;
}

.chat-input-container {
  padding: 1.5rem;
  border-top: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
}

.chat-input {
  flex: 1;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--light-gray);
  border-radius: 3rem;
  font-size: 1.4rem;
  outline: none;
}

.chat-send {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--pure-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 1rem;
  border: none;
  outline: none;
}

.chat-send i {
  font-size: 1.6rem;
}

/* Reservation Popup Styles */
.reservation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.reservation-overlay.active {
  opacity: 1;
  visibility: visible;
}

.reservation-popup {
  background: var(--pure-white);
  border-radius: 1.5rem;
  width: 90%;
  max-width: 50rem;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
  position: relative;
}

.reservation-overlay.active .reservation-popup {
  transform: scale(1);
}

.reservation-header {
  background: var(--primary-gradient);
  color: var(--pure-white);
  padding: 2rem;
  border-radius: 1.5rem 1.5rem 0 0;
  position: relative;
}

.reservation-title {
  font-size: 2.4rem;
  margin: 0;
}

.reservation-subtitle {
  font-size: 1.6rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.reservation-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: transparent;
  border: none;
  color: var(--pure-white);
  font-size: 2rem;
  cursor: pointer;
}

.reservation-content {
  padding: 2rem;
}

.reservation-form-group {
  margin-bottom: 2rem;
}

.reservation-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.8rem;
}

.reservation-input,
.reservation-select,
.reservation-textarea {
  width: 100%;
  padding: 1.2rem;
  border: 1px solid var(--light-gray);
  border-radius: 0.8rem;
  font-size: 1.6rem;
  font-family: inherit;
}

.reservation-textarea {
  min-height: 12rem;
  resize: vertical;
}

.reservation-footer {
  padding: 2rem;
  border-top: 1px solid var(--light-gray);
  text-align: right;
}

.reservation-btn {
  background: var(--accent-gradient);
  color: var(--pure-white);
  border: none;
  padding: 1.2rem 3rem;
  border-radius: 5rem;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reservation-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 108, 255, 0.3);
}

.reservation-btn.secondary {
  background: transparent;
  border: 1px solid var(--mid-gray);
  color: var(--mid-gray);
  margin-right: 1rem;
}

.reservation-btn.secondary:hover {
  background: var(--light-gray);
  color: var(--dark-gray);
}

@media (max-width: 768px) {
  .reservation-popup {
    width: 95%;
    max-height: 95vh;
  }
}