/* ================================
   TuerMeister - Main Stylesheet
   Theme: Wood & Craft (Brown + Beige)
   Style: Modern with Photos
   ================================ */

/* === CSS Variables === */
:root {
  /* Primary Colors */
  --primary-brown: #5D4037;
  --medium-brown: #795548;
  --light-brown: #A1887F;
  --beige-light: #F5F1ED;
  --beige-medium: #E8DFD8;
  --sand: #D7CCC8;

  /* Accent Colors */
  --accent-green: #7CB342;
  --accent-wood: #8D6E63;
  --accent-gold: #C9A86A;

  /* Neutral Colors */
  --white: #FFFFFF;
  --black: #1A1410;
  --gray-dark: #4A4238;
  --gray-medium: #8B7E74;
  --gray-light: #C4BCB5;

  /* Background Colors */
  --bg-primary: #FFFFFF;
  --bg-secondary: #F5F1ED;
  --bg-tertiary: #E8DFD8;

  /* Text Colors */
  --text-primary: #2C2416;
  --text-secondary: #5A4E42;
  --text-light: #8B7E74;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(93, 64, 55, 0.08);
  --shadow-md: 0 4px 16px rgba(93, 64, 55, 0.12);
  --shadow-lg: 0 8px 32px rgba(93, 64, 55, 0.16);
  --shadow-xl: 0 16px 48px rgba(93, 64, 55, 0.2);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Container */
  --container-max: 1200px;
  --container-padding: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  max-width: 1920px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style: none;
}

/* === Container === */
.tm-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  width: 100%;
}

/* === Utility Classes === */
.tm-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-brown);
  background: var(--beige-medium);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
}

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

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

/* === Buttons === */
.tm-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
}

.tm-btn-primary {
  background: var(--primary-brown);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.tm-btn-primary:hover {
  background: var(--medium-brown);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.tm-btn-outline {
  background: transparent;
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
}

.tm-btn-outline:hover {
  background: var(--primary-brown);
  color: var(--white);
}

.tm-btn-outline:hover img {
  filter: brightness(0) invert(1);
}

.tm-btn img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: filter 0.3s ease;
}

/* ================================
   HEADER SECTION
   ================================ */
.tm-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(93, 64, 55, 0.06);
  padding: 15px 0;
}

.tm-header-wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.tm-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.tm-logo-icon {
  width: 48px;
  height: 48px;
}

.tm-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.tm-logo-brand {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-brown);
  line-height: 1.1;
}

.tm-logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1;
}

/* Navigation */
.tm-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.tm-nav-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.tm-nav-link:hover {
  color: var(--primary-brown);
  background: var(--beige-light);
}

/* Header Actions */
.tm-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tm-blog-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--beige-light);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.tm-blog-btn:hover {
  background: var(--primary-brown);
  transform: scale(1.05);
}

.tm-blog-btn img {
  width: 20px;
  height: 20px;
}

.tm-blog-btn:hover img {
  filter: brightness(0) invert(1);
}

.tm-phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-brown);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(93, 64, 55, 0.2);
  transition: all 0.3s ease;
}

.tm-phone-btn:hover {
  background: var(--medium-brown);
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.3);
  transform: translateY(-1px);
}

.tm-phone-btn img {
  width: 18px;
  height: 18px;
}

/* Mobile Menu */
.tm-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.tm-mobile-menu span {
  width: 24px;
  height: 2px;
  background: var(--primary-brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.tm-mobile-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.tm-mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.tm-mobile-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================================
   HERO SECTION
   ================================ */

/* Hero Stage - Main Container */
.hero-stage {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--beige-light) 0%, var(--white) 50%, var(--beige-medium) 100%);
  padding: 120px 0 80px;
  overflow: hidden;
}

/* Decorative Background Elements */
.hero-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-decor-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(93, 64, 55, 0.03), rgba(161, 136, 127, 0.05));
  animation: float 20s ease-in-out infinite;
}

.hero-decor-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.hero-decor-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: 10%;
  animation-delay: 2s;
}

.hero-decor-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(93, 64, 55, 0.08), transparent);
  height: 2px;
}

.hero-decor-line-1 {
  width: 60%;
  top: 20%;
  left: -10%;
  transform: rotate(-15deg);
}

.hero-decor-line-2 {
  width: 50%;
  bottom: 30%;
  right: -5%;
  transform: rotate(20deg);
}

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

/* Hero Frame - Content Grid */
.hero-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Hero Content - Left Side */
.hero-content {
  position: relative;
  z-index: 3;
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Premium Badge */
.hero-badge-float {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--white);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(201, 168, 106, 0.3);
  margin-bottom: 32px;
  animation: pulse 2s ease-in-out infinite;
}

.hero-badge-float img {
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(201, 168, 106, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(201, 168, 106, 0.4);
  }
}

/* Headline */
.hero-headline {
  margin: 0 0 28px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-headline-top {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.hero-headline-main {
  display: block;
  font-size: clamp(3.5rem, 7vw, 4rem);
  font-weight: 900;
  color: var(--primary-brown);
  line-height: 0.95;
  margin-bottom: 12px;
  text-shadow: 2px 4px 8px rgba(93, 64, 55, 0.1);
}

.hero-headline-accent {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

/* Tagline */
.hero-tagline {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-tagline strong {
  color: var(--primary-brown);
  font-weight: 700;
}

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

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.hero-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-btn:hover::before {
  opacity: 1;
}

.hero-btn-primary {
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  color: var(--white);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.3);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(93, 64, 55, 0.4);
}

.hero-btn-secondary {
  background: var(--white);
  color: var(--primary-brown);
  border: 2px solid var(--primary-brown);
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.15);
}

.hero-btn-secondary:hover {
  background: var(--primary-brown);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.3);
}

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

.hero-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-text {
  font-weight: 700;
}

.hero-btn-label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.8;
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 32px 0 0;
  border-top: 2px solid var(--beige-medium);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.8s ease-out;
  animation-fill-mode: both;
}

.hero-trust-item:nth-child(1) { animation-delay: 0.2s; }
.hero-trust-item:nth-child(2) { animation-delay: 0.4s; }
.hero-trust-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.12);
}

.hero-trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-trust-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-brown);
  line-height: 1;
}

.hero-trust-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Artwork - Right Side */
.hero-artwork {
  position: relative;
  z-index: 2;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-artwork-frame {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(93, 64, 55, 0.25);
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.hero-artwork-frame:hover {
  transform: translateY(-8px) rotateY(2deg);
}

.hero-artwork-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(93, 64, 55, 0.15), transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.hero-artwork-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.hero-artwork-frame:hover .hero-artwork-image {
  transform: scale(1.05);
}

/* Floating Feature Cards */
.hero-feature-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(93, 64, 55, 0.2);
  z-index: 3;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-feature-float-1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.hero-feature-float-2 {
  bottom: 12%;
  left: -30px;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

.hero-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--beige-light), var(--beige-medium));
  border-radius: 12px;
}

.hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-feature-text strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary-brown);
  line-height: 1;
}

.hero-feature-text span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Diagonal Separator */
.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--white);
  clip-path: polygon(0 40%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

/* Hero Section - Responsive Styles */
@media (max-width: 1024px) {
  .hero-stage {
    padding: 100px 0 60px;
  }

  .hero-frame {
    gap: 60px;
  }

  .hero-headline-main {
    font-size: clamp(3rem, 6vw, 5rem);
  }

  .hero-headline-accent {
    font-size: clamp(2rem, 4vw, 3.5rem);
  }

  .hero-feature-float-1 {
    right: -20px;
  }

  .hero-feature-float-2 {
    left: -20px;
  }
}

@media (max-width: 768px) {
  .hero-stage {
    min-height: auto;
    padding: 100px 0 50px;
  }

  .hero-frame {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-badge-float {
    justify-content: center;
  }

  .hero-headline-top {
    font-size: clamp(1.3rem, 4vw, 1.8rem);
  }

  .hero-headline-main {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }

  .hero-headline-accent {
    font-size: clamp(1.8rem, 6vw, 3rem);
  }

  .hero-tagline {
    margin: 0 auto 35px;
  }

  .hero-actions {
    justify-content: center;
    margin-bottom: 40px;
  }

  .hero-btn {
    padding: 16px 28px;
    font-size: 15px;
  }

  .hero-trust {
    justify-content: center;
    gap: 24px;
    padding-top: 28px;
  }

  .hero-trust-item {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-trust-icon {
    width: 42px;
    height: 42px;
  }

  .hero-trust-value {
    font-size: 24px;
  }

  .hero-trust-label {
    font-size: 12px;
  }

  .hero-artwork {
    order: -1;
  }

  .hero-feature-float {
    padding: 14px 18px;
  }

  .hero-feature-float-1 {
    top: 8%;
    right: 10px;
  }

  .hero-feature-float-2 {
    bottom: 8%;
    left: 10px;
  }

  .hero-feature-icon {
    width: 40px;
    height: 40px;
  }

  .hero-feature-text strong {
    font-size: 14px;
  }

  .hero-feature-text span {
    font-size: 11px;
  }

  .hero-decor-circle-1 {
    width: 280px;
    height: 280px;
    top: -60px;
    left: -80px;
  }

  .hero-decor-circle-2 {
    width: 220px;
    height: 220px;
  }

  .hero-diagonal {
    height: 60px;
  }
}

@media (max-width: 480px) {
  .hero-stage {
    padding: 90px 0 40px;
  }

  .hero-badge-float {
    padding: 8px 16px;
    font-size: 11px;
    margin-bottom: 24px;
  }

  .hero-headline-top {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }

  .hero-headline-main {
    font-size: 2.2rem;
    margin-bottom: 10px;
  }

  .hero-headline-accent {
    font-size: 1.6rem;
  }

  .hero-tagline {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
  }

  .hero-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 14px;
  }

  .hero-btn-primary {
    flex-direction: row;
    gap: 10px;
  }

  .hero-trust {
    gap: 20px;
    padding-top: 24px;
  }

  .hero-trust-icon {
    width: 38px;
    height: 38px;
  }

  .hero-trust-value {
    font-size: 22px;
  }

  .hero-artwork-frame {
    border-radius: 20px;
  }

  .hero-feature-float {
    padding: 12px 16px;
    border-radius: 12px;
  }

  .hero-feature-float-1,
  .hero-feature-float-2 {
    position: static;
    margin: 16px auto 0;
    max-width: 200px;
  }

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

  .hero-decor-circle-1 {
    width: 200px;
    height: 200px;
    top: -40px;
    left: -60px;
  }

  .hero-decor-circle-2 {
    width: 160px;
    height: 160px;
    right: 5%;
  }

  .hero-diagonal {
    height: 40px;
  }
}

@media (max-width: 375px) {
  .hero-stage {
    padding: 80px 0 30px;
  }

  .hero-badge-float {
    padding: 7px 14px;
    font-size: 10px;
    gap: 6px;
  }

  .hero-badge-float img {
    width: 14px;
    height: 14px;
  }

  .hero-headline-top {
    font-size: 1.1rem;
  }

  .hero-headline-main {
    font-size: 2rem;
  }

  .hero-headline-accent {
    font-size: 1.5rem;
  }

  .hero-tagline {
    font-size: 14px;
    line-height: 1.6;
  }

  .hero-btn {
    padding: 14px 20px;
    font-size: 13px;
  }

  .hero-trust {
    gap: 16px;
  }

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

  .hero-trust-icon img {
    width: 20px;
    height: 20px;
  }

  .hero-trust-value {
    font-size: 20px;
  }

  .hero-trust-label {
    font-size: 11px;
  }

  .hero-artwork-frame {
    border-radius: 16px;
  }

  .hero-feature-float {
    padding: 10px 14px;
    gap: 10px;
  }

  .hero-feature-icon {
    width: 32px;
    height: 32px;
  }

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

  .hero-feature-text strong {
    font-size: 13px;
  }

  .hero-feature-text span {
    font-size: 10px;
  }

  .hero-decor-circle-1,
  .hero-decor-circle-2 {
    display: none;
  }

  .hero-diagonal {
    height: 30px;
  }
}

/* ================================
   SERVICES SECTION
   ================================ */
.tm-services {
  padding: 100px 0;
  background: var(--bg-primary);
}

.tm-section-head {
  max-width: 800px;
  margin: 0 auto 60px;
}

.tm-section-h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tm-section-text {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Services Grid */
.tm-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.tm-service-card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--beige-medium);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
  overflow: hidden;
}

.tm-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-brown);
  transition: height var(--transition-base);
}

