/* ============================================================================
   TABULA - Unified Design System
   Clean, modern, professional styling
   ============================================================================ */

:root {
  --color-primary: #56a8f4;
  --color-dark: #C7CBCF;
  --color-light: #f5f5f5;
  --color-border: #ddd;
  --color-text: #555;
  --color-accent: #d4e8f7;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: #ffffff;
  width: 100%;
  max-width: 100%;
}

body {
  overflow-x: hidden;
}

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  z-index: 100;
  text-decoration: none;
  border-radius: 0 0 4px 0;
}

.skip-link:focus {
  top: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: #2c3e50;
  line-height: 1.3;
  margin-bottom: 0.5em;
  letter-spacing: -0.5px;
}

h1 { 
  font-size: 2.5rem;
  font-weight: 800;
}
h2 { 
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5em;
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { 
  margin-bottom: 1em;
  line-height: 1.7;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Header */
header#header {
  position: relative;
  background-image: url("../../images/header.jpg");
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 5em 0 2em 0;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  box-shadow: inset 0 -10px 30px rgba(0, 0, 0, 0.1);
  z-index: 50;
}

header#header .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

header#header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  pointer-events: none;
}

header#header > * {
  position: relative;
  z-index: 2;
}

header#header h1 {
  font-size: 1.8rem;
  margin-bottom: 0.5em;
}

.logo {
  margin-bottom: 1.5em;
  animation: slideIn 0.6s ease-out;
}

.logo a img {
  height: 400px;
  width: auto;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
  max-width: 90vw;
}

.logo a img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 1.5em;
  position: relative;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: absolute;
  left: 0;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition-smooth);
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
  width: 100%;
}

nav#nav ul {
  display: flex;
  list-style: none;
  gap: 2.5em;
  flex-wrap: wrap;
  justify-content: center;
  animation: slideInDown 0.6s ease-out;
}

nav#nav li {
  display: inline-block;
}

nav#nav a {
  color: #fff;
  font-weight: 500;
  padding: 0.75em 0;
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
  text-decoration: none;
}

nav#nav a:hover,
nav#nav a.active {
  color: #ffd9d9;
  border-bottom-color: #ffd9d9;
}

/* Banner */
#banner {
  background: linear-gradient(135deg, var(--color-dark) 0%, #483949 100%);
  color: white;
  padding: 4em 3em;
  text-align: center;
}

#banner.major {
  padding: 6em 3em;
}

#banner h1 {
  color: white;
  font-size: 3em;
  margin-bottom: 0.5em;
  animation: slideIn 0.7s ease-out 0.1s both;
}

#banner p {
  font-size: 1.2em;
  opacity: 0.9;
  animation: slideIn 0.7s ease-out 0.2s both;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}

/* Sections */
section {
  padding: 3em 0;
  overflow: hidden;
}

.wrapper {
  padding: 4em 3em;
  overflow: hidden;
}

.wrapper.style1 {
  background: var(--color-light);
}

.wrapper.style2 {
  background: white;
}

.wrapper.style3 {
  background: var(--color-primary);
  color: white;
}

.wrapper.style3 h2,
.wrapper.style3 h3,
.wrapper.style3 h4 {
  color: white;
}

/* Grid */
.highlights-grid,
.process-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.highlight-card,
.process-card,
.testimonial-item,
.contact-item {
  background: white;
  padding: 2em;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.05);
}

.highlight-card {
  animation: scaleIn 0.6s ease-out backwards;
}

.highlight-card:nth-child(1) { animation-delay: 0.1s; }
.highlight-card:nth-child(2) { animation-delay: 0.2s; }
.highlight-card:nth-child(3) { animation-delay: 0.3s; }
.highlight-card:nth-child(4) { animation-delay: 0.4s; }
.highlight-card:nth-child(5) { animation-delay: 0.5s; }
.highlight-card:nth-child(6) { animation-delay: 0.6s; }

.process-card {
  animation: slideUp 0.6s ease-out backwards;
}

.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }

.highlight-card:hover,
.process-card:hover,
.testimonial-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.highlight-card h3,
.process-card h3 {
  color: var(--color-primary);
  font-weight: 700;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.5em;
  margin-bottom: 1em;
  box-shadow: 0 4px 12px rgba(86, 168, 244, 0.2);
}

.testimonial-item {
  border-left: 4px solid var(--color-primary);
}

.testimonial-item p {
  font-style: italic;
  line-height: 1.8;
}

.author {
  color: var(--color-primary);
  font-weight: 600;
  font-style: normal;
  margin-top: 1em;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  width: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2em;
  margin-top: 2em;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5em;
  margin-top: 2.5em;
}

.carousel-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: var(--color-dark);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5em;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot.active {
  background: var(--color-primary);
  transform: scale(1.3);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2em;
  right: 2em;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5em;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(86, 168, 244, 0.3);
  transition: var(--transition-smooth);
}

