/* ============================================
   CRYPTIC BALANCE - LUXURY PREMIUM CSS
   Dokonalá péče o vaši obuv
   ============================================ */

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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 16px;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #FAF9F6;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #D4AF37;
}

ul {
  list-style: none;
}

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

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

/* SECTION SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #8B7355;
  margin-bottom: 32px;
  text-align: center;
  font-style: italic;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
  color: #1a1a1a;
  border-color: #D4AF37;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C5A028 0%, #B69020 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  color: #1a1a1a;
}

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

.btn-secondary:hover {
  background: #8B7355;
  color: #ffffff;
  border-color: #8B7355;
}

.btn-link {
  background: transparent;
  color: #D4AF37;
  padding: 8px 16px;
  font-size: 14px;
  border: 1px solid #D4AF37;
}

.btn-link:hover {
  background: #D4AF37;
  color: #1a1a1a;
}

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

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: #D4AF37;
  color: #1a1a1a;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #2C3E50;
  z-index: 1002;
  padding: 80px 32px 32px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
  width: 40px;
  height: 40px;
  font-size: 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #D4AF37;
  color: #2C3E50;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  color: #FAF9F6;
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #D4AF37;
  padding-left: 28px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 20px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

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

.logo img {
  height: 60px;
  width: auto;
}

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

.main-nav a {
  color: #FAF9F6;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
  color: #D4AF37;
}

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

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #FAF9F6;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}

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

.hero h1 {
  color: #FAF9F6;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  color: #D4AF37;
  margin-bottom: 32px;
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
}

.trust-badge {
  display: inline-block;
  margin-top: 40px;
  padding: 12px 24px;
  background: rgba(212, 175, 55, 0.2);
  border: 2px solid #D4AF37;
  border-radius: 4px;
  color: #D4AF37;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-small {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #FAF9F6;
  padding: 60px 20px;
  text-align: center;
}

.hero-small h1 {
  color: #FAF9F6;
  font-size: 42px;
}

.hero-small .hero-subtitle {
  color: #D4AF37;
  font-size: 18px;
}

.hero-small .highlight {
  color: #8B7355;
  font-style: italic;
  margin-top: 16px;
}

/* GRID LAYOUTS - USING FLEXBOX ONLY */
.values-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.process-steps,
.materials-grid,
.pricing-grid,
.packages-grid,
.options-grid,
.expectations-grid,
.guarantee-grid,
.specialization-grid,
.techniques-grid,
.methods-grid,
.contact-info-grid,
.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

/* VALUE PROPOSITION */
.value-proposition {
  text-align: center;
}

.value-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.value-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.value-item h3 {
  color: #2C3E50;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-item p {
  color: #666666;
  font-size: 15px;
}

/* SERVICE CARDS */
.services-preview,
.services-detail {
  text-align: center;
}

.service-card,
.service-card-detail {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover,
.service-card-detail:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.service-card.featured,
.service-card-detail.featured {
  border-color: #D4AF37;
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EE 100%);
  position: relative;
}

.service-card img,
.service-card-detail img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #D4AF37;
  color: #1a1a1a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.benefits-list {
  text-align: left;
  margin: 20px 0;
}

.benefits-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: #4a4a4a;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* PROCESS STEPS */
.process {
  background: #F5F3EE;
  text-align: center;
}

.step {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 20px;
  background: #ffffff;
  border-radius: 8px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
  color: #1a1a1a;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #666666;
}

/* BENEFITS */
.benefit-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  border-color: #8B7355;
  transform: translateY(-4px);
}

.benefit-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

/* TESTIMONIALS */
.testimonials {
  background: #F5F3EE;
  text-align: center;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 40px 32px;
  background: #ffffff;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2C3E50;
  margin-bottom: 24px;
  line-height: 1.8;
}

.testimonial-author {
  text-align: right;
  margin-top: 20px;
}

.testimonial-author strong {
  display: block;
  color: #2C3E50;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-author span {
  color: #8B7355;
  font-size: 14px;
}

.trust-indicator {
  margin-top: 40px;
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #FAF9F6;
  padding: 80px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-banner h2 {
  color: #FAF9F6;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 32px;
}

/* ABOUT PAGE */
.story,
.values,
.expertise,
.team,
.location {
  text-align: center;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.text-section p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}

blockquote {
  margin: 40px 0;
  padding: 32px;
  background: #F5F3EE;
  border-left: 4px solid #D4AF37;
  font-size: 20px;
  font-style: italic;
  color: #2C3E50;
}

.value-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
}

.value-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

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

.stat-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  padding: 32px 24px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

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

.expertise-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.expertise-text {
  flex: 1 1 400px;
}

.expertise-list {
  list-style: none;
}

.expertise-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 17px;
  color: #2C3E50;
}

.expertise-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.team-member {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
}

.team-member img {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.role {
  color: #8B7355;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

.location-content {
  max-width: 800px;
  margin: 40px auto 0;
}

.address {
  font-size: 20px;
  font-weight: 600;
  color: #D4AF37;
  margin: 20px 0;
}

.location-benefits {
  margin-top: 24px;
}

.location-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
}

.location-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* SERVICES PAGE */
.materials-grid,
.process-detail {
  text-align: center;
}

.material-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.material-card:hover {
  border-color: #8B7355;
  transform: translateY(-4px);
}

.process-detail .step {
  flex: 1 1 calc(20% - 24px);
  min-width: 180px;
}

.timeline-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #8B7355;
  font-weight: 600;
}