.tm-service-card:hover {
  border-color: var(--primary-brown);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.tm-service-card:hover::before {
  height: 100%;
}

.tm-service-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: var(--beige-medium);
  line-height: 1;
  transition: var(--transition-base);
}

.tm-service-card:hover .tm-service-number {
  color: var(--sand);
}

.tm-service-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--beige-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition-base);
}

.tm-service-card:hover .tm-service-icon-wrap {
  background: var(--primary-brown);
}

.tm-service-icon-wrap img {
  width: 32px;
  height: 32px;
  transition: var(--transition-base);
}

.tm-service-card:hover .tm-service-icon-wrap img {
  filter: brightness(0) invert(1);
}

.tm-service-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.tm-service-description {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.tm-service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tm-service-features li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.tm-service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-weight: 700;
}

/* Featured Service */
.tm-card-featured {
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF 100%);
  border-color: var(--accent-gold);
}

.tm-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
}

/* ================================
   WHY CHOOSE US SECTION
   ================================ */

/* Why Excellence Section - Main Container */
.why-excellence {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg-secondary) 50%, var(--white) 100%);
  overflow: hidden;
}

/* Section Header */
.why-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.why-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(201, 168, 106, 0.3);
}

.why-header-badge img {
  filter: brightness(0) invert(1);
}

.why-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.why-headline-accent {
  color: var(--accent-gold);
  display: block;
}

.why-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Why List - Alternating Layout */
.why-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Why Item - Base Styles */
.why-item {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: center;
  opacity: 0;
  animation: slideInView 0.8s ease-out forwards;
}

.why-item:nth-child(1) { animation-delay: 0.1s; }
.why-item:nth-child(2) { animation-delay: 0.2s; }
.why-item:nth-child(3) { animation-delay: 0.3s; }
.why-item:nth-child(4) { animation-delay: 0.4s; }
.why-item:nth-child(5) { animation-delay: 0.5s; }
.why-item:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInView {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Number Badge */
.why-item-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.why-item:hover .why-item-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(93, 64, 55, 0.35);
}

/* Item Content */
.why-item-content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: var(--white);
  border-radius: 20px;
  border: 2px solid var(--beige-medium);
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-item-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-gold), var(--primary-brown));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.why-item:hover .why-item-content::before {
  transform: scaleY(1);
}

.why-item:hover .why-item-content {
  border-color: var(--primary-brown);
  box-shadow: 0 12px 32px rgba(93, 64, 55, 0.15);
  transform: translateX(8px);
}

/* Icon */
.why-item-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--beige-light), var(--beige-medium));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.why-item:hover .why-item-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  transform: rotate(-10deg);
}

.why-item-icon img {
  transition: filter 0.4s ease;
}

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

/* Text Content */
.why-item-text {
  flex: 1;
}

.why-item-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-item-description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Decorative Element */
.why-item-decoration {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.1), transparent);
  pointer-events: none;
  transition: all 0.6s ease;
  z-index: 0;
}

.why-item-left .why-item-decoration {
  top: -40px;
  left: -50px;
}

.why-item-right .why-item-decoration {
  top: -40px;
  right: -50px;
}

.why-item:hover .why-item-decoration {
  transform: scale(1.3);
  opacity: 0.5;
}

/* Alternating Layout */
.why-item-right {
  direction: rtl;
}

.why-item-right .why-item-content {
  direction: ltr;
}

.why-item-right:hover .why-item-content {
  transform: translateX(-8px);
}

/* Why Excellence - Responsive Styles */
@media (max-width: 768px) {
  .why-excellence {
    padding: 80px 0;
  }

  .why-header {
    margin-bottom: 60px;
  }

  .why-headline {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .why-intro {
    font-size: 16px;
  }

  .why-list {
    gap: 36px;
  }

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

  .why-item-number {
    width: 60px;
    height: 60px;
    font-size: 22px;
    margin: 0 auto;
  }

  .why-item-content {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }

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

  .why-item-icon img {
    width: 40px;
    height: 40px;
  }

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

  .why-item-description {
    font-size: 15px;
  }

  .why-item-right {
    direction: ltr;
  }

  .why-item:hover .why-item-content,
  .why-item-right:hover .why-item-content {
    transform: translateY(-4px);
  }

  .why-item-decoration {
    width: 100px;
    height: 100px;
  }

  .why-item-left .why-item-decoration,
  .why-item-right .why-item-decoration {
    top: -30px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .why-excellence {
    padding: 60px 0;
  }

  .why-header {
    margin-bottom: 50px;
  }

  .why-header-badge {
    padding: 10px 20px;
    font-size: 12px;
    gap: 8px;
  }

  .why-header-badge img {
    width: 16px;
    height: 16px;
  }

  .why-headline {
    font-size: 1.8rem;
  }

  .why-intro {
    font-size: 15px;
  }

  .why-list {
    gap: 28px;
  }

  .why-item-number {
    width: 55px;
    height: 55px;
    font-size: 20px;
  }

  .why-item-content {
    padding: 24px 20px;
  }

  .why-item-icon {
    width: 55px;
    height: 55px;
  }

  .why-item-icon img {
    width: 36px;
    height: 36px;
  }

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

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

  .why-item-decoration {
    display: none;
  }
}

@media (max-width: 375px) {
  .why-excellence {
    padding: 50px 0;
  }

  .why-header {
    margin-bottom: 40px;
  }

  .why-header-badge {
    padding: 8px 16px;
    font-size: 11px;
  }

  .why-headline {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .why-intro {
    font-size: 14px;
  }

  .why-list {
    gap: 24px;
  }

  .why-item-number {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .why-item-content {
    padding: 20px 16px;
  }

  .why-item-icon {
    width: 50px;
    height: 50px;
  }

  .why-item-icon img {
    width: 32px;
    height: 32px;
  }

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

  .why-item-description {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* ================================
   GEOGRAPHY SECTION - WOW Design
   ================================ */

/* Main Container */
.geo-coverage {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--beige-light) 50%, var(--white) 100%);
  overflow: hidden;
}

/* Section Header */
.geo-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 70px;
}

.geo-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  color: var(--white);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.3);
}

.geo-header-badge img {
  filter: brightness(0) invert(1);
}

.geo-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.geo-headline-accent {
  color: var(--accent-gold);
  display: block;
}

.geo-intro {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

/* Visualization Container */
.geo-visualization {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: start;
}

/* Central Map */
.geo-map-center {
  position: sticky;
  top: 120px;
  z-index: 2;
}

.geo-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(93, 64, 55, 0.2);
  border: 8px solid var(--white);
  animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {
  0%, 100% {
    box-shadow: 0 20px 60px rgba(93, 64, 55, 0.2);
  }
  50% {
    box-shadow: 0 25px 70px rgba(93, 64, 55, 0.3);
  }
}

.geo-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.geo-map-frame:hover .geo-map-image {
  transform: scale(1.1);
}

.geo-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, transparent 40%, rgba(93, 64, 55, 0.15));
  pointer-events: none;
}

.geo-map-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.4);
  animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

.geo-map-badge-number {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.geo-map-badge-text {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Districts Grid */
.geo-districts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* District Card */
.geo-district {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border: 2px solid var(--beige-medium);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: districtFadeIn 0.6s ease-out forwards;
  opacity: 0;
}

/* Staggered animation */
.geo-district:nth-child(1) { animation-delay: 0.05s; }
.geo-district:nth-child(2) { animation-delay: 0.1s; }
.geo-district:nth-child(3) { animation-delay: 0.15s; }
.geo-district:nth-child(4) { animation-delay: 0.2s; }
.geo-district:nth-child(5) { animation-delay: 0.25s; }
.geo-district:nth-child(6) { animation-delay: 0.3s; }
.geo-district:nth-child(7) { animation-delay: 0.35s; }
.geo-district:nth-child(8) { animation-delay: 0.4s; }

@keyframes districtFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.geo-district::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: currentColor;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s ease;
}

.geo-district:hover::before {
  transform: scaleY(1);
}

.geo-district:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.15);
}

/* District Number */
.geo-district-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary-brown);
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.geo-district:hover .geo-district-number {
  transform: rotate(5deg) scale(1.1);
}

/* District Name */
.geo-district-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.3s ease;
}

.geo-district:hover .geo-district-name {
  color: var(--primary-brown);
}

/* Color Coding for District Groups */
.geo-district-inner {
  color: var(--primary-brown);
  border-color: rgba(93, 64, 55, 0.15);
}

