/* ====================================
   REMUNALCHE - CREATIVE ARTISTIC STYLE
   Modern Italian Furniture Design
   ==================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2C3E50;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* TYPOGRAPHY - CREATIVE ARTISTIC */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C3E50;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  text-shadow: 2px 2px 4px rgba(139, 115, 85, 0.1);
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
  position: relative;
  display: inline-block;
}

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

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

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #34495E;
}

strong {
  font-weight: 700;
  color: #2C3E50;
}

/* CONTAINER & LAYOUT */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

/* HEADER & NAVIGATION */
header {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  border-bottom: 3px solid #E8D5C4;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  flex-wrap: wrap;
}

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

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

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

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #2C3E50;
  font-weight: 600;
  font-size: 16px;
  padding: 8px 12px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #8B7355, #E8D5C4);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: #8B7355;
  transform: translateY(-2px);
}

.nav-menu a:hover::before {
  width: 100%;
}

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

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 12px 20px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Playfair Display', serif;
}

.mobile-nav a:hover {
  border-left-color: #E8D5C4;
  background: rgba(232, 213, 196, 0.1);
  transform: translateX(8px);
}

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

/* HERO SECTIONS */
.hero {
  background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D8 50%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 115, 85, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

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

.hero p {
  font-size: 20px;
  color: #34495E;
  margin-bottom: 32px;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out;
}

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

.hero-page {
  background: linear-gradient(135deg, #8B7355 0%, #A68968 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1));
}

.hero-page h1 {
  color: white;
  text-align: center;
  margin-bottom: 16px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-page p {
  color: #F5E6D8;
  text-align: center;
  font-size: 18px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 24px;
  font-size: 14px;
  color: #F5E6D8;
  justify-content: center;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: white;
  transition: all 0.3s ease;
}

.breadcrumb a:hover {
  color: #E8D5C4;
  text-decoration: underline;
}

/* BUTTONS - ARTISTIC STYLE */
.btn,
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

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

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.5);
}

.btn-secondary {
  background: white;
  color: #8B7355;
  border: 3px solid #8B7355;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
  background: #8B7355;
  color: white;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(139, 115, 85, 0.4);
}

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

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

.btn-link:hover {
  color: #2C3E50;
  transform: translateX(4px);
}

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

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

/* SECTIONS */
.section,
.content-section,
.value-proposition,
.services-overview,
.testimonials,
.cta-section,
.cta-showroom {
  margin-bottom: 60px;
  padding: 40px 20px;
}

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

/* VALUE PROPOSITION */
.value-proposition {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 250px;
  max-width: 280px;
  padding: 32px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
  border-radius: 20px;
  border: 3px solid #E8D5C4;
  transition: all 0.4s ease;
  position: relative;
}

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

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

.feature:hover {
  transform: translateY(-8px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.3);
}

.feature img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(139, 115, 85, 0.2));
  transition: transform 0.4s ease;
}

.feature:hover img {
  transform: scale(1.1) rotate(-5deg);
}

.feature h3 {
  margin-bottom: 12px;
  color: #2C3E50;
}

.feature p {
  color: #34495E;
  line-height: 1.6;
}

/* SERVICES */
.services-grid,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.service-card,
.card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: white;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
  border: 2px solid transparent;
}

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

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.25);
  border-color: #E8D5C4;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #2C3E50;
}

.service-card p {
  color: #34495E;
  margin-bottom: 16px;
}