/* FAQ */
.faq {
  max-width: 900px;
  margin: 60px auto;
}

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

.faq-item {
  padding: 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #D4AF37;
}

.faq-item h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666666;
  font-size: 16px;
  line-height: 1.6;
}

/* PRICING PAGE */
.price-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.price-large {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
  margin: 20px 0;
}

.included-list {
  text-align: left;
  margin: 20px 0;
}

.included-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  color: #4a4a4a;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 18px;
}

.timeline {
  color: #8B7355;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* PACKAGES */
.package-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  padding: 40px 32px;
  background: #ffffff;
  border: 3px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.package-card.popular {
  border-color: #D4AF37;
  transform: scale(1.05);
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EE 100%);
}

.package-card.best-value {
  border-color: #8B7355;
  background: linear-gradient(135deg, #F5F3EE 0%, #EAE8E0 100%);
}

.price-comparison {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.price-old {
  font-size: 20px;
  color: #999999;
  text-decoration: line-through;
}

.price-new {
  font-size: 36px;
  font-weight: 700;
  color: #D4AF37;
}

.savings {
  color: #28a745;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 20px;
}

.ideal-for {
  color: #8B7355;
  font-style: italic;
  font-size: 15px;
  margin-top: 16px;
}

.savings-highlight {
  text-align: center;
  margin-top: 40px;
  font-size: 20px;
  color: #28a745;
  font-weight: 700;
}

/* ADDITIONAL SERVICES */
.addons-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.addon-item {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 240px;
  padding: 24px;
  background: #F5F3EE;
  border-radius: 8px;
  text-align: center;
}

.addon-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.addon-price {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
}

/* VALUE COMPARISON */
.comparison-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.comparison-item {
  flex: 1 1 300px;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
}

.comparison-item.highlight {
  border-color: #D4AF37;
  background: linear-gradient(135deg, #FAF9F6 0%, #F5F3EE 100%);
  transform: scale(1.05);
}

.comparison-vs {
  font-size: 28px;
  font-weight: 700;
  color: #8B7355;
}

.comparison-price {
  font-size: 32px;
  font-weight: 700;
  color: #D4AF37;
  margin: 16px 0;
}

.benefit {
  color: #28a745;
  font-weight: 600;
  margin-top: 16px;
}

.roi-highlight {
  text-align: center;
  margin-top: 40px;
  font-size: 18px;
  color: #2C3E50;
  font-weight: 600;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* GUARANTEE */
.guarantee-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
}

.guarantee-item img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

/* HOW IT WORKS PAGE */
.steps-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.step-detail {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-detail:hover {
  border-color: #D4AF37;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.step-detail .step-number {
  flex-shrink: 0;
}

.step-content {
  flex: 1;
  text-align: left;
}

.step-info {
  color: #8B7355;
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
}

.timeline-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.timeline-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
}

.time {
  font-size: 24px;
  font-weight: 700;
  color: #D4AF37;
  margin-top: 12px;
}

.express-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #8B7355;
  font-style: italic;
}

.option-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
}

.option-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

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

.expectation-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 28px 20px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
}

.expectation-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.aftercare-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.aftercare-item {
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #D4AF37;
  border-radius: 8px;
}

.aftercare-item h3 {
  color: #2C3E50;
  font-size: 18px;
  margin-bottom: 8px;
}

.support-note {
  text-align: center;
  margin-top: 32px;
  font-size: 16px;
  color: #8B7355;
  font-style: italic;
}

/* GALLERY PAGE */
.showcase-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.showcase-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 320px;
  padding: 32px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.showcase-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.showcase-image {
  width: 100%;
  height: 300px;
  background: #F5F3EE;
  border-radius: 8px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-image img {
  width: 120px;
  height: 120px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.spec-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
}

.brand-list {
  text-align: left;
  margin-top: 16px;
}

.brand-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a4a4a;
}

.brand-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
  font-size: 20px;
}

.technique-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  padding: 28px 20px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.technique-card:hover {
  border-color: #8B7355;
  transform: translateY(-4px);
}

.technique-card img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

/* CONTACT PAGE */
.method-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 40px 32px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
}

.method-card img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

.contact-detail {
  font-size: 18px;
  font-weight: 600;
  color: #D4AF37;
  margin: 16px 0;
}

/* CONTACT FORM */
.form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  padding: 40px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-note {
  padding: 16px;
  background: #F5F3EE;
  border-left: 4px solid #D4AF37;
  margin-bottom: 32px;
  font-size: 14px;
  color: #666666;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-size: 16px;
  font-weight: 600;
  color: #2C3E50;
}

.field-placeholder {
  padding: 14px 16px;
  border: 2px solid #E8E4DC;
  border-radius: 4px;
  background: #FAF9F6;
  color: #999999;
  font-style: italic;
}