.geo-district-inner:hover {
  border-color: var(--primary-brown);
  background: linear-gradient(135deg, #FFF8F0, var(--white));
}

/* CTA Button */
.geo-cta {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.geo-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 24px 48px;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  color: var(--white);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(93, 64, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.geo-cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(93, 64, 55, 0.4);
}

.geo-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.geo-cta-button:hover .geo-cta-icon {
  transform: rotate(-10deg);
}

.geo-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.geo-cta-text strong {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.geo-cta-text small {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}

/* Geography - Responsive Styles */
@media (max-width: 1024px) {
  .geo-visualization {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }

  .geo-map-center {
    top: 100px;
  }
}

@media (max-width: 768px) {
  .geo-coverage {
    padding: 80px 0;
  }

  .geo-header {
    margin-bottom: 50px;
  }

  .geo-headline {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .geo-intro {
    font-size: 16px;
  }

  .geo-visualization {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .geo-map-center {
    position: relative;
    top: 0;
    max-width: 350px;
    margin: 0 auto;
  }

  .geo-districts {
    grid-template-columns: 1fr;
  }

  .geo-district {
    padding: 14px 18px;
  }

  .geo-district-number {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

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

  .geo-legend {
    gap: 24px;
    margin: 50px auto 30px;
  }

  .geo-cta-button {
    padding: 20px 36px;
    gap: 16px;
  }

  .geo-cta-icon {
    width: 44px;
    height: 44px;
  }

  .geo-cta-text strong {
    font-size: 16px;
  }

  .geo-cta-text small {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .geo-coverage {
    padding: 60px 0;
  }

  .geo-header {
    margin-bottom: 40px;
  }

  .geo-header-badge {
    padding: 10px 20px;
    font-size: 12px;
  }

  .geo-headline {
    font-size: 1.8rem;
  }

  .geo-intro {
    font-size: 15px;
  }

  .geo-map-center {
    max-width: 280px;
  }

  .geo-map-frame {
    border-width: 6px;
  }

  .geo-map-badge {
    padding: 12px 20px;
  }

  .geo-map-badge-number {
    font-size: 28px;
  }

  .geo-map-badge-text {
    font-size: 11px;
  }

  .geo-district {
    padding: 12px 16px;
    gap: 12px;
  }

  .geo-district-number {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .geo-district-name {
    font-size: 13px;
  }

  .geo-legend {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .geo-cta-button {
    flex-direction: column;
    padding: 24px 32px;
    gap: 12px;
    text-align: center;
  }

  .geo-cta-text {
    align-items: center;
  }
}

@media (max-width: 375px) {
  .geo-coverage {
    padding: 50px 0;
  }

  .geo-header {
    margin-bottom: 35px;
  }

  .geo-header-badge {
    padding: 8px 16px;
    font-size: 11px;
  }

  .geo-headline {
    font-size: 1.6rem;
  }

  .geo-intro {
    font-size: 14px;
  }

  .geo-map-center {
    max-width: 250px;
  }

  .geo-map-badge {
    padding: 10px 16px;
  }

  .geo-map-badge-number {
    font-size: 24px;
  }

  .geo-district {
    padding: 10px 14px;
  }

  .geo-district-number {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .geo-district-name {
    font-size: 12px;
  }

  .geo-legend-text {
    font-size: 13px;
  }

  .geo-cta-button {
    padding: 20px 28px;
  }

  .geo-cta-icon {
    width: 40px;
    height: 40px;
  }

  .geo-cta-icon img {
    width: 20px;
    height: 20px;
  }

  .geo-cta-text strong {
    font-size: 15px;
  }

  .geo-cta-text small {
    font-size: 11px;
  }
}

/* ================================
   WORK PROCESS SECTION
   ================================ */
/* ================================
   WORK PROCESS SECTION - WOW Design V2
   ================================ */

/* Main Container */
.process-timeline {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

/* Background Shapes */
.process-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: 0;
}

.process-bg-shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  top: -200px;
  left: -150px;
}

.process-bg-shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  bottom: -150px;
  right: -100px;
}

/* Section Header */
.process-head {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  z-index: 1;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.4);
}

.process-badge img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
}

.process-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.process-title-highlight {
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.process-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Timeline Flow Container */
.process-flow {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 0;
  z-index: 1;
}

/* Vertical Centerline */
.process-centerline {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,
    var(--primary-brown) 0%,
    var(--accent-wood) 50%,
    var(--accent-gold) 100%
  );
  transform: translateX(-50%);
  border-radius: 10px;
  opacity: 0.2;
}

.process-centerline::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--primary-brown), var(--accent-gold));
  border-radius: 10px;
  animation: lineGrowDown 2.5s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes lineGrowDown {
  to {
    height: 100%;
  }
}

/* Process Item */
.process-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 100px 1fr;
  gap: 0;
  margin-bottom: 60px;
  opacity: 0;
  animation: itemFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.process-item:nth-child(2) { animation-delay: 0.15s; }
.process-item:nth-child(3) { animation-delay: 0.3s; }
.process-item:nth-child(4) { animation-delay: 0.45s; }
.process-item:nth-child(5) { animation-delay: 0.6s; }
.process-item:nth-child(6) { animation-delay: 0.75s; }
.process-item:nth-child(7) { animation-delay: 0.9s; }

@keyframes itemFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Marker (Center Dot) */
.process-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column: 2;
  z-index: 10;
}

.process-marker-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  border: 5px solid var(--white);
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.3);
  z-index: 2;
}

.process-marker-ring {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid var(--accent-gold);
  opacity: 0;
  animation: ringPulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes ringPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Process Box (Content Card) */
.process-box {
  position: relative;
  background: var(--white);
  padding: 36px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.1);
  border: 2px solid rgba(201, 168, 106, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.process-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(93, 64, 55, 0.2);
  border-color: var(--accent-gold);
}

.process-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-box:hover::before {
  opacity: 1;
}

/* Box Number */
.process-box-number {
  position: absolute;
  top: -18px;
  left: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  color: var(--white);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(93, 64, 55, 0.4);
  border: 4px solid var(--white);
  transition: all 0.3s ease;
}

.process-box:hover .process-box-number {
  transform: scale(1.15) rotate(15deg);
}

/* Box Icon */
.process-box-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(141, 110, 99, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.process-box:hover .process-box-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  transform: scale(1.05) rotate(-5deg);
}

.process-box-icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
  transition: filter 0.3s ease;
}

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

/* Box Title */
.process-box-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.process-box:hover .process-box-title {
  color: var(--primary-brown);
}

/* Box Text */
.process-box-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Arrow Connector */
.process-box-arrow {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold));
  transform: translateY(-50%);
}

/* Right Side Items */
.process-item-right .process-box {
  grid-column: 3;
}

.process-item-right .process-box-arrow {
  left: -40px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

/* Left Side Items */
.process-item-left .process-box {
  grid-column: 1;
  text-align: right;
}

.process-item-left .process-box-arrow {
  right: -40px;
  background: linear-gradient(90deg, transparent, var(--accent-gold));
}

.process-item-left .process-box-number {
  left: auto;
  right: 32px;
}

.process-item-left .process-box-icon {
  margin-left: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .process-flow {
    max-width: 900px;
  }

  .process-box {
    padding: 32px 28px;
  }

  .process-box-number {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .process-box-icon {
    width: 64px;
    height: 64px;
  }

  .process-box-title {
    font-size: 22px;
  }

  .process-box-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    padding: 70px 0;
  }

  .process-head {
    margin-bottom: 60px;
  }

  .process-badge {
    padding: 8px 18px;
    font-size: 12px;
  }

  .process-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .process-subtitle {
    font-size: 16px;
  }

  .process-flow {
    padding: 40px 0;
  }

  .process-centerline {
    left: 30px;
    transform: none;
  }

  .process-item {
    grid-template-columns: 60px 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .process-marker {
    grid-column: 1;
  }

  .process-item-right .process-box,
  .process-item-left .process-box {
    grid-column: 2;
    text-align: left;
  }

  .process-box {
    padding: 30px 24px;
  }

  .process-box-arrow {
    display: none;
  }

  .process-box-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
    left: 24px;
  }

  .process-item-left .process-box-number {
    left: 24px;
    right: auto;
  }

  .process-box-icon {
    width: 58px;
    height: 58px;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .process-box-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    padding: 60px 0;
  }

  .process-head {
    margin-bottom: 50px;
  }

  .process-title {
    font-size: 1.9rem;
  }

  .process-subtitle {
    font-size: 15px;
  }

  .process-flow {
    padding: 30px 0;
  }

  .process-centerline {
    left: 25px;
  }

  .process-item {
    grid-template-columns: 50px 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }

  .process-marker {
    grid-column: 1;
  }

  .process-box {
    padding: 26px 20px;
  }

  .process-box-number {
    width: 48px;
    height: 48px;
    font-size: 17px;
    left: 20px;
    border: 3px solid var(--white);
  }

  .process-box-icon {
    width: 52px;
    height: 52px;
  }

  .process-box-icon img {
    width: 30px;
    height: 30px;
  }

  .process-box-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .process-box-text {
    font-size: 14px;
  }
}

@media (max-width: 375px) {
  .process-timeline {
    padding: 50px 0;
  }

  .process-badge {
    padding: 7px 16px;
    font-size: 11px;
  }

  .process-title {
    font-size: 1.7rem;
  }

  .process-centerline {
    left: 22px;
  }

  .process-item {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .process-marker {
    grid-column: 1;
  }

  .process-box {
    padding: 24px 18px;
  }

  .process-box-number {
    width: 46px;
    height: 46px;
    font-size: 16px;
    left: 18px;
    border: 3px solid var(--white);
  }

  .process-box-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .process-box-icon img {
    width: 28px;
    height: 28px;
  }

  .process-box-title {
    font-size: 17px;
  }

  .process-box-text {
    font-size: 13px;
  }
}

/* ================================
   PORTFOLIO SECTION - WOW Design
   ================================ */

/* Main Container */
.portfolio-showcase {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(180deg, var(--white) 0%, rgba(201, 168, 106, 0.03) 100%);
  overflow: hidden;
}

/* Background Shapes */
.portfolio-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.08;
  z-index: 0;
}

.portfolio-bg-shape-1 {
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  top: -250px;
  right: -200px;
}

.portfolio-bg-shape-2 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, var(--accent-wood), var(--medium-brown));
  bottom: -200px;
  left: -150px;
}

/* Section Header */
.portfolio-head {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
  z-index: 1;
}

.portfolio-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.4);
}

.portfolio-badge img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
}

.portfolio-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.portfolio-title-highlight {
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

/* Projects Grid - Bento Style */
.portfolio-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 80px;
  z-index: 1;
}

/* Portfolio Card */
.portfolio-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.08);
  border: 2px solid rgba(201, 168, 106, 0.1);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: cardFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered Animation Delays */
.portfolio-card:nth-child(1) { animation-delay: 0.1s; grid-column: span 8; }
.portfolio-card:nth-child(2) { animation-delay: 0.2s; grid-column: span 4; }
.portfolio-card:nth-child(3) { animation-delay: 0.3s; grid-column: span 4; }
.portfolio-card:nth-child(4) { animation-delay: 0.4s; grid-column: span 4; }
.portfolio-card:nth-child(5) { animation-delay: 0.5s; grid-column: span 4; }
.portfolio-card:nth-child(6) { animation-delay: 0.6s; grid-column: span 4; }

/* Featured Card - Large */
.portfolio-card-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.portfolio-card-featured .portfolio-image {
  height: 100%;
}

.portfolio-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(93, 64, 55, 0.15);
  border-color: var(--accent-gold);
}

/* Portfolio Image */
.portfolio-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.portfolio-card-featured .portfolio-image {
  height: 100%;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.12) rotate(2deg);
}

/* Image Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

/* Category Badge */
.portfolio-category {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
  z-index: 10;
  transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-category {
  transform: translateY(-4px) scale(1.05);
}

.portfolio-category-featured {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.95), rgba(141, 110, 99, 0.95));
  color: var(--white);
}

.portfolio-category-interior {
  background: rgba(139, 69, 19, 0.9);
  color: var(--white);
}

.portfolio-category-sliding {
  background: rgba(70, 130, 180, 0.9);
  color: var(--white);
}

.portfolio-category-fire {
  background: rgba(220, 53, 69, 0.9);
  color: var(--white);
}

.portfolio-category-balcony {
  background: rgba(40, 167, 69, 0.9);
  color: var(--white);
}

.portfolio-category-new {
  background: rgba(255, 193, 7, 0.9);
  color: var(--text-primary);
}

/* Portfolio Content */
.portfolio-content {
  padding: 32px;
}

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

/* Portfolio Header */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.portfolio-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color 0.3s ease;
}

.portfolio-card-featured .portfolio-card-title {
  font-size: 28px;
}

.portfolio-card:hover .portfolio-card-title {
  color: var(--primary-brown);
}

/* Portfolio Price */
.portfolio-price {
  flex-shrink: 0;
  padding: 8px 14px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(201, 168, 106, 0.3);
}

.portfolio-card-featured .portfolio-price {
  font-size: 20px;
  padding: 10px 18px;
}

/* Portfolio Text */
.portfolio-card-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio-card-featured .portfolio-card-text {
  font-size: 16px;
  margin-bottom: 24px;
}

/* Portfolio Tags - Only for Featured */
.portfolio-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(201, 168, 106, 0.1);
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-brown);
  transition: all 0.3s ease;
}

.portfolio-tag:hover {
  background: rgba(201, 168, 106, 0.2);
  transform: translateY(-2px);
}

.portfolio-tag img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
}

/* Portfolio Meta */
.portfolio-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.portfolio-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.portfolio-meta-item img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(12%) saturate(687%) hue-rotate(337deg) brightness(92%) contrast(88%);
}

/* Portfolio Stats */
.portfolio-stats {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  border-radius: 24px;
  box-shadow: 0 12px 48px rgba(93, 64, 55, 0.2);
  z-index: 1;
}