.price,
.price-range {
  font-size: 20px;
  font-weight: 700;
  color: #8B7355;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* TESTIMONIALS - HIGH CONTRAST */
.testimonials {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 60px 20px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 40px;
  font-size: 200px;
  color: rgba(232, 213, 196, 0.1);
  font-family: 'Playfair Display', serif;
  line-height: 1;
}

.testimonials h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.testimonials h2::after {
  background: linear-gradient(90deg, #E8D5C4 0%, white 100%);
  left: 50%;
  transform: translateX(-50%);
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background: white;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  border-left: 5px solid #8B7355;
  transition: all 0.4s ease;
}

.testimonial-card::before {
  content: '★★★★★';
  position: absolute;
  top: 16px;
  right: 16px;
  color: #FFD700;
  font-size: 14px;
  letter-spacing: 2px;
}

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

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

.testimonial-card .author {
  color: #8B7355;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
  font-style: normal;
  text-align: right;
}

.review-count {
  text-align: center;
  color: #E8D5C4;
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

/* CTA SECTIONS */
.cta-section,
.cta-showroom {
  background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D8 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.cta-section h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.cta-section p {
  font-size: 18px;
  color: #34495E;
  margin-bottom: 16px;
}

/* COLLECTIONS */
.collections {
  padding: 40px 20px;
}

.collection-item {
  background: white;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 8px solid #8B7355;
  transition: all 0.4s ease;
}

.collection-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 35px rgba(139, 115, 85, 0.25);
}

.collection-item h2 {
  color: #2C3E50;
  margin-bottom: 20px;
}

.collection-item ul {
  margin: 24px 0;
  padding-left: 24px;
}

.collection-item li {
  list-style: none;
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: #34495E;
}

.collection-item li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: 700;
  font-size: 18px;
}

/* SERVICES DETAIL */
.services-detail {
  padding: 40px 20px;
}

.service-detail {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 32px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 3px solid #E8D5C4;
  transition: all 0.4s ease;
}

.service-detail:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(139, 115, 85, 0.2);
  border-color: #8B7355;
}

.service-detail h2 {
  color: #2C3E50;
  margin-bottom: 20px;
}

/* PROCESS */
.process {
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin-bottom: 60px;
}

.process h2 {
  color: white;
  text-align: center;
  margin-bottom: 48px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.step {
  flex: 1 1 180px;
  max-width: 220px;
  background: white;
  padding: 32px 24px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
}

.step:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 40px rgba(232, 213, 196, 0.4);
}

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

.step p {
  color: #34495E;
  font-size: 14px;
}

/* GUARANTEES */
.guarantees {
  background: #FFF8F0;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 60px;
  border: 3px solid #E8D5C4;
}

.guarantees h2 {
  color: #2C3E50;
  margin-bottom: 24px;
}

.guarantees ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.guarantees li {
  list-style: none;
  padding-left: 40px;
  position: relative;
  font-size: 16px;
  color: #34495E;
  line-height: 1.6;
}

.guarantees li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: 700;
  font-size: 24px;
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #E8D5C4, #F5E6D8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SHOWROOM */
.showroom-intro {
  padding: 40px 20px;
  text-align: center;
}

.showroom-intro ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.showroom-intro li {
  flex: 1 1 200px;
  max-width: 250px;
  background: white;
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  color: #8B7355;
  transition: all 0.3s ease;
}

.showroom-intro li:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
}

.showroom-areas {
  padding: 40px 20px;
}

.showroom-areas h2 {
  text-align: center;
  margin-bottom: 40px;
}

.area {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
  padding: 32px;
  border-radius: 15px;
  margin-bottom: 24px;
  border-left: 6px solid #8B7355;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.area:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.15);
}

.area h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

/* VISIT INFO */
.visit-info {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D8 100%);
  border-radius: 20px;
  margin-bottom: 60px;
}

.visit-info h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #2C3E50;
}

.info-block {
  background: white;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(139, 115, 85, 0.2);
}

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

.info-block p {
  color: #34495E;
  margin-bottom: 8px;
}

/* APPOINTMENT */
.appointment {
  background: white;
  padding: 60px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  margin-bottom: 60px;
  text-align: center;
}

.appointment h2 {
  margin-bottom: 24px;
}

.appointment ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.appointment li {
  flex: 1 1 calc(50% - 20px);
  min-width: 200px;
  background: #FFF8F0;
  padding: 20px;
  border-radius: 10px;
  font-size: 16px;
  color: #34495E;
  border: 2px solid #E8D5C4;
}

/* CONTACT */
.contact-methods {
  padding: 40px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.method {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #8B7355;
  transition: all 0.4s ease;
}

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

.method img {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.method h3 {
  color: #2C3E50;
  margin-bottom: 16px;
}

.method p {
  color: #34495E;
  margin-bottom: 12px;
}

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

.form-notice {
  background: #FFF3CD;
  border: 2px solid #FFE69C;
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 32px;
  text-align: center;
}

.form-notice p {
  color: #856404;
  margin-bottom: 8px;
}

.form-placeholder {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 2px dashed #E8D5C4;
}

.form-placeholder p {
  margin-bottom: 16px;
  color: #34495E;
}

.form-placeholder input[type="checkbox"] {
  margin-right: 8px;
}

/* LOCATION INFO */
.location-info {
  padding: 40px 20px;
  background: #FFF8F0;
  border-radius: 15px;
  margin-bottom: 60px;
}

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

.detail {
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
}

.detail h3 {
  color: #8B7355;
  margin-bottom: 12px;
}

.detail p {
  color: #34495E;
}

/* FAQ */
.faq-contact {
  padding: 40px 20px;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #8B7355;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(139, 115, 85, 0.15);
}

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

.faq-item p {
  color: #34495E;
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
}

.last-update {
  text-align: center;
  color: #8B7355;
  font-style: italic;
  margin-bottom: 32px;
}

.legal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  line-height: 1.8;
}

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

.legal-content h3 {
  color: #8B7355;
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
  color: #34495E;
  list-style: disc;
}

.legal-content a {
  color: #8B7355;
  text-decoration: underline;
}

.legal-content a:hover {
  color: #2C3E50;
}

/* VALUES SECTION */
.values-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFFFFF 100%);
  border-radius: 20px;
  margin-bottom: 60px;
}

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: white;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-top: 5px solid #8B7355;
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 40px rgba(139, 115, 85, 0.25);
}

.value-card h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.value-card p {
  color: #34495E;
}

