/* ============================================
   TATORTREINIGUNG-24.AT - MAIN STYLES
   SpurWeg 24 - Diskret. Schnell. Hygienisch.
   ============================================ */

/* CSS Variables */
:root {
  --primary-color: #0EA5A6;
  --secondary-color: #10B981;
  --dark-color: #1E293B;
  --light-bg: #F8FAFC;
  --gray-text: #64748B;
  --white: #FFFFFF;
  --border-color: #E2E8F0;
  --shadow: 0 2px 10px rgba(14, 165, 166, 0.1);
  --shadow-hover: 0 5px 20px rgba(14, 165, 166, 0.2);
  --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  background: var(--white);
  overflow-x: hidden;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* Container */
.tr-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.tr-container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Section Spacing */
section {
  padding: 80px 0;
}

/* Section Header */
.tr-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.tr-section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.tr-section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 16px;
  line-height: 1.2;
}

.tr-section-subtitle {
  font-size: 18px;
  color: var(--gray-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Buttons */
.tr-btn-primary,
.tr-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  cursor: pointer;
}

.tr-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14, 165, 166, 0.3);
}

.tr-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(14, 165, 166, 0.4);
}

.tr-btn-secondary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.tr-btn-secondary:hover {
  background: var(--primary-color);
  color: var(--white);
}

/* ============================================
   HEADER - Two-Level Design
   ============================================ */

.tr-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  overflow: hidden;
}

/* Top Bar */
.tr-header-topbar {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform: translateY(0);
  opacity: 1;
}

/* Hide topbar on scroll */
.tr-header.topbar-hidden .tr-header-topbar {
  margin-bottom: -50px;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.tr-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tr-topbar-left,
.tr-topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.tr-emergency-badge,
.tr-topbar-info {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.tr-emergency-badge img,
.tr-topbar-info img {
  filter: brightness(0) invert(1);
}

.tr-topbar-phone,
.tr-topbar-email {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-weight: 500;
  transition: var(--transition);
}

.tr-topbar-phone:hover,
.tr-topbar-email:hover {
  opacity: 0.8;
}

.tr-topbar-phone img,
.tr-topbar-email img {
  filter: brightness(0) invert(1);
}

/* Main Navigation */
.tr-header-main {
  padding: 16px 0;
  background: var(--white);
}

.tr-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tr-logo-wrapper {
  display: flex;
  align-items: center;
}

.tr-logo-desktop {
  display: block;
}

.tr-logo-mobile {
  display: none;
}

.tr-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.tr-nav-link {
  color: var(--dark-color);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.tr-nav-link span {
  position: relative;
}

.tr-nav-link span::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.tr-nav-link:hover span::after {
  width: 100%;
}

.tr-nav-link:hover {
  color: var(--primary-color);
}

/* Blog Link Special Style */
.tr-nav-link-blog {
  padding: 8px 16px;
  background: var(--light-bg);
  border-radius: 50px;
}

.tr-nav-link-blog:hover {
  background: var(--primary-color);
  color: var(--white);
}

.tr-nav-link-blog:hover img {
  filter: brightness(0) invert(1);
}

.tr-nav-link-blog span::after {
  display: none;
}

/* CTA Button in Nav */
.tr-nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
}

.tr-nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 165, 166, 0.4);
}

.tr-nav-cta img {
  filter: brightness(0) invert(1);
}

/* Mobile Toggle */
.tr-mobile-toggle {
  display: none;
}

/* ============================================
   HERO SECTION - Split Screen Design
   ============================================ */

.tr-hero {
  position: relative;
  min-height: 750px;
  display: flex;
  align-items: center;
  padding: 180px 0 80px;
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.75) 0%, rgba(232, 245, 244, 0.70) 50%, rgba(213, 237, 232, 0.65) 100%),
    url('/assets/img/mainFon.jpg') center/cover no-repeat;
  overflow: hidden;
}

.tr-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(14, 165, 166, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* Background Decorative Circles */
.tr-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.tr-hero-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 165, 166, 0.08) 0%, transparent 70%);
}

.tr-hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  left: -100px;
  animation: float 20s ease-in-out infinite;
}

.tr-hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  right: 10%;
  animation: float 15s ease-in-out infinite reverse;
}

.tr-hero-circle-3 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -50px;
  animation: float 18s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

/* Grid Layout */
.tr-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== LEFT SIDE ===== */
.tr-hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Pulsing Badge */
.tr-hero-badge-pulse {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(14, 165, 166, 0.15);
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.tr-pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* Title */
.tr-hero-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tr-hero-title-top {
  font-size: 28px;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.tr-hero-title-main,
.tr-hero-title-location {
  font-size: 58px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -1.5px;
  line-height: 1.2;
}

/* Highlight Box */
.tr-hero-highlight {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(14, 165, 166, 0.1);
}

.tr-hero-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
}

.tr-hero-highlight-icon img {
  filter: brightness(0) invert(1);
}

.tr-hero-tagline {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
}

.tr-hero-tagline strong {
  font-size: 20px;
  color: var(--dark-color);
  margin-bottom: 8px;
}

/* Action Buttons */
.tr-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.tr-hero-cta-primary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 6px 24px rgba(14, 165, 166, 0.3);
  transition: var(--transition);
}

.tr-hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(14, 165, 166, 0.4);
}

.tr-cta-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.tr-cta-icon img {
  filter: brightness(0) invert(1);
}

.tr-cta-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}

.tr-cta-label {
  font-size: 12px;
  opacity: 0.9;
  font-weight: 500;
}

.tr-cta-value {
  font-size: 18px;
  font-weight: 700;
}

.tr-hero-cta-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  background: var(--white);
  color: var(--dark-color);
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.tr-hero-cta-secondary:hover {
  background: var(--dark-color);
  color: var(--white);
  transform: translateY(-2px);
}

.tr-hero-cta-secondary:hover img {
  filter: brightness(0) invert(1);
}

/* Trust Badges */
.tr-hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.tr-hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(14, 165, 166, 0.1);
}

.tr-trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 8px;
}

.tr-trust-icon img {
  filter: brightness(0) invert(1);
}

.tr-trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tr-trust-text strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark-color);
}

.tr-trust-text span {
  font-size: 11px;
  color: var(--gray-text);
}

/* ===== RIGHT SIDE ===== */
.tr-hero-right {
  position: relative;
}

/* Emergency Card */
.tr-emergency-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  border: 1px solid rgba(14, 165, 166, 0.1);
}

.tr-emergency-header {
  padding: 24px 24px 0;
}

.tr-emergency-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tr-emergency-badge img {
  filter: brightness(0) invert(1);
}

.tr-emergency-content {
  padding: 24px;
}

.tr-emergency-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 12px;
}

.tr-emergency-text {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Contact Info */
.tr-hero .tr-emergency-contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.tr-hero .tr-emergency-phone,
.tr-hero .tr-emergency-email {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--light-bg);
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.tr-hero .tr-emergency-phone:hover,
.tr-hero .tr-emergency-email:hover {
  border-color: var(--primary-color);
  background: rgba(14, 165, 166, 0.05);
}

.tr-hero .tr-emergency-phone-icon,
.tr-hero .tr-emergency-email-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
}

.tr-hero .tr-emergency-phone-icon img,
.tr-hero .tr-emergency-email-icon img {
  filter: brightness(0) invert(1);
}

.tr-hero .tr-emergency-phone-content,
.tr-hero .tr-emergency-email-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tr-hero .tr-emergency-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--gray-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tr-hero .tr-emergency-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
}

/* Stats */
.tr-emergency-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.05), rgba(16, 185, 129, 0.05));
  border-radius: 12px;
  margin-bottom: 20px;
}

.tr-stat-item {
  text-align: center;
}

.tr-stat-number {
  font-size: 24px;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 4px;
}

.tr-stat-label {
  font-size: 11px;
  color: var(--gray-text);
  font-weight: 600;
}

.tr-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Working Hours */
.tr-emergency-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(14, 165, 166, 0.05);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray-text);
  font-weight: 500;
}

.tr-hours-icon img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

/* Floating Badges */
.tr-hero-float-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  animation: float-badge 4s ease-in-out infinite;
}

.tr-hero-float-badge img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-float-badge-1 {
  top: 20px;
  right: -20px;
  animation-delay: 0s;
}

.tr-float-badge-2 {
  bottom: 80px;
  right: -30px;
  animation-delay: 1s;
}

@keyframes float-badge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============================================
   SERVICES SECTION - BENTO GRID
   ============================================ */

.tr-services {
  background: var(--white);
}

.tr-services-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.tr-service-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tr-service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.03), rgba(16, 185, 129, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tr-service-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 165, 166, 0.15);
  border-color: var(--primary-color);
}

.tr-service-item:hover::before {
  opacity: 1;
}