.portfolio-stat {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.portfolio-stat:hover {
  transform: translateY(-8px);
}

.portfolio-stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.portfolio-stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.4;
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
  .portfolio-grid {
    gap: 25px;
  }

  .portfolio-card:nth-child(1) { grid-column: span 12; }
  .portfolio-card:nth-child(2) { grid-column: span 6; }
  .portfolio-card:nth-child(3) { grid-column: span 6; }
  .portfolio-card:nth-child(4) { grid-column: span 6; }
  .portfolio-card:nth-child(5) { grid-column: span 6; }
  .portfolio-card:nth-child(6) { grid-column: span 12; }

  .portfolio-card-featured {
    grid-template-columns: 1fr;
  }

  .portfolio-card-featured .portfolio-image {
    height: 350px;
  }

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

/* Responsive - Mobile */
@media (max-width: 768px) {
  .portfolio-showcase {
    padding: 70px 0;
  }

  .portfolio-head {
    margin-bottom: 60px;
  }

  .portfolio-badge {
    padding: 8px 18px;
    font-size: 12px;
  }

  .portfolio-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .portfolio-subtitle {
    font-size: 16px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .portfolio-card:nth-child(1),
  .portfolio-card:nth-child(2),
  .portfolio-card:nth-child(3),
  .portfolio-card:nth-child(4),
  .portfolio-card:nth-child(5),
  .portfolio-card:nth-child(6) {
    grid-column: span 1;
  }

  .portfolio-card-featured {
    grid-template-columns: 1fr;
  }

  .portfolio-card-featured .portfolio-image {
    height: 280px;
  }

  .portfolio-image {
    height: 240px;
  }

  .portfolio-content {
    padding: 24px;
  }

  .portfolio-card-featured .portfolio-content {
    padding: 28px;
  }

  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .portfolio-card-title {
    font-size: 20px;
  }

  .portfolio-card-featured .portfolio-card-title {
    font-size: 24px;
  }

  .portfolio-price {
    font-size: 15px;
    padding: 6px 12px;
  }

  .portfolio-card-featured .portfolio-price {
    font-size: 18px;
    padding: 8px 14px;
  }

  .portfolio-card-text {
    font-size: 14px;
  }

  .portfolio-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 24px;
  }

  .portfolio-stat-number {
    font-size: 2.5rem;
  }

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

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .portfolio-showcase {
    padding: 60px 0;
  }

  .portfolio-title {
    font-size: 1.9rem;
  }

  .portfolio-card-featured .portfolio-image {
    height: 220px;
  }

  .portfolio-image {
    height: 200px;
  }

  .portfolio-content {
    padding: 20px;
  }

  .portfolio-card-featured .portfolio-content {
    padding: 24px;
  }

  .portfolio-card-title {
    font-size: 18px;
  }

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

  .portfolio-tags {
    gap: 8px;
  }

  .portfolio-tag {
    font-size: 12px;
    padding: 6px 12px;
  }
}

@media (max-width: 375px) {
  .portfolio-showcase {
    padding: 50px 0;
  }

  .portfolio-badge {
    padding: 7px 16px;
    font-size: 11px;
  }

  .portfolio-title {
    font-size: 1.7rem;
  }

  .portfolio-subtitle {
    font-size: 15px;
  }

  .portfolio-grid {
    gap: 16px;
    margin-bottom: 50px;
  }

  .portfolio-content {
    padding: 18px;
  }

  .portfolio-card-featured .portfolio-content {
    padding: 22px;
  }

  .portfolio-card-title {
    font-size: 17px;
  }

  .portfolio-card-featured .portfolio-card-title {
    font-size: 20px;
  }

  .portfolio-card-text {
    font-size: 13px;
  }

  .portfolio-stats {
    padding: 36px 20px;
    gap: 20px;
  }

  .portfolio-stat-number {
    font-size: 2.2rem;
  }

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

/* ================================
   PRICING SECTION - WOW Design
   ================================ */

/* Main Container */
.pricing-modern {
  position: relative;
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

/* Background Shapes */
.pricing-bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.06;
  z-index: 0;
}

.pricing-bg-shape-1 {
  width: 650px;
  height: 650px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  top: -200px;
  left: -150px;
}

.pricing-bg-shape-2 {
  width: 550px;
  height: 550px;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  bottom: -180px;
  right: -120px;
}

/* Section Header */
.pricing-head {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  z-index: 1;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--text-primary);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.4);
}

.pricing-badge img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
}

.pricing-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pricing-title-highlight {
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

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

/* Trust Badges */
.pricing-trust {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto 70px;
  z-index: 1;
}

.pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.08), rgba(141, 110, 99, 0.08));
  border: 2px solid rgba(201, 168, 106, 0.2);
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.pricing-trust-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-gold);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.2);
}

.pricing-trust-item img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
}

/* Pricing Grid */
.pricing-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto 60px;
  z-index: 1;
}

/* Pricing Card */
.pricing-card {
  position: relative;
  background: var(--white);
  padding: 36px 28px;
  border-radius: 24px;
  border: 2px solid rgba(201, 168, 106, 0.15);
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: priceFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes priceFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered Animation Delays */
.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.15s; }
.pricing-card:nth-child(3) { animation-delay: 0.2s; }
.pricing-card:nth-child(4) { animation-delay: 0.25s; }
.pricing-card:nth-child(5) { animation-delay: 0.3s; }
.pricing-card:nth-child(6) { animation-delay: 0.35s; }
.pricing-card:nth-child(7) { animation-delay: 0.4s; }
.pricing-card:nth-child(8) { animation-delay: 0.45s; }
.pricing-card:nth-child(9) { animation-delay: 0.5s; }
.pricing-card:nth-child(10) { animation-delay: 0.55s; }

.pricing-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 48px rgba(93, 64, 55, 0.15);
  border-color: var(--accent-gold);
}

/* Popular Card */
.pricing-card-popular {
  background: linear-gradient(180deg, rgba(201, 168, 106, 0.05) 0%, var(--white) 50%);
  border-color: var(--accent-gold);
}

.pricing-card-popular::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  border-radius: 24px 24px 0 0;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(201, 168, 106, 0.4);
}

/* Special Card */
.pricing-card-special {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(141, 110, 99, 0.05));
  border-color: var(--accent-gold);
}

.pricing-card-special::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), var(--primary-brown));
  border-radius: 24px 24px 0 0;
}

.pricing-special-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, #FFD700, #FFA500);
  color: var(--text-primary);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 50px;
  box-shadow: 0 4px 16px rgba(255, 215, 0, 0.4);
}

/* Pricing Icon */
.pricing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(141, 110, 99, 0.1));
  border-radius: 20px;
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-icon {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  transform: scale(1.1) rotate(-5deg);
}

.pricing-icon img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
  transition: filter 0.3s ease;
}

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

/* Pricing Card Title */
.pricing-card-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.pricing-card:hover .pricing-card-title {
  color: var(--primary-brown);
}

/* Pricing Card Description */
.pricing-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.6;
}

/* Pricing Price */
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.08), rgba(141, 110, 99, 0.08));
  border-radius: 16px;
}

.pricing-price-from {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-price-amount {
  font-size: 48px;
  font-weight: 900;
  color: var(--primary-brown);
  line-height: 1;
}

.pricing-price-currency {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-gold);
}

/* Pricing Features */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-features li img {
  flex-shrink: 0;
  filter: brightness(0) saturate(100%) invert(47%) sepia(97%) saturate(418%) hue-rotate(82deg) brightness(95%) contrast(92%);
}

/* Pricing Note */
.pricing-note {
  position: relative;
  display: flex;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 50px;
  padding: 30px 36px;
  background: linear-gradient(135deg, #FFF9E6, #FFF5D6);
  border: 2px solid var(--accent-gold);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(201, 168, 106, 0.15);
  z-index: 1;
}

.pricing-note-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
  border-radius: 50%;
}

.pricing-note-icon img {
  filter: brightness(0) invert(1);
}

.pricing-note-content {
  flex: 1;
}

.pricing-note-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-note-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.pricing-note-text strong {
  color: var(--primary-brown);
}

/* Pricing CTA */
.pricing-cta {
  position: relative;
  text-align: center;
  z-index: 1;
}

.pricing-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-brown), var(--medium-brown));
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-cta-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(93, 64, 55, 0.4);
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-wood));
}

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

.pricing-cta-text {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
  }

  .pricing-trust {
    gap: 30px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .pricing-modern {
    padding: 70px 0;
  }

  .pricing-head {
    margin-bottom: 40px;
  }

  .pricing-badge {
    padding: 8px 18px;
    font-size: 12px;
  }

  .pricing-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }

  .pricing-subtitle {
    font-size: 16px;
  }

  .pricing-trust {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 50px;
  }

  .pricing-trust-item {
    justify-content: center;
    padding: 14px 20px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-icon {
    width: 70px;
    height: 70px;
  }

  .pricing-card-title {
    font-size: 20px;
  }

  .pricing-price-amount {
    font-size: 42px;
  }

  .pricing-note {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .pricing-note-icon {
    width: 48px;
    height: 48px;
  }

  .pricing-note-title {
    font-size: 18px;
  }

  .pricing-note-text {
    font-size: 14px;
  }

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

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  .pricing-modern {
    padding: 60px 0;
  }

  .pricing-title {
    font-size: 1.9rem;
  }

  .pricing-trust-item {
    font-size: 14px;
    padding: 12px 18px;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .pricing-icon {
    width: 64px;
    height: 64px;
  }

  .pricing-card-title {
    font-size: 18px;
  }

  .pricing-card-desc {
    font-size: 13px;
  }

  .pricing-price-amount {
    font-size: 38px;
  }

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

  .pricing-note {
    padding: 20px;
  }

  .pricing-cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .pricing-modern {
    padding: 50px 0;
  }

  .pricing-badge {
    padding: 7px 16px;
    font-size: 11px;
  }

  .pricing-title {
    font-size: 1.7rem;
  }

  .pricing-subtitle {
    font-size: 15px;
  }

  .pricing-trust-item {
    font-size: 13px;
  }

  .pricing-card {
    padding: 24px 18px;
  }

  .pricing-card-title {
    font-size: 17px;
  }

  .pricing-price-amount {
    font-size: 36px;
  }

  .pricing-note-title {
    font-size: 17px;
  }

  .pricing-note-text {
    font-size: 13px;
  }
}

/* ================================
   ABOUT SECTION - Unique Diagonal Design
   ================================ */

/* Main Container with Diagonal Split */
.about-diagonal {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, var(--white) 0%, rgba(201, 168, 106, 0.05) 50%, var(--white) 100%);
  overflow: hidden;
}

/* Hexagonal Background Pattern */
.about-hex-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(30deg, transparent 0, transparent 20px, rgba(201, 168, 106, 0.03) 20px, rgba(201, 168, 106, 0.03) 22px),
    repeating-linear-gradient(150deg, transparent 0, transparent 20px, rgba(93, 64, 55, 0.03) 20px, rgba(93, 64, 55, 0.03) 22px);
  opacity: 0.5;
  z-index: 0;
}

/* Diagonal Split Wrapper */
.about-split-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 100vh;
  z-index: 1;
}

/* Left Side - Image Area */
.about-split-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, rgba(93, 64, 55, 0.02) 0%, rgba(201, 168, 106, 0.04) 100%);
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.about-image-frame {
  position: relative;
  width: 100%;
  max-width: 550px;
}

/* Geometric Border Animation */
.about-geometric-border {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 3px solid transparent;
  border-image: linear-gradient(45deg, var(--accent-gold), var(--primary-brown), var(--accent-wood)) 1;
  animation: borderPulse 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes borderPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
}

.about-main-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(93, 64, 55, 0.25);
  transition: transform 0.6s ease;
}

.about-main-img:hover {
  transform: scale(1.03) rotate(-1deg);
}

