/* ===== CSS RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Lato', 'Segoe UI', Arial, sans-serif;
  line-height: 1.7;
  color: #3D2E1F;
  background: linear-gradient(135deg, #FFF9F4 0%, #FFE8D9 100%);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #3D2E1F;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  color: #5C4A38;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #D4A574, #8B7355);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #5C4A38;
}

h4 {
  font-size: 18px;
  color: #5C4A38;
}

p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #3D2E1F;
}

a {
  color: #8B7355;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #D4A574;
  transform: translateX(3px);
}

ul {
  list-style: none;
}

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

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.95), rgba(255, 249, 244, 0.95));
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(139, 115, 85, 0.15);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(139, 115, 85, 0.2));
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05) rotate(-2deg);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 600;
  font-size: 16px;
  color: #5C4A38;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.main-nav a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.3), transparent);
  transition: left 0.5s ease;
}

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #E8DDD3, #F5EDE3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 115, 85, 0.2);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  color: white;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(180deg, #E8DDD3 0%, #F5EDE3 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #5C4A38, #8B7355);
  color: white;
  border: none;
  font-size: 28px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(92, 74, 56, 0.3);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: linear-gradient(135deg, #3D2E1F, #5C4A38);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 600;
  color: #5C4A38;
  padding: 16px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.3), rgba(139, 115, 85, 0.2));
  border-left-color: #D4A574;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.2);
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 30px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

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

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #8B7355, #D4A574);
  color: white;
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.4);
  background: linear-gradient(135deg, #9B8365, #E4B584);
}

.btn-secondary {
  background: transparent;
  color: #8B7355;
  border: 2px solid #8B7355;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #8B7355, #D4A574);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.btn-link {
  font-weight: 600;
  color: #8B7355;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFE8D9 0%, #FFF9F4 50%, #E8DDD3 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.2), transparent);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.15), transparent);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(5deg); }
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 20px;
  color: #5C4A38;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeInUp 1s ease;
}

.trust-badge {
  margin-top: 32px;
  font-size: 14px;
  color: #8B7355;
  font-weight: 600;
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.15);
  animation: fadeInUp 1.2s ease;
}

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

/* ===== HERO PAGE ===== */
.hero-page {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFE8D9 0%, #FFF9F4 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 115, 85, 0.1) 0%, transparent 50%);
  z-index: 0;
}

.hero-page .container {
  position: relative;
  z-index: 1;
}

.hero-page h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 20px;
  color: #5C4A38;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== SECTIONS ===== */
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.intro-text {
  font-size: 18px;
  color: #5C4A38;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ===== PROBLEM-SOLUTION SECTION ===== */
.problem-solution {
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.5), rgba(255, 249, 244, 0.5));
  border-radius: 20px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
}

.problem-text {
  font-size: 18px;
  color: #5C4A38;
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.6);
  border-left: 4px solid #D4A574;
  border-radius: 10px;
}

.solution-text {
  font-size: 20px;
  font-weight: 700;
  color: #8B7355;
  margin-bottom: 32px;
  text-align: center;
}

.benefit-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.benefit-list li {
  padding: 16px 20px 16px 50px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
  font-weight: 600;
  color: #5C4A38;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: #D4A574;
  font-size: 20px;
  font-weight: bold;
}

.benefit-list li:hover {
  transform: translateX(10px);
  background: linear-gradient(135deg, rgba(212, 165, 116, 0.2), rgba(255, 255, 255, 0.8));
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.15);
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8B7355, #D4A574);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 244, 0.8));
}

.service-card h3 {
  font-size: 22px;
  color: #5C4A38;
  margin-bottom: 16px;
}

.service-card p {
  color: #5C4A38;
  margin-bottom: 16px;
  line-height: 1.6;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #8B7355;
  margin: 20px 0;
  display: block;
}

.price-large {
  font-size: 48px;
  font-weight: 700;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 24px 0;
  display: block;
}

.cta-center {
  text-align: center;
  margin-top: 48px;
}

/* ===== METHOD STEPS ===== */
.method-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.4));
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.step::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  border-radius: 15px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step:hover::before {
  opacity: 1;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.2);
}

.step h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.6;
}

/* ===== BENEFITS GRID ===== */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.benefit-item {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 244, 0.8));
}

.benefit-item h3 {
  font-size: 20px;
  color: #8B7355;
}

.benefit-item p {
  color: #5C4A38;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: linear-gradient(135deg, #E8DDD3 0%, #F5EDE3 100%);
  padding: 80px 20px;
  border-radius: 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.15);
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  color: rgba(212, 165, 116, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.25);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #3D2E1F;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin: 0;
}

.author {
  font-weight: 700;
  color: #8B7355;
  font-style: normal;
  margin-top: 16px;
}

.rating {
  color: #D4A574;
  font-size: 18px;
  margin: 0;
}

.social-proof {
  text-align: center;
  margin-top: 48px;
  font-size: 18px;
  font-weight: 700;
  color: #8B7355;
}

/* ===== CTA SECTIONS ===== */
.cta-final {
  background: linear-gradient(135deg, #8B7355 0%, #D4A574 100%);
  padding: 80px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.3);
}

.cta-content h2 {
  color: white;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-content h2::after {
  display: none;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  margin-bottom: 32px;
}

.availability {
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
}

.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.5), rgba(255, 249, 244, 0.5));
  border-radius: 20px;
  text-align: center;
}

/* ===== SERVICES DETAIL PAGE ===== */
.services-detail .service-full {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 48px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
}

.services-detail .service-full:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.15);
}

.services-detail .service-full h2 {
  color: #5C4A38;
  margin-bottom: 24px;
}

.services-detail .service-full p {
  font-size: 18px;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.step-item {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 249, 244, 0.8));
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4A574;
}

.step-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.2);
  border-top-color: #8B7355;
}

.step-item h3 {
  font-size: 20px;
  color: #8B7355;
  margin-bottom: 16px;
}

.step-item p {
  font-size: 14px;
  color: #5C4A38;
  line-height: 1.6;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  padding: 60px 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.4));
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #D4A574;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 35px rgba(139, 115, 85, 0.15);
  border-left-color: #8B7355;
}

.faq-item h3 {
  font-size: 20px;
  color: #5C4A38;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5C4A38;
  line-height: 1.7;
}

/* ===== METHOD PHASES ===== */
.method-phases .phase {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 32px;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.method-phases .phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, #8B7355, #D4A574);
}

.method-phases .phase:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
}

.method-phases .phase h3 {
  font-size: 28px;
  color: #8B7355;
  margin-bottom: 16px;
}

.method-phases .phase p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 16px;
}

.duration {
  font-size: 14px;
  font-weight: 700;
  color: #D4A574;
  margin-top: 16px;
}

/* ===== PHILOSOPHY SECTION ===== */
.philosophy {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.3), rgba(255, 249, 244, 0.5));
  border-radius: 20px;
}

.core-belief {
  font-size: 22px;
  font-weight: 600;
  color: #8B7355;
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.7;
  padding: 32px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
}

.principles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.principle {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 244, 0.8));
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  border-top: 3px solid #D4A574;
}

.principle:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
  border-top-color: #8B7355;
}

.principle h3 {
  font-size: 20px;
  color: #8B7355;
  margin-bottom: 12px;
}

.principle p {
  color: #5C4A38;
  line-height: 1.6;
}

/* ===== GUARANTEES ===== */
.guarantees {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8DDD3, #F5EDE3);
  border-radius: 20px;
}

.guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.guarantee-list li {
  padding: 20px 24px 20px 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  position: relative;
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.6;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.guarantee-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  color: #8B7355;
  font-size: 24px;
  font-weight: bold;
}

.guarantee-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 249, 244, 0.9));
}

/* ===== PORTFOLIO SECTIONS ===== */
.portfolio-stats {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8DDD3, #F5EDE3);
  border-radius: 20px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.stat-box, .stat-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 244, 0.9));
  padding: 40px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4A574;
}

.stat-box:hover, .stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.2);
  border-top-color: #8B7355;
}

.stat-box h3, .stat-item h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.stat-box p, .stat-item p {
  font-size: 16px;
  color: #5C4A38;
  font-weight: 600;
}

/* ===== PROJECT CARDS ===== */
.project-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border-left: 6px solid #D4A574;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.15);
  border-left-color: #8B7355;
}

.project-card h3 {
  font-size: 24px;
  color: #8B7355;
  margin-bottom: 16px;
}

.project-specs {
  font-size: 14px;
  color: #5C4A38;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 8px 16px;
  background: rgba(212, 165, 116, 0.15);
  border-radius: 8px;
  display: inline-block;
}

.project-card p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 12px;
}

.project-card .testimonial {
  font-style: italic;
  color: #8B7355;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.7);
  border-left: 3px solid #D4A574;
  border-radius: 8px;
}

/* ===== RESULTS GRID ===== */
.results {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(255, 249, 244, 0.5), rgba(232, 221, 211, 0.3));
  border-radius: 20px;
}

.result-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.result-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 244, 0.9));
  padding: 40px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.result-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #8B7355, #D4A574);
}

.result-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.2);
}

.result-item h3 {
  font-size: 42px;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.result-item p {
  font-size: 14px;
  color: #5C4A38;
  font-weight: 600;
  line-height: 1.5;
}

/* ===== BLOG SECTIONS ===== */
.featured-article {
  padding: 60px 20px;
  background: linear-gradient(135deg, #8B7355, #D4A574);
  border-radius: 20px;
  margin-bottom: 60px;
}

.article-featured {
  text-align: center;
  color: white;
}

.article-featured h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}

.article-featured h2::after {
  background: rgba(255, 255, 255, 0.5);
}

.excerpt {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

/* ===== BLOG CATEGORIES ===== */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.category-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 180px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: #5C4A38;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.category-card:hover {
  background: linear-gradient(135deg, #8B7355, #D4A574);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
}

/* ===== ARTICLES GRID ===== */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.article-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.4));
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  border-left: 4px solid #D4A574;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(139, 115, 85, 0.15);
  border-left-color: #8B7355;
}

.article-card h3 {
  font-size: 20px;
  color: #5C4A38;
  margin-bottom: 12px;
}

.article-card .meta {
  color: #8B7355;
  margin-bottom: 12px;
}

.article-card p {
  color: #5C4A38;
  line-height: 1.6;
}

/* ===== QUICK TIPS ===== */
.quick-tips {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.4), rgba(255, 249, 244, 0.6));
  border-radius: 20px;
}

.tips-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.tips-list li {
  padding: 20px 24px 20px 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  position: relative;
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.6;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.tips-list li::before {
  content: '💡';
  position: absolute;
  left: 20px;
  font-size: 24px;
}

.tips-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.15);
}

/* ===== CONTACT SECTIONS ===== */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  border-top: 4px solid #D4A574;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.15);
  border-top-color: #8B7355;
}

.contact-card h3 {
  font-size: 24px;
  color: #8B7355;
  margin-bottom: 16px;
}

.contact-card p {
  color: #5C4A38;
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-detail {
  font-weight: 700;
  font-size: 18px;
  color: #8B7355;
  margin: 20px 0;
}

.note {
  font-size: 14px;
  color: #8B7355;
  font-style: italic;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
  padding: 60px 20px;
}

.form-intro {
  text-align: center;
  font-size: 18px;
  color: #5C4A38;
  margin-bottom: 32px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.1);
}

.form-placeholder p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #5C4A38;
  padding: 12px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  border-left: 3px solid #D4A574;
}

.form-note {
  text-align: center;
  font-style: italic;
  color: #8B7355;
  margin-top: 24px;
}

/* ===== LOCATION INFO ===== */
.location-info, .opening-hours, .service-areas {
  padding: 60px 20px;
}

.location-details {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.4));
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  margin-top: 32px;
}

.location-details p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 16px;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.hours-block {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
}

.hours-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(139, 115, 85, 0.15);
}

.hours-block h3 {
  font-size: 20px;
  color: #8B7355;
  margin-bottom: 16px;
}

.hours-block p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== TRUST INDICATORS ===== */
.trust-indicators {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.4), rgba(255, 249, 244, 0.5));
  border-radius: 20px;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.trust-list li {
  padding: 20px 24px 20px 60px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  position: relative;
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.6;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
  font-weight: 600;
}

.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 24px;
  color: #8B7355;
  font-size: 24px;
  font-weight: bold;
}

.trust-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.15);
}

/* ===== LEGAL CONTENT ===== */
.legal-content {
  padding: 60px 20px;
}

.legal-content .content-wrapper {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.3));
  padding: 48px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
}

.legal-content h2 {
  font-size: 24px;
  color: #8B7355;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.legal-content ul li {
  list-style: disc;
  color: #5C4A38;
  line-height: 1.7;
  margin-bottom: 8px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #8B7355, #D4A574);
}

.thank-you-hero h1 {
  color: white;
  -webkit-text-fill-color: white;
}

.thank-you-hero .subtitle {
  color: rgba(255, 255, 255, 0.95);
}

.next-steps {
  padding: 80px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.step-box {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.5));
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  border-top: 4px solid #D4A574;
}

.step-box:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.2);
  border-top-color: #8B7355;
}

.step-box h3 {
  font-size: 20px;
  color: #8B7355;
  margin-bottom: 16px;
}

.step-box p {
  font-size: 14px;
  color: #5C4A38;
  line-height: 1.6;
}

/* ===== MEANWHILE SECTION ===== */
.meanwhile {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(232, 221, 211, 0.4), rgba(255, 249, 244, 0.5));
  border-radius: 20px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.action-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 249, 244, 0.9));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.action-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(139, 115, 85, 0.2);
}

.action-card h3 {
  font-size: 22px;
  color: #8B7355;
}

.action-card p {
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.6;
}

.testimonial-section {
  padding: 60px 20px;
}

.return-home {
  padding: 60px 20px;
  text-align: center;
}

/* ===== STORY & VALUES ===== */
.story, .approach, .credentials {
  padding: 60px 20px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.values-list li {
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(232, 221, 211, 0.4));
  border-radius: 12px;
  font-size: 16px;
  color: #5C4A38;
  line-height: 1.7;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #D4A574;
}

.values-list li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 25px rgba(139, 115, 85, 0.15);
  border-left-color: #8B7355;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #5C4A38 0%, #3D2E1F 100%);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
  color: #D4A574;
  font-size: 18px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #D4A574;
  transform: translateX(5px);
}

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(61, 46, 31, 0.98), rgba(92, 74, 56, 0.98));
  padding: 24px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  backdrop-filter: blur(10px);
}

.cookie-consent.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 1.6;
}
.cookie-text p {
  color: white;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: linear-gradient(135deg, #8B7355, #D4A574);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.4);
}

.cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.cookie-settings {
  background: transparent;
  color: #D4A574;
  border: 2px solid #D4A574;
}

.cookie-settings:hover {
  background: rgba(212, 165, 116, 0.1);
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #FFF9F4, #FFE8D9);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  font-size: 24px;
  color: #5C4A38;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  border-left: 4px solid #D4A574;
}

.cookie-category h4 {
  font-size: 18px;
  color: #8B7355;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #8B7355, #D4A574);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-category p {
  font-size: 14px;
  color: #5C4A38;
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 18px; }
  
  .hero-page { padding: 60px 20px; }
  .hero-page h1 { font-size: 32px; }
  .subtitle { font-size: 16px; }
  
  .service-card {
    flex: 1 1 100%;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  .benefit-item,
  .stat-box,
  .stat-item,
  .result-item,
  .step-box {
    flex: 1 1 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .contact-card,
  .hours-block {
    flex: 1 1 100%;
  }
  
  .category-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .article-card {
    flex: 1 1 100%;
  }
  
  .action-card {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .services-grid {
    gap: 20px;
  }
  
  .method-steps {
    gap: 20px;
  }
  
  section {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 28px; }
  .hero-subtitle { font-size: 16px; }
  
  .btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .category-card {
    flex: 1 1 100%;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

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

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid #D4A574;
  outline-offset: 2px;
}

.btn:focus {
  outline: 3px solid #D4A574;
  outline-offset: 3px;
}

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
}