.checkbox-placeholder {
  padding: 12px;
  border: 2px solid #E8E4DC;
  border-radius: 4px;
  background: #FAF9F6;
  color: #666666;
  font-size: 14px;
}

.button-placeholder {
  padding: 14px 32px;
  background: linear-gradient(135deg, #D4AF37 0%, #C5A028 100%);
  color: #1a1a1a;
  border-radius: 4px;
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gdpr-note {
  margin-top: 24px;
  font-size: 13px;
  color: #666666;
  line-height: 1.6;
}

.gdpr-note a {
  color: #8B7355;
  text-decoration: underline;
}

/* LOCATION INFO */
.location-details {
  max-width: 600px;
  margin: 0 auto;
}

.address-large {
  font-size: 22px;
  font-weight: 600;
  color: #D4AF37;
  margin: 20px 0;
  line-height: 1.6;
}

.hours-list {
  margin-top: 16px;
}

.hours-list li {
  padding: 8px 0;
  color: #4a4a4a;
  font-size: 16px;
}

.map-placeholder {
  margin-top: 40px;
}

.map-box {
  width: 100%;
  height: 400px;
  background: #E8E4DC;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #8B7355;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-content {
  max-width: 900px;
  margin: 40px auto;
}

.legal-content h2 {
  color: #2C3E50;
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 16px;
}

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

.legal-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #4a4a4a;
  list-style: none;
}

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

.last-updated,
.effective-date {
  color: #8B7355;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  background: linear-gradient(135deg, #2C3E50 0%, #1a252f 100%);
  color: #FAF9F6;
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: #28a745;
  color: #ffffff;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(40, 167, 69, 0.3);
}

.confirmation {
  max-width: 700px;
  margin: 60px auto;
}

.confirmation-box {
  padding: 40px;
  background: #ffffff;
  border: 2px solid #D4AF37;
  border-radius: 8px;
  text-align: center;
}

.steps-simple {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0;
  justify-content: center;
}

.step-simple {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  text-align: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 16px;
  background: #D4AF37;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmation-note {
  margin-top: 24px;
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
}

.confirmation-message {
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  margin-bottom: 16px;
}

.link-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 28px 20px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #D4AF37;
  transform: translateY(-4px);
}

.contact-info-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  padding: 28px 20px;
  background: #ffffff;
  border: 2px solid #E8E4DC;
  border-radius: 8px;
  text-align: center;
}

.contact-info-item img {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  filter: brightness(0) saturate(100%) invert(56%) sepia(37%) saturate(564%) hue-rotate(358deg) brightness(89%) contrast(88%);
}

/* FOOTER */
footer {
  background: #1a252f;
  color: #FAF9F6;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(25% - 40px);
  min-width: 220px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #D4AF37;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-section p {
  color: #cccccc;
  font-size: 14px;
  line-height: 1.8;
}

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

.footer-nav a {
  color: #cccccc;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
}

.footer-nav a:hover {
  color: #D4AF37;
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.footer-bottom p {
  color: #8B7355;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #2C3E50;
  color: #FAF9F6;
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 500px;
}

.cookie-text p {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 0;
}

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

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

.cookie-accept {
  background: #D4AF37;
  color: #1a1a1a;
  border-color: #D4AF37;
}

.cookie-accept:hover {
  background: #C5A028;
}

.cookie-reject {
  background: transparent;
  color: #FAF9F6;
  border-color: #8B7355;
}

.cookie-reject:hover {
  background: #8B7355;
}

.cookie-settings {
  background: transparent;
  color: #D4AF37;
  border-color: #D4AF37;
}

.cookie-settings:hover {
  background: rgba(212, 175, 55, 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: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 40px;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #2C3E50;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #F5F3EE;
}

.cookie-category {
  padding: 20px;
  background: #F5F3EE;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

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

.cookie-toggle.active {
  background: #D4AF37;
}

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

.cookie-toggle.active::after {
  left: 27px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
}

.cookie-category.disabled {
  opacity: 0.6;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  
  .value-item,
  .service-card,
  .service-card-detail,
  .benefit-item {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .header-content {
    justify-content: space-between;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* All grid items to full width on mobile */
  .value-item,
  .service-card,
  .service-card-detail,
  .benefit-item,
  .testimonial-card,
  .step,
  .material-card,
  .price-card,
  .package-card,
  .addon-item,
  .comparison-item,
  .guarantee-item,
  .stat-card,
  .team-member,
  .option-card,
  .expectation-item,
  .timeline-item,
  .showcase-card,
  .spec-card,
  .technique-card,
  .method-card,
  .link-card,
  .contact-info-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Steps detailed */
  .step-detail {
    flex-direction: column;
    text-align: center;
  }
  
  .step-content {
    text-align: center;
  }
  
  /* Comparison */
  .comparison-vs {
    width: 100%;
    padding: 20px 0;
  }
  
  /* CTA buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
  
  section {
    padding: 32px 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .mobile-menu {
    width: 90%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  .cta-banner {
    display: none;
  }
}

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

button:focus,
a:focus {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

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

.service-card,
.value-item,
.benefit-item {
  animation: fadeIn 0.6s ease-out;
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }