/* ========================================
   BRIMSTONE CASTLE - SOFT PASTEL DESIGN
   Modern Robotic Vacuum Cleaners Website
   ======================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #5A6C7D;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  overflow-x: hidden;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --pastel-pink: #FFD6E8;
  --pastel-blue: #C9E4F5;
  --pastel-lavender: #E8D4F8;
  --pastel-mint: #D4F8E8;
  --pastel-peach: #FFE5D4;
  --pastel-lilac: #E8DAEF;
  --soft-gray: #F5F7FA;
  --text-dark: #5A6C7D;
  --text-light: #8B9CAD;
  --white: #FFFFFF;
  --shadow-soft: rgba(201, 228, 245, 0.3);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #5A6C7D;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  color: #5A6C7D;
}

h2 {
  font-size: 36px;
  color: #5A6C7D;
}

h3 {
  font-size: 28px;
  color: #5A6C7D;
}

h4 {
  font-size: 22px;
  color: #5A6C7D;
}

p {
  margin-bottom: 16px;
  color: #5A6C7D;
  line-height: 1.8;
}

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

a:hover {
  color: #5A6C7D;
}

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

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

/* BUTTONS - SOFT PASTEL STYLE */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-soft);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E8D4F8 0%, #C9E4F5 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 212, 248, 0.4);
  color: #5A6C7D;
}