/* Animated Counter Circles */
.about-counter-circle {
  position: absolute;
  width: 160px;
  height: 160px;
  background: conic-gradient(from 0deg, var(--primary-brown), var(--accent-gold), var(--accent-wood), var(--primary-brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: counterFloat 4s ease-in-out infinite, counterRotate 20s linear infinite;
  box-shadow: 0 15px 50px rgba(93, 64, 55, 0.3);
}

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

@keyframes counterRotate {
  from {
    filter: hue-rotate(0deg);
  }
  to {
    filter: hue-rotate(360deg);
  }
}

.about-counter-inner {
  width: 150px;
  height: 150px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.about-counter-num {
  font-size: 42px;
  font-weight: 900;
  color: var(--primary-brown);
  line-height: 1;
  display: inline-block;
}

.about-counter-plus,
.about-counter-percent {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent-gold);
  display: inline-block;
  margin-left: 4px;
}

.about-counter-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
  line-height: 1.3;
}

.about-counter-1 {
  top: -30px;
  right: -30px;
  animation-delay: 0s;
}

.about-counter-2 {
  bottom: 80px;
  right: -50px;
  animation-delay: 1s;
}

.about-counter-3 {
  top: 40%;
  left: -60px;
  animation-delay: 2s;
}

/* Right Side - Content Area */
.about-split-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 60px;
}

.about-content-box {
  max-width: 650px;
  width: 100%;
}

/* Mini Badge */
.about-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.15), rgba(141, 110, 99, 0.15));
  border: 2px solid var(--accent-gold);
  border-radius: 50px;
  margin-bottom: 24px;
}

.about-mini-badge img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(21%) saturate(806%) hue-rotate(354deg) brightness(92%) contrast(89%);
}

.about-mini-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-brown);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Heading with Gradient */
.about-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 30px;
}

.about-heading-main {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.about-heading-gradient {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold), var(--accent-wood));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.about-heading-sub {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Description */
.about-description {
  margin-bottom: 40px;
}

.about-para {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

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

/* Isometric Feature Cards */
.about-iso-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
  perspective: 1000px;
}

.about-iso-card {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, var(--white) 0%, rgba(201, 168, 106, 0.05) 100%);
  border: 2px solid rgba(201, 168, 106, 0.2);
  border-radius: 16px;
  transform-style: preserve-3d;
  transform: rotateX(5deg) rotateY(-5deg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: isoCardAppear 0.8s ease forwards;
}

@keyframes isoCardAppear {
  from {
    opacity: 0;
    transform: rotateX(5deg) rotateY(-5deg) translateY(30px);
  }
  to {
    opacity: 1;
    transform: rotateX(5deg) rotateY(-5deg) translateY(0);
  }
}

.about-iso-card-1 { animation-delay: 0.1s; }
.about-iso-card-2 { animation-delay: 0.2s; }
.about-iso-card-3 { animation-delay: 0.3s; }
.about-iso-card-4 { animation-delay: 0.4s; }

.about-iso-card:hover {
  transform: rotateX(0deg) rotateY(0deg) translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 60px rgba(93, 64, 55, 0.2);
  background: linear-gradient(135deg, var(--white) 0%, rgba(201, 168, 106, 0.1) 100%);
}

.about-iso-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(93, 64, 55, 0.2);
  transition: all 0.3s ease;
}

.about-iso-card:hover .about-iso-icon {
  transform: scale(1.15) rotate(360deg);
  box-shadow: 0 12px 32px rgba(201, 168, 106, 0.4);
}

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

.about-iso-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.about-iso-card:hover .about-iso-title {
  color: var(--primary-brown);
}

.about-iso-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Unique CTA with Arrow */
.about-cta-wrapper {
  margin-top: 16px;
}

.about-cta-unique {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(93, 64, 55, 0.3);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.about-cta-unique::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.about-cta-unique:hover::before {
  width: 400px;
  height: 400px;
}

.about-cta-unique:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow: 0 20px 60px rgba(201, 168, 106, 0.5);
}

.about-cta-text {
  position: relative;
  z-index: 1;
}

.about-cta-arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s ease;
}

.about-cta-unique:hover .about-cta-arrow {
  transform: translateX(8px) rotate(45deg);
  background: rgba(255, 255, 255, 0.3);
}

.about-cta-arrow img {
  filter: brightness(0) invert(1);
  transform: rotate(-90deg);
}

/* Decorative SVG Line */
.about-deco-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 2;
}

.about-deco-path {
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  animation: drawPath 3s ease-in-out forwards;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablets and Medium Screens */
@media (max-width: 1024px) {
  .about-split-wrapper {
    grid-template-columns: 50% 50%;
  }

  .about-split-left {
    padding: 60px 30px;
  }

  .about-split-right {
    padding: 60px 40px;
  }

  .about-counter-circle {
    width: 140px;
    height: 140px;
  }

  .about-counter-inner {
    width: 130px;
    height: 130px;
  }

  .about-counter-num {
    font-size: 36px;
  }

  .about-counter-plus,
  .about-counter-percent {
    font-size: 28px;
  }

  .about-counter-text {
    font-size: 10px;
  }

  .about-counter-3 {
    left: -40px;
  }

  .about-iso-grid {
    gap: 16px;
  }

  .about-iso-card {
    padding: 20px;
  }
}

/* Mobile Landscape and Tablets */
@media (max-width: 768px) {
  .about-diagonal {
    min-height: auto;
  }

  .about-split-wrapper {
    grid-template-columns: 1fr;
  }

  .about-split-left {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    padding: 60px 30px;
  }

  .about-split-right {
    padding: 60px 30px;
  }

  .about-image-frame {
    max-width: 450px;
    margin: 0 auto;
  }

  .about-counter-circle {
    width: 130px;
    height: 130px;
  }

  .about-counter-inner {
    width: 120px;
    height: 120px;
    padding: 16px;
  }

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

  .about-counter-plus,
  .about-counter-percent {
    font-size: 24px;
  }

  .about-counter-text {
    font-size: 9px;
  }

  .about-counter-1 {
    top: -20px;
    right: -20px;
  }

  .about-counter-2 {
    bottom: 60px;
    right: -30px;
  }

  .about-counter-3 {
    top: 50%;
    left: -30px;
  }

  .about-content-box {
    max-width: 100%;
  }

  .about-mini-badge {
    padding: 7px 18px;
    font-size: 12px;
  }

  .about-mini-badge img {
    width: 18px;
    height: 18px;
  }

  .about-heading {
    margin-bottom: 24px;
  }

  .about-description {
    margin-bottom: 32px;
  }

  .about-para {
    font-size: 15px;
  }

  .about-iso-grid {
    gap: 16px;
    margin-bottom: 32px;
  }

  .about-iso-card {
    transform: rotateX(0deg) rotateY(0deg);
  }

  .about-iso-card:hover {
    transform: translateY(-6px);
  }

  .about-iso-icon {
    width: 56px;
    height: 56px;
  }

  .about-iso-icon img {
    width: 28px;
    height: 28px;
  }

  .about-iso-title {
    font-size: 17px;
  }

  .about-iso-text {
    font-size: 13px;
  }

  .about-cta-unique {
    padding: 16px 36px;
    font-size: 16px;
  }

  .about-cta-arrow {
    width: 28px;
    height: 28px;
  }

  .about-deco-line {
    height: 60px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .about-split-left {
    padding: 50px 24px;
  }

  .about-split-right {
    padding: 50px 24px;
  }

  .about-image-frame {
    max-width: 100%;
  }

  .about-counter-circle {
    width: 120px;
    height: 120px;
  }

  .about-counter-inner {
    width: 110px;
    height: 110px;
    padding: 14px;
  }

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

  .about-counter-plus,
  .about-counter-percent {
    font-size: 22px;
  }

  .about-counter-text {
    font-size: 9px;
    margin-top: 6px;
  }

  .about-counter-1 {
    top: -10px;
    right: -10px;
  }

  .about-counter-2 {
    bottom: 45px;
    right: -10px;
  }

  .about-counter-3 {
    top: 45%;
    left: -10px;
  }

  .about-mini-badge {
    padding: 6px 16px;
    font-size: 11px;
  }

  .about-mini-badge img {
    width: 16px;
    height: 16px;
  }

  .about-heading {
    gap: 6px;
    margin-bottom: 20px;
  }

  .about-description {
    margin-bottom: 28px;
  }

  .about-para {
    font-size: 14px;
    margin-bottom: 14px;
  }

  .about-iso-grid {
    gap: 14px;
    margin-bottom: 28px;
  }

  .about-iso-card {
    padding: 18px;
  }

  .about-iso-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .about-iso-icon img {
    width: 26px;
    height: 26px;
  }

  .about-iso-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .about-iso-text {
    font-size: 12px;
  }

  .about-cta-unique {
    padding: 14px 30px;
    font-size: 15px;
    gap: 12px;
  }

  .about-cta-arrow {
    width: 26px;
    height: 26px;
  }

  .about-cta-arrow img {
    width: 16px;
    height: 16px;
  }

  .about-deco-line {
    height: 50px;
  }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
  .about-split-left {
    padding: 40px 20px;
  }

  .about-split-right {
    padding: 40px 20px;
  }

  .about-counter-circle {
    width: 110px;
    height: 110px;
  }

  .about-counter-inner {
    width: 100px;
    height: 100px;
    padding: 12px;
  }

  .about-counter-num {
    font-size: 26px;
  }

  .about-counter-plus,
  .about-counter-percent {
    font-size: 20px;
  }

  .about-counter-text {
    font-size: 8px;
    margin-top: 4px;
  }

  .about-counter-1 {
    top: 0;
    right: 0;
  }

  .about-counter-2 {
    bottom: 40px;
    right: 0;
  }

  .about-counter-3 {
    top: 45%;
    left: 0;
  }

  .about-mini-badge {
    padding: 5px 14px;
    font-size: 10px;
  }

  .about-mini-badge img {
    width: 14px;
    height: 14px;
  }

  .about-heading {
    gap: 5px;
    margin-bottom: 18px;
  }

  .about-description {
    margin-bottom: 24px;
  }

  .about-para {
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
  }

  .about-iso-grid {
    gap: 14px;
    margin-bottom: 26px;
  }

  .about-iso-card {
    padding: 18px;
  }

  .about-iso-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 14px;
  }

  .about-iso-icon img {
    width: 26px;
    height: 26px;
  }

  .about-iso-title {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .about-iso-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .about-cta-unique {
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
    font-size: 14px;
  }

  .about-deco-line {
    height: 40px;
  }
}

/* ================================
   REVIEWS SECTION - Polaroid Style
   ================================ */
.tm-reviews {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.03) 0%, var(--white) 50%, rgba(93, 64, 55, 0.03) 100%);
  overflow: hidden;
}

.tm-reviews::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 168, 106, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(93, 64, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tm-reviews-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 50px 40px;
  margin-bottom: 60px;
  z-index: 1;
}

/* Polaroid Card Style */
.tm-review-card {
  position: relative;
  background: var(--white);
  padding: 24px 24px 60px;
  box-shadow: 0 10px 40px rgba(93, 64, 55, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

/* Rotation for each card */
.tm-review-card:nth-child(1) {
  transform: rotate(-2deg);
}

.tm-review-card:nth-child(2) {
  transform: rotate(1.5deg);
}

.tm-review-card:nth-child(3) {
  transform: rotate(-1deg);
}

.tm-review-card:hover {
  transform: rotate(0deg) translateY(-12px) scale(1.03);
  box-shadow: 0 25px 60px rgba(93, 64, 55, 0.25);
  z-index: 10;
}

/* Tape Effect at Top */
.tm-review-card::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: rgba(255, 243, 176, 0.6);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  z-index: 1;
}

/* Large Quote Mark */
.tm-review-card::after {
  content: '"';
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 80px;
  font-family: Georgia, serif;
  color: rgba(201, 168, 106, 0.15);
  line-height: 1;
  pointer-events: none;
}

.tm-review-top {
  position: relative;
  margin-bottom: 18px;
  z-index: 2;
}

/* Handwritten Style Name */
.tm-review-author {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary-brown);
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.tm-review-author::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.tm-review-service {
  display: inline-block;
  font-size: 13px;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-wood));
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-top: 8px;
  letter-spacing: 0.3px;
}

