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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #2d2013;
  background: #f5ede0;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

/* ===== VINTAGE RETRO TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.2;
  color: #3d2817;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  text-shadow: 2px 2px 0px rgba(245, 158, 11, 0.3);
}

h2 {
  font-size: 32px;
  letter-spacing: -0.5px;
  border-bottom: 3px solid #c97a2f;
  padding-bottom: 12px;
  display: inline-block;
}

h3 {
  font-size: 24px;
  color: #8b4513;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a3728;
}

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

/* ===== VINTAGE RETRO HEADER ===== */
header {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.4);
  border-bottom: 4px solid #f5deb3;
}

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

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

.logo img {
  height: 50px;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

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

.main-nav a {
  color: #faebd7;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  background: rgba(245, 222, 179, 0.15);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-nav a:hover {
  background: #f5deb3;
  color: #8b4513;
  border-color: #8b4513;
  transform: translateY(-2px);
}

/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #8b4513;
  color: #faebd7;
  border: 3px solid #f5deb3;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #a0522d;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #8b4513 0%, #d2691e 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
  border-left: 4px solid #f5deb3;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #faebd7;
  color: #faebd7;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #faebd7;
  color: #8b4513;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #faebd7;
  padding: 14px 20px;
  background: rgba(245, 222, 179, 0.15);
  border-radius: 8px;
  border: 2px solid rgba(245, 222, 179, 0.3);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: #f5deb3;
  color: #8b4513;
  border-color: #8b4513;
  transform: translateX(8px);
}

/* ===== VINTAGE HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #d2691e 0%, #f4a460 50%, #daa520 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 6px solid #8b4513;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(139, 69, 19, 0.05) 10px,
    rgba(139, 69, 19, 0.05) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  color: #faebd7;
  text-shadow: 4px 4px 0px rgba(139, 69, 19, 0.6);
  margin-bottom: 24px;
  font-size: 56px;
}

.hero-subtitle {
  font-size: 20px;
  color: #2d2013;
  margin-bottom: 16px;
  font-weight: 600;
  background: rgba(245, 222, 179, 0.8);
  padding: 12px 24px;
  border-radius: 8px;
  display: inline-block;
}

.value-prop {
  font-size: 18px;
  color: #faebd7;
  margin-bottom: 32px;
  font-style: italic;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  background: rgba(245, 222, 179, 0.9);
  padding: 10px 20px;
  border-radius: 20px;
  color: #8b4513;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid #8b4513;
  box-shadow: 3px 3px 0px rgba(139, 69, 19, 0.4);
}

/* ===== VINTAGE BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: #8b4513;
  color: #faebd7;
  border-color: #f5deb3;
}

.btn-primary:hover {
  background: #a0522d;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
  background: #f5deb3;
  color: #8b4513;
  border-color: #8b4513;
}

.btn-secondary:hover {
  background: #ffe4b5;
  transform: translateY(-3px);
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

/* ===== SECTION STYLES ===== */
.section {
  margin-bottom: 60px;
  padding: 60px 20px;
}

.benefits {
  background: #faebd7;
  padding: 60px 20px;
  border-top: 4px solid #8b4513;
  border-bottom: 4px solid #8b4513;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  background: #f5ede0;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 2px,
    rgba(210, 105, 30, 0.1) 2px,
    rgba(210, 105, 30, 0.1) 4px
  );
  border-radius: 12px;
  z-index: -1;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.benefit-card h3 {
  color: #8b4513;
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #4a3728;
  line-height: 1.7;
}

/* ===== PRODUCT CATEGORIES ===== */
.product-categories {
  background: #ffe4b5;
  padding: 60px 20px;
}

.product-categories h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  border: 4px solid #d2691e;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 12px 12px 0px rgba(139, 69, 19, 0.4);
}

.category-card h3 {
  color: #8b4513;
  font-size: 24px;
  border-bottom: 2px solid #c97a2f;
  padding-bottom: 8px;
}

.category-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #d2691e;
  margin: 8px 0;
}

.category-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card ul li {
  padding-left: 24px;
  position: relative;
  color: #4a3728;
}

.category-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: 700;
  font-size: 18px;
}