/* Service Number Badge */
.tr-service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
}

/* Large Featured Card */
.tr-service-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.08), rgba(16, 185, 129, 0.08));
  border: 2px solid var(--primary-color);
  padding: 48px;
}

.tr-service-large .tr-service-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
}

.tr-service-large .tr-service-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.tr-service-large .tr-service-desc {
  font-size: 16px;
  margin-bottom: 24px;
}

/* Featured Badge */
.tr-service-badge-featured {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
}

/* Wide Card */
.tr-service-wide {
  grid-column: span 2;
}

/* Tall Card */
.tr-service-tall {
  grid-row: span 2;
}

/* Service Icon */
.tr-service-icon {
  position: relative;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(14, 165, 166, 0.2);
  z-index: 1;
}

.tr-service-icon img {
  filter: brightness(0) invert(1);
}

/* Service Content */
.tr-service-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
  z-index: 1;
}

.tr-service-desc {
  position: relative;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  z-index: 1;
}

/* Service Features List */
.tr-service-features {
  position: relative;
  list-style: none;
  margin-top: 20px;
  z-index: 1;
}

.tr-service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--dark-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.tr-service-features img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
  flex-shrink: 0;
}

/* Services CTA Section */
.tr-services-cta {
  background: linear-gradient(135deg, var(--dark-color), #0f172a);
  border-radius: 24px;
  padding: 50px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tr-services-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 166, 0.1) 0%, transparent 70%);
  animation: float 6s ease-in-out infinite;
}

.tr-services-cta h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.tr-services-cta p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.tr-services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(14, 165, 166, 0.4);
  position: relative;
  z-index: 1;
}

.tr-services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 166, 0.5);
}

.tr-services-cta-btn img {
  filter: brightness(0) invert(1);
}

/* ============================================
   WHY CHOOSE US SECTION - SPLIT LAYOUT
   ============================================ */

.tr-why-us {
  background: var(--light-bg);
}

.tr-why-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
}

/* Featured Left Card */
.tr-why-featured {
  position: relative;
  background: linear-gradient(135deg, var(--dark-color), #0f172a);
  border-radius: 28px;
  padding: 50px 40px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tr-why-featured::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 166, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.tr-why-featured-number {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(14, 165, 166, 0.4);
  z-index: 2;
}

.tr-why-featured-decorator {
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  z-index: 0;
}

.tr-why-featured-icon {
  position: relative;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 8px 24px rgba(14, 165, 166, 0.3);
  z-index: 1;
}

.tr-why-featured-icon img {
  filter: brightness(0) invert(1);
}

.tr-why-featured-title {
  position: relative;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  z-index: 1;
}

.tr-why-featured-desc {
  position: relative;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  z-index: 1;
}

.tr-why-featured-list {
  position: relative;
  list-style: none;
  z-index: 1;
}

.tr-why-featured-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
  padding-left: 8px;
}

.tr-why-featured-list img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
  flex-shrink: 0;
}

/* Right Grid Cards */
.tr-why-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tr-why-item {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tr-why-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tr-why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(14, 165, 166, 0.15);
  border-color: var(--primary-color);
}

.tr-why-item:hover::before {
  opacity: 1;
}

.tr-why-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  z-index: 2;
  transition: all 0.3s ease;
}

.tr-why-item:hover .tr-why-number {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  transform: rotate(360deg);
}

.tr-why-icon-wrapper {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  z-index: 1;
}

.tr-why-item:hover .tr-why-icon-wrapper {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: scale(1.05);
}

.tr-why-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
  transition: filter 0.3s ease;
}

.tr-why-item:hover .tr-why-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.tr-why-item-title {
  position: relative;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
  z-index: 1;
}

.tr-why-item-text {
  position: relative;
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  z-index: 1;
}

/* ============================================
   GEOGRAPHY SECTION - ZONAL LAYOUT
   ============================================ */

.tr-geography {
  background: var(--white);
}

.tr-zones-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

/* Zone Group */
.tr-zone-group {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.tr-zone-group:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 32px rgba(14, 165, 166, 0.12);
  transform: translateY(-4px);
}

/* Zone Header */
.tr-zone-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.tr-zone-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.25);
}

.tr-zone-icon img {
  filter: brightness(0) invert(1);
}

.tr-zone-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-color);
  flex: 1;
}

.tr-zone-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  background: rgba(14, 165, 166, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
}

/* Zone Districts */
.tr-zone-districts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tr-district-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light-bg);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tr-district-chip:hover {
  background: var(--white);
  border-color: var(--primary-color);
  transform: translateX(6px);
  box-shadow: 0 4px 16px rgba(14, 165, 166, 0.15);
}

.tr-district-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.15), rgba(16, 185, 129, 0.15));
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tr-district-chip:hover .tr-district-num {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

.tr-district-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-color);
}

/* Featured District */
.tr-district-featured {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.08), rgba(16, 185, 129, 0.08));
  border-color: var(--primary-color);
}

.tr-district-featured .tr-district-num {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
}

/* Geography Stats */
.tr-geography-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.tr-geo-stat {
  background: linear-gradient(135deg, var(--dark-color), #0f172a);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.tr-geo-stat::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 166, 0.15) 0%, transparent 60%);
  animation: float 6s ease-in-out infinite;
}

.tr-geo-stat-number {
  position: relative;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  z-index: 1;
}

.tr-geo-stat-label {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
}

/* Geography CTA */
.tr-geography-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.05), rgba(16, 185, 129, 0.05));
  border: 2px solid var(--border-color);
  border-radius: 24px;
  padding: 40px 48px;
}

.tr-geo-cta-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.tr-geo-cta-content p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
}

.tr-geo-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(14, 165, 166, 0.4);
}

.tr-geo-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 166, 0.5);
}

.tr-geo-cta-btn img {
  filter: brightness(0) invert(1);
}

/* ============================================
   WORK PROCESS SECTION - GRID CARDS
   ============================================ */

.tr-process {
  background: var(--light-bg);
}

.tr-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* Step Card */
.tr-step-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.tr-step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.03), rgba(16, 185, 129, 0.03));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.tr-step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(14, 165, 166, 0.15);
  border-color: var(--primary-color);
}

.tr-step-card:hover::before {
  opacity: 1;
}

/* Highlight Cards */
.tr-step-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.05), rgba(16, 185, 129, 0.05));
  border-color: var(--primary-color);
}

/* Step Badge */
.tr-step-badge {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  z-index: 1;
}

.tr-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 14px;
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14, 165, 166, 0.3);
}

.tr-step-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tr-step-card:hover .tr-step-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tr-step-icon img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
  transition: filter 0.3s ease;
}

.tr-step-card:hover .tr-step-icon img {
  filter: brightness(0) invert(1);
}

/* Step Content */
.tr-step-title {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 12px;
  z-index: 1;
}

.tr-step-text {
  position: relative;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
  z-index: 1;
}

/* Step Time */
.tr-step-time {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(14, 165, 166, 0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-color);
  z-index: 1;
}

.tr-step-time img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

/* Process CTA */
.tr-process-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, var(--dark-color), #0f172a);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.tr-process-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 166, 0.15) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
}

.tr-process-cta-icon {
  position: relative;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(14, 165, 166, 0.4);
  z-index: 1;
}

.tr-process-cta-icon img {
  filter: brightness(0) invert(1);
}

.tr-process-cta-content {
  position: relative;
  flex: 1;
  z-index: 1;
}

.tr-process-cta-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.tr-process-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.tr-process-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(14, 165, 166, 0.4);
  z-index: 1;
}

.tr-process-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14, 165, 166, 0.5);
}

.tr-process-cta-btn img {
  filter: brightness(0) invert(1);
}

/* ============================================
   PORTFOLIO SECTION - Referenzen
   ============================================ */

.tr-portfolio {
  background: var(--light-bg);
}

/* Slider Container */
.tr-portfolio-slider {
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.tr-portfolio-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

/* Individual Slide */
.tr-portfolio-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.tr-portfolio-image {
  position: relative;
  height: 100%;
  min-height: 450px;
  overflow: hidden;
}

.tr-portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr-portfolio-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Location */
.tr-portfolio-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.tr-portfolio-location img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-portfolio-location span {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Title */
.tr-portfolio-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

/* Meta Info */
.tr-portfolio-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 2px solid var(--border-color);
}

.tr-portfolio-meta-item {
  font-size: 14px;
  color: var(--gray-text);
}

.tr-portfolio-meta-item strong {
  color: var(--dark-color);
  font-weight: 700;
  margin-right: 4px;
}

/* Tasks List */
.tr-portfolio-tasks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tr-portfolio-tasks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.5;
}

.tr-portfolio-tasks li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