.tm-review-comment {
  position: relative;
  font-size: 15px;
  color: var(--text-primary);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
  z-index: 2;
}

.tm-review-bottom {
  position: absolute;
  bottom: 18px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 2px solid rgba(201, 168, 106, 0.2);
}

/* Stars as Badge */
.tm-review-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 16px;
  color: var(--accent-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 2px;
}

/* Handwritten Date Style */
.tm-review-date {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 600;
  font-style: italic;
  opacity: 0.8;
}

.tm-reviews-link {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}

/* ================================
   BLOG SECTION
   ================================ */
.tm-blog {
  padding: 100px 0;
  background: var(--white);
}

.tm-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.tm-blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-base);
}

.tm-blog-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
}

.tm-blog-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.tm-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.tm-blog-date {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.tm-blog-card:hover .tm-blog-date {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tm-blog-content {
  padding: 28px;
}

.tm-blog-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.tm-blog-excerpt {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.tm-blog-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-brown);
  transition: var(--transition-base);
}

.tm-blog-link:hover {
  color: var(--medium-brown);
  text-decoration: underline;
}

.tm-blog-cta {
  display: flex;
  justify-content: center;
}

/* ================================
   FAQ SECTION - Glassmorphism WOW Design
   ================================ */
.tm-faq {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f5f0eb 0%, #faf8f5 25%, #f0ebe6 50%, #faf8f5 75%, #f5f0eb 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Animated Background Orbs */
.tm-faq::before,
.tm-faq::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.tm-faq::before {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.6), transparent);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.tm-faq::after {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(93, 64, 55, 0.4), transparent);
  bottom: -150px;
  left: -150px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 50px) scale(0.95);
  }
}

.tm-faq-list {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 1;
}

/* Glassmorphism Cards with Staggered Animation */
.tm-faq-item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.08);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
  animation: faqFadeIn 0.8s ease forwards;
}

@keyframes faqFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tm-faq-item:nth-child(1) { animation-delay: 0.05s; }
.tm-faq-item:nth-child(2) { animation-delay: 0.1s; }
.tm-faq-item:nth-child(3) { animation-delay: 0.15s; }
.tm-faq-item:nth-child(4) { animation-delay: 0.2s; }
.tm-faq-item:nth-child(5) { animation-delay: 0.25s; }
.tm-faq-item:nth-child(6) { animation-delay: 0.3s; }
.tm-faq-item:nth-child(7) { animation-delay: 0.35s; }
.tm-faq-item:nth-child(8) { animation-delay: 0.4s; }
.tm-faq-item:nth-child(9) { animation-delay: 0.45s; }
.tm-faq-item:nth-child(10) { animation-delay: 0.5s; }

/* Gradient Glow on Hover */
.tm-faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(201, 168, 106, 0.15) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.tm-faq-item:hover::before {
  opacity: 1;
}

.tm-faq-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 16px 48px rgba(93, 64, 55, 0.15);
  border-color: rgba(201, 168, 106, 0.5);
  background: rgba(255, 255, 255, 0.85);
}

/* Active State with Gold Border */
.tm-faq-item.active {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(201, 168, 106, 0.2);
}

/* Question Button with Number Badge */
.tm-faq-question {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 26px 30px 26px 70px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Number Badge */
.tm-faq-question::before {
  content: counter(faq-counter);
  counter-increment: faq-counter;
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(93, 64, 55, 0.3);
  transition: all 0.3s ease;
}

.tm-faq-list {
  counter-reset: faq-counter;
}

.tm-faq-question:hover::before {
  transform: translateY(-50%) scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(201, 168, 106, 0.4);
}

.tm-faq-question span {
  transition: color 0.3s ease;
}

.tm-faq-question:hover span {
  color: var(--primary-brown);
}

.tm-faq-item.active .tm-faq-question span {
  color: var(--primary-brown);
}

/* Chevron Icon */
.tm-faq-icon {
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0) saturate(100%) invert(36%) sepia(13%) saturate(1087%) hue-rotate(337deg) brightness(92%) contrast(92%);
}

.tm-faq-item.active .tm-faq-icon {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(58%) sepia(21%) saturate(806%) hue-rotate(354deg) brightness(92%) contrast(89%);
}

/* Answer with Glassmorphic Background */
.tm-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(250, 248, 245, 0.6);
  backdrop-filter: blur(10px);
}

.tm-faq-item.active .tm-faq-answer {
  max-height: 600px;
}

.tm-faq-answer p {
  padding: 0 30px 26px 70px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  animation: fadeInAnswer 0.6s ease;
}

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

/* ================================
   CONTACT SECTION - Unique 3D Floating Design
   ================================ */
.tm-contact {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 50%, #faf8f5 100%);
  overflow: hidden;
}

/* Dotted Background Pattern */
.tm-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle, rgba(93, 64, 55, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.4;
  pointer-events: none;
}

/* Animated Glow Orb */
.tm-contact::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 106, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(60px);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

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

.tm-contact-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  margin-top: 60px;
  z-index: 1;
}

/* ===== LEFT SIDE: Contact Info Card ===== */
.tm-contact-info {
  position: relative;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(201, 168, 106, 0.2);
  box-shadow: 0 20px 60px rgba(93, 64, 55, 0.1);
  transform: translateY(0);
  transition: all 0.4s ease;
}

.tm-contact-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(93, 64, 55, 0.15);
}

.tm-contact-subtitle {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 36px;
  position: relative;
  padding-bottom: 16px;
}

.tm-contact-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-gold), transparent);
  border-radius: 2px;
}

/* Contact Items with Hover Effects */
.tm-contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 26px;
  padding: 16px;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.tm-contact-item:hover {
  background: rgba(201, 168, 106, 0.08);
  transform: translateX(8px);
}

.tm-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-wood));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.2);
  transition: all 0.3s ease;
}

.tm-contact-item:hover .tm-contact-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(201, 168, 106, 0.4);
}

.tm-contact-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

.tm-contact-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.tm-contact-value {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.6;
  transition: color 0.3s ease;
}

.tm-contact-value:hover {
  color: var(--primary-brown);
}

/* Trust Badges */
.tm-contact-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(201, 168, 106, 0.2);
}

.tm-trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(141, 110, 99, 0.08));
  border: 1px solid rgba(201, 168, 106, 0.2);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.tm-trust-badge:hover {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.15), rgba(141, 110, 99, 0.12));
  border-color: var(--accent-gold);
  transform: translateX(6px);
}

.tm-trust-badge img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(58%) sepia(21%) saturate(806%) hue-rotate(354deg) brightness(92%) contrast(89%);
}

/* ===== RIGHT SIDE: Contact Form ===== */
.tm-contact-form-wrapper {
  position: relative;
}

/* Modern Form Styling */
.dw-contact-wow-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cn-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.dw-contact-wow-input-wrap {
  position: relative;
}

/* Input Fields with Glow Effect */
.dw-contact-wow-input,
.dw-contact-wow-textarea {
  width: 100%;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(201, 168, 106, 0.2);
  border-radius: 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.05);
}

.dw-contact-wow-input::placeholder,
.dw-contact-wow-textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.6;
}

.dw-contact-wow-input:focus,
.dw-contact-wow-textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: var(--white);
  box-shadow: 0 8px 32px rgba(201, 168, 106, 0.2), 0 0 0 4px rgba(201, 168, 106, 0.1);
  transform: translateY(-2px);
}

.dw-contact-wow-textarea {
  resize: vertical;
  min-height: 130px;
}

/* Error Messages */
.dcr-error {
  display: none;
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(220, 38, 38, 0.1);
  border-left: 3px solid #dc2626;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
}

/* Submit Button with Glow Animation */
.dw-contact-wow-submit {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 10px;
}

.dw-contact-wow-submit::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.dw-contact-wow-submit:hover::before {
  width: 300px;
  height: 300px;
}

.dw-contact-wow-submit:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 48px rgba(201, 168, 106, 0.4);
}

.dw-contact-wow-submit-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.dw-contact-wow-submit:hover .dw-contact-wow-submit-icon {
  transform: rotate(45deg);
}

.dw-contact-wow-submit-icon img {
  filter: brightness(0) invert(1);
}

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

.dw-contact-wow-submit-arrow {
  position: relative;
  z-index: 1;
  font-size: 20px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.dw-contact-wow-submit:hover .dw-contact-wow-submit-arrow {
  transform: translateX(6px);
}

/* Success Message */
.cn-success {
  display: none;
  margin-top: 20px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
  border: 2px solid #22c55e;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 700;
  color: #16a34a;
  text-align: center;
  animation: successPulse 0.6s ease;
}

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

/* ================================
   SEO TEXT SECTION - PREMIUM MAGAZINE STYLE
   ================================ */
.tm-seo-text {
  position: relative;
  padding: 120px 0;
  background: #faf9f7;
  overflow: hidden;
}

/* Subtle pattern background */
.tm-seo-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(93, 64, 55, 0.02) 2px, rgba(93, 64, 55, 0.02) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(201, 168, 106, 0.02) 2px, rgba(201, 168, 106, 0.02) 4px);
  pointer-events: none;
}

/* Decorative corner ornaments */
.tm-seo-text::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.6;
}

.tm-seo-content {
  position: relative;
  max-width: 950px;
  margin: 0 auto;
  padding: 60px 80px;
  background: var(--white);
  box-shadow:
    0 20px 60px rgba(93, 64, 55, 0.08),
    0 0 0 1px rgba(201, 168, 106, 0.1);
  border-radius: 2px;
}

/* Decorative left border */
.tm-seo-content::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg,
    var(--accent-gold) 0%,
    var(--primary-brown) 50%,
    var(--accent-gold) 100%
  );
  opacity: 0.7;
}

/* Decorative top ornament */
.tm-seo-content::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background:
    radial-gradient(circle, var(--white) 40%, transparent 41%),
    conic-gradient(from 0deg, var(--accent-gold), var(--primary-brown), var(--accent-gold));
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(201, 168, 106, 0.3);
}

/* Main H2 heading - Premium style */
.tm-seo-content h2 {
  position: relative;
  font-size: 38px;
  font-weight: 800;
  color: var(--primary-brown);
  margin-bottom: 50px;
  padding-bottom: 30px;
  text-align: center;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* Decorative underline for H2 */
.tm-seo-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
}

/* Decorative diamond before H2 */
.tm-seo-content h2::before {
  content: '◆';
  display: block;
  font-size: 16px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  opacity: 0.8;
}

/* H3 headings - Elegant with ornaments */
.tm-seo-content h3 {
  position: relative;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-brown);
  margin: 60px 0 24px;
  padding-left: 40px;
  line-height: 1.4;
}

/* Decorative icon before H3 */
.tm-seo-content h3::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-gold), var(--primary-brown));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.8;
}

/* Thin line after H3 */
.tm-seo-content h3::after {
  content: '';
  position: absolute;
  left: 40px;
  bottom: -12px;
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
  opacity: 0.5;
}

/* First H3 - special style */
.tm-seo-content h3:first-of-type {
  margin-top: 0;
}

/* Paragraphs - Premium typography */
.tm-seo-content p {
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.9;
  margin-bottom: 28px;
  text-align: justify;
  hyphens: auto;
  font-weight: 400;
}

/* Drop cap for first paragraph after H2 */
.tm-seo-content h2 + p::first-letter {
  float: left;
  font-size: 72px;
  line-height: 60px;
  padding: 8px 12px 0 0;
  margin: 0;
  font-weight: 800;
  color: var(--primary-brown);
  background: linear-gradient(135deg, var(--accent-gold), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Georgia, serif;
}

/* Strong tags - Highlighted keywords */
.tm-seo-content strong {
  position: relative;
  color: var(--primary-brown);
  font-weight: 700;
  padding: 0 4px;
}

/* Subtle highlight for strong */
.tm-seo-content strong::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: rgba(201, 168, 106, 0.15);
  z-index: -1;
  border-radius: 2px;
}

/* Last paragraph - special styling */
.tm-seo-content h3:last-of-type + p {
  position: relative;
  padding: 30px 40px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.05), rgba(93, 64, 55, 0.05));
  border-left: 4px solid var(--accent-gold);
  border-radius: 0 4px 4px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-brown);
  text-align: left;
  margin-top: 40px;
}

/* Quote marks for last paragraph */
.tm-seo-content h3:last-of-type + p::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  font-family: Georgia, serif;
  color: rgba(201, 168, 106, 0.2);
  line-height: 1;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
  .tm-seo-content {
    padding: 50px 60px;
  }

  .tm-seo-content h2 {
    font-size: 34px;
    margin-bottom: 40px;
    padding-bottom: 24px;
  }

  .tm-seo-content h3 {
    font-size: 24px;
    margin: 50px 0 20px;
  }

  .tm-seo-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 24px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .tm-seo-text {
    padding: 80px 0;
  }

  .tm-seo-content {
    padding: 40px 30px;
    margin: 0 20px;
  }

  .tm-seo-content::after {
    width: 60px;
    height: 60px;
  }

  .tm-seo-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }

  .tm-seo-content h2::before {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .tm-seo-content h2::after {
    width: 80px;
  }

  .tm-seo-content h3 {
    font-size: 21px;
    margin: 40px 0 16px;
    padding-left: 32px;
  }

  .tm-seo-content h3::before {
    width: 20px;
    height: 20px;
  }

  .tm-seo-content h3::after {
    width: 50px;
  }

  .tm-seo-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
    text-align: left;
  }

  .tm-seo-content h2 + p::first-letter {
    font-size: 56px;
    line-height: 48px;
    padding: 4px 8px 0 0;
  }

  .tm-seo-content h3:last-of-type + p {
    padding: 24px 30px;
    font-size: 16px;
  }

  .tm-seo-content h3:last-of-type + p::before {
    font-size: 48px;
  }
}

/* Responsive - Small mobile */
@media (max-width: 480px) {
  .tm-seo-content {
    padding: 30px 20px;
    margin: 0 15px;
  }

  .tm-seo-content h2 {
    font-size: 24px;
  }

  .tm-seo-content h3 {
    font-size: 19px;
    padding-left: 28px;
  }

  .tm-seo-content p {
    font-size: 14px;
  }
}

/* ================================
   TRUST & CERTIFICATIONS SECTION
   ================================ */
.tm-trust-certs {
  padding: 60px 0;
  background: linear-gradient(135deg, #fafaf8 0%, #f5f3f0 100%);
  position: relative;
  overflow: hidden;
}

.tm-trust-certs::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(201, 168, 106, 0.05), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(93, 64, 55, 0.05), transparent 50%);
  pointer-events: none;
}

.tm-trust-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Stats Column */
.tm-trust-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tm-stat-item {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(93, 64, 55, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.tm-stat-item:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold);
  box-shadow: 0 12px 40px rgba(93, 64, 55, 0.15);
}

.tm-stat-number {
  font-size: 56px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 12px;
}

.tm-stat-label {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Certifications Grid */
.tm-trust-certs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.tm-cert-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.06);
  transition: all 0.3s ease;
  border: 1px solid rgba(201, 168, 106, 0.1);
}

.tm-cert-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(93, 64, 55, 0.12);
  border-color: var(--accent-gold);
}

.tm-cert-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(141, 110, 99, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tm-cert-card:hover .tm-cert-icon {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.2), rgba(141, 110, 99, 0.2));
  transform: rotate(-5deg) scale(1.1);
}

.tm-cert-icon img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(16%) saturate(831%) hue-rotate(358deg) brightness(92%) contrast(88%);
}

.tm-cert-content {
  flex: 1;
}

.tm-cert-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.tm-cert-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin: 0;
}

/* ================================
   DOOR MATERIALS GUIDE SECTION
   ================================ */
.tm-materials-guide {
  padding: 100px 0;
  background: var(--white);
}

.tm-materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.tm-material-card {
  position: relative;
  padding: 40px 30px 30px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 16px;
  border: 2px solid rgba(93, 64, 55, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.tm-material-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-brown), var(--accent-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tm-material-card:hover::before {
  opacity: 1;
}

.tm-material-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(93, 64, 55, 0.15);
  border-color: var(--accent-gold);
}

.tm-material-featured {
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.08) 0%, rgba(141, 110, 99, 0.08) 100%);
  border-color: var(--accent-gold);
}

.tm-material-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--accent-gold), #d4af6a);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tm-material-image {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.08);
  transition: all 0.3s ease;
}

.tm-material-card:hover .tm-material-image {
  transform: scale(1.1) rotate(-5deg);
}

.tm-material-image img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(18%) saturate(626%) hue-rotate(358deg) brightness(88%) contrast(87%);
}

.tm-material-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 8px;
}

.tm-material-desc {
  font-size: 14px;
  color: var(--text-secondary);
  text-align: center;
  margin-bottom: 24px;
}

.tm-material-pros {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(93, 64, 55, 0.1);
}

.tm-material-pro-item,
.tm-material-con-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.tm-material-pro-item {
  color: var(--text-secondary);
}

.tm-material-con-item {
  color: #999;
}

.tm-material-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.tm-material-pro-item .tm-material-icon {
  color: #10b981;
}

.tm-material-con-item .tm-material-icon {
  color: #ef4444;
}

.tm-material-rating {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.tm-rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--text-secondary);
}

.tm-rating-row span {
  min-width: 50px;
}

.tm-rating-bar {
  flex: 1;
  height: 6px;
  background: rgba(93, 64, 55, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.tm-rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), #d4af6a);
  transition: width 1s ease;
}

.tm-material-use {
  font-size: 13px;
  color: var(--text-secondary);
  text-align: center;
  padding: 16px;
  background: rgba(93, 64, 55, 0.03);
  border-radius: 8px;
}

.tm-material-use strong {
  color: var(--text-primary);
}

/* ================================
   BEFORE/AFTER GALLERY SECTION
   ================================ */
.tm-before-after {
  padding: 100px 0;
  background: linear-gradient(180deg, #f9f8f6 0%, var(--white) 100%);
}

.tm-ba-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.tm-ba-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(93, 64, 55, 0.08);
  transition: all 0.4s ease;
}

.tm-ba-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(93, 64, 55, 0.15);
}

.tm-ba-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
}

.tm-ba-image-wrap {
  position: relative;
  overflow: hidden;
}

.tm-ba-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.tm-ba-card:hover .tm-ba-before img {
  transform: scale(1.05);
}

.tm-ba-card:hover .tm-ba-after img {
  transform: scale(1.1);
}

.tm-ba-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tm-ba-label-after {
  background: linear-gradient(135deg, var(--accent-gold), #d4af6a);
}

.tm-ba-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  z-index: 2;
}

.tm-ba-divider-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent-gold);
  transform: translateX(-50%);
}

.tm-ba-divider-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: var(--white);
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  box-shadow: 0 4px 16px rgba(93, 64, 55, 0.2);
}

.tm-ba-content {
  padding: 30px;
}

.tm-ba-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tm-ba-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.tm-ba-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
}

.tm-ba-meta-item img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(16%) saturate(831%) hue-rotate(358deg) brightness(92%) contrast(88%);
}

.tm-ba-description {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ================================
   WARRANTY & AFTER-SERVICE SECTION
   ================================ */
.tm-warranty {
  padding: 100px 0;
  background: linear-gradient(135deg, #2c1810 0%, #3d2414 100%);
  color: #e8e0d5;
  position: relative;
  overflow: hidden;
}

.tm-warranty::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 168, 106, 0.1), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(141, 110, 99, 0.1), transparent 50%);
  animation: warrantyGlow 20s ease-in-out infinite;
}

@keyframes warrantyGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.tm-warranty-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: start;
}

.tm-warranty-content .tm-label {
  background: rgba(201, 168, 106, 0.2);
  color: var(--accent-gold);
}

.tm-warranty-content .tm-section-h2 {
  color: #e8e0d5;
}

.tm-warranty-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(232, 224, 213, 0.9);
  margin-bottom: 40px;
}

.tm-warranty-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tm-warranty-feature {
  display: flex;
  gap: 24px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(201, 168, 106, 0.2);
  transition: all 0.4s ease;
}

.tm-warranty-feature:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--accent-gold);
  transform: translateX(8px);
}

.tm-warranty-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.2), rgba(141, 110, 99, 0.2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.tm-warranty-feature:hover .tm-warranty-feature-icon {
  transform: rotate(-10deg) scale(1.1);
}

.tm-warranty-feature-icon img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(626%) hue-rotate(358deg) brightness(93%) contrast(87%);
}

.tm-warranty-feature-content {
  flex: 1;
}

.tm-warranty-feature-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.tm-warranty-feature-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(232, 224, 213, 0.8);
  margin: 0;
}

/* Guarantee Certificate */
.tm-warranty-certificate {
  position: sticky;
  top: 120px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 2px solid rgba(201, 168, 106, 0.3);
  border-radius: 20px;
  text-align: center;
}

.tm-cert-seal {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.2), rgba(141, 110, 99, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: certRotate 20s linear infinite;
}

@keyframes certRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.tm-cert-seal img {
  filter: brightness(0) saturate(100%) invert(78%) sepia(18%) saturate(626%) hue-rotate(358deg) brightness(93%) contrast(87%);
}

.tm-cert-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent-gold);
  margin-bottom: 30px;
}

.tm-cert-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 30px;
}

.tm-cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  font-size: 14px;
  color: rgba(232, 224, 213, 0.9);
  text-align: left;
}

.tm-cert-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--accent-gold), #d4af6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  flex-shrink: 0;
}

.tm-cert-note {
  font-size: 12px;
  color: rgba(232, 224, 213, 0.6);
  font-style: italic;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 168, 106, 0.2);
}

/* ================================
   COMMON PROBLEMS SECTION
   ================================ */
.tm-problems {
  padding: 100px 0;
  background: var(--white);
}

.tm-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.tm-problem-card {
  position: relative;
  padding: 40px 30px 30px;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  border-radius: 16px;
  border: 2px solid rgba(93, 64, 55, 0.08);
  transition: all 0.4s ease;
  overflow: hidden;
}

.tm-problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f59e0b);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tm-problem-card:hover::before {
  opacity: 1;
}

.tm-problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(93, 64, 55, 0.12);
  border-color: var(--accent-gold);
}

.tm-problem-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-gold), #d4af6a);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}

.tm-problem-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(93, 64, 55, 0.08);
  transition: all 0.3s ease;
}

.tm-problem-card:hover .tm-problem-icon {
  transform: scale(1.1) rotate(-5deg);
}

.tm-problem-icon img {
  filter: brightness(0) saturate(100%) invert(42%) sepia(18%) saturate(626%) hue-rotate(358deg) brightness(88%) contrast(87%);
}

.tm-problem-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: center;
}

.tm-problem-cause,
.tm-problem-solution {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  padding: 16px;
  background: rgba(93, 64, 55, 0.03);
  border-radius: 8px;
}

.tm-problem-cause strong {
  color: #ef4444;
}

.tm-problem-solution strong {
  color: #10b981;
}

.tm-problem-cta {
  display: block;
  width: 100%;
  padding: 12px;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-brown), var(--accent-wood));
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.tm-problem-cta:hover {
  background: linear-gradient(135deg, var(--accent-wood), var(--primary-brown));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(93, 64, 55, 0.3);
}