.btn-secondary {
  background: linear-gradient(135deg, #C9E4F5 0%, #D4F8E8 100%);
  color: #5A6C7D;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #D4F8E8 0%, #FFE5D4 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 248, 232, 0.4);
  color: #5A6C7D;
}

button.btn-primary {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
}

/* MOBILE MENU TOGGLE BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(232, 212, 248, 0.5);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF5F7 0%, #E8F4F8 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -5px 0 25px rgba(201, 228, 245, 0.3);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 10px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
  box-shadow: 0 6px 15px rgba(232, 212, 248, 0.5);
}

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

.mobile-nav a {
  display: block;
  padding: 15px 20px;
  background: var(--white);
  border-radius: 15px;
  color: #5A6C7D;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 10px var(--shadow-soft);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(232, 212, 248, 0.4);
}

/* HEADER */
header {
  background: var(--white);
  padding: 20px 0;
  box-shadow: 0 4px 20px var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

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

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

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

.main-nav a {
  color: #5A6C7D;
  font-weight: 600;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* HERO SECTION - SOFT PASTEL */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 50%, #E8DAEF 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 214, 232, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 228, 245, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #5A6C7D;
  text-shadow: 0 2px 10px rgba(201, 228, 245, 0.3);
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #8B9CAD;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-indicators {
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px var(--shadow-soft);
  display: inline-block;
}

.trust-indicators p {
  margin: 0;
  color: #5A6C7D;
  font-weight: 600;
}

/* HERO INTERNAL */
.hero-internal {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #E8DAEF 100%);
  text-align: center;
  position: relative;
}

.breadcrumbs {
  margin-bottom: 20px;
  font-size: 14px;
  color: #8B9CAD;
}

.breadcrumbs a {
  color: #8B9CAD;
}

.breadcrumbs a:hover {
  color: #5A6C7D;
}

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

/* VALUE PROPOSITION */
.value-proposition {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

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

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

.benefit-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(232, 212, 248, 0.4);
}

.benefit-card h3 {
  color: #5A6C7D;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #8B9CAD;
  margin: 0;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: linear-gradient(135deg, #E8F4F8 0%, #D4F8E8 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 50px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 380px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(201, 228, 245, 0.5);
}

.service-card.featured {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  transform: scale(1.05);
}

.service-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.service-card h3 {
  margin-bottom: 15px;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #5A6C7D;
  margin: 20px 0;
}

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

/* HOW IT WORKS */
.how-it-works {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.how-it-works h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.step {
  flex: 1 1 calc(25% - 23px);
  min-width: 200px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(232, 212, 248, 0.4);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.step h3 {
  margin-bottom: 15px;
}

.step p {
  margin: 0;
  color: #8B9CAD;
}

/* FEATURES GRID */
.features-grid {
  background: linear-gradient(135deg, #E8DAEF 0%, #FFE5D4 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.features-grid h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.feature-item {
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  padding: 25px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 229, 212, 0.4);
}

.feature-item h4 {
  color: #5A6C7D;
  margin: 0;
}

.feature-item p {
  margin: 0;
  color: #8B9CAD;
  font-size: 14px;
}

/* TESTIMONIALS - ENHANCED READABILITY */
.testimonials {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(201, 228, 245, 0.5);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #5A6C7D;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: #5A6C7D;
  font-size: 18px;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.stat {
  text-align: center;
  padding: 30px;
  background: linear-gradient(135deg, #C9E4F5 0%, #D4F8E8 100%);
  border-radius: 20px;
  min-width: 200px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 248, 232, 0.4);
}

.stat strong {
  display: block;
  font-size: 48px;
  color: #5A6C7D;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat span {
  color: #8B9CAD;
  font-size: 16px;
}

/* CTA FINAL */
.cta-final {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 50%, #C9E4F5 100%);
  border-radius: 30px;
  padding: 80px 40px;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 15px;
}

.subtext {
  font-size: 16px;
  color: #8B9CAD;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.contact-info {
  padding: 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: inline-block;
}

.contact-info p {
  margin: 0;
  color: #5A6C7D;
  font-weight: 600;
}

/* PRODUCTS PAGE */
.product-showcase {
  background: var(--white);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
  transition: all 0.3s ease;
}

.product-showcase:hover {
  box-shadow: 0 12px 40px rgba(201, 228, 245, 0.4);
}

.product-showcase.featured {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  position: relative;
}

.product-showcase.premium {
  background: linear-gradient(135deg, #E8DAEF 0%, #C9E4F5 100%);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.product-header {
  margin-bottom: 30px;
  text-align: center;
}

.product-price {
  font-size: 40px;
  font-weight: 700;
  color: #5A6C7D;
  margin: 15px 0;
}

.product-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.features-list {
  list-style: none;
  margin: 25px 0;
}

.features-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  color: #5A6C7D;
  line-height: 1.6;
}

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

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

/* COMPARISON TABLE */
.comparison-section {
  background: linear-gradient(135deg, #E8F4F8 0%, #D4F8E8 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.comparison-intro {
  text-align: center;
  margin-bottom: 40px;
}

.comparison-table {
  overflow-x: auto;
}

table {
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

table thead {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
}

table th {
  padding: 20px;
  color: #5A6C7D;
  font-weight: 700;
  text-align: left;
}

table td {
  padding: 20px;
  border-bottom: 1px solid #E8F4F8;
  color: #5A6C7D;
}

table tbody tr:hover {
  background: #FFF5F7;
}

/* FAQ SECTION */
.faq-section {
  background: var(--white);
  border-radius: 30px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 50px;
}

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

.faq-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 300px;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(232, 212, 248, 0.4);
}

.faq-item h3 {
  color: #5A6C7D;
  margin-bottom: 15px;
}

.faq-item p {
  color: #8B9CAD;
  margin: 0;
}

/* SERVICES DETAIL */
.service-block {
  background: var(--white);
  border-radius: 25px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.service-block h2 {
  margin-bottom: 15px;
}

.service-price {
  font-size: 32px;
  font-weight: 700;
  color: #5A6C7D;
  margin: 20px 0;
}

.service-block ul {
  list-style: none;
  margin: 25px 0;
}

.service-block ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #5A6C7D;
}

.service-block ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A6C7D;
  font-weight: 700;
}

/* SERVICE PACKAGES */
.service-packages {
  background: linear-gradient(135deg, #E8DAEF 0%, #FFE5D4 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.package-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 280px;
  max-width: 380px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 35px rgba(255, 229, 212, 0.5);
}

.package-card.featured {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  transform: scale(1.05);
}

.package-price {
  font-size: 32px;
  font-weight: 700;
  color: #5A6C7D;
  margin: 20px 0;
}

.package-card ul {
  list-style: none;
  text-align: left;
  margin: 25px 0;
}

.package-card ul li {
  padding: 10px 0 10px 25px;
  position: relative;
  color: #5A6C7D;
}

.package-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A6C7D;
  font-weight: 700;
}

/* ABOUT PAGE */
.company-story {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.why-choose {
  background: linear-gradient(135deg, #E8F4F8 0%, #D4F8E8 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

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

.reason-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(212, 248, 232, 0.4);
}

.expertise {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

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

.expertise-item {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(232, 212, 248, 0.4);
}

.numbers {
  background: linear-gradient(135deg, #E8DAEF 0%, #C9E4F5 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: 20px;
  min-width: 180px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(201, 228, 245, 0.4);
}

.stat-card strong {
  display: block;
  font-size: 42px;
  color: #5A6C7D;
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
}

.stat-card p {
  color: #8B9CAD;
  margin: 0;
}

.showroom-info {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
  text-align: center;
}

.showroom-details {
  max-width: 700px;
  margin: 30px auto 0;
  padding: 40px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
}

.commitment {
  background: linear-gradient(135deg, #FFE5D4 0%, #E8DAEF 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.commitment-list {
  list-style: none;
  max-width: 800px;
  margin: 30px auto;
}

.commitment-list li {
  padding: 15px 0 15px 40px;
  position: relative;
  color: #5A6C7D;
  font-size: 18px;
  line-height: 1.6;
}

.commitment-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A6C7D;
  font-weight: 700;
  font-size: 24px;
}

/* CONTACT PAGE */
.contact-methods {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

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

.method-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  max-width: 350px;
  padding: 40px 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(232, 212, 248, 0.4);
}

.response-time {
  text-align: center;
  padding: 20px;
  background: linear-gradient(135deg, #C9E4F5 0%, #D4F8E8 100%);
  border-radius: 15px;
  margin-top: 30px;
}

/* CONTACT FORM */
.contact-form-section {
  background: linear-gradient(135deg, #E8F4F8 0%, #E8DAEF 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.form-notice {
  max-width: 700px;
  margin: 30px auto;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

.form-fields {
  margin-top: 30px;
}

.field-group {
  margin-bottom: 25px;
}

.field-group label {
  display: block;
  margin-bottom: 8px;
  color: #5A6C7D;
  font-weight: 600;
}

.input-placeholder {
  padding: 15px 20px;
  background: #F5F7FA;
  border: 2px solid #E8F4F8;
  border-radius: 12px;
  color: #8B9CAD;
  font-style: italic;
}

.form-button {
  text-align: center;
  margin-top: 30px;
}

.privacy-notice {
  text-align: center;
  font-size: 14px;
  color: #8B9CAD;
  margin-top: 20px;
}

.privacy-notice a {
  color: #5A6C7D;
  text-decoration: underline;
}

/* SHOWROOM SECTION */
.showroom-section {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.showroom-info {
  max-width: 700px;
  margin: 0 auto;
}

.showroom-info h3 {
  text-align: center;
  margin-bottom: 30px;
}

.showroom-info ul {
  list-style: none;
  margin: 25px 0;
}

.showroom-info ul li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: #5A6C7D;
}

.showroom-info ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #5A6C7D;
  font-weight: 700;
}

/* SERVICE AREAS */
.service-areas-section {
  background: linear-gradient(135deg, #FFE5D4 0%, #E8DAEF 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.area-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  max-width: 350px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 229, 212, 0.4);
}

/* LEGAL PAGES */
.legal-hero {
  padding: 60px 20px;
  background: linear-gradient(135deg, #E8F4F8 0%, #E8DAEF 100%);
  text-align: center;
}

.last-updated {
  color: #8B9CAD;
  font-size: 14px;
}

.legal-content {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

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

.content-wrapper h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

.content-wrapper h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin: 20px 0 20px 30px;
  color: #5A6C7D;
}

.content-wrapper li {
  margin-bottom: 10px;
  line-height: 1.8;
}

/* GDPR RIGHTS */
.rights-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px 0;
}

.right-item {
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
}

.right-item h3 {
  margin-bottom: 15px;
}

.right-item p {
  margin: 0;
  color: #8B9CAD;
}

/* COOKIES TABLE */
.cookies-table {
  overflow-x: auto;
  margin: 30px 0;
}

.cookies-table table {
  width: 100%;
}

/* THANK YOU PAGE */
.thank-you-hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 50%, #C9E4F5 100%);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #D4F8E8 0%, #C9E4F5 100%);
  color: #5A6C7D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 700;
  margin: 0 auto 30px;
  box-shadow: 0 8px 30px var(--shadow-soft);
  animation: scaleIn 0.5s ease;
}

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

.lead {
  font-size: 24px;
  font-weight: 600;
  color: #5A6C7D;
}

.next-steps {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.step-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(232, 212, 248, 0.4);
}

.timeline {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #C9E4F5 0%, #D4F8E8 100%);
  border-radius: 15px;
}

.while-you-wait {
  background: linear-gradient(135deg, #E8DAEF 0%, #FFE5D4 100%);
  border-radius: 30px;
  padding: 60px 40px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 250px;
  max-width: 350px;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(255, 229, 212, 0.4);
}

.contact-alternatives {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
}

.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
}

.contact-option {
  flex: 1 1 calc(50% - 15px);
  min-width: 250px;
  padding: 30px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 20px;
  box-shadow: 0 4px 15px var(--shadow-soft);
  text-align: center;
}

.back-home {
  text-align: center;
  padding: 40px 20px;
}

.thank-you-info {
  background: var(--white);
  border-radius: 25px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px var(--shadow-soft);
  text-align: center;
}

.action-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-info-section {
  background: linear-gradient(135deg, #E8F4F8 0%, #E8DAEF 100%);
  border-radius: 30px;
  padding: 60px 40px;
  text-align: center;
}

.contact-details {
  max-width: 600px;
  margin: 30px auto;
  padding: 40px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-soft);
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #5A6C7D 0%, #3E4E5E 100%);
  color: #E8F4F8;
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

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

.footer-section h4 {
  color: #FFD6E8;
  margin-bottom: 20px;
  font-size: 20px;
}

.footer-section p {
  color: #C9E4F5;
  line-height: 1.8;
  margin-bottom: 10px;
}

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

.footer-nav a {
  color: #C9E4F5;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-nav a:hover {
  color: #FFD6E8;
  padding-left: 10px;
}

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

.footer-bottom p {
  color: #C9E4F5;
  margin: 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #5A6C7D 0%, #3E4E5E 100%);
  padding: 25px 20px;
  box-shadow: 0 -4px 20px var(--shadow-soft);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
  color: #E8F4F8;
}

.cookie-consent-text p {
  margin: 0;
  color: #C9E4F5;
}

.cookie-consent-text a {
  color: #FFD6E8;
  text-decoration: underline;
}

.cookie-consent-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

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

.cookie-btn-accept {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
  color: #5A6C7D;
}

.cookie-btn-accept:hover {
  background: linear-gradient(135deg, #E8D4F8 0%, #C9E4F5 100%);
  transform: translateY(-2px);
}

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

.cookie-btn-reject:hover {
  background: rgba(201, 228, 245, 0.1);
  border-color: #FFD6E8;
  color: #FFD6E8;
}

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

.cookie-btn-settings:hover {
  background: rgba(201, 228, 245, 0.1);
  border-color: #FFD6E8;
  color: #FFD6E8;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(90, 108, 125, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: var(--white);
  border-radius: 25px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: #8B9CAD;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-modal h2 {
  margin-bottom: 20px;
}

.cookie-category {
  padding: 20px;
  background: linear-gradient(135deg, #FFF5F7 0%, #E8F4F8 100%);
  border-radius: 15px;
  margin-bottom: 20px;
}

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

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

.cookie-toggle.active {
  background: linear-gradient(135deg, #FFD6E8 0%, #E8D4F8 100%);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px var(--shadow-soft);
}

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

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  /* Flexbox adjustments for mobile */
  .benefits-grid,
  .services-grid,
  .steps-grid,
  .features,
  .testimonials-grid,
  .stats-grid,
  .reasons-grid,
  .expertise-grid,
  .methods-grid,
  .areas-grid,
  .packages-grid,
  .suggestions-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .step,
  .feature-item,
  .testimonial-card,
  .reason-card,
  .expertise-item,
  .method-card,
  .area-card,
  .package-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Hero CTA buttons stack */
  .hero-cta,
  .cta-buttons,
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta a,
  .cta-buttons a,
  .action-buttons a {
    width: 100%;
    text-align: center;
  }
  
  /* Sections padding */
  section {
    padding: 30px 15px;
  }
  
  .value-proposition,
  .services-overview,
  .how-it-works,
  .features-grid,
  .testimonials,
  .cta-final {
    padding: 40px 20px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Tables responsive */
  .comparison-table,
  .cookies-table {
    overflow-x: auto;
  }
  
  table {
    font-size: 14px;
  }
  
  table th,
  table td {
    padding: 12px;
  }
}

@media (max-width: 480px) {
  /* Further mobile adjustments */
  h1 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .mobile-menu {
    width: 90%;
  }
}

/* TABLET ADJUSTMENTS */
@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .reason-card,
  .expertise-item {
    flex: 1 1 calc(50% - 15px);
  }
  
  .feature-item {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .step {
    flex: 1 1 calc(50% - 15px);
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background: white;
  }
  
  section {
    page-break-inside: avoid;
  }
}