/* Slider Controls */
.tr-portfolio-prev,
.tr-portfolio-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.tr-portfolio-prev:hover,
.tr-portfolio-next:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.tr-portfolio-prev {
  left: 20px;
}

.tr-portfolio-next {
  right: 20px;
}

.tr-portfolio-prev svg,
.tr-portfolio-next svg {
  width: 24px;
  height: 24px;
}

/* Slider Dots */
.tr-portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.tr-portfolio-dot {
  width: 12px;
  height: 12px;
  background: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}

.tr-portfolio-dot:hover {
  background: var(--secondary-color);
}

.tr-portfolio-dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
}

/* Statistics */
.tr-portfolio-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.tr-portfolio-stat {
  text-align: center;
}

.tr-portfolio-stat-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1;
}

.tr-portfolio-stat-label {
  font-size: 14px;
  color: var(--gray-text);
  font-weight: 600;
}

/* ============================================
   PRICING SECTION - Transparente Kostenübersicht Wien
   ============================================ */

.tr-pricing {
  background: var(--white);
}

/* Free Consultation Highlight Banner */
.tr-pricing-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.08), rgba(16, 185, 129, 0.08));
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  box-shadow: 0 8px 24px rgba(14, 165, 166, 0.12);
}

.tr-pricing-highlight-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tr-pricing-highlight-icon img {
  width: 36px;
  height: 36px;
  filter: brightness(0) invert(1);
}

.tr-pricing-highlight-content {
  flex: 1;
  margin: 0 32px;
}

.tr-pricing-highlight-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tr-pricing-highlight-content p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.5;
  margin: 0;
}

.tr-pricing-highlight-price {
  flex-shrink: 0;
}

.tr-price-free {
  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(14, 165, 166, 0.3);
}

/* Pricing Table Layout */
.tr-pricing-table {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

/* Category Group */
.tr-pricing-category {
  background: var(--light-bg);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.tr-pricing-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--primary-color);
}

.tr-pricing-category-header img {
  width: 28px;
  height: 28px;
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-pricing-category h3 {
  font-size: 22px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

/* Pricing Rows Container */
.tr-pricing-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual Pricing Row */
.tr-pricing-row {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
}

.tr-pricing-row:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 24px rgba(14, 165, 166, 0.12);
  transform: translateX(4px);
}

.tr-pricing-row-info h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.tr-pricing-row-info p {
  font-size: 14px;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.5;
}

.tr-pricing-row-price {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Featured Row */
.tr-pricing-featured {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.08), rgba(16, 185, 129, 0.08));
  border-color: var(--primary-color);
  border-width: 3px;
  padding: 28px 32px;
}

.tr-pricing-featured::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px 16px 0 0;
}

.tr-pricing-featured:hover {
  transform: translateX(6px) scale(1.01);
  box-shadow: 0 12px 32px rgba(14, 165, 166, 0.18);
}

/* Pricing Tags */
.tr-pricing-tag {
  position: absolute;
  top: -12px;
  right: 28px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
}

.tr-tag-emergency {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  animation: pulse-dot 2s infinite;
}

/* Emergency Service Row */
.tr-pricing-emergency {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.08), rgba(239, 68, 68, 0.08));
  border-color: #dc2626;
}

.tr-pricing-emergency .tr-pricing-row-price {
  background: linear-gradient(135deg, #dc2626, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tr-pricing-emergency:hover {
  border-color: #dc2626;
  box-shadow: 0 6px 24px rgba(220, 38, 38, 0.15);
}

/* Pricing Note Section */
.tr-pricing-note {
  display: flex;
  gap: 20px;
  padding: 32px;
  background: rgba(14, 165, 166, 0.05);
  border-left: 4px solid var(--primary-color);
  border-radius: 12px;
  margin-bottom: 40px;
  align-items: flex-start;
}

.tr-pricing-note-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tr-pricing-note-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.tr-pricing-note-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 10px;
  line-height: 1.3;
}

.tr-pricing-note-content p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Pricing CTA Section */
.tr-pricing-cta {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.05), rgba(16, 185, 129, 0.05));
  border-radius: 20px;
  border: 2px solid var(--border-color);
}

.tr-pricing-cta h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 12px;
  line-height: 1.3;
}

.tr-pricing-cta p {
  font-size: 16px;
  color: var(--gray-text);
  margin-bottom: 28px;
  line-height: 1.6;
}

.tr-pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(14, 165, 166, 0.3);
}

.tr-pricing-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 166, 0.4);
}

.tr-pricing-cta-btn img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

/* ============================================
   ABOUT SECTION - SpurWeg 24 - Modern Layout
   ============================================ */

.tr-about {
  background: var(--light-bg);
}

/* Modern Split Layout */
.tr-about-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

/* Left Side - Image with Stats Overlay */
.tr-about-image-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
}

.tr-about-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  flex: 1;
  min-height: 500px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.tr-about-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tr-about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.95), rgba(30, 41, 59, 0.4), transparent);
  pointer-events: none;
}

/* Stats Overlay at Bottom of Image */
.tr-about-stats-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 24px 32px;
  z-index: 2;
}

.tr-about-stat-box {
  text-align: center;
  padding: 0 12px;
}

.tr-about-stat-num {
  font-size: 36px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
  line-height: 1;
}

.tr-about-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Right Side - Content */
.tr-about-content-modern {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 0;
}

.tr-about-content-modern .tr-section-badge {
  margin-bottom: 16px;
}

.tr-about-content-modern .tr-section-title {
  text-align: left;
  margin-bottom: 28px;
  font-size: 36px;
  line-height: 1.2;
}

.tr-about-text-block {
  margin-bottom: 36px;
}

.tr-about-text {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.tr-about-text:last-child {
  margin-bottom: 0;
}

/* Features Grid 2x2 */
.tr-about-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Feature Card */
.tr-about-feature-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.3s ease;
}

.tr-about-feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(14, 165, 166, 0.12);
  transform: translateY(-4px);
}

/* Feature Icon */
.tr-about-feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tr-about-feature-card:hover .tr-about-feature-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tr-about-feature-icon img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
  transition: all 0.3s ease;
}

.tr-about-feature-card:hover .tr-about-feature-icon img {
  filter: brightness(0) invert(1);
}

/* Feature Content */
.tr-about-feature-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.tr-about-feature-content p {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.5;
  margin: 0;
}

/* Highlighted Feature Card (Diskret) */
.tr-about-feature-highlight {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.08), rgba(16, 185, 129, 0.08));
  border-color: var(--primary-color);
  border-width: 3px;
}

.tr-about-feature-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 14px 14px 0 0;
}

.tr-about-feature-highlight .tr-about-feature-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.tr-about-feature-highlight .tr-about-feature-icon img {
  filter: brightness(0) invert(1);
}

.tr-about-feature-highlight:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 32px rgba(14, 165, 166, 0.18);
}

/* Feature Badge "Top" */
.tr-feature-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  padding: 5px 14px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
}

/* ============================================
   REVIEWS SECTION - Modern Card Layout
   ============================================ */

.tr-reviews {
  background: var(--white);
}

/* Reviews Grid - 3 Columns */
.tr-reviews-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Review Card */
.tr-review-card-modern {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
  overflow: hidden;
}

.tr-review-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tr-review-card-modern:hover {
  border-color: var(--primary-color);
  box-shadow: 0 12px 32px rgba(14, 165, 166, 0.15);
  transform: translateY(-6px);
}

.tr-review-card-modern:hover::before {
  opacity: 1;
}

/* Quote Icon */
.tr-review-quote-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.tr-review-card-modern:hover .tr-review-quote-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 1;
}

.tr-review-quote-icon svg {
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tr-review-card-modern:hover .tr-review-quote-icon svg {
  color: var(--white);
}

/* Rating Stars at Top */
.tr-review-rating-top {
  margin-top: 8px;
}

.tr-review-stars {
  color: #FDB022;
  font-size: 20px;
  letter-spacing: 3px;
  line-height: 1;
}

/* Review Comment */
.tr-review-comment-modern {
  font-size: 15px;
  color: var(--dark-color);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
  flex: 1;
}

/* Author Section with Avatar */
.tr-review-author {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

/* Avatar with Initial */
.tr-review-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  flex-shrink: 0;
  text-transform: uppercase;
}

.tr-review-author-info {
  flex: 1;
}

.tr-review-author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 6px;
  line-height: 1.2;
}

.tr-review-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.tr-review-service-tag {
  font-size: 13px;
  color: var(--primary-color);
  background: rgba(14, 165, 166, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

.tr-review-date-text {
  font-size: 13px;
  color: var(--gray-text);
}

/* Verified Badge */
.tr-review-verified {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--primary-color);
  font-weight: 600;
}

.tr-review-verified img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

/* Featured Review Card (Middle One) */
.tr-review-featured {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.05), rgba(16, 185, 129, 0.05));
  border-color: var(--primary-color);
  border-width: 3px;
  transform: scale(1.03);
  box-shadow: 0 8px 28px rgba(14, 165, 166, 0.15);
}