/* CTA Box */
.tm-problems-cta-box {
  margin-top: 60px;
  padding: 50px;
  background: linear-gradient(135deg, rgba(201, 168, 106, 0.1), rgba(141, 110, 99, 0.1));
  border-radius: 20px;
  text-align: center;
  border: 2px solid rgba(201, 168, 106, 0.2);
}

.tm-problems-cta-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.tm-problems-cta-box p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================================
   FIXED CALL BUTTON
   ================================ */
.tm-fixed-call {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 65px;
  height: 65px;
  background: var(--primary-brown);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(93, 64, 55, 0.4);
  z-index: 9999;
  transition: all var(--transition-base);
  animation: pulse 2s infinite;
}

.tm-fixed-call:hover {
  background: var(--medium-brown);
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(93, 64, 55, 0.5);
}

.tm-fixed-call svg {
  width: 28px;
  height: 28px;
}

.tm-fixed-call img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(93, 64, 55, 0.4);
  }
  50% {
    box-shadow: 0 6px 24px rgba(93, 64, 55, 0.4), 0 0 0 12px rgba(93, 64, 55, 0.1);
  }
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

/* Tablet */
@media (max-width: 1024px) {
  /* Hero Tablet */
  .tm-hero {
    padding: 90px 0 70px;
    min-height: auto;
  }

  .tm-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tm-hero-main {
    max-width: 100%;
  }

  .tm-hero-tag {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .tm-hero-title {
    font-size: clamp(2.5rem, 8vw, 3.8rem);
    margin-bottom: 24px;
  }

  .tm-hero-text {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .tm-hero-ctas {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 44px;
  }

  .tm-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 15px 28px;
  }

  .tm-hero-badges {
    gap: 32px;
    padding-top: 26px;
  }

  .tm-badge-item strong {
    font-size: 26px;
  }

  .tm-badge-item span {
    font-size: 12px;
  }

  .tm-hero-image {
    order: -1;
  }

  .tm-img-box {
    border-radius: 14px;
  }

  .tm-about-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-contact-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-about-features {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }

  /* Contact Section Mobile */
  .tm-contact-subtitle {
    font-size: 20px;
    margin-bottom: 28px;
    padding-bottom: 12px;
  }

  /* Header Mobile */
  .tm-header {
    padding: 12px 0;
  }

  .tm-header-wrap {
    justify-content: space-between;
    gap: 12px;
  }

  .tm-header-actions {
    gap: 8px;
    margin-left: auto;
  }

  /* Phone Button - Hidden on Mobile */
  .tm-phone-btn {
    display: none;
  }

  .tm-logo-icon {
    width: 42px;
    height: 42px;
  }

  .tm-logo-brand {
    font-size: 19px;
  }

  .tm-logo-tagline {
    font-size: 10px;
  }

  .tm-nav {
    display: none;
  }

  .tm-blog-btn {
    width: 36px;
    height: 36px;
  }

  .tm-blog-btn img {
    width: 18px;
    height: 18px;
  }

  .tm-phone-text {
    display: none;
  }

  .tm-mobile-menu {
    display: flex;
  }

  /* Mobile Navigation Active */
  .tm-nav.active {
    display: flex;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 12px 16px;
    box-shadow: 0 4px 12px rgba(93, 64, 55, 0.1);
    gap: 2px;
    animation: menuSlide 0.3s ease;
    border-top: 1px solid var(--beige-light);
  }

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

  .tm-nav.active .tm-nav-link {
    width: 100%;
    padding: 10px 14px;
  }

  /* Hero Mobile */
  .tm-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .tm-hero-bg-img {
    animation: none;
  }

  .tm-hero-shape {
    display: none;
  }

  .tm-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-hero-content {
    max-width: 100%;
  }

  .tm-hero-badge {
    font-size: 12px;
    padding: 8px 18px;
    margin-bottom: 20px;
  }

  .tm-hero-h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
    margin-bottom: 18px;
  }

  .tm-hero-gradient-text {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .tm-hero-text {
    font-size: clamp(1rem, 4vw, 1.1rem);
    margin-bottom: 32px;
  }

  .tm-hero-buttons {
    flex-direction: column;
    margin-bottom: 36px;
  }

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

  .tm-hero-numbers {
    flex-wrap: wrap;
    gap: 24px;
  }

  .tm-number-value {
    font-size: 32px;
  }

  .tm-number-label {
    font-size: 11px;
  }

  .tm-hero-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .tm-glass-card {
    padding: 22px 20px;
  }

  .tm-card-icon {
    width: 56px;
    height: 56px;
  }

  .tm-card-icon img {
    width: 28px;
    height: 28px;
  }

  .tm-card-title {
    font-size: 16px;
  }

  .tm-card-desc {
    font-size: 13px;
  }

  /* Services Mobile */
  .tm-services-grid {
    grid-template-columns: 1fr;
  }

  .tm-service-card {
    padding: 24px;
  }

  /* Districts Mobile */
  .tm-districts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tm-district-item {
    padding: 12px 16px;
  }

  /* Process Mobile */
  .tm-step {
    grid-template-columns: 60px 1fr;
    gap: 20px;
  }

  .tm-step-circle {
    width: 60px;
    height: 60px;
  }

  .tm-step-num {
    font-size: 24px;
  }

  .tm-step-line {
    left: 29px;
  }

  .tm-step-content {
    padding: 24px;
  }

  /* Portfolio Mobile */
  .tm-portfolio-grid {
    grid-template-columns: 1fr;
  }

  /* Sections Padding */
  .tm-services,
  .tm-why,
  .tm-geography,
  .tm-process,
  .tm-portfolio,
  .tm-pricing,
  .tm-about,
  .tm-reviews,
  .tm-blog,
  .tm-faq,
  .tm-contact,
  .tm-seo-text {
    padding: 60px 0;
  }

  /* Section Headers */
  .tm-section-head {
    margin-bottom: 40px;
  }

  .tm-section-h2 {
    font-size: 2rem;
  }

  .tm-section-text {
    font-size: 16px;
  }

  /* Fixed Call Button Mobile */
  .tm-fixed-call {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
  }

  .tm-fixed-call svg {
    width: 24px;
    height: 24px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .tm-districts-grid {
    grid-template-columns: 1fr;
  }

  .tm-hero {
    padding: 85px 0 60px;
  }

  .tm-hero-grid {
    gap: 40px;
  }

  .tm-hero-title {
    font-size: 2.3rem;
    margin-bottom: 20px;
  }

  .tm-hero-text {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .tm-hero-ctas {
    margin-bottom: 38px;
  }

  .tm-hero-badges {
    gap: 24px;
  }

  .tm-badge-item strong {
    font-size: 24px;
  }

  .tm-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Very Small Mobile */
@media (max-width: 375px) {
  :root {
    --container-padding: 16px;
  }

  .tm-hero {
    padding: 80px 0 55px;
  }

  .tm-hero-grid {
    gap: 35px;
  }

  .tm-hero-tag {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .tm-hero-title {
    font-size: 2.1rem;
    margin-bottom: 18px;
  }

  .tm-hero-text {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .tm-hero-ctas {
    margin-bottom: 34px;
  }

  .tm-cta-btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .tm-hero-badges {
    gap: 20px;
    padding-top: 24px;
  }

  .tm-badge-item strong {
    font-size: 22px;
  }

  .tm-badge-item span {
    font-size: 11px;
  }

  .tm-service-card,
  .tm-step-content,
  .tm-project-content,
  .tm-review-card,
  .tm-blog-content {
    padding: 20px;
  }

  .tm-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}


/* ================================
   NEW SECTIONS RESPONSIVE
   ================================ */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .tm-trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tm-materials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tm-ba-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tm-warranty-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tm-warranty-certificate {
    position: static;
  }

  .tm-problems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  .tm-trust-certs {
    padding: 50px 0;
  }

  .tm-trust-stats {
    gap: 20px;
  }

  .tm-stat-item {
    padding: 24px;
  }

  .tm-stat-number {
    font-size: 48px;
  }

  .tm-trust-certs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-cert-card {
    padding: 20px;
  }

  .tm-materials-guide {
    padding: 70px 0;
  }

  .tm-materials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .tm-material-card {
    padding: 30px 24px 24px;
  }

  .tm-before-after {
    padding: 70px 0;
  }

  .tm-ba-grid {
    gap: 24px;
    margin-top: 40px;
  }

  .tm-ba-images {
    height: 220px;
  }

  .tm-ba-content {
    padding: 24px;
  }

  .tm-ba-title {
    font-size: 18px;
  }

  .tm-warranty {
    padding: 70px 0;
  }

  .tm-warranty-wrap {
    gap: 40px;
  }

  .tm-warranty-lead {
    font-size: 16px;
  }

  .tm-warranty-features {
    gap: 20px;
  }

  .tm-warranty-feature {
    padding: 24px;
    gap: 16px;
  }

  .tm-warranty-feature-icon {
    width: 50px;
    height: 50px;
  }

  .tm-warranty-feature-title {
    font-size: 17px;
  }

  .tm-warranty-feature-text {
    font-size: 14px;
  }

  .tm-warranty-certificate {
    padding: 30px;
  }

  .tm-cert-seal {
    width: 100px;
    height: 100px;
  }

  .tm-cert-heading {
    font-size: 20px;
  }

  .tm-problems {
    padding: 70px 0;
  }

  .tm-problems-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .tm-problem-card {
    padding: 30px 24px 24px;
  }

  .tm-problems-cta-box {
    padding: 40px 30px;
  }

  .tm-problems-cta-box h3 {
    font-size: 24px;
  }

  .tm-problems-cta-box p {
    font-size: 15px;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  /* Contact Section Mobile */
  .tm-contact-subtitle {
    font-size: 18px;
    margin-bottom: 24px;
    padding-bottom: 10px;
  }

  .tm-trust-stats {
    gap: 16px;
  }

  .tm-stat-item {
    padding: 20px;
  }

  .tm-stat-number {
    font-size: 42px;
  }

  .tm-stat-label {
    font-size: 14px;
  }

  .tm-cert-card {
    padding: 16px;
    gap: 12px;
  }

  .tm-cert-icon {
    width: 50px;
    height: 50px;
  }

  .tm-cert-title {
    font-size: 15px;
  }

  .tm-cert-text {
    font-size: 13px;
  }

  .tm-material-card {
    padding: 24px 20px 20px;
  }

  .tm-material-image {
    width: 70px;
    height: 70px;
  }

  .tm-material-title {
    font-size: 20px;
  }

  .tm-ba-images {
    height: 180px;
  }

  .tm-ba-content {
    padding: 20px;
  }

  .tm-ba-title {
    font-size: 17px;
  }

  .tm-ba-meta {
    flex-direction: column;
    gap: 8px;
  }

  .tm-warranty-feature {
    padding: 20px;
    gap: 12px;
    flex-direction: column;
    text-align: center;
  }

  .tm-warranty-feature-icon {
    width: 60px;
    height: 60px;
  }

  .tm-warranty-certificate {
    padding: 24px;
  }

  .tm-cert-items {
    gap: 12px;
  }

  .tm-cert-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .tm-problem-card {
    padding: 24px 20px 20px;
  }

  .tm-problem-icon {
    width: 70px;
    height: 70px;
  }

  .tm-problem-title {
    font-size: 18px;
  }

  .tm-problems-cta-box {
    padding: 30px 20px;
  }

  .tm-problems-cta-box h3 {
    font-size: 22px;
  }
}

/* Very Small Mobile - 375px */
@media (max-width: 375px) {
  /* Contact Section Mobile */
  .tm-contact-subtitle {
    font-size: 17px;
    margin-bottom: 22px;
    padding-bottom: 10px;
  }

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

  .tm-material-title {
    font-size: 18px;
  }

  .tm-ba-title {
    font-size: 16px;
  }

  .tm-problem-title {
    font-size: 17px;
  }

  .tm-problems-cta-box h3 {
    font-size: 20px;
  }
}