/* THANK YOU PAGE */
.thank-you {
  padding: 60px 20px;
  text-align: center;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #8B7355, #A68968);
  color: white;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thank-you h1 {
  color: #2C3E50;
  margin-bottom: 16px;
}

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

.confirmation {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  text-align: left;
}

.confirmation h2 {
  text-align: center;
  margin-bottom: 24px;
}

.confirmation ol {
  padding-left: 24px;
  margin-top: 24px;
}

.confirmation li {
  margin-bottom: 16px;
  color: #34495E;
  line-height: 1.6;
}

.quick-actions {
  margin-bottom: 40px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 32px;
}

.action {
  flex: 1 1 300px;
  max-width: 350px;
  background: white;
  padding: 32px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.action h3 {
  color: #2C3E50;
  margin-bottom: 12px;
}

.testimonial {
  background: linear-gradient(135deg, #E8D5C4 0%, #F5E6D8 100%);
  padding: 40px;
  border-radius: 15px;
  margin: 40px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-left: 6px solid #8B7355;
}

.testimonial p {
  color: #2C3E50;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial .author {
  color: #8B7355;
  font-weight: 700;
  text-align: right;
  font-style: normal;
}

.trust-points {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

.trust-points h2 {
  text-align: center;
  margin-bottom: 32px;
}

.trust-points ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.trust-points li {
  flex: 1 1 calc(50% - 16px);
  min-width: 200px;
  background: #FFF8F0;
  padding: 16px 24px;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  color: #8B7355;
  border: 2px solid #E8D5C4;
}

/* TEXT CONTENT */
.text-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  line-height: 1.8;
  margin-bottom: 40px;
}

.text-content p {
  margin-bottom: 20px;
  color: #34495E;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C3E50 0%, #1A252F 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to bottom right, transparent 49.5%, #2C3E50 50%);
}

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

.footer-section {
  flex: 1 1 250px;
}

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

.footer-section h4 {
  color: #E8D5C4;
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-section p {
  color: #BDC3C7;
  margin-bottom: 12px;
  font-size: 14px;
}

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

.footer-section li a {
  color: #BDC3C7;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-section li a:hover {
  color: #E8D5C4;
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 213, 196, 0.2);
  color: #95A5A6;
  font-size: 14px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C3E50 0%, #34495E 100%);
  color: white;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #8B7355;
}

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

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

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

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

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.cookie-reject {
  background: transparent;
  color: white;
  border: 2px solid #E8D5C4;
}

.cookie-reject:hover {
  background: rgba(232, 213, 196, 0.1);
}

.cookie-settings {
  background: transparent;
  color: #E8D5C4;
  border: 2px solid transparent;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: white;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  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.active .modal-content {
  transform: scale(1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-header h2 {
  color: #2C3E50;
  margin-bottom: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  color: #95A5A6;
  cursor: pointer;
  line-height: 1;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  border: 2px solid #E8D5C4;
  border-radius: 10px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.cookie-category:hover {
  border-color: #8B7355;
  box-shadow: 0 4px 15px rgba(139, 115, 85, 0.1);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.category-header h3 {
  color: #2C3E50;
  margin-bottom: 0;
  font-size: 18px;
}

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

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BDC3C7;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background: linear-gradient(135deg, #8B7355, #A68968);
}

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

.category-description {
  color: #7F8C8D;
  font-size: 14px;
}

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

.modal-save {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(135deg, #8B7355, #A68968);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 16px;
}

.modal-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 115, 85, 0.4);
}

/* 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: 40px; }
  .hero p { font-size: 18px; }
  
  .hero-page { padding: 40px 20px; }
  
  .features-grid { flex-direction: column; }
  .feature { max-width: 100%; }
  
  .service-card { flex: 1 1 100%; }
  
  .testimonial-card { flex: 1 1 100%; }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group .btn,
  .cta-group .btn-primary,
  .cta-group .btn-secondary {
    width: 100%;
  }
  
  .footer-content { flex-direction: column; }
  
  .cookie-content { flex-direction: column; }
  .cookie-buttons { width: 100%; }
  .cookie-btn { flex: 1 1 calc(50% - 6px); }
  
  .modal-content { padding: 24px; }
  
  .process-steps { flex-direction: column; }
  .step { max-width: 100%; }
  
  .values-grid { flex-direction: column; }
  .value-card { max-width: 100%; }
  
  .methods-grid { flex-direction: column; }
  .method { max-width: 100%; }
  
  .location-details { flex-direction: column; }
  
  .actions-grid { flex-direction: column; }
  .action { max-width: 100%; }
  
  .trust-points li { flex: 1 1 100%; }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  .hero p { font-size: 16px; }
  
  .btn, .btn-primary, .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .container { padding: 0 16px; }
  
  .mobile-menu { width: 100%; }
  
  .cookie-banner { padding: 16px; }
  .cookie-buttons { flex-direction: column; }
  .cookie-btn { width: 100%; }
}

/* PRINT STYLES */
@media print {
  header, footer, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}