.tr-review-featured::before {
  opacity: 1;
}

.tr-review-featured:hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 16px 40px rgba(14, 165, 166, 0.2);
}

.tr-review-featured .tr-review-quote-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  opacity: 1;
}

.tr-review-featured .tr-review-quote-icon svg {
  color: var(--white);
}

/* CTA Section Modern */
.tr-reviews-cta-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.08), rgba(16, 185, 129, 0.08));
  border-radius: 20px;
  border: 2px solid var(--border-color);
}

.tr-reviews-cta-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.tr-reviews-cta-content p {
  font-size: 15px;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.5;
}

.tr-reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(14, 165, 166, 0.3);
}

.tr-reviews-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 166, 0.4);
}

.tr-reviews-cta-btn img {
  filter: brightness(0) invert(1);
}

/* ============================================
   BLOG SECTION - Modern Card Layout
   ============================================ */

.tr-blog {
  background: var(--light-bg);
}

/* Blog Grid - 3 Columns */
.tr-blog-modern-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

/* Blog Card */
.tr-blog-card-modern {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tr-blog-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(14, 165, 166, 0.15);
  border-color: var(--primary-color);
}

/* Image Wrapper with Badges */
.tr-blog-image-wrapper {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tr-blog-image-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

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

.tr-blog-card-modern:hover .tr-blog-image-link img {
  transform: scale(1.1);
}

/* Gradient Overlay on Image */
.tr-blog-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(30, 41, 59, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.tr-blog-card-modern:hover .tr-blog-image-overlay {
  opacity: 1;
}

/* Category Badge - Top Left */
.tr-blog-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 16px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
  z-index: 2;
}

/* Date Badge - Bottom Right */
.tr-blog-date-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.tr-blog-date-badge img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

/* Card Content */
.tr-blog-card-content {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tr-blog-card-title {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
  min-height: 50px;
}

.tr-blog-card-title a {
  color: var(--dark-color);
  transition: all 0.3s ease;
}

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

.tr-blog-card-excerpt {
  font-size: 14px;
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
  min-height: 60px;
}

/* Read More Link */
.tr-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  margin-top: auto;
}

.tr-blog-read-more:hover {
  gap: 12px;
}

.tr-blog-read-more img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
  transition: all 0.3s ease;
}

.tr-blog-read-more:hover img {
  transform: translateX(4px);
}

/* CTA Section Modern */
.tr-blog-cta-modern {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--border-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.tr-blog-cta-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tr-blog-cta-icon img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-blog-cta-text {
  flex: 1;
}

.tr-blog-cta-text h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.tr-blog-cta-text p {
  font-size: 15px;
  color: var(--gray-text);
  margin: 0;
  line-height: 1.5;
}

.tr-blog-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(14, 165, 166, 0.3);
}

.tr-blog-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(14, 165, 166, 0.4);
}

.tr-blog-cta-button img {
  filter: brightness(0) invert(1);
}

/* ============================================
   FAQ SECTION - Modern Numbered Layout
   ============================================ */

.tr-faq {
  background: var(--white);
}

/* FAQ Grid - 2 Columns */
.tr-faq-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* FAQ Item */
.tr-faq-item-modern {
  position: relative;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 18px;
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.tr-faq-item-modern:hover {
  border-color: var(--primary-color);
  box-shadow: 0 6px 20px rgba(14, 165, 166, 0.1);
  transform: translateY(-2px);
}

.tr-faq-item-modern.active {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.03), rgba(16, 185, 129, 0.03));
  box-shadow: 0 8px 24px rgba(14, 165, 166, 0.12);
}

/* FAQ Number Badge */
.tr-faq-number {
  position: absolute;
  top: -12px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
  z-index: 2;
}

/* FAQ Question Button */
.tr-faq-question-modern {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  cursor: pointer;
  margin-bottom: 0;
}

.tr-faq-question-text {
  flex: 1;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.4;
  padding-top: 4px;
}

/* Toggle Icon Container */
.tr-faq-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tr-faq-item-modern:hover .tr-faq-toggle {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.15), rgba(16, 185, 129, 0.15));
  transform: rotate(90deg);
}

.tr-faq-item-modern.active .tr-faq-toggle {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  transform: rotate(180deg);
}

/* Plus/Minus Icons */
.tr-faq-icon-plus,
.tr-faq-icon-minus {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.tr-faq-item-modern.active .tr-faq-icon-plus,
.tr-faq-item-modern.active .tr-faq-icon-minus {
  color: var(--white);
}

.tr-faq-icon-minus {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
}

.tr-faq-item-modern.active .tr-faq-icon-plus {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.tr-faq-item-modern.active .tr-faq-icon-minus {
  opacity: 1;
  transform: translate(-50%, -50%) rotate(0deg);
}

/* FAQ Answer */
.tr-faq-answer-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.tr-faq-item-modern.active .tr-faq-answer-modern {
  max-height: 400px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(14, 165, 166, 0.2);
}

.tr-faq-answer-modern p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   CONTACT SECTION - Wir sind für Sie da
   ============================================ */

.tr-contact {
  background: var(--light-bg);
}

.tr-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.tr-contact-info h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 24px;
}

.tr-contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.tr-contact-item img {
  flex-shrink: 0;
  margin-top: 4px;
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-contact-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 4px;
}

.tr-contact-item a,
.tr-contact-item p {
  font-size: 15px;
  color: var(--gray-text);
  line-height: 1.5;
}

.tr-contact-item a:hover {
  color: var(--primary-color);
}

.tr-contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.tr-contact-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-color);
  box-shadow: var(--shadow);
}

.tr-contact-badge img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.tr-contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.tr-contact-form input,
.tr-contact-form textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s;
  margin-bottom: 20px;
  font-family: inherit;
}

.tr-contact-form input:focus,
.tr-contact-form textarea:focus {
  border-color: var(--primary-color);
}

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

/* ============================================
   CONTACT MODERN GRID - Modern Contact Section
   ============================================ */

.tr-contact-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

/* Contact Info Panel (Left) */
.tr-contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Emergency Banner */
.tr-contact-emergency {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 8px 30px rgba(14, 165, 166, 0.25);
  position: relative;
  overflow: hidden;
}

.tr-contact-emergency::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: pulse-glow 3s ease-in-out infinite;
}

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

.tr-contact-emergency .tr-emergency-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(10px);
}

.tr-contact-emergency .tr-emergency-icon img {
  filter: brightness(0) invert(1);
  animation: ring 2s ease-in-out infinite;
}

@keyframes ring {
  0%, 100% {
    transform: rotate(0deg);
  }
  10%, 30% {
    transform: rotate(-15deg);
  }
  20%, 40% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.tr-contact-emergency .tr-emergency-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.tr-contact-emergency .tr-emergency-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.tr-contact-emergency .tr-emergency-phone {
  font-size: 28px;
  font-weight: 800;
  display: block;
  letter-spacing: 1px;
  transition: var(--transition);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.tr-contact-emergency .tr-emergency-phone:hover {
  transform: scale(1.05);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.3);
}

/* Contact Cards */
.tr-contact-items-modern {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tr-contact-card-modern {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.tr-contact-card-modern:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(4px);
}

.tr-contact-icon-wrapper {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tr-contact-icon-wrapper img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-contact-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tr-contact-card-content strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-color);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.tr-contact-card-content a,
.tr-contact-card-content span {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.5;
  transition: var(--transition);
}

.tr-contact-card-content a:hover {
  color: var(--primary-color);
}

/* Trust Badges */
.tr-contact-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tr-trust-badge-modern {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.tr-trust-badge-modern:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.tr-trust-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tr-trust-icon img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-trust-badge-modern span {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark-color);
  line-height: 1.3;
}

/* ============================================
   CONTACT FORM STYLES - Modern Form Design
   ============================================ */

/* Form Container */
.cn-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Form Row (Two columns) */
.cn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Form Group */
.dcr-form-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Form Inputs */
.dcr-input,
.cn-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark-color);
  background: var(--white);
  outline: none;
  transition: all 0.3s ease;
}

.dcr-input:focus,
.cn-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 166, 0.1);
}

.dcr-input::placeholder,
.cn-input::placeholder {
  color: #94A3B8;
}

/* Textarea */
.dcr-textarea,
.cn-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border-color);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--dark-color);
  background: var(--white);
  outline: none;
  resize: vertical;
  min-height: 120px;
  transition: all 0.3s ease;
}

.dcr-textarea:focus,
.cn-textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(14, 165, 166, 0.1);
}

.dcr-textarea::placeholder,
.cn-textarea::placeholder {
  color: #94A3B8;
}