.back-to-top.show {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(86, 168, 244, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2em;
  margin: 2em 0;
  text-align: center;
}

.contact-item h3 {
  color: #000000 !important;
  margin-bottom: 0.5em;
}

.contact-item a {
  color: #000000 !important;
  font-weight: 600;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.75em 2em;
  background: var(--color-primary);
  color: white;
  border-radius: 6px;
  font-weight: 600;
  transition: var(--transition-smooth);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(86, 168, 244, 0.15);
}

.button:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86, 168, 244, 0.25);
}

.button.big {
  padding: 1em 3em;
  font-size: 1.1em;
}

.button.alt {
  background: transparent;
  color: white;
  border-color: white;
}

.button.alt:hover {
  background: white;
  color: var(--color-primary);
}

/* Dropdown Button */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  background: var(--color-primary);
  color: white;
  padding: 0.75em 2em;
  border-radius: 6px;
  border: 2px solid var(--color-primary);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
  font-size: 1em;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.5;
  white-space: nowrap;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  box-shadow: 0 4px 12px rgba(86, 168, 244, 0.15);
}

.dropdown-toggle::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.dropdown-toggle.big {
  padding: 1em 3em;
  font-size: 1.1em;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.7em;
}

.dropdown-toggle:hover {
  background: transparent;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(86, 168, 244, 0.25);
}

.dropdown-toggle.alt {
  background: transparent;
  color: white;
  border-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.dropdown-toggle.alt:hover {
  background: white;
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 2px solid var(--color-primary);
  border-top: none;
  border-radius: 0 0 8px 8px;
  min-width: 220px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  z-index: 1000;
  margin-top: -2px;
  overflow: hidden;
}

.dropdown-menu.show {
  display: flex;
  flex-direction: column;
  animation: slideDown 0.3s ease-out;
}

.dropdown-menu a {
  display: block;
  color: var(--color-primary);
  padding: 0.85em 2em;
  text-decoration: none;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-weight: 500;
}

.dropdown-menu a:last-child {
  border-bottom: none;
}

.dropdown-menu a:hover {
  background: var(--color-light);
  padding-left: 2.5em;
  color: var(--color-primary);
}

/* Footer */
footer#footer {
  background: var(--color-dark);
  color: white;
  padding: 1.5em 3em;
  margin-top: 3em;
}

footer#footer h4 {
  color: white;
  margin-bottom: 1em;
}

footer#footer p {
  opacity: 0.85;
  font-size: 0.95em;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.2em;
  margin-top: 1.2em;
  font-size: 0.85em;
  opacity: 0.75;
}

.copyright p {
  margin: 0 0 0.8em 0;
}

.social-icons {
  display: flex;
  gap: 1.2em;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  color: white;
  transition: var(--transition-smooth);
  text-decoration: none;
  opacity: 0.8;
}

.social-icons a:hover {
  opacity: 1;
  transform: scale(1.15) translateY(-2px);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5em;
  margin: 2em 0;
}

/* Responsive */
@media (max-width: 768px) {
  * { box-sizing: border-box; }
  html, body { font-size: 13px; width: 100%; overflow-x: hidden; }
  header#header { padding: 0.5em 0; min-height: auto; width: 100%; background-attachment: scroll; overflow: visible; }
  header#header .inner { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; max-width: 100%; padding: 0 1em; box-sizing: border-box; }
  .header-top { width: 100%; margin-bottom: 0.2em; position: relative; z-index: 60; }
  .mobile-menu-toggle { display: flex; position: absolute; left: 0; top: 0; z-index: 1002; }
  .logo { margin: 0; }
  .logo a img { height: 50px; width: auto; max-width: 100%; }
  header#header h1 { font-size: 1em; margin: 0.2em 0; line-height: 1.1; }
  header#header p { font-size: 0.75em; margin: 0.2em 0; }
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; background: rgba(0, 0, 0, 0.95); max-height: 0; overflow: hidden; transition: max-height 0.3s ease-out; z-index: 1001; }
  .nav-menu.active { max-height: 500px; }
  nav#nav ul { flex-direction: column; gap: 0; width: 100%; padding: 0.8em 0; }
  nav#nav a { padding: 0.6em 1.5em; font-size: 0.9em; display: block; }
  .actions { flex-direction: column; gap: 0.3em; width: 100%; padding: 0; margin: 0.5em 0 0; }
  .actions li { width: 100%; }
  .actions a, .actions button { width: 100%; }
  .button, .dropdown-toggle { padding: 0.5em 0.8em; font-size: 0.75em; width: 100%; display: block; box-sizing: border-box; border: 2px solid; white-space: normal; word-wrap: break-word; min-height: 36px; font-weight: 500; }
  .button.big, .dropdown-toggle.big { padding: 0.5em 0.8em; font-size: 0.75em; }
  .dropdown { width: 100%; position: relative; display: block; }
  .dropdown-toggle { position: relative; z-index: 9998; }
  .dropdown-menu { display: none; position: absolute; top: calc(100% + 5px); left: 0; width: 100%; background: white; border: 2px solid var(--color-primary); border-radius: 0 0 4px 4px; z-index: 9999; box-shadow: 0 4px 8px rgba(0,0,0,0.15); margin-top: 0; padding: 0; }
  .dropdown-menu.show { display: block; }
  .dropdown-menu a { display: block; padding: 0.6em 1em; border-bottom: 1px solid #f0f0f0; font-size: 0.75em; color: var(--color-primary); width: 100%; box-sizing: border-box; }
  .dropdown-menu a:last-child { border-bottom: none; }
  .wrapper { padding: 1.2em 1em; overflow: hidden; }
  .inner { padding: 0; width: 100%; box-sizing: border-box; }
  section { padding: 1.2em 0; overflow: hidden; }
  h1 { font-size: 1.2em; margin: 0.3em 0; }
  h2 { font-size: 1.1em; margin-bottom: 0.7em; }
  h3 { font-size: 0.95em; }
  h4 { font-size: 0.9em; }
  p { line-height: 1.5; margin: 0.5em 0; }
  .highlights-grid, .process-grid, .testimonials-grid, .contact-grid, .gallery-grid { grid-template-columns: 1fr; gap: 0.8em; }
  .highlight-card, .process-card, .testimonial-item, .contact-item { padding: 1em; }
  #banner { padding: 1em; }
  #banner h1 { font-size: 1.3em; margin-bottom: 0.5em; }
  #banner p { font-size: 0.85em; }
  .trust-badges { grid-template-columns: repeat(2, 1fr); gap: 0.8em; }
  .trust-badge { padding: 0.8em; }
  .carousel-controls { gap: 0.4em; }
  .carousel-btn { width: 32px; height: 32px; font-size: 1em; }
  .dot { width: 8px; height: 8px; }
  .accordion-header { padding: 0.9em; font-size: 0.9em; }
  .accordion-content.active { padding: 0.9em; }
  .breadcrumb { flex-wrap: wrap; gap: 0.3em; }
  footer#footer { padding: 1em; }
  .social-icons { gap: 0.8em; }
  .social-icons a { font-size: 1.2em; }
  .back-to-top { width: 36px; height: 36px; bottom: 1.5em; right: 1.5em; font-size: 1em; }
}

/* Grid Systems */
.highlights-grid,
.process-grid,
.testimonials-grid {
  display: grid;
  gap: 2.5em;
}

.highlights-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 3em 0;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 3em 0;
}

.testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 3em 0;
}

/* Utility */
.major {
  text-align: center;
  margin-bottom: 2em;
}

.content {
  max-width: 800px;
  margin: 0 auto;
}

.actions {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2em;
}

/* Page wrapper */
#page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

footer#footer {
  margin-top: auto;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   NEW FEATURES
   ============================================================================ */

/* Breadcrumb Navigation */
.breadcrumb {
  display: flex;
  gap: 0.5em;
  font-size: 0.9em;
  margin-bottom: 2em;
  color: #666;
}

.breadcrumb a {
  color: var(--color-primary);
}

.breadcrumb span {
  color: #999;
}

/* Sticky Header */
header#header.sticky {
  position: sticky;
  top: 0;
  z-index: 998;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1em 0;
}

header#header.sticky .logo a img {
  height: 60px;
  transition: height 0.3s ease;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  gap: 2em;
  justify-content: center;
  margin: 3em 0;
  flex-wrap: wrap;
  align-items: center;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5em;
}

.trust-badge-icon {
  font-size: 2.5em;
}

.trust-badge p {
  font-size: 0.9em;
  color: #666;
  margin: 0;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 800px;
  margin: 2em auto;
}

.accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 1em;
  overflow: hidden;
}

.accordion-header {
  background: #f8f8f8;
  padding: 1.5em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #2c3e50;
  transition: all 0.3s ease;
  border: none;
  width: 100%;
  text-align: left;
}

.accordion-header:hover {
  background: #f0f0f0;
  color: var(--color-primary);
}

.accordion-header.active {
  background: var(--color-primary);
  color: white;
}

.accordion-toggle {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-toggle {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  max-height: 500px;
  padding: 1.5em;
  border-top: 1px solid #e0e0e0;
}

.accordion-content p {
  color: #666;
  line-height: 1.8;
  margin: 0;
}

/* Before/After Image Slider */
.image-comparison {
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 2em auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.image-comparison-img {
  display: block;
  width: 100%;
  height: auto;
}

.image-comparison-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-comparison-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-comparison-slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: col-resize;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.image-comparison-slider::before {
  content: '‹';
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: white;
  background: var(--color-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-comparison-slider::after {
  content: '›';
  position: absolute;
  right: -15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2em;
  color: white;
  background: var(--color-primary);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-comparison-label {
  position: absolute;
  top: 1em;
  padding: 0.5em 1em;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9em;
  z-index: 5;
}

.image-comparison-label.before {
  left: 1em;
}

.image-comparison-label.after {
  right: 1em;
}

/* Button Loading State */
.button:disabled,
.dropdown-toggle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.button.loading::after,
.dropdown-toggle.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.5em;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Testimonial Auto-Rotate */
.testimonials-carousel.auto-rotate {
  position: relative;
}

.testimonials-carousel.auto-rotate .carousel-controls {
  justify-content: center;
  gap: 1em;
}

/* Responsive Adjustments */

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2em;
}

.mb-2 {
  margin-bottom: 2em;
}