/* ===== STATS SECTION ===== */
.stats {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  padding: 60px 20px;
  border-top: 6px solid #f5deb3;
  border-bottom: 6px solid #f5deb3;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.stat-card {
  background: rgba(245, 222, 179, 0.95);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  border: 3px solid #8b4513;
  box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.stat-card:hover {
  transform: scale(1.08);
  box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.4);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #8b4513;
  display: block;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(210, 105, 30, 0.3);
}

.stat-label {
  font-size: 16px;
  color: #4a3728;
  font-weight: 600;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #f5ede0;
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 300px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 60px;
  color: rgba(210, 105, 30, 0.2);
  font-family: Georgia, serif;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 2px solid #c97a2f;
  padding-top: 16px;
}

.testimonial-author strong {
  color: #8b4513;
  font-size: 16px;
}

.testimonial-author span {
  color: #6b5447;
  font-size: 14px;
}

/* ===== CTA SECTIONS ===== */
.cta, .cta-final {
  background: linear-gradient(135deg, #d2691e 0%, #daa520 100%);
  padding: 60px 20px;
  text-align: center;
  border-top: 6px solid #8b4513;
  border-bottom: 6px solid #8b4513;
}

.cta h2, .cta-final h2 {
  color: #faebd7;
  margin-bottom: 24px;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.5);
}

.cta p, .cta-final p {
  color: #2d2013;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  background: rgba(245, 222, 179, 0.8);
  padding: 16px;
  border-radius: 8px;
}

/* ===== PRODUCTS PAGE ===== */
.page-header {
  background: linear-gradient(135deg, #ffe4b5 0%, #f5deb3 100%);
  padding: 40px 20px;
  border-bottom: 4px solid #8b4513;
}

.breadcrumbs {
  font-size: 14px;
  color: #6b5447;
  margin-bottom: 16px;
}

.breadcrumbs a {
  color: #8b4513;
  font-weight: 600;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.page-header h1 {
  color: #8b4513;
  margin-bottom: 12px;
}

.page-header p {
  color: #4a3728;
  font-size: 18px;
}

.section-subtitle {
  text-align: center;
  color: #6b5447;
  font-size: 18px;
  margin-bottom: 40px;
  font-style: italic;
}

.products {
  padding: 60px 20px;
  background: #f5ede0;
}

.products-smart {
  background: #faebd7;
}

.products-premium {
  background: #ffe4b5;
}

.products h2 {
  text-align: center;
  margin-bottom: 16px;
  color: #8b4513;
}

.products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.product-card {
  background: #faebd7;
  padding: 28px;
  border-radius: 12px;
  flex: 1 1 calc(25% - 18px);
  min-width: 260px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 10px 10px 0px rgba(139, 69, 19, 0.4);
}

.product-card h3 {
  color: #8b4513;
  font-size: 20px;
  margin-bottom: 8px;
}

.product-price {
  font-size: 28px;
  font-weight: 700;
  color: #d2691e;
  margin: 8px 0;
}

.product-specs {
  font-size: 14px;
  color: #6b5447;
  margin-bottom: 12px;
  font-style: italic;
}

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

.product-features li {
  padding-left: 20px;
  position: relative;
  color: #4a3728;
  font-size: 14px;
}

.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: 700;
}

.product-colors {
  font-size: 13px;
  color: #6b5447;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 2px solid #e0d0b8;
}

.badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #d2691e;
  color: #faebd7;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border: 2px solid #8b4513;
  box-shadow: 2px 2px 0px rgba(139, 69, 19, 0.4);
}

.energy-badge {
  display: inline-block;
  background: #228b22;
  color: #faebd7;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid #1a6b1a;
  margin-top: 8px;
}

/* ===== SERVICES PAGE ===== */
.services {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 60px 20px;
  background: #f5ede0;
}

.service-card {
  background: #faebd7;
  padding: 36px;
  border-radius: 12px;
  border: 4px solid #d2691e;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateX(8px);
  box-shadow: 12px 12px 0px rgba(139, 69, 19, 0.4);
}

.service-card h2 {
  color: #8b4513;
  margin-bottom: 16px;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: #d2691e;
  margin: 12px 0 16px;
  display: block;
}