/* Error Message */
.dcr-error {
  display: none;
  color: #EF4444;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
}

.dcr-form-group.error .dcr-error {
  display: block;
}

.dcr-form-group.error .dcr-input,
.dcr-form-group.error .cn-input,
.dcr-form-group.error .dcr-textarea,
.dcr-form-group.error .cn-textarea {
  border-color: #EF4444;
}

/* Submit Button */
.dcr-btn {
  padding: 16px 32px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  outline: none;
}

.dcr-btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(14, 165, 166, 0.3);
}

.dcr-btn-primary:hover {
  box-shadow: 0 6px 25px rgba(14, 165, 166, 0.4);
  transform: translateY(-2px);
}

.dcr-btn-primary:active {
  transform: translateY(0);
}

.dcr-btn-block {
  width: 100%;
}

.cn-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cn-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.cn-submit-btn:hover::before {
  left: 100%;
}

.cn-btn-text {
  position: relative;
  z-index: 1;
}

.cn-btn-icon {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.cn-submit-btn:hover .cn-btn-icon {
  transform: translateX(4px);
}

/* Success Message */
.dcr-success,
.cn-success {
  display: none;
  padding: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(14, 165, 166, 0.1));
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  color: var(--secondary-color);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.dcr-success.show,
.cn-success.show {
  display: block;
  animation: slideDown 0.3s ease;
}

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

/* ============================================
   SEO CONTENT SECTION - Unique Design with Numbered Blocks
   ============================================ */

.tr-seo-content {
  background: linear-gradient(180deg, var(--white) 0%, var(--light-bg) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.tr-seo-content::before {
  content: '';
  position: absolute;
  top: 0;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 166, 0.03) 0%, transparent 70%);
  border-radius: 50%;
}

/* Decorative Line */
.tr-seo-decorative-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 0 auto 40px;
  border-radius: 2px;
}

/* Header with Icon */
.tr-seo-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.tr-seo-title-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.1), rgba(16, 185, 129, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tr-seo-title-icon img {
  filter: brightness(0) saturate(100%) invert(54%) sepia(88%) saturate(1053%) hue-rotate(136deg) brightness(94%) contrast(87%);
}

.tr-seo-main-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark-color);
  line-height: 1.2;
  text-align: center;
  max-width: 800px;
}

/* Intro Block */
.tr-seo-intro-block {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 60px;
  position: relative;
  border-left: 4px solid var(--primary-color);
}

.tr-seo-intro-block::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(14, 165, 166, 0.1);
  line-height: 1;
}

.tr-seo-intro-text {
  font-size: 18px;
  color: var(--dark-color);
  line-height: 1.8;
  margin: 0;
  position: relative;
  z-index: 1;
}

.tr-seo-intro-text strong {
  color: var(--primary-color);
  font-weight: 700;
}

/* Content Blocks Container */
.tr-seo-content-blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual SEO Block */
.tr-seo-block {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid transparent;
}

.tr-seo-block:hover {
  box-shadow: 0 6px 24px rgba(14, 165, 166, 0.12);
  border-color: rgba(14, 165, 166, 0.2);
  transform: translateY(-2px);
}

/* Alternate Block (Light Background) */
.tr-seo-block-alt {
  background: linear-gradient(135deg, rgba(14, 165, 166, 0.02), rgba(16, 185, 129, 0.02));
}

/* Block Header */
.tr-seo-block-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

/* Number Badge */
.tr-seo-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(14, 165, 166, 0.3);
  position: relative;
}

.tr-seo-number::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.4;
}

/* Subtitle */
.tr-seo-subtitle {
  flex: 1;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1.3;
  margin: 0;
}

/* Block Content */
.tr-seo-block-content {
  padding-left: 68px;
  position: relative;
}

.tr-seo-block-content::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(14, 165, 166, 0.3), transparent);
}

.tr-seo-block-content p {
  font-size: 16px;
  color: var(--gray-text);
  line-height: 1.8;
  margin: 0;
}