.service-card p {
  color: #4a3728;
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.service-card ul li {
  padding-left: 28px;
  position: relative;
  color: #4a3728;
}

.service-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: 700;
  font-size: 18px;
}

.service-note {
  background: #ffe4b5;
  padding: 12px 16px;
  border-radius: 8px;
  border-left: 4px solid #d2691e;
  margin-top: 16px;
  font-style: italic;
  color: #6b5447;
}

.service-guarantees {
  background: #ffe4b5;
  padding: 60px 20px;
}

.service-guarantees h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.guarantees-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.guarantee-card {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  text-align: center;
  margin-bottom: 20px;
}

.guarantee-card h3 {
  color: #8b4513;
  margin-bottom: 16px;
}

.guarantee-card p {
  color: #4a3728;
}

/* ===== WHY CHOOSE US PAGE ===== */
.values {
  background: #f5ede0;
  padding: 60px 20px;
}

.values h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.value-card {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: scale(1.03);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.value-card h3 {
  color: #8b4513;
  margin-bottom: 16px;
}

.value-card p {
  color: #4a3728;
  line-height: 1.7;
}

.why-choose {
  background: #ffe4b5;
  padding: 60px 20px;
}

.why-choose h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.reasons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.reason-card {
  background: #faebd7;
  padding: 28px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.reason-card:hover {
  transform: translateY(-6px);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.reason-card h3 {
  color: #8b4513;
  margin-bottom: 12px;
  font-size: 20px;
}

.reason-card p {
  color: #4a3728;
}

/* ===== REFERENCES PAGE ===== */
.rating-overview {
  background: #ffe4b5;
  padding: 60px 20px;
}

.rating-overview h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #8b4513;
}

.rating-summary {
  background: #faebd7;
  padding: 40px;
  border-radius: 12px;
  border: 4px solid #d2691e;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

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

.score-number {
  font-size: 72px;
  font-weight: 700;
  color: #d2691e;
  display: block;
  text-shadow: 3px 3px 0px rgba(139, 69, 19, 0.3);
}

.score-max {
  font-size: 28px;
  color: #6b5447;
}

.rating-details {
  width: 100%;
  max-width: 500px;
}

.rating-details p {
  text-align: center;
  color: #4a3728;
  font-weight: 600;
  margin-bottom: 16px;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rating-bar span:first-child {
  color: #d2691e;
  font-weight: 700;
  min-width: 40px;
}

.rating-bar .bar {
  flex: 1;
  height: 20px;
  background: #e0d0b8;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid #c97a2f;
}

.rating-bar .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #d2691e 0%, #daa520 100%);
  transition: width 0.5s ease;
}

.rating-bar span:last-child {
  color: #6b5447;
  font-weight: 600;
  min-width: 45px;
  text-align: right;
}

.recommendation {
  text-align: center;
  font-weight: 700;
  color: #8b4513;
  margin-top: 20px;
  font-size: 18px;
}

.testimonials-detailed {
  background: #f5ede0;
  padding: 60px 20px;
}

.testimonials-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.review-card {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 24px;
  position: relative;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.review-rating {
  color: #daa520;
  font-size: 20px;
}

.review-card h3 {
  color: #8b4513;
  flex: 1;
  min-width: 200px;
}

.review-card > p {
  color: #2d2013;
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 2px solid #c97a2f;
  padding-top: 16px;
}

.review-author strong {
  color: #8b4513;
  font-size: 16px;
}

.review-author span {
  color: #6b5447;
  font-size: 14px;
}

.verified {
  color: #228b22 !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

.case-studies {
  background: #ffe4b5;
  padding: 60px 20px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.case-card {
  background: #faebd7;
  padding: 36px;
  border-radius: 12px;
  border: 4px solid #d2691e;
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 32px;
}

.case-card h3 {
  color: #8b4513;
  margin-bottom: 20px;
  font-size: 24px;
}

.case-card p {
  color: #4a3728;
  line-height: 1.7;
  margin-bottom: 12px;
}

.case-card strong {
  color: #8b4513;
  display: inline-block;
  margin-right: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-info {
  background: #f5ede0;
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.contact-details, .contact-form-wrapper {
  flex: 1 1 calc(50% - 20px);
  min-width: 300px;
}

.contact-details h2, .contact-form-wrapper h2 {
  color: #8b4513;
  margin-bottom: 32px;
}

.info-block {
  background: #faebd7;
  padding: 24px;
  border-radius: 12px;
  border: 3px solid #d2691e;
  margin-bottom: 20px;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.info-block h3 {
  color: #8b4513;
  margin-bottom: 12px;
}

.info-block p {
  color: #4a3728;
  line-height: 1.7;
}

.info-block strong {
  color: #8b4513;
  display: block;
  margin-bottom: 8px;
}

.contact-details .note {
  background: #ffe4b5;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #d2691e;
  color: #6b5447;
  font-style: italic;
  margin-top: 20px;
}

.form-note {
  background: #ffe4b5;
  padding: 24px;
  border-radius: 12px;
  border: 3px solid #d2691e;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
}

.form-note p {
  color: #4a3728;
  margin-bottom: 12px;
}

.form-note a {
  color: #8b4513;
  font-weight: 600;
  text-decoration: underline;
}

.form-note ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note ul li {
  padding-left: 20px;
  position: relative;
  color: #4a3728;
}

.form-note ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d2691e;
  font-weight: 700;
}

.contact-methods {
  background: #faebd7;
  padding: 60px 20px;
}

.contact-methods h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #8b4513;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.method-card {
  background: #f5ede0;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.method-card:hover {
  transform: scale(1.05);
  box-shadow: 8px 8px 0px rgba(139, 69, 19, 0.4);
}

.method-card h3 {
  color: #8b4513;
  margin-bottom: 16px;
}

.method-card p {
  color: #4a3728;
  margin-bottom: 8px;
}

.method-card strong {
  color: #d2691e;
  font-size: 18px;
}

.showroom-info {
  background: #ffe4b5;
  padding: 60px 20px;
}

.showroom-info h2 {
  text-align: center;
  margin-bottom: 24px;
  color: #8b4513;
}

.showroom-info > .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4a3728;
  font-size: 18px;
}

.showroom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.showroom-details, .showroom-services {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  border: 3px solid #d2691e;
  box-shadow: 6px 6px 0px rgba(139, 69, 19, 0.3);
}

.showroom-details h3, .showroom-services h3 {
  color: #8b4513;
  margin-bottom: 20px;
}

.showroom-details ul, .showroom-services ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.showroom-details ul li, .showroom-services ul li {
  padding-left: 24px;
  position: relative;
  color: #4a3728;
}

.showroom-details ul li::before, .showroom-services ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8b4513;
  font-weight: 700;
}

.showroom-services p {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid #e0d0b8;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  background: #f5ede0;
  padding: 60px 20px;
}

.text-section {
  background: #faebd7;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #d2691e;
  box-shadow: 4px 4px 0px rgba(139, 69, 19, 0.3);
  margin-bottom: 32px;
}

.text-section h2 {
  color: #8b4513;
  margin-bottom: 16px;
}

.text-section p {
  color: #4a3728;
  line-height: 1.7;
  margin-bottom: 12px;
}

.text-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0;
}

.text-section ul li {
  padding-left: 24px;
  position: relative;
  color: #4a3728;
}

.text-section ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #d2691e;
  font-weight: 700;
  font-size: 20px;
}

/* ===== THANK YOU PAGE ===== */
.thank-you {
  background: #f5ede0;
  padding: 100px 20px;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background: #faebd7;
  padding: 60px 40px;
  border-radius: 12px;
  border: 4px solid #d2691e;
  box-shadow: 10px 10px 0px rgba(139, 69, 19, 0.3);
  max-width: 700px;
}

.thank-you h1 {
  color: #8b4513;
  margin-bottom: 24px;
}

.thank-you p {
  color: #4a3728;
  font-size: 18px;
  margin-bottom: 16px;
}

.thank-you .cta-buttons {
  margin-top: 40px;
  margin-bottom: 40px;
}

.thank-you .contact-info {
  background: #ffe4b5;
  padding: 24px;
  border-radius: 8px;
  margin-top: 32px;
}

.thank-you .contact-info p {
  margin-bottom: 8px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  color: #faebd7;
  padding: 60px 20px 20px;
  border-top: 6px solid #f5deb3;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 27px);
  min-width: 250px;
}

.footer-section h3, .footer-section h4 {
  color: #faebd7;
  margin-bottom: 16px;
  border-bottom: 2px solid rgba(245, 222, 179, 0.3);
  padding-bottom: 8px;
}

.footer-section p {
  color: rgba(245, 222, 179, 0.9);
  line-height: 1.7;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: rgba(245, 222, 179, 0.9);
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

.footer-bottom {
  border-top: 2px solid rgba(245, 222, 179, 0.3);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.footer-legal a {
  color: rgba(245, 222, 179, 0.9);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: #faebd7;
}

.footer-bottom > p {
  color: rgba(245, 222, 179, 0.8);
  font-size: 14px;
  text-align: center;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
  padding: 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #f5deb3;
}

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

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

.cookie-text {
  flex: 1 1 300px;
  color: #faebd7;
}

.cookie-text p {
  margin-bottom: 0;
  color: #faebd7;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: 2px solid #f5deb3;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.accept-all {
  background: #228b22;
  color: #faebd7;
}

.accept-all:hover {
  background: #1a6b1a;
  transform: scale(1.05);
}

.reject-all {
  background: transparent;
  color: #faebd7;
}

.reject-all:hover {
  background: rgba(245, 222, 179, 0.2);
}

.cookie-settings {
  background: #f5deb3;
  color: #8b4513;
}

.cookie-settings:hover {
  background: #ffe4b5;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: #faebd7;
  padding: 40px;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 4px solid #d2691e;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #8b4513;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  transform: rotate(90deg);
  color: #d2691e;
}

.cookie-modal h2 {
  color: #8b4513;
  margin-bottom: 24px;
}

.cookie-category {
  background: #f5ede0;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 2px solid #e0d0b8;
}

.cookie-category h3 {
  color: #8b4513;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-category p {
  color: #4a3728;
  font-size: 14px;
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  transition: 0.3s;
  border-radius: 26px;
  border: 2px solid #8b4513;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: white;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background: #228b22;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.modal-buttons button {
  flex: 1;
  min-width: 140px;
  padding: 12px 24px;
  border: 2px solid #8b4513;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 14px;
}

.save-preferences {
  background: #8b4513;
  color: #faebd7;
}

.save-preferences:hover {
  background: #a0522d;
  transform: scale(1.03);
}

.accept-selected {
  background: #228b22;
  color: #faebd7;
  border-color: #1a6b1a;
}

.accept-selected:hover {
  background: #1a6b1a;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

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

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .benefits-grid {
    flex-direction: column;
  }

  .benefit-card {
    flex: 1 1 100%;
  }

  .categories-grid {
    flex-direction: column;
  }

  .category-card {
    flex: 1 1 100%;
  }

  .stats-grid {
    flex-direction: column;
  }

  .stat-card {
    flex: 1 1 100%;
  }

  .testimonials-grid {
    flex-direction: column;
  }

  .testimonial-card {
    flex: 1 1 100%;
  }

  .products-grid {
    flex-direction: column;
  }

  .product-card {
    flex: 1 1 100%;
  }

  .guarantees-grid {
    flex-direction: column;
  }

  .guarantee-card {
    flex: 1 1 100%;
  }

  .values-grid {
    flex-direction: column;
  }

  .value-card {
    flex: 1 1 100%;
  }

  .reasons-grid {
    flex-direction: column;
  }

  .reason-card {
    flex: 1 1 100%;
  }

  .contact-grid {
    flex-direction: column;
  }

  .contact-details, .contact-form-wrapper {
    flex: 1 1 100%;
  }

  .methods-grid {
    flex-direction: column;
  }

  .method-card {
    flex: 1 1 100%;
  }

  .showroom-grid {
    flex-direction: column;
  }

  .showroom-details, .showroom-services {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-buttons button {
    width: 100%;
  }

  .cookie-modal-content {
    padding: 30px 20px;
  }

  .modal-buttons {
    flex-direction: column;
  }

  .modal-buttons button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

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

  .score-number {
    font-size: 56px;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card, .category-card, .stat-card, .testimonial-card, .product-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.hidden {
  display: none;
}