.tr-seo-block-content strong {
  color: var(--dark-color);
  font-weight: 700;
  background: linear-gradient(120deg, rgba(14, 165, 166, 0.1) 0%, transparent 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

/* ============================================
   FIXED CALL BUTTON
   ============================================ */

.tr-fixed-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 25px rgba(14, 165, 166, 0.4);
  z-index: 9999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.tr-fixed-call img {
  filter: brightness(0) invert(1);
}

.tr-fixed-call:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(14, 165, 166, 0.5);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 5px 25px rgba(14, 165, 166, 0.4);
  }
  50% {
    box-shadow: 0 5px 35px rgba(14, 165, 166, 0.6);
  }
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
  /* Services - Bento Grid Tablet */
  .tr-services-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tr-service-large {
    grid-column: span 2;
    grid-row: span 1;
    padding: 40px;
  }

  .tr-service-wide {
    grid-column: span 2;
  }

  .tr-service-tall {
    grid-row: span 1;
  }

  /* Why Us - Split Layout Tablet */
  .tr-why-layout {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .tr-why-featured {
    padding: 40px 32px;
  }

  .tr-why-grid-modern {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Geography - Zonal Layout Tablet */
  .tr-zones-wrapper {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tr-geography-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .tr-geography-cta {
    padding: 36px 40px;
  }

  /* Work Process - Grid Cards Tablet */
  .tr-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .tr-process-cta {
    padding: 36px 40px;
  }

  /* Blog Grid - 2 columns on tablet */
  .tr-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Pricing Section - Tablet */
  .tr-pricing-highlight {
    padding: 28px 32px;
  }

  .tr-pricing-highlight-icon {
    width: 56px;
    height: 56px;
  }

  .tr-pricing-highlight-icon img {
    width: 30px;
    height: 30px;
  }

  .tr-pricing-highlight-content {
    margin: 0 24px;
  }

  .tr-pricing-highlight-content h3 {
    font-size: 21px;
  }

  .tr-pricing-highlight-content p {
    font-size: 14px;
  }

  .tr-price-free {
    font-size: 18px;
    padding: 12px 28px;
  }

  .tr-pricing-category {
    padding: 28px 24px;
  }

  .tr-pricing-category h3 {
    font-size: 20px;
  }

  .tr-pricing-row {
    padding: 20px 24px;
  }

  .tr-pricing-row-info h4 {
    font-size: 17px;
  }

  .tr-pricing-row-price {
    font-size: 24px;
  }

  .tr-pricing-note {
    padding: 28px 24px;
  }

  .tr-pricing-cta {
    padding: 40px 28px;
  }

  .tr-pricing-cta h3 {
    font-size: 26px;
  }

  .tr-pricing-cta-btn {
    padding: 16px 36px;
    font-size: 16px;
  }

  /* About Section - Tablet */
  .tr-about-modern-layout {
    gap: 36px;
  }

  .tr-about-image-container {
    min-height: 450px;
  }

  .tr-about-stats-overlay {
    padding: 20px 24px;
  }

  .tr-about-stat-num {
    font-size: 32px;
  }

  .tr-about-stat-label {
    font-size: 12px;
  }

  .tr-about-content-modern .tr-section-title {
    font-size: 32px;
  }

  .tr-about-text {
    font-size: 15px;
  }

  .tr-about-features-grid {
    gap: 16px;
  }

  .tr-about-feature-card {
    padding: 20px 18px;
  }

  .tr-about-feature-icon {
    width: 52px;
    height: 52px;
  }

  .tr-about-feature-content h4 {
    font-size: 16px;
  }

  /* Reviews Section - Tablet */
  .tr-reviews-modern-grid {
    gap: 24px;
    margin-bottom: 40px;
  }

  .tr-review-card-modern {
    padding: 28px 24px;
  }

  .tr-review-quote-icon {
    width: 44px;
    height: 44px;
    top: 20px;
    right: 20px;
  }

  .tr-review-quote-icon svg {
    width: 28px;
    height: 28px;
  }

  .tr-review-stars {
    font-size: 18px;
  }

  .tr-review-avatar {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .tr-review-featured {
    transform: scale(1.02);
  }

  .tr-review-featured:hover {
    transform: scale(1.04) translateY(-6px);
  }

  .tr-reviews-cta-modern {
    padding: 36px 40px;
  }

  .tr-reviews-cta-content h3 {
    font-size: 22px;
  }

  .tr-reviews-cta-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Blog Section - Tablet */
  .tr-blog-modern-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
  }

  .tr-blog-image-wrapper {
    height: 200px;
  }

  .tr-blog-card-content {
    padding: 24px 20px;
  }

  .tr-blog-card-title {
    font-size: 18px;
    min-height: 48px;
  }

  .tr-blog-card-excerpt {
    min-height: 56px;
  }

  .tr-blog-cta-modern {
    padding: 36px 40px;
  }

  .tr-blog-cta-icon {
    width: 56px;
    height: 56px;
  }

  .tr-blog-cta-text h3 {
    font-size: 22px;
  }

  .tr-blog-cta-button {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* FAQ Section - Tablet */
  .tr-faq-modern-grid {
    gap: 20px;
  }

  .tr-faq-item-modern {
    padding: 24px 20px;
  }

  .tr-faq-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
    left: 18px;
  }

  .tr-faq-question-text {
    font-size: 16px;
  }

  .tr-faq-toggle {
    width: 36px;
    height: 36px;
  }

  .tr-faq-answer-modern p {
    font-size: 14px;
  }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
  /* Container */
  .tr-container,
  .tr-container-narrow {
    padding: 0 16px;
  }

  /* Section Spacing */
  section {
    padding: 60px 0;
  }

  /* Section Header */
  .tr-section-header {
    margin-bottom: 40px;
  }

  .tr-section-title {
    font-size: 32px;
  }

  .tr-section-subtitle {
    font-size: 16px;
  }

  /* Header */
  .tr-header-topbar {
    display: none;
  }

  .tr-header-main {
    padding: 5px 0;
  }

  .tr-logo-desktop {
    display: block;
    max-width: 180px;
    height: auto;
  }

  .tr-logo-mobile {
    display: none;
  }

  .tr-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
  }

  .tr-nav {
    position: fixed;
    top: 55px;
    left: -100%;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    max-height: calc(100vh - 116px);
    overflow-y: auto;
  }

  .tr-nav.active {
    left: 0;
  }

  .tr-nav-link {
    width: 100%;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    justify-content: flex-start;
  }

  .tr-nav-link span::after {
    display: none;
  }

  .tr-nav-link-blog {
    margin-top: 8px;
    justify-content: center;
  }

  .tr-nav-cta {
    margin-top: 16px;
    justify-content: center;
    width: 100%;
  }

  /* Hero */
  .tr-hero {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .tr-hero-circle {
    display: none;
  }

  .tr-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tr-hero-left {
    gap: 16px;
  }

  .tr-hero-badge-pulse {
    font-size: 10px;
    padding: 6px 14px;
  }

  .tr-pulse-dot {
    width: 6px;
    height: 6px;
  }

  .tr-hero-title {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: baseline;
  }

  .tr-hero-title-top {
    font-size: 16px;
    flex-basis: 100%;
  }

  .tr-hero-title-main,
  .tr-hero-title-location {
    font-size: 32px;
    letter-spacing: -1px;
  }

  .tr-hero-highlight {
    padding: 16px;
    gap: 12px;
  }

  .tr-hero-highlight-icon {
    width: 36px;
    height: 36px;
  }

  .tr-hero-tagline {
    font-size: 13px;
    line-height: 1.5;
  }

  .tr-hero-tagline strong {
    font-size: 15px;
  }

  .tr-hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .tr-hero-cta-primary {
    padding: 16px 20px;
    justify-content: center;
  }

  .tr-cta-label {
    font-size: 11px;
  }

  .tr-cta-value {
    font-size: 16px;
  }

  .tr-hero-cta-secondary {
    padding: 14px 20px;
    justify-content: center;
    font-size: 14px;
  }

  .tr-hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .tr-hero-trust-item {
    padding: 12px;
    gap: 10px;
  }

  .tr-trust-icon {
    width: 36px;
    height: 36px;
  }

  .tr-trust-text strong {
    font-size: 13px;
  }

  .tr-trust-text span {
    font-size: 11px;
  }

  /* Emergency Card */
  .tr-emergency-card {
    border-radius: 16px;
    padding: 20px;
  }

  .tr-emergency-header {
    padding: 0;
    margin-bottom: 16px;
  }

  .tr-emergency-badge {
    font-size: 11px;
    padding: 6px 12px;
  }

  .tr-emergency-content {
    padding: 0;
  }

  .tr-emergency-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .tr-emergency-text {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .tr-hero .tr-emergency-contacts {
    gap: 10px;
    margin-bottom: 16px;
  }

  .tr-hero .tr-emergency-phone,
  .tr-hero .tr-emergency-email {
    padding: 12px;
    gap: 12px;
  }

  .tr-hero .tr-emergency-phone-icon,
  .tr-hero .tr-emergency-email-icon {
    width: 36px;
    height: 36px;
  }

  .tr-hero .tr-emergency-label {
    font-size: 10px;
  }

  .tr-hero .tr-emergency-value {
    font-size: 13px;
  }

  .tr-emergency-stats {
    padding: 14px;
    gap: 12px;
  }

  .tr-stat-number {
    font-size: 18px;
  }

  .tr-stat-label {
    font-size: 9px;
  }

  .tr-stat-divider {
    height: 30px;
  }

  .tr-emergency-hours {
    font-size: 10px;
    padding: 8px 12px;
    gap: 6px;
  }

  .tr-hours-icon {
    width: 14px;
    height: 14px;
  }

  .tr-hero-float-badge {
    display: none;
  }

  /* Services - Bento Grid Mobile */
  .tr-services-bento {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .tr-service-item {
    padding: 24px;
    border-radius: 16px;
  }

  .tr-service-large,
  .tr-service-wide,
  .tr-service-tall {
    grid-column: span 1;
    grid-row: span 1;
    padding: 28px;
  }

  .tr-service-large .tr-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
  }

  .tr-service-large .tr-service-title {
    font-size: 22px;
  }

  .tr-service-large .tr-service-desc {
    font-size: 15px;
  }

  .tr-service-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
    top: 16px;
    right: 16px;
  }

  .tr-service-badge-featured {
    font-size: 11px;
    padding: 5px 14px;
  }

  .tr-service-title {
    font-size: 18px;
  }

  .tr-service-desc {
    font-size: 14px;
  }

  .tr-service-features li {
    font-size: 13px;
  }

  .tr-services-cta {
    padding: 36px 24px;
    border-radius: 20px;
  }

  .tr-services-cta h3 {
    font-size: 22px;
  }

  .tr-services-cta p {
    font-size: 15px;
  }

  .tr-services-cta-btn {
    padding: 14px 32px;
    font-size: 15px;
  }

  /* Why Us - Split Layout Mobile */
  .tr-why-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tr-why-featured {
    padding: 36px 28px;
    border-radius: 24px;
  }

  .tr-why-featured-number {
    top: 24px;
    right: 24px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .tr-why-featured-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    margin-bottom: 24px;
  }

  .tr-why-featured-title {
    font-size: 26px;
  }

  .tr-why-featured-desc {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .tr-why-featured-list li {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .tr-why-grid-modern {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tr-why-item {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .tr-why-number {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .tr-why-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .tr-why-item-title {
    font-size: 18px;
  }

  .tr-why-item-text {
    font-size: 14px;
  }

  /* Geography - Zonal Layout Mobile */
  .tr-zones-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .tr-zone-group {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .tr-zone-header {
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .tr-zone-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .tr-zone-title {
    font-size: 19px;
  }

  .tr-zone-count {
    font-size: 12px;
    padding: 5px 12px;
  }

  .tr-district-chip {
    padding: 10px 14px;
    border-radius: 10px;
  }

  .tr-district-num {
    min-width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .tr-district-name {
    font-size: 14px;
  }

  .tr-geography-stats {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .tr-geo-stat {
    padding: 28px 20px;
    border-radius: 18px;
  }

  .tr-geo-stat-number {
    font-size: 40px;
  }

  .tr-geo-stat-label {
    font-size: 13px;
  }

  .tr-geography-cta {
    flex-direction: column;
    gap: 20px;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
  }

  .tr-geo-cta-content h3 {
    font-size: 20px;
  }

  .tr-geo-cta-content p {
    font-size: 14px;
  }

  .tr-geo-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Work Process - Grid Cards Mobile */
  .tr-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .tr-step-card {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .tr-step-badge {
    gap: 10px;
    margin-bottom: 16px;
  }

  .tr-step-num {
    min-width: 44px;
    height: 44px;
    font-size: 18px;
    border-radius: 12px;
  }

  .tr-step-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .tr-step-title {
    font-size: 18px;
  }

  .tr-step-text {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .tr-step-time {
    padding: 7px 14px;
    font-size: 12px;
  }

  .tr-process-cta {
    flex-direction: column;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
  }

  .tr-process-cta-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
  }

  .tr-process-cta-content h3 {
    font-size: 20px;
  }

  .tr-process-cta-content p {
    font-size: 14px;
  }

  .tr-process-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Portfolio Slider */
  .tr-portfolio-slide {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .tr-portfolio-image {
    min-height: 300px;
  }

  .tr-portfolio-content {
    padding: 30px 24px;
  }

  .tr-portfolio-title {
    font-size: 22px;
  }

  .tr-portfolio-meta {
    gap: 12px;
  }

  .tr-portfolio-slider {
    margin-bottom: 40px;
  }

  .tr-portfolio-prev,
  .tr-portfolio-next {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .tr-portfolio-prev {
    left: 5px;
  }

  .tr-portfolio-next {
    right: 5px;
  }

  .tr-portfolio-prev svg,
  .tr-portfolio-next svg {
    width: 20px;
    height: 20px;
  }

  .tr-portfolio-dots {
    margin-top: 20px;
  }

  .tr-portfolio-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 30px 20px;
  }

  .tr-portfolio-stat-number {
    font-size: 36px;
  }

  .tr-portfolio-stat-label {
    font-size: 13px;
  }

  /* Pricing Section - Mobile */
  .tr-pricing-highlight {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
    margin-bottom: 36px;
  }

  .tr-pricing-highlight-icon {
    width: 52px;
    height: 52px;
  }

  .tr-pricing-highlight-icon img {
    width: 28px;
    height: 28px;
  }

  .tr-pricing-highlight-content {
    margin: 0;
  }

  .tr-pricing-highlight-content h3 {
    font-size: 19px;
    margin-bottom: 10px;
  }

  .tr-pricing-highlight-content p {
    font-size: 14px;
  }

  .tr-price-free {
    font-size: 17px;
    padding: 12px 28px;
  }

  .tr-pricing-table {
    gap: 32px;
    margin-bottom: 36px;
  }

  .tr-pricing-category {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .tr-pricing-category-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
  }

  .tr-pricing-category-header img {
    width: 24px;
    height: 24px;
  }

  .tr-pricing-category h3 {
    font-size: 19px;
  }

  .tr-pricing-rows {
    gap: 14px;
  }

  .tr-pricing-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 18px;
    border-radius: 14px;
  }

  .tr-pricing-row:hover {
    transform: translateX(0) translateY(-2px);
  }

  .tr-pricing-row-info h4 {
    font-size: 16px;
  }

  .tr-pricing-row-info p {
    font-size: 13px;
  }

  .tr-pricing-row-price {
    font-size: 22px;
    text-align: left;
  }

  .tr-pricing-featured {
    padding: 24px 20px;
  }

  .tr-pricing-featured:hover {
    transform: translateX(0) scale(1);
  }

  .tr-pricing-tag {
    top: -10px;
    right: 18px;
    padding: 5px 14px;
    font-size: 11px;
  }

  .tr-pricing-note {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
    border-radius: 12px;
    margin-bottom: 32px;
  }

  .tr-pricing-note-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }

  .tr-pricing-note-icon img {
    width: 22px;
    height: 22px;
  }

  .tr-pricing-note-content h4 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .tr-pricing-note-content p {
    font-size: 14px;
  }

  .tr-pricing-cta {
    padding: 36px 24px;
    border-radius: 18px;
  }

  .tr-pricing-cta h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .tr-pricing-cta p {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .tr-pricing-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
    gap: 10px;
  }

  .tr-pricing-cta-btn img {
    width: 18px;
    height: 18px;
  }

  /* About Section - Mobile */
  .tr-about-modern-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tr-about-image-container {
    min-height: 380px;
    border-radius: 20px;
  }

  .tr-about-image-overlay {
    height: 50%;
  }

  .tr-about-stats-overlay {
    padding: 18px 20px;
  }

  .tr-about-stat-box {
    padding: 0 8px;
  }

  .tr-about-stat-num {
    font-size: 28px;
  }

  .tr-about-stat-label {
    font-size: 11px;
  }

  .tr-about-content-modern {
    padding: 0;
  }

  .tr-about-content-modern .tr-section-title {
    font-size: 28px;
    margin-bottom: 24px;
  }

  .tr-about-text-block {
    margin-bottom: 32px;
  }

  .tr-about-text {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .tr-about-features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tr-about-feature-card {
    padding: 20px 18px;
    border-radius: 14px;
  }

  .tr-about-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .tr-about-feature-icon img {
    width: 22px;
    height: 22px;
  }

  .tr-about-feature-content h4 {
    font-size: 16px;
  }

  .tr-about-feature-content p {
    font-size: 13px;
  }

  .tr-feature-badge {
    top: -8px;
    right: 16px;
    padding: 4px 12px;
    font-size: 10px;
  }

  .tr-about-feature-highlight {
    border-width: 2px;
  }

  /* Reviews Section - Mobile */
  .tr-reviews-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 36px;
  }

  .tr-review-card-modern {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .tr-review-quote-icon {
    width: 40px;
    height: 40px;
    top: 18px;
    right: 18px;
    border-radius: 10px;
  }

  .tr-review-quote-icon svg {
    width: 24px;
    height: 24px;
  }

  .tr-review-rating-top {
    margin-top: 6px;
  }

  .tr-review-stars {
    font-size: 17px;
    letter-spacing: 2px;
  }

  .tr-review-comment-modern {
    font-size: 14px;
  }

  .tr-review-author {
    padding-top: 18px;
  }

  .tr-review-avatar {
    width: 46px;
    height: 46px;
    font-size: 17px;
  }

  .tr-review-author-name {
    font-size: 15px;
  }

  .tr-review-meta-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .tr-review-service-tag {
    font-size: 12px;
  }

  .tr-review-date-text {
    font-size: 12px;
  }

  .tr-review-verified {
    font-size: 12px;
  }

  .tr-review-featured {
    transform: scale(1);
    border-width: 2px;
  }

  .tr-review-featured:hover {
    transform: translateY(-6px);
  }

  .tr-reviews-cta-modern {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 18px;
  }

  .tr-reviews-cta-content h3 {
    font-size: 20px;
  }

  .tr-reviews-cta-content p {
    font-size: 14px;
  }

  .tr-reviews-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Blog Section - Mobile */
  .tr-blog-modern-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }

  .tr-blog-card-modern {
    border-radius: 18px;
  }

  .tr-blog-image-wrapper {
    height: 200px;
  }

  .tr-blog-category-badge {
    top: 14px;
    left: 14px;
    padding: 6px 14px;
    font-size: 11px;
  }

  .tr-blog-date-badge {
    bottom: 14px;
    right: 14px;
    padding: 5px 10px;
    font-size: 11px;
  }

  .tr-blog-date-badge img {
    width: 12px;
    height: 12px;
  }

  .tr-blog-card-content {
    padding: 24px 20px;
  }

  .tr-blog-card-title {
    font-size: 17px;
    min-height: auto;
  }

  .tr-blog-card-excerpt {
    font-size: 14px;
    min-height: auto;
  }

  .tr-blog-read-more {
    font-size: 13px;
  }

  .tr-blog-read-more img {
    width: 16px;
    height: 16px;
  }

  .tr-blog-cta-modern {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 32px 24px;
    border-radius: 18px;
  }

  .tr-blog-cta-icon {
    width: 52px;
    height: 52px;
  }

  .tr-blog-cta-icon img {
    width: 28px;
    height: 28px;
  }

  .tr-blog-cta-text h3 {
    font-size: 20px;
  }

  .tr-blog-cta-text p {
    font-size: 14px;
  }

  .tr-blog-cta-button {
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 15px;
  }

  /* FAQ Section - Mobile */
  .tr-faq-modern-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .tr-faq-item-modern {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .tr-faq-number {
    width: 38px;
    height: 38px;
    font-size: 14px;
    top: -10px;
    left: 16px;
  }

  .tr-faq-question-text {
    font-size: 15px;
  }

  .tr-faq-toggle {
    width: 34px;
    height: 34px;
  }

  .tr-faq-icon-plus svg,
  .tr-faq-icon-minus svg {
    width: 18px;
    height: 18px;
  }

  .tr-faq-answer-modern p {
    font-size: 14px;
  }

  /* Contact */
  .tr-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tr-contact-form-wrapper {
    padding: 28px;
  }

  /* Contact Modern Grid */
  .tr-contact-modern-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .tr-contact-emergency {
    padding: 20px;
    gap: 16px;
  }

  .tr-emergency-icon {
    width: 48px;
    height: 48px;
  }

  .tr-emergency-icon svg {
    width: 24px;
    height: 24px;
  }

  .tr-contact-emergency .tr-emergency-phone {
    font-size: 22px;
  }

  .tr-contact-trust-badges {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .tr-trust-badge-modern {
    padding: 12px 8px;
  }

  .tr-trust-badge-modern span {
    font-size: 11px;
  }

  .cn-form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* SEO Content */
  .tr-seo-content {
    padding: 60px 0 80px;
  }

  .tr-seo-header-wrapper {
    flex-direction: column;
    gap: 16px;
  }

  .tr-seo-main-title {
    font-size: 32px;
  }

  .tr-seo-intro-block {
    padding: 24px 28px;
  }

  .tr-seo-intro-block::before {
    font-size: 60px;
    left: 15px;
  }

  .tr-seo-intro-text {
    font-size: 16px;
  }

  .tr-seo-block {
    padding: 24px 20px;
  }

  .tr-seo-block-header {
    gap: 16px;
  }

  .tr-seo-number {
    width: 44px;
    height: 44px;
    font-size: 16px;
    border-radius: 10px;
  }

  .tr-seo-number::after {
    width: 16px;
    height: 16px;
    bottom: -6px;
    right: -6px;
  }

  .tr-seo-subtitle {
    font-size: 19px;
  }

  .tr-seo-block-content {
    padding-left: 60px;
  }

  .tr-seo-block-content::before {
    left: 21px;
  }

  .tr-seo-block-content p {
    font-size: 15px;
  }

  /* Fixed Call Button */
  .tr-fixed-call {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }
}

@media (max-width: 480px) {
  .tr-hero {
    padding: 90px 0 40px;
  }

  .tr-hero-grid {
    gap: 24px;
  }

  .tr-hero-left {
    gap: 14px;
  }

  .tr-hero-title-main,
  .tr-hero-title-location {
    font-size: 28px;
  }

  .tr-hero-highlight {
    padding: 14px;
  }

  .tr-hero-tagline {
    font-size: 12px;
  }

  .tr-hero-tagline strong {
    font-size: 14px;
  }

  .tr-hero-cta-primary {
    padding: 14px 18px;
  }

  .tr-cta-value {
    font-size: 15px;
  }

  .tr-hero-cta-secondary {
    padding: 12px 18px;
    font-size: 13px;
  }

  .tr-emergency-card {
    padding: 16px;
  }

  .tr-emergency-title {
    font-size: 16px;
  }

  .tr-emergency-text {
    font-size: 12px;
  }

  .tr-hero .tr-emergency-phone,
  .tr-hero .tr-emergency-email {
    padding: 10px;
  }

  .tr-hero .tr-emergency-value {
    font-size: 12px;
  }

  .tr-emergency-stats {
    padding: 12px;
  }

  .tr-stat-number {
    font-size: 16px;
  }

  .tr-stat-label {
    font-size: 8px;
  }

  .tr-section-title {
    font-size: 28px;
  }

  .tr-portfolio-prev,
  .tr-portfolio-next {
    width: 36px;
    height: 36px;
  }

  .tr-portfolio-prev {
    left: 3px;
  }

  .tr-portfolio-next {
    right: 3px;
  }

  .tr-portfolio-prev svg,
  .tr-portfolio-next svg {
    width: 18px;
    height: 18px;
  }

  .tr-districts-grid {
    grid-template-columns: 1fr;
  }

  .tr-pricing-cta-btn {
    padding: 12px 20px;
    font-size: 13px;
    gap: 8px;
  }

  .tr-pricing-cta-btn img {
    width: 16px;
    height: 16px;
  }

  /* Contact Modern Grid */
  .tr-contact-emergency .tr-emergency-phone {
    font-size: 20px;
  }

  .tr-contact-emergency .tr-emergency-label {
    font-size: 12px;
  }

  .tr-contact-trust-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .tr-trust-badge-modern {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 16px;
  }

  .tr-trust-badge-modern span {
    font-size: 13px;
    text-align: left;
  }

  .dcr-input,
  .cn-input,
  .dcr-textarea,
  .cn-textarea {
    font-size: 16px;
  }

  /* SEO Content */
  .tr-seo-main-title {
    font-size: 28px;
  }

  .tr-seo-intro-block {
    padding: 20px 24px;
  }

  .tr-seo-intro-block::before {
    font-size: 50px;
  }

  .tr-seo-block {
    padding: 20px 16px;
  }

  .tr-seo-block-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .tr-seo-number {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .tr-seo-subtitle {
    font-size: 18px;
  }

  .tr-seo-block-content {
    padding-left: 0;
    margin-top: 16px;
  }

  .tr-seo-block-content::before {
    display: none;
  }
}

@media (max-width: 375px) {
  .tr-hero {
    padding: 80px 0 30px;
  }

  .tr-hero-grid {
    gap: 20px;
  }

  .tr-hero-left {
    gap: 12px;
  }

  .tr-hero-badge-pulse {
    font-size: 9px;
    padding: 5px 12px;
  }

  .tr-hero-title-top {
    font-size: 14px;
  }

  .tr-hero-title-main,
  .tr-hero-title-location {
    font-size: 26px;
  }

  .tr-hero-highlight {
    padding: 12px;
  }

  .tr-hero-highlight-icon {
    width: 32px;
    height: 32px;
  }

  .tr-hero-tagline {
    font-size: 11px;
  }

  .tr-hero-tagline strong {
    font-size: 13px;
  }

  .tr-hero-cta-primary {
    padding: 12px 16px;
  }

  .tr-cta-icon {
    width: 36px;
    height: 36px;
  }

  .tr-cta-label {
    font-size: 10px;
  }

  .tr-cta-value {
    font-size: 14px;
  }

  .tr-hero-cta-secondary {
    padding: 11px 16px;
    font-size: 12px;
  }

  .tr-hero-trust-item {
    padding: 10px;
  }

  .tr-trust-icon {
    width: 32px;
    height: 32px;
  }

  .tr-trust-text strong {
    font-size: 12px;
  }

  .tr-trust-text span {
    font-size: 10px;
  }

  .tr-emergency-card {
    padding: 14px;
  }

  .tr-emergency-badge {
    font-size: 10px;
    padding: 5px 10px;
  }

  .tr-emergency-title {
    font-size: 15px;
  }

  .tr-emergency-text {
    font-size: 11px;
  }

  .tr-hero .tr-emergency-phone,
  .tr-hero .tr-emergency-email {
    padding: 9px;
    gap: 10px;
  }

  .tr-hero .tr-emergency-phone-icon,
  .tr-hero .tr-emergency-email-icon {
    width: 32px;
    height: 32px;
  }

  .tr-hero .tr-emergency-label {
    font-size: 9px;
  }

  .tr-hero .tr-emergency-value {
    font-size: 11px;
  }

  .tr-emergency-stats {
    padding: 10px;
    gap: 8px;
  }

  .tr-stat-number {
    font-size: 14px;
  }

  .tr-stat-label {
    font-size: 7px;
  }

  .tr-stat-divider {
    height: 25px;
  }

  .tr-emergency-hours {
    font-size: 9px;
    padding: 7px 10px;
  }

  .tr-portfolio-prev,
  .tr-portfolio-next {
    width: 34px;
    height: 34px;
  }

  .tr-portfolio-prev {
    left: 2px;
  }

  .tr-portfolio-next {
    right: 2px;
  }

  .tr-portfolio-prev svg,
  .tr-portfolio-next svg {
    width: 16px;
    height: 16px;
  }

  .tr-pricing-cta-btn {
    padding: 11px 18px;
    font-size: 12px;
    gap: 8px;
  }

  .tr-pricing-cta-btn img {
    width: 15px;
    height: 15px;
  }

  .tr-contact-emergency {
    flex-direction: column;
    text-align: center;
    padding: 18px;
  }

  .tr-contact-emergency .tr-emergency-phone {
    font-size: 18px;
  }

  .tr-contact-card-modern {
    padding: 16px;
  }

  .tr-contact-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .dcr-btn,
  .cn-submit-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  /* SEO Content */
  .tr-seo-content {
    padding: 50px 0 60px;
  }

  .tr-seo-title-icon {
    width: 48px;
    height: 48px;
  }

  .tr-seo-title-icon img {
    width: 28px;
    height: 28px;
  }

  .tr-seo-main-title {
    font-size: 24px;
  }

  .tr-seo-intro-block {
    padding: 18px 20px;
    border-left-width: 3px;
  }

  .tr-seo-intro-block::before {
    font-size: 40px;
    top: -5px;
    left: 12px;
  }

  .tr-seo-intro-text {
    font-size: 15px;
  }

  .tr-seo-content-blocks {
    gap: 16px;
  }

  .tr-seo-block {
    padding: 18px 14px;
    border-radius: 12px;
  }

  .tr-seo-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
    border-radius: 8px;
  }

  .tr-seo-number::after {
    width: 14px;
    height: 14px;
    bottom: -5px;
    right: -5px;
  }

  .tr-seo-subtitle {
    font-size: 17px;
  }

  .tr-seo-block-content p {
    font-size: 14px;
  }

  .tr-seo-block-content strong {
    padding: 1px 4px;
  }
}

/* Mobile menu toggle animation */
.tr-mobile-toggle.active {
  background: var(--primary-color);
  border-radius: 8px;
}

.tr-mobile-toggle.active img {
  filter: brightness(0) invert(